Skip to content

Commit 8ae7f87

Browse files
committed
Support for .vue files.
1 parent 862db2f commit 8ae7f87

File tree

7 files changed

+28
-4
lines changed

7 files changed

+28
-4
lines changed

Application/Info.plist

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@
114114
<string>org.tug.lua</string>
115115
<string>org.tug.tex</string>
116116
<string>org.vim.vim-script</string>
117+
<string>org.vuejs.vue</string>
117118
<string>org.xul.source</string>
118119
<string>public.bash-script</string>
119120
<string>public.csh-script</string>
@@ -1419,6 +1420,24 @@
14191420
</array>
14201421
</dict>
14211422
</dict>
1423+
<dict>
1424+
<key>UTTypeConformsTo</key>
1425+
<array>
1426+
<string>public.item</string>
1427+
<string>public.data</string>
1428+
</array>
1429+
<key>UTTypeDescription</key>
1430+
<string>Vue source file</string>
1431+
<key>UTTypeIdentifier</key>
1432+
<string>org.vuejs.vue</string>
1433+
<key>UTTypeTagSpecification</key>
1434+
<dict>
1435+
<key>public.filename-extension</key>
1436+
<array>
1437+
<string>vue</string>
1438+
</array>
1439+
</dict>
1440+
</dict>
14221441
<dict>
14231442
<key>UTTypeConformsTo</key>
14241443
<array>
Binary file not shown.

CHANGELOG.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
1.0.b26
2+
New features:
3+
- support for .vue files (highlight has a beta support for vue files)
4+
15
1.0.b25
26
New features:
37
- support for symfony .twig files (interpreted ad html).

QLExtension/Info.plist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@
130130
<string>org.tug.lua</string>
131131
<string>org.tug.tex</string>
132132
<string>org.vim.vim-script</string>
133+
<string>org.vuejs.vue</string>
133134
<string>org.xul.source</string>
134135
<string>public.bash-script</string>
135136
<string>public.csh-script</string>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Quicklook extension for source files
22

3-
This application offers a quicklook extension for MacOS 10.15 Catalina for previewing source files.
3+
This application offers a quicklook extension for MacOS 10.15 Catalina or later for previewing source files.
44
Inside it uses [Highlight](http://www.andre-simon.de/doku/highlight/en/highlight.php) to render source code with syntax highlighting.
55
The application is distributed with a version of the `highlight`. If you want you can use a different version customizing the preferences.
66

7-
MacOS 10.15.0 Catalina has deprecated the qlgenerator APIs. Moreover a .qlgenerator package inside Library/QuickLook must be notarized on 10.15.0 to work. In version 10.15.1 it seems that notarization is no longer required.
7+
Starting from MacOS 10.15.0 Catalina the qlgenerator APIs are deprecated. Moreover a .qlgenerator package inside Library/QuickLook must be notarized on 10.15.0 to work. In version 10.15.1 it seems that notarization is no longer required.
88

99
This project consists of these components:
1010

SourceCodeSyntaxHighlight.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1078,7 +1078,7 @@
10781078
CODE_SIGN_IDENTITY = "-";
10791079
CODE_SIGN_STYLE = Manual;
10801080
COMBINE_HIDPI_IMAGES = YES;
1081-
CURRENT_PROJECT_VERSION = 25;
1081+
CURRENT_PROJECT_VERSION = 26;
10821082
DEVELOPMENT_TEAM = "";
10831083
ENABLE_HARDENED_RUNTIME = YES;
10841084
INFOPLIST_FILE = Application/Info.plist;
@@ -1103,7 +1103,7 @@
11031103
CODE_SIGN_IDENTITY = "-";
11041104
CODE_SIGN_STYLE = Manual;
11051105
COMBINE_HIDPI_IMAGES = YES;
1106-
CURRENT_PROJECT_VERSION = 25;
1106+
CURRENT_PROJECT_VERSION = 26;
11071107
DEVELOPMENT_TEAM = "";
11081108
ENABLE_HARDENED_RUNTIME = YES;
11091109
INFOPLIST_FILE = Application/Info.plist;

0 commit comments

Comments
 (0)