Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding new images JPG & XCF #10

Merged
merged 7 commits into from
Dec 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ Support
* git
* markdown
* assembly
* sql
* matlab

The "favicon" image cannot be missing in your application, you must include it. [Open favicon](https://github.com/Zukaritasu/notepadpp_rpc/blob/main/favicon.png)

Expand Down
Binary file modified images/coffeescript.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/coffeescript.xcf
Binary file not shown.
Binary file modified images/erlang.xcf
Binary file not shown.
Binary file added images/matlab.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/matlab.xcf
Binary file not shown.
Binary file added images/sql.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/sql.xcf
Binary file not shown.
2 changes: 2 additions & 0 deletions vstudio/src/LanguageInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ LanguageInfo GetLanguageInfo(const char* extension)
case L_COFFEESCRIPT: return { "COFFEESCRIPT", "coffeescript" };
case L_RC: return { "RESOURCE", NPP_DEFAULTIMAGE };
case L_ASM: return { "ASSEMBLY", "assembly" };
case L_SQL: return { "SQL", "sql" };
case L_MATLAB: return { "MATLAB", "matlab" };
default:
if (strcmp(extension, ".gitignore") == 0)
return { "GIT", "git" };
Expand Down