Tip
You can also find a MacOS version of this patch in the Unlimited TickTick - MacOS repository.
Tip
If you want to learn how you can do the same for Linux🐧/Electron version of the ticktick follow instructions by the community.
- Upgrade or Install the original TickTick (Chinese Ticktick/dida365 will not work - personally never tried it).
- Close the app from System tray completely.
- Copy the exe file inside installed path (usually
C:\Program Files (x86)\TickTick). Have a backup from the original exe file just in case.
Caution
Want the new version or Just got the update notification? First update the app from the app itself, then replace the patched exe file with the new one. This way you can keep enjoying the pro features without losing them after each update.
You can also download the final patched executable from the releases page.
If you don't have a local .NET development environment set up, or just prefer to build the patched app in the cloud, you can use GitHub Actions to generate your own patched executable.
- Fork this repository using the fork button on the top right.
- Go to the Actions tab on your newly forked repository. If prompted, click the button to enable workflows.
- On the left sidebar under "All workflows", click on Build Patched TickTick.
- Click the Run workflow button on the right side.
- Provide a direct URL to your original
TickTick.exefile (installed exe from program file, not the installer)(you can upload it to filebin.net, or any other hosting service that gives a direct download link [you might need to rename the .exe part to .ANYTHING to upload it, script will automaticaly rename it to exe). - Click Run workflow and wait for the build to finish.
- Go to the Releases section on the right side of your repository's main page. You will find a new Draft release containing your
TickTick_Patched.zipfile ready to download. - Download the ZIP, extract the
TickTick_Patched.exefile, and replace your originalTickTick.exelocated in your TickTick installation folder (usuallyC:\Program Files (x86)\TickTick).
- Calendar view
- Widgets
- Reminders
- Themes
⚠️ Unlimited Habits (Might not sync properly)⚠️ Some features might not work if it is restricted on server side
# Build and run
dotnet run -- "D:\TickTick.exe"
# Or build then run
dotnet build
dotnet bin/Debug/net8.0/TTPatcher.dll "D:\TickTick.exe"docker build -t ttpatcher .docker run --rm -v "/path/to/directory:/data" ttpatcher "/data/TickTick.exe"# Build image
docker build -t ttpatcher .
# Patch file (Windows)
# This should output to C:/Users/username/Desktop/TickTick_Patched.exe
docker run --rm -v "C:/Users/username/Desktop:/data" ttpatcher "/data/TickTick.exe"
# Patch file (WSL/Linux)
# This should output to /mnt/c/Users/username/Desktop/TickTick_Patched.exe
docker run --rm -v "/mnt/c/Users/username/Desktop:/data" ttpatcher "/data/TickTick.exe" - Use dnSpy
- Update these:
Approach 1: UserModel Property Modification
// in ticktick_WPF.Models.UserModel
proEndDate=>DateTime.MaxValue;
pro=>true;Approach 2: LocalSettings and UserDao Modification
// in ticktick_WPF.Resource.LocalSettings
public bool IsPro
{
get
{
return this.SettingsModel.IsPro;
}
set
{
this.SettingsModel.IsPro = true; //force it to true
this.OnPropertyChanged("IsPro");
}
}This repository is provided for informational and educational purposes only.