All Premium features UNLOCKED.
- Upgrade or Install the original TickTick (Chinese Ticktick/dida365 will not work).
- 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. - Enjoy!
- Unlimited Habits
- Calendar view
Calendar Subscription- Maintain third-party calendar subscription (If you subscribe your calendar via Paid Ticktick (maybe even with trials version), after opting-out you can still use it)
- Widgets
- Reminders
- Themes
- Smoother Focus experience
- Use dnSpy
- Update these:
Approach 1:
// in ticktick_WPF.Models.UserModel
proEndDate=>new DateTime?(new DateTime(2030, 12, 25));
pro=>true;
Approach 2:
// 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");
}
}
// ticktick_WPF.Dal.UserDao
//public static bool IsPro()
//{
// return true; // force to true
//}