Skip to content

Commit

Permalink
Release v4.6.1
Browse files Browse the repository at this point in the history
- Fixed the Grok drawer animation sometimes being visible when hiding Grok
- Fixed premium upsells sometimes being visible in your own profile page on mobile
- Fixed hiding the new Radar premium upsell in Search results
- Fixed the new Radar premium upsell breaking display of Search filters when hiding sidebar contents
- Enabled use of the experimental "Tweak new layout" option on mobile, as the new layout affects mobile too
- Added some initial tweaks for the new layout on mobile
- Removed restoring the notification count on desktop from new layout tweaks, as Twitter fixed this
  • Loading branch information
insin committed Jan 28, 2025
1 parent 8514980 commit c641b39
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion manifest.mv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://jbscript.dev/control-panel-for-twitter",
"version": "4.6.0",
"version": "4.6.1",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
Expand Down
2 changes: 1 addition & 1 deletion manifest.mv3.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://jbscript.dev/control-panel-for-twitter",
"version": "4.6.0",
"version": "4.6.1",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
Expand Down
2 changes: 1 addition & 1 deletion options.js
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ let $showBlueReplyFollowersCountLabel = /** @type {HTMLElement} */ (document.que
//#region Utility functions
function exportConfig() {
let $a = document.createElement('a')
$a.download = 'control-panel-for-twitter-v4.6.0.config.txt'
$a.download = 'control-panel-for-twitter-v4.6.1.config.txt'
$a.href = URL.createObjectURL(new Blob([
JSON.stringify(optionsConfig, null, 2)
], {type: 'text/plain'}))
Expand Down
8 changes: 4 additions & 4 deletions safari/Control Panel for Twitter.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 79;
CURRENT_PROJECT_VERSION = 80;
DEAD_CODE_STRIPPING = YES;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
Expand All @@ -648,7 +648,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MARKETING_VERSION = 4.6.0;
MARKETING_VERSION = 4.6.1;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -690,7 +690,7 @@
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 79;
CURRENT_PROJECT_VERSION = 80;
DEAD_CODE_STRIPPING = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
Expand All @@ -704,7 +704,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MARKETING_VERSION = 4.6.0;
MARKETING_VERSION = 4.6.1;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SWIFT_COMPILATION_MODE = wholemodule;
Expand Down
2 changes: 1 addition & 1 deletion safari/Shared (Extension)/Resources/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescriptionShort__",
"homepage_url": "https://jbscript.dev/control-panel-for-twitter",
"version": "4.6.0",
"version": "4.6.1",
"icons": {
"48": "icon48.png",
"96": "icon96.png",
Expand Down
2 changes: 1 addition & 1 deletion script.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// @match https://x.com/*
// @match https://mobile.x.com/*
// @run-at document-start
// @version 181
// @version 182
// ==/UserScript==
void function() {

Expand Down

0 comments on commit c641b39

Please sign in to comment.