Skip to content

Commit 83e161b

Browse files
committed
release: v3.3.0
1 parent f9e69a7 commit 83e161b

File tree

3 files changed

+110
-110
lines changed

3 files changed

+110
-110
lines changed

Polyglot/Info.plist

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
4-
<dict>
5-
<key>CFBundleDevelopmentRegion</key>
6-
<string>$(DEVELOPMENT_LANGUAGE)</string>
7-
<key>CFBundleExecutable</key>
8-
<string>$(EXECUTABLE_NAME)</string>
9-
<key>CFBundleIconFile</key>
10-
<string>icon.icns</string>
11-
<key>CFBundleIdentifier</key>
12-
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
13-
<key>CFBundleInfoDictionaryVersion</key>
14-
<string>6.0</string>
15-
<key>CFBundleName</key>
16-
<string>$(PRODUCT_NAME)</string>
17-
<key>CFBundlePackageType</key>
18-
<string>APPL</string>
19-
<key>CFBundleShortVersionString</key>
20-
<string>3.2</string>
21-
<key>CFBundleVersion</key>
22-
<string>3.2.0</string>
23-
<key>LSApplicationCategoryType</key>
24-
<string>public.app-category.productivity</string>
25-
<key>LSMinimumSystemVersion</key>
26-
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
27-
<key>NSHumanReadableCopyright</key>
28-
<string>Copyright © 2021 Yasuaki Uechi. All rights reserved.</string>
29-
<key>NSMainNibFile</key>
30-
<string>MainMenu</string>
31-
<key>NSPrincipalClass</key>
32-
<string>NSApplication</string>
33-
</dict>
34-
</plist>
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>$(DEVELOPMENT_LANGUAGE)</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIconFile</key>
10+
<string>icon.icns</string>
11+
<key>CFBundleIdentifier</key>
12+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
13+
<key>CFBundleInfoDictionaryVersion</key>
14+
<string>6.0</string>
15+
<key>CFBundleName</key>
16+
<string>$(PRODUCT_NAME)</string>
17+
<key>CFBundlePackageType</key>
18+
<string>APPL</string>
19+
<key>CFBundleShortVersionString</key>
20+
<string>3.3</string>
21+
<key>CFBundleVersion</key>
22+
<string>3.3.0</string>
23+
<key>LSApplicationCategoryType</key>
24+
<string>public.app-category.productivity</string>
25+
<key>LSMinimumSystemVersion</key>
26+
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
27+
<key>NSHumanReadableCopyright</key>
28+
<string>Copyright © 2021 Yasuaki Uechi. All rights reserved.</string>
29+
<key>NSMainNibFile</key>
30+
<string>MainMenu</string>
31+
<key>NSPrincipalClass</key>
32+
<string>NSApplication</string>
33+
</dict>
34+
</plist>

PolyglotSafariExtension/Info.plist

