Skip to content

Commit 97c5c0e

Browse files
committed
v4.10.0
- Added an option to hide Grok Tweets - Fixed the restored Twitter reply box placeholder for Japanese and a few other languages - Fixed restoring Twitter placeholders in the desktop Compose Tweet modal after using Drafts/Media/GIF search/Schedule - Fixed the empty title on the Messages page on desktop causing bugs on the next page you visit (e.g. For you timeline re-appearing in Home) - Removed top-level toggles for some groups of options in the options page
1 parent 14beb42 commit 97c5c0e

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

manifest.mv2.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "__MSG_extensionName__",
55
"description": "__MSG_extensionDescription__",
66
"homepage_url": "https://soitis.dev/control-panel-for-twitter",
7-
"version": "4.9.0",
7+
"version": "4.10.0",
88
"icons": {
99
"16": "icons/icon16.png",
1010
"32": "icons/icon32.png",

manifest.mv3.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "__MSG_extensionName__",
55
"description": "__MSG_extensionDescription__",
66
"homepage_url": "https://soitis.dev/control-panel-for-twitter",
7-
"version": "4.9.0",
7+
"version": "4.10.0",
88
"icons": {
99
"16": "icons/icon16.png",
1010
"32": "icons/icon32.png",

options.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@
744744
</section>
745745
</section>
746746

747-
<div id="version">v4.9.0<span id="debugCountdown"></span></div>
747+
<div id="version">v4.10.0<span id="debugCountdown"></span></div>
748748
</form>
749749
<script src="options.js"></script>
750750
</body>

options.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ let $showBlueReplyFollowersCountLabel = /** @type {HTMLElement} */ (document.que
284284
//#region Utility functions
285285
function exportConfig() {
286286
let $a = document.createElement('a')
287-
$a.download = 'control-panel-for-twitter-v4.9.0.config.txt'
287+
$a.download = 'control-panel-for-twitter-v4.10.0.config.txt'
288288
$a.href = URL.createObjectURL(new Blob([
289289
JSON.stringify(optionsConfig, null, 2)
290290
], {type: 'text/plain'}))

safari/Control Panel for Twitter.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@
628628
CLANG_WARN_UNREACHABLE_CODE = YES;
629629
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
630630
COPY_PHASE_STRIP = NO;
631-
CURRENT_PROJECT_VERSION = 87;
631+
CURRENT_PROJECT_VERSION = 88;
632632
DEAD_CODE_STRIPPING = YES;
633633
DEBUG_INFORMATION_FORMAT = dwarf;
634634
ENABLE_STRICT_OBJC_MSGSEND = YES;
@@ -648,7 +648,7 @@
648648
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
649649
GCC_WARN_UNUSED_FUNCTION = YES;
650650
GCC_WARN_UNUSED_VARIABLE = YES;
651-
MARKETING_VERSION = 4.9.0;
651+
MARKETING_VERSION = 4.10.0;
652652
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
653653
MTL_FAST_MATH = YES;
654654
ONLY_ACTIVE_ARCH = YES;
@@ -690,7 +690,7 @@
690690
CLANG_WARN_UNREACHABLE_CODE = YES;
691691
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
692692
COPY_PHASE_STRIP = NO;
693-
CURRENT_PROJECT_VERSION = 87;
693+
CURRENT_PROJECT_VERSION = 88;
694694
DEAD_CODE_STRIPPING = YES;
695695
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
696696
ENABLE_NS_ASSERTIONS = NO;
@@ -704,7 +704,7 @@
704704
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
705705
GCC_WARN_UNUSED_FUNCTION = YES;
706706
GCC_WARN_UNUSED_VARIABLE = YES;
707-
MARKETING_VERSION = 4.9.0;
707+
MARKETING_VERSION = 4.10.0;
708708
MTL_ENABLE_DEBUG_INFO = NO;
709709
MTL_FAST_MATH = YES;
710710
SWIFT_COMPILATION_MODE = wholemodule;

safari/Shared (Extension)/Resources/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "__MSG_extensionName__",
55
"description": "__MSG_extensionDescriptionShort__",
66
"homepage_url": "https://soitis.dev/control-panel-for-twitter",
7-
"version": "4.9.0",
7+
"version": "4.10.0",
88
"icons": {
99
"48": "icon48.png",
1010
"96": "icon96.png",

script.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// @match https://x.com/*
99
// @match https://mobile.x.com/*
1010
// @run-at document-start
11-
// @version 189
11+
// @version 190
1212
// ==/UserScript==
1313
void function() {
1414

0 commit comments

Comments
 (0)