Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Tue, 17 Oct 2023 18:49:52 UTC Commit: b092bc934a8d9d25928755e218c211357b1b4a6f https://github.com/geany/geany-osx/commit/b092bc934a8d9d25928755e218c211357b...
Log Message: ----------- Update Info.plist with new filetype extensions
Modified Paths: -------------- Info.plist utils/plist_filetypes.py
Modified: Info.plist 44 lines changed, 30 insertions(+), 14 deletions(-) =================================================================== @@ -244,6 +244,20 @@ <key>LSHandlerRank</key> <string>Alternate</string> </dict> + <dict> + <key>CFBundleTypeName</key> + <string>AutoIt Source</string> + <key>CFBundleTypeExtensions</key> + <array> + <string>au3</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>Geany.icns</string> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> <dict> <key>CFBundleTypeName</key> <string>Batch Source</string> @@ -538,6 +552,7 @@ <key>CFBundleTypeExtensions</key> <array> <string>F</string> + <string>F77</string> <string>FOR</string> <string>FPP</string> <string>FTN</string> @@ -554,20 +569,6 @@ <key>LSHandlerRank</key> <string>Alternate</string> </dict> - <dict> - <key>CFBundleTypeName</key> - <string>Ferite Source</string> - <key>CFBundleTypeExtensions</key> - <array> - <string>fe</string> - </array> - <key>CFBundleTypeIconFile</key> - <string>Geany.icns</string> - <key>CFBundleTypeRole</key> - <string>Editor</string> - <key>LSHandlerRank</key> - <string>Alternate</string> - </dict> <dict> <key>CFBundleTypeName</key> <string>Forth Source</string> @@ -620,6 +621,20 @@ <key>LSHandlerRank</key> <string>Alternate</string> </dict> + <dict> + <key>CFBundleTypeName</key> + <string>GDScript Source</string> + <key>CFBundleTypeExtensions</key> + <array> + <string>gd</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>Geany.icns</string> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> <dict> <key>CFBundleTypeName</key> <string>Genie Source</string> @@ -842,6 +857,7 @@ <string>Lisp Source</string> <key>CFBundleTypeExtensions</key> <array> + <string>el</string> <string>lisp</string> </array> <key>CFBundleTypeIconFile</key>
Modified: utils/plist_filetypes.py 9 lines changed, 5 insertions(+), 4 deletions(-) =================================================================== @@ -10,6 +10,7 @@ Arduino=*.ino;*.pde; Asciidoc=*.asciidoc;*.adoc; ASM=*.asm;*.asm51;*.a51;*.s;*.S;*.sx; +AutoIt=*.au3; Batch=*.bat;*.cmd;*.nt; BibTeX=*.bib; CAML=*.ml;*.mli; @@ -28,11 +29,11 @@ Diff=*.diff;*.patch;*.rej; Docbook=*.docbook; Erlang=*.erl;*.hrl; -F77=*.f;*.for;*.ftn;*.f77;*.F;*.FOR;*.FTN;*.fpp;*.FPP; -Ferite=*.fe; +F77=*.f;*.for;*.ftn;*.f77;*.F;*.FOR;*.FTN;*.fpp;*.FPP;*.F77; Forth=*.fs;*.fth; Fortran=*.f90;*.f95;*.f03;*.f08;*.F90;*.F95;*.F03;*.F08; FreeBasic=*.bas;*.bi;*.vbs; +GDScript=*.gd; Genie=*.gs; GLSL=*.glsl;*.frag;*.vert; Go=*.go; @@ -47,12 +48,12 @@ Julia=*.jl; Kotlin=*.kt;*.kts; LaTeX=*.tex;*.sty;*.idx;*.ltx;*.latex;*.aux; -Lisp=*.lisp; +Lisp=*.lisp;*.el; Lua=*.lua; Make=*.mak;*.mk;GNUmakefile;makefile;Makefile;makefile.*;Makefile.*; Markdown=*.mdml;*.markdown;*.md;*.mkd;*.mkdn;*.mdwn;*.mdown;*.mdtxt;*.mdtext; Matlab/Octave=*.m; -Meson=meson.build; +Meson=meson.build;meson.options;meson_options.txt; Nim=*.nim; NSIS=*.nsi;*.nsh; Objective-C=*.m;*.mm;*.h;
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).