└── Readme.md /Readme.md: -------------------------------------------------------------------------------- 1 | ## Installation 2 | 3 | Requirement: macOS above 11.0 4 | 5 | As I did't register the Apple developer account, the app is not signed. There might be some errors when you open the APP. 6 | 7 | Try right click the APP -> Open ThinkNote.app 8 | 9 | 1. If encount this error:“ThinkNote.app is damaged and can’t be opened. You should move it to the Trash” 10 | 11 | You may check the option  -> System Preference -> Security & Privacy -> Allow apps downloaded from: Anywhere. 12 | 13 | If there is no such option, try below command. 14 | 15 | ``` 16 | sudo spctl --master-disable 17 | ``` 18 | 19 | then check if the 'Anywhere' option exist. 20 | 21 | 2. If encount this error:“ThinkNote.app” is damaged and can’t be opened. You should move it to the Trash. Try open Terminal, type below command 22 | 23 | ``` 24 | cd /path/to/ThinkNote.app/ 25 | xattr -r -c ThinkNote.app 26 | ``` 27 | 28 | then right click the APP -> Open ThinkNote.app 29 | 30 | If you failed still,please DM me on Twitter:https://twitter.com/michaelwong666 31 | 32 | 33 | ## Data backup 34 | 35 | ThinkNote use SQLite to pesistent data. The db directory locates in: 36 | 37 | ~/Library/Containers/org.huangqian.ThinkNote/Data/Applications/thinknote.sqlite3 38 | 39 | You can simplely backup the thinknote.sqlite3 file. 40 | --------------------------------------------------------------------------------