Skip to content

Commit

Permalink
Lots of small changes (see CHANGELOG.md)
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonygelibert committed Sep 9, 2020
1 parent e0589a3 commit 120db62
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 5 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

- Nothing

## [3.1.0] — 2020-09-09

### Added

- `kts` (kotlin) support.
- `xsh` support.
- `pyc` support (decompilation with `uncompyle6` [has to be in `/usr/local/bin`])
- `rst` support.
- `perl` support.
- `bats` (Bash Automated Testing System) support.

### Fixed

- `fish` support.
- `bat` (Windows Batch) support.
- `diff` support.
- `bash` support.

## [3.0.3] — 2020-09-09

Expand Down
31 changes: 31 additions & 0 deletions Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@
<string>dyn.ah62d4rv4ge81u6k</string>
<string>dyn.ah62d4rv4ge8007dx</string>
<string>dyn.ah62d4rv4ge80e2py</string>
<string>dyn.ah62d4rv4ge80q4pxra</string>
<string>dyn.ah62d4rv4ge81u65k</string>
<string>dyn.ah62d4rv4ge81a8pd</string>
<string>dyn.ah62d4rv4ge81e65y</string>
<string>public.perl-script</string>
<string>dyn.ah62d4rv4ge80e2pysq</string>
<string>public.patch-file</string>
<string>public.bash-script</string>
</array>
</dict>
</array>
Expand Down Expand Up @@ -331,6 +339,7 @@
<key>UTTypeConformsTo</key>
<array>
<string>public.script</string>
<string>public.patch-file</string>
</array>
<key>UTTypeDescription</key>
<string>Diff File</string>
Expand Down Expand Up @@ -962,6 +971,7 @@
<key>UTTypeConformsTo</key>
<array>
<string>public.source-code</string>
<string>dyn.ah62d4rv4ge80q4pxra</string>
</array>
<key>UTTypeDescription</key>
<string>Fish source files</string>
Expand All @@ -975,6 +985,23 @@
</array>
</dict>
</dict>
<dict>
<key>UTTypeConformsTo</key>
<array>
<string>dyn.ah62d4rv4ge81u65k</string>
</array>
<key>UTTypeDescription</key>
<string>XSH source files</string>
<key>UTTypeIdentifier</key>
<string>org.xsh.source</string>
<key>UTTypeTagSpecification</key>
<dict>
<key>public.filename-extension</key>
<array>
<string>xsh</string>
</array>
</dict>
</dict>
<dict>
<key>UTTypeConformsTo</key>
<array>
Expand Down Expand Up @@ -1031,6 +1058,8 @@
<key>UTTypeConformsTo</key>
<array>
<string>public.source-code</string>
<string>dyn.ah62d4rv4ge80e2pysq</string>
<string>public.bash-script</string>
</array>
<key>UTTypeDescription</key>
<string>Shell script</string>
Expand All @@ -1041,6 +1070,8 @@
<key>public.filename-extension</key>
<array>
<string>bashrc</string>
<string>bats</string>
<string>bash</string>
</array>
</dict>
</dict>
Expand Down
8 changes: 4 additions & 4 deletions QLColorCode.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -287,9 +287,9 @@
buildSettings = {
CLANG_ENABLE_OBJC_WEAK = YES;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.0.4.dev1;
CURRENT_PROJECT_VERSION = 3.1.0;
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 3.0.4.dev1;
MARKETING_VERSION = 3.1.0;
OTHER_CFLAGS = "-DDEBUG";
};
name = Debug;
Expand All @@ -299,9 +299,9 @@
buildSettings = {
CLANG_ENABLE_OBJC_WEAK = YES;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.0.4.dev1;
CURRENT_PROJECT_VERSION = 3.1.0;
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 3.0.4.dev1;
MARKETING_VERSION = 3.1.0;
};
name = Release;
};
Expand Down
6 changes: 5 additions & 1 deletion src/colorize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ case ${target} in
*.rdf | *.xul | *.ecore )
lang=xml
;;
*.pyc )
lang=python
reader=(/usr/local/bin/uncompyle6 ${target})
;;
*.ascr | *.scpt )
lang=applescript
reader=(/usr/bin/osadecompile ${target})
Expand Down Expand Up @@ -99,7 +103,7 @@ case ${target} in
lang=py
plugin=(--plug-in python_ref_python_org)
;;
*.sh | *.zsh | *.bash | *.csh | *.fish | *.bashrc | *.zshrc )
*.sh | *.zsh | *.bash | *.csh | *.bashrc | *.zshrc | *.xsh )
lang=sh
plugin=(--plug-in bash_functions)
;;
Expand Down

0 comments on commit 120db62

Please sign in to comment.