So messing with X/Twitter I've figured out how to enable and disable liquid glass (to enable the post button again), and also how to fix replies and posts, the only issue that remains is DM's asking for the app to be updated. So once that issue is resolved.... X/Twitter will be fully stable again
anyway heres a guide on how to do it and also a test IPA posted at the end if you want to try it out for now.
## What turns Liquid Glass off?
The main app plist key:
UIDesignRequiresCompatibility
- If this key is
true, Liquid Glass is disabled. - If this key is missing, Liquid Glass is usually allowed.
Main file to check inside an extracted IPA:
Payload/Twitter.app/Info.plist
## Disable Liquid Glass
Set this key to true:
<key>UIDesignRequiresCompatibility</key>
<true/>
Fast command:
plutil -replace UIDesignRequiresCompatibility -bool YES "/path/to/Payload/Twitter.app/Info.plist"
Example:
plutil -replace UIDesignRequiresCompatibility -bool YES "/Users/moekanan/Downloads/Payload/Twitter.app/Info.plist"
## Enable Liquid Glass
Best method: remove the key completely.
Fast command:
plutil -remove UIDesignRequiresCompatibility "/path/to/Payload/Twitter.app/Info.plist"
Example:
plutil -remove UIDesignRequiresCompatibility "/Users/moekanan/Downloads/Payload/Twitter.app/Info.plist"
If you want to check the current value first:
plutil -extract UIDesignRequiresCompatibility raw -expect bool "/path/to/Payload/Twitter.app/Info.plist"
Next is Fixing the Posting and Replies issue....Surprisingly easy
Extract the ipa, open info.plist, change the version number to 10.61
Done
Only issue that remains to be fixed is the annoying DM popup asking to update. Again this works on the latest ipa of 11.82.1
TEST IPA Below of Latest Neofreebird, ill also upload latest MoeMulti and other X Variants Later this week!