From 31a5fdd3868495c9e77cfc745550f277ddb820b1 Mon Sep 17 00:00:00 2001 From: Yasuaki Uechi Date: Fri, 20 Sep 2019 19:32:18 +0900 Subject: [PATCH] release: v3.1 --- Polyglot/Info.plist | 62 ++++++------ PolyglotSafariExtension/Info.plist | 154 ++++++++++++++--------------- Scripts/README.md | 1 + package.json | 2 +- 4 files changed, 110 insertions(+), 109 deletions(-) diff --git a/Polyglot/Info.plist b/Polyglot/Info.plist index 43b25f4..fb08df0 100644 --- a/Polyglot/Info.plist +++ b/Polyglot/Info.plist @@ -1,34 +1,34 @@ - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIconFile - icon.icns - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - APPL - CFBundleShortVersionString - 3.0 - CFBundleVersion - 3.0.1 - LSApplicationCategoryType - public.app-category.productivity - LSMinimumSystemVersion - $(MACOSX_DEPLOYMENT_TARGET) - NSHumanReadableCopyright - Copyright © 2019 Yasuaki Uechi. All rights reserved. - NSMainNibFile - MainMenu - NSPrincipalClass - NSApplication - - + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIconFile + icon.icns + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + 3.1 + CFBundleVersion + 3.1.0 + LSApplicationCategoryType + public.app-category.productivity + LSMinimumSystemVersion + $(MACOSX_DEPLOYMENT_TARGET) + NSHumanReadableCopyright + Copyright © 2019 Yasuaki Uechi. All rights reserved. + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + + \ No newline at end of file diff --git a/PolyglotSafariExtension/Info.plist b/PolyglotSafariExtension/Info.plist index 587ee0d..811c8ce 100644 --- a/PolyglotSafariExtension/Info.plist +++ b/PolyglotSafariExtension/Info.plist @@ -1,80 +1,80 @@ - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleDisplayName - Polyglot - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - XPC! - CFBundleShortVersionString - 3.0 - CFBundleVersion - 3.0.1 - LSMinimumSystemVersion - $(MACOSX_DEPLOYMENT_TARGET) - NSExtension - - NSExtensionPointIdentifier - com.apple.Safari.extension - NSExtensionPrincipalClass - $(PRODUCT_MODULE_NAME).SafariExtensionHandler - SFSafariContentScript - - - Script - content.bundle.js - - - SFSafariContextMenu - - - Command - tarnslateSelectedText - Text - Translate - - - SFSafariExtensionBundleIdentifiersToUninstall - - co.randompaper.polyglot.extension - - SFSafariStyleSheet - - - Style Sheet - content.css - - - SFSafariToolbarItem - - Action - Command - Identifier - translateButton - Image - toolbar-icon.png - Label - Translate - - SFSafariWebsiteAccess - - Level - All - - - NSHumanReadableCopyright - Copyright © 2019 Yasuaki Uechi. MIT license. - NSHumanReadableDescription - Translate selected text into your native language. - - + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + Polyglot + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + XPC! + CFBundleShortVersionString + 3.1 + CFBundleVersion + 3.1.0 + LSMinimumSystemVersion + $(MACOSX_DEPLOYMENT_TARGET) + NSExtension + + NSExtensionPointIdentifier + com.apple.Safari.extension + NSExtensionPrincipalClass + $(PRODUCT_MODULE_NAME).SafariExtensionHandler + SFSafariContentScript + + + Script + content.bundle.js + + + SFSafariContextMenu + + + Command + tarnslateSelectedText + Text + Translate + + + SFSafariExtensionBundleIdentifiersToUninstall + + co.randompaper.polyglot.extension + + SFSafariStyleSheet + + + Style Sheet + content.css + + + SFSafariToolbarItem + + Action + Command + Identifier + translateButton + Image + toolbar-icon.png + Label + Translate + + SFSafariWebsiteAccess + + Level + All + + + NSHumanReadableCopyright + Copyright © 2019 Yasuaki Uechi. MIT license. + NSHumanReadableDescription + Translate selected text into your native language. + + \ No newline at end of file diff --git a/Scripts/README.md b/Scripts/README.md index 804937f..2f7b179 100644 --- a/Scripts/README.md +++ b/Scripts/README.md @@ -8,6 +8,7 @@ export BUILD=1 Scripts/update-version.js # update corresponding files yarn # update lockfile fixpack # format package.json +git add . git commit -am "release: v${VERSION}" git tag v${VERSION} -a -m "release: v${VERSION}" git push diff --git a/package.json b/package.json index 32b8500..652c0ed 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "polyglot", "description": "Polyglot content script", - "version": "3.0.1", + "version": "3.1.0", "main": "./PolyglotSafariExtension/ContentScript/content.bundle.js", "scripts": { "build": "yarn build:script && yarn build:app",