Bump version
This commit is contained in:
parent
ed45e5d2e4
commit
f1944d92db
|
@ -1,3 +1,4 @@
|
|||
* Fix a Core Data crash on Apple TV (#1003)
|
||||
* Skip onboarding migration if no migratable profiles (#1002)
|
||||
* Fix TV active toggle color when on-demand
|
||||
* Fix incorrect selection of VPN preset (#996)
|
||||
|
|
|
@ -1038,7 +1038,7 @@
|
|||
"ASSETCATALOG_COMPILER_APPICON_NAME[sdk=appletvos*]" = TV;
|
||||
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
||||
CODE_SIGN_ENTITLEMENTS = Passepartout/App/App.entitlements;
|
||||
CURRENT_PROJECT_VERSION = 3682;
|
||||
CURRENT_PROJECT_VERSION = 3683;
|
||||
ENABLE_PREVIEWS = YES;
|
||||
INFOPLIST_FILE = Passepartout/App/App.plist;
|
||||
INFOPLIST_KEY_CFBundleDisplayName = "$(TARGET_NAME)";
|
||||
|
@ -1077,7 +1077,7 @@
|
|||
"ASSETCATALOG_COMPILER_APPICON_NAME[sdk=appletvos*]" = TV;
|
||||
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
||||
CODE_SIGN_ENTITLEMENTS = Passepartout/App/App.entitlements;
|
||||
CURRENT_PROJECT_VERSION = 3682;
|
||||
CURRENT_PROJECT_VERSION = 3683;
|
||||
ENABLE_PREVIEWS = YES;
|
||||
INFOPLIST_FILE = Passepartout/App/App.plist;
|
||||
INFOPLIST_KEY_CFBundleDisplayName = "$(TARGET_NAME)";
|
||||
|
@ -1138,7 +1138,7 @@
|
|||
buildSettings = {
|
||||
CODE_SIGN_ENTITLEMENTS = Passepartout/LoginItem/LoginItem.entitlements;
|
||||
CODE_SIGN_STYLE = Manual;
|
||||
CURRENT_PROJECT_VERSION = 3682;
|
||||
CURRENT_PROJECT_VERSION = 3683;
|
||||
ENABLE_HARDENED_RUNTIME = YES;
|
||||
ENABLE_USER_SCRIPT_SANDBOXING = YES;
|
||||
INFOPLIST_KEY_CFBundleDisplayName = "$(TARGET_NAME)";
|
||||
|
@ -1163,7 +1163,7 @@
|
|||
buildSettings = {
|
||||
CODE_SIGN_ENTITLEMENTS = Passepartout/LoginItem/LoginItem.entitlements;
|
||||
CODE_SIGN_STYLE = Manual;
|
||||
CURRENT_PROJECT_VERSION = 3682;
|
||||
CURRENT_PROJECT_VERSION = 3683;
|
||||
ENABLE_HARDENED_RUNTIME = YES;
|
||||
ENABLE_USER_SCRIPT_SANDBOXING = YES;
|
||||
INFOPLIST_KEY_CFBundleDisplayName = "$(TARGET_NAME)";
|
||||
|
@ -1217,7 +1217,7 @@
|
|||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CODE_SIGN_ENTITLEMENTS = Passepartout/Tunnel/Tunnel.entitlements;
|
||||
CURRENT_PROJECT_VERSION = 3682;
|
||||
CURRENT_PROJECT_VERSION = 3683;
|
||||
INFOPLIST_FILE = Passepartout/Tunnel/Tunnel.plist;
|
||||
INFOPLIST_KEY_CFBundleDisplayName = "$(TARGET_NAME)";
|
||||
INFOPLIST_KEY_NSHumanReadableCopyright = "$(CFG_COPYRIGHT)";
|
||||
|
@ -1243,7 +1243,7 @@
|
|||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CODE_SIGN_ENTITLEMENTS = Passepartout/Tunnel/Tunnel.entitlements;
|
||||
CURRENT_PROJECT_VERSION = 3682;
|
||||
CURRENT_PROJECT_VERSION = 3683;
|
||||
INFOPLIST_FILE = Passepartout/Tunnel/Tunnel.plist;
|
||||
INFOPLIST_KEY_CFBundleDisplayName = "$(TARGET_NAME)";
|
||||
INFOPLIST_KEY_NSHumanReadableCopyright = "$(CFG_COPYRIGHT)";
|
||||
|
@ -1266,7 +1266,7 @@
|
|||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CODE_SIGN_ENTITLEMENTS = Passepartout/Intents/Intents.entitlements;
|
||||
CURRENT_PROJECT_VERSION = 3682;
|
||||
CURRENT_PROJECT_VERSION = 3683;
|
||||
ENABLE_USER_SCRIPT_SANDBOXING = YES;
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
INFOPLIST_FILE = Passepartout/Intents/Intents.plist;
|
||||
|
@ -1297,7 +1297,7 @@
|
|||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CODE_SIGN_ENTITLEMENTS = Passepartout/Intents/Intents.entitlements;
|
||||
CURRENT_PROJECT_VERSION = 3682;
|
||||
CURRENT_PROJECT_VERSION = 3683;
|
||||
ENABLE_USER_SCRIPT_SANDBOXING = YES;
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
INFOPLIST_FILE = Passepartout/Intents/Intents.plist;
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
* Skip onboarding migration if no migratable profiles (#1002)
|
||||
* Fix TV active toggle color when on-demand
|
||||
* Fix incorrect selection of VPN preset (#996)
|
||||
* Exclude OpenVPN endpoints (#987)
|
||||
* Fix missing animations in profiles list (#986)
|
||||
* Select preset matching current filter (#985)
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
* Skip onboarding migration if no migratable profiles (#1002)
|
||||
* Fix TV active toggle color when on-demand
|
||||
* Fix incorrect selection of VPN preset (#996)
|
||||
* Exclude OpenVPN endpoints (#987)
|
||||
* Fix missing animations in profiles list (#986)
|
||||
* Select preset matching current filter (#985)
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
* Skip onboarding migration if no migratable profiles (#1002)
|
||||
* Fix TV active toggle color when on-demand
|
||||
* Fix incorrect selection of VPN preset (#996)
|
||||
* Exclude OpenVPN endpoints (#987)
|
||||
* Fix missing animations in profiles list (#986)
|
||||
* Select preset matching current filter (#985)
|
||||
|
|
Loading…
Reference in New Issue