From 722da3d5e2735fc3e7aade9dc2d1cc646aa93c90 Mon Sep 17 00:00:00 2001 From: Jonny Buchanan Date: Wed, 22 May 2024 18:25:28 +1000 Subject: [PATCH] Release v4.1.1 - Fixed switching between tabs on the Home timeline, after Twitter changed the timeline structure - Fixed redirecting away from the Home timeline when it's disabled --- manifest.mv2.json | 2 +- manifest.mv3.json | 2 +- options.js | 2 +- .../Control Panel for Twitter.xcodeproj/project.pbxproj | 8 ++++---- safari/Shared (Extension)/Resources/manifest.json | 2 +- script.js | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/manifest.mv2.json b/manifest.mv2.json index 6a4dcff..dcd5912 100644 --- a/manifest.mv2.json +++ b/manifest.mv2.json @@ -4,7 +4,7 @@ "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "homepage_url": "https://github.com/insin/control-panel-for-twitter/", - "version": "4.1.0", + "version": "4.1.1", "icons": { "16": "icons/icon16.png", "32": "icons/icon32.png", diff --git a/manifest.mv3.json b/manifest.mv3.json index ea87f7e..489d472 100644 --- a/manifest.mv3.json +++ b/manifest.mv3.json @@ -4,7 +4,7 @@ "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "homepage_url": "https://github.com/insin/control-panel-for-twitter/", - "version": "4.1.0", + "version": "4.1.1", "icons": { "16": "icons/icon16.png", "32": "icons/icon32.png", diff --git a/options.js b/options.js index 313741f..71a4fe8 100644 --- a/options.js +++ b/options.js @@ -257,7 +257,7 @@ let $showBlueReplyFollowersCountLabel = /** @type {HTMLElement} */ (document.que //#region Utility functions function exportConfig() { let $a = document.createElement('a') - $a.download = 'control-panel-for-twitter-v4.1.0.config.txt' + $a.download = 'control-panel-for-twitter-v4.1.1.config.txt' $a.href = URL.createObjectURL(new Blob([ JSON.stringify(optionsConfig, null, 2) ], {type: 'text/plain'})) diff --git a/safari/Control Panel for Twitter.xcodeproj/project.pbxproj b/safari/Control Panel for Twitter.xcodeproj/project.pbxproj index 609c50c..25d7484 100644 --- a/safari/Control Panel for Twitter.xcodeproj/project.pbxproj +++ b/safari/Control Panel for Twitter.xcodeproj/project.pbxproj @@ -628,7 +628,7 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 58; + CURRENT_PROJECT_VERSION = 59; DEAD_CODE_STRIPPING = YES; DEBUG_INFORMATION_FORMAT = dwarf; ENABLE_STRICT_OBJC_MSGSEND = YES; @@ -648,7 +648,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MARKETING_VERSION = 4.1.0; + MARKETING_VERSION = 4.1.1; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -690,7 +690,7 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 58; + CURRENT_PROJECT_VERSION = 59; DEAD_CODE_STRIPPING = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; @@ -704,7 +704,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MARKETING_VERSION = 4.1.0; + MARKETING_VERSION = 4.1.1; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; SWIFT_COMPILATION_MODE = wholemodule; diff --git a/safari/Shared (Extension)/Resources/manifest.json b/safari/Shared (Extension)/Resources/manifest.json index 432e25c..66b8ecd 100644 --- a/safari/Shared (Extension)/Resources/manifest.json +++ b/safari/Shared (Extension)/Resources/manifest.json @@ -4,7 +4,7 @@ "name": "__MSG_extensionName__", "description": "__MSG_extensionDescriptionShort__", "homepage_url": "https://github.com/insin/control-panel-for-twitter/", - "version": "4.1.0", + "version": "4.1.1", "icons": { "48": "icon48.png", "96": "icon96.png", diff --git a/script.js b/script.js index f833b0a..a55695c 100644 --- a/script.js +++ b/script.js @@ -8,7 +8,7 @@ // @match https://x.com/* // @match https://mobile.x.com/* // @run-at document-start -// @version 155 +// @version 156 // ==/UserScript== void function() {