Skip to content

Commit

Permalink
Add support for galen. (#1111)
Browse files Browse the repository at this point in the history
  • Loading branch information
JimiC authored and robertohuertasm committed Jul 30, 2017
1 parent 47807e3 commit 58f0a4c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions icons/file_type_galen.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions icons/file_type_galen2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/icon-manifest/languages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export const languages: ILanguageCollection = {
fortran: { ids: ['fortran', 'fortran-modern'], defaultExtension: 'f' },
freemarker: { ids: ['ftl'], defaultExtension: 'ftl' },
fsharp: { ids: 'fsharp', defaultExtension: 'fs' },
galen: { ids: 'galen', defaultExtension: 'gspec' },
gamemaker: { ids: 'gml-gms', defaultExtension: 'gml' },
gamemaker2: { ids: 'gml-gms2', defaultExtension: 'gml' },
gamemaker81: { ids: 'gml-gm81', defaultExtension: 'gml' },
Expand Down
2 changes: 2 additions & 0 deletions src/icon-manifest/supportedExtensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ export const extensions: IFileCollection = {
{ icon: 'fsproj', extensions: ['fsproj'], format: FileFormat.svg },
{ icon: 'freemarker', extensions: [], languages: [languages.freemarker], format: FileFormat.svg },
{ icon: 'fusebox', extensions: ['fuse.js'], filename: true, format: FileFormat.svg },
{ icon: 'galen', extensions: [], languages: [languages.galen], format: FileFormat.svg },
{ icon: 'galen2', extensions: [], languages: [languages.galen], format: FileFormat.svg, disabled: true },
{ icon: 'git', extensions: ['.gitattributes', '.gitconfig', '.gitignore', '.gitmodules', '.gitkeep'], filename: true, languages: [languages.git], format: FileFormat.svg },
{ icon: 'gamemaker', extensions: ['gmx'], languages: [languages.gamemaker], format: FileFormat.svg },
{ icon: 'gamemaker2', extensions: ['yy', 'yyp'], light: true, languages: [languages.gamemaker2], format: FileFormat.svg },
Expand Down
1 change: 1 addition & 0 deletions src/models/language/languageCollection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ export interface ILanguageCollection extends INativeLanguageCollection {
erlang: ILanguage;
fortran: ILanguage;
freemarker: ILanguage;
galen: ILanguage;
gamemaker: ILanguage;
gamemaker2: ILanguage;
gamemaker81: ILanguage;
Expand Down

0 comments on commit 58f0a4c

Please sign in to comment.