Skip to content

Commit

Permalink
Deal with more login issues (#183)
Browse files Browse the repository at this point in the history
* FIX: Tags can now contain all language characters.
FXI: Project names can now have emojis.
FEATURE: User can choose limiting Projects and/or Tags.

closes #151
closes #171
closes #175
closes #167

* Fix: Add missed File

* Fix: Deal with more login issues
Fix: respect cookie setting from Ticktick
Fix: rationalize Unique ID settings

Closes #179
  • Loading branch information
thesamim authored Oct 21, 2024
1 parent cd0f176 commit cc9caec
Show file tree
Hide file tree
Showing 8 changed files with 184 additions and 104 deletions.
2 changes: 1 addition & 1 deletion dist/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "tickticksync",
"name": "TickTickSync",
"version": "1.0.36",
"version": "1.0.37",
"minAppVersion": "1.0.0",
"description": "Sync TickTick tasks to Obsidian, and Obsidian tasks to TickTick",
"author": "thesamim",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "tickticksync",
"name": "TickTickSync",
"version": "1.0.36",
"version": "1.0.37",
"minAppVersion": "1.0.0",
"description": "Sync TickTick tasks to Obsidian, and Obsidian tasks to TickTick",
"author": "thesamim",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tickticksync",
"version": "1.0.36",
"version": "1.0.37",
"description": "Sync TickTick tasks to Obsidian, and Obsidian tasks to TickTick",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/TicktickRestAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ export class TickTickRestAPI {

} catch (error) {
console.error('Error get project groups', error);
new Notice("Unable to get Tasks: " + error, 0)
new Notice("Unable to get Tasks: " + errorString , 0)
return false
}
}
Expand Down
Loading

0 comments on commit cc9caec

Please sign in to comment.