Lines changed: 77 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -1,80 +1,80 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
4-
<dict>
5-
<key>CFBundleDevelopmentRegion</key>
6-
<string>$(DEVELOPMENT_LANGUAGE)</string>
7-
<key>CFBundleDisplayName</key>
8-
<string>Polyglot</string>
9-
<key>CFBundleExecutable</key>
10-
<string>$(EXECUTABLE_NAME)</string>
11-
<key>CFBundleIdentifier</key>
12-
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
13-
<key>CFBundleInfoDictionaryVersion</key>
14-
<string>6.0</string>
15-
<key>CFBundleName</key>
16-
<string>$(PRODUCT_NAME)</string>
17-
<key>CFBundlePackageType</key>
18-
<string>XPC!</string>
19-
<key>CFBundleShortVersionString</key>
20-
<string>3.2</string>
21-
<key>CFBundleVersion</key>
22-
<string>3.2.0</string>
23-
<key>LSMinimumSystemVersion</key>
24-
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
25-
<key>NSExtension</key>
26-
<dict>
27-
<key>NSExtensionPointIdentifier</key>
28-
<string>com.apple.Safari.extension</string>
29-
<key>NSExtensionPrincipalClass</key>
30-
<string>$(PRODUCT_MODULE_NAME).SafariExtensionHandler</string>
31-
<key>SFSafariContentScript</key>
32-
<array>
33-
<dict>
34-
<key>Script</key>
35-
<string>content.bundle.js</string>
36-
</dict>
37-
</array>
38-
<key>SFSafariContextMenu</key>
39-
<array>
40-
<dict>
41-
<key>Command</key>
42-
<string>tarnslateSelectedText</string>
43-
<key>Text</key>
44-
<string>Translate</string>
45-
</dict>
46-
</array>
47-
<key>SFSafariExtensionBundleIdentifiersToUninstall</key>
48-
<array>
49-
<string>co.randompaper.polyglot.extension</string>
50-
</array>
51-
<key>SFSafariStyleSheet</key>
52-
<array>
53-
<dict>
54-
<key>Style Sheet</key>
55-
<string>content.css</string>
56-
</dict>
57-
</array>
58-
<key>SFSafariToolbarItem</key>
59-
<dict>
60-
<key>Action</key>
61-
<string>Command</string>
62-
<key>Identifier</key>
63-
<string>translateButton</string>
64-
<key>Image</key>
65-
<string>toolbar-icon.png</string>
66-
<key>Label</key>
67-
<string>Translate</string>
68-
</dict>
69-
<key>SFSafariWebsiteAccess</key>
70-
<dict>
71-
<key>Level</key>
72-
<string>All</string>
73-
</dict>
74-
</dict>
75-
<key>NSHumanReadableCopyright</key>
76-
<string>Copyright © 2021 Yasuaki Uechi. Apache 2.0 license.</string>
77-
<key>NSHumanReadableDescription</key>
78-
<string>Translate selected text into your native language.</string>
79-
</dict>
80-
</plist>
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>$(DEVELOPMENT_LANGUAGE)</string>
7+
<key>CFBundleDisplayName</key>
8+
<string>Polyglot</string>
9+
<key>CFBundleExecutable</key>
10+
<string>$(EXECUTABLE_NAME)</string>
11+
<key>CFBundleIdentifier</key>
12+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
13+
<key>CFBundleInfoDictionaryVersion</key>
14+
<string>6.0</string>
15+
<key>CFBundleName</key>
16+
<string>$(PRODUCT_NAME)</string>
17+
<key>CFBundlePackageType</key>
18+
<string>XPC!</string>
19+
<key>CFBundleShortVersionString</key>
20+
<string>3.3</string>
21+
<key>CFBundleVersion</key>
22+
<string>3.3.0</string>
23+
<key>LSMinimumSystemVersion</key>
24+
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
25+
<key>NSExtension</key>
26+
<dict>
27+
<key>NSExtensionPointIdentifier</key>
28+
<string>com.apple.Safari.extension</string>
29+
<key>NSExtensionPrincipalClass</key>
30+
<string>$(PRODUCT_MODULE_NAME).SafariExtensionHandler</string>
31+
<key>SFSafariContentScript</key>
32+
<array>
33+
<dict>
34+
<key>Script</key>
35+
<string>content.bundle.js</string>
36+
</dict>
37+
</array>
38+
<key>SFSafariContextMenu</key>
39+
<array>
40+
<dict>
41+
<key>Command</key>
42+
<string>tarnslateSelectedText</string>
43+
<key>Text</key>
44+
<string>Translate</string>
45+
</dict>
46+
</array>
47+
<key>SFSafariExtensionBundleIdentifiersToUninstall</key>
48+
<array>
49+
<string>co.randompaper.polyglot.extension</string>
50+
</array>
51+
<key>SFSafariStyleSheet</key>
52+
<array>
53+
<dict>
54+
<key>Style Sheet</key>
55+
<string>content.css</string>
56+
</dict>
57+
</array>
58+
<key>SFSafariToolbarItem</key>
59+
<dict>
60+
<key>Action</key>
61+
<string>Command</string>
62+
<key>Identifier</key>
63+
<string>translateButton</string>
64+
<key>Image</key>
65+
<string>toolbar-icon.png</string>
66+
<key>Label</key>
67+
<string>Translate</string>
68+
</dict>
69+
<key>SFSafariWebsiteAccess</key>
70+
<dict>
71+
<key>Level</key>
72+
<string>All</string>
73+
</dict>
74+
</dict>
75+
<key>NSHumanReadableCopyright</key>
76+
<string>Copyright © 2021 Yasuaki Uechi. Apache 2.0 license.</string>
77+
<key>NSHumanReadableDescription</key>
78+
<string>Translate selected text into your native language.</string>
79+
</dict>
80+
</plist>

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "polyglot",
33
"description": "A Safari extension that translates selected text into your native language.",
4-
"version": "3.2.0",
4+
"version": "3.3.0",
55
"scripts": {
66
"build": "NODE_ENV=production webpack-cli --mode production",
77
"clean": "shx rm -rf PolyglotSafariExtension/ContentScript/*.js{,.map,.LICENSE.txt}",
@@ -42,4 +42,4 @@
4242
},
4343
"license": "Apache-2.0",
4444
"private": true
45-
}
45+
}

0 commit comments

Comments
 (0)