Commit 37dc003 1 parent 2f73465 commit 37dc003 Copy full SHA for 37dc003
File tree 4 files changed +11
-19
lines changed
4 files changed +11
-19
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
+ ## 1.0.1
3
+ * Remove auto-updating for preparation of alfred gallery
4
+ * Increase time delay so Notable can load before executing commands
5
+ * Fix typos in comments
Original file line number Diff line number Diff line change 3
3
<plist version =" 1.0" >
4
4
<dict >
5
5
<key >bundleid </key >
6
- <string >come .alfredapp.notable </string >
6
+ <string >com .alfredapp.notable </string >
7
7
<key >category </key >
8
8
<string >Tools </string >
9
9
<key >connections </key >
@@ -524,7 +524,7 @@ end tell</string>
524
524
<key >config </key >
525
525
<dict >
526
526
<key >seconds </key >
527
- <string >1 </string >
527
+ <string >1.5 </string >
528
528
</dict >
529
529
<key >type </key >
530
530
<string >alfred.workflow.utility.delay </string >
@@ -765,7 +765,7 @@ end tell</string>
765
765
<key >config </key >
766
766
<dict >
767
767
<key >seconds </key >
768
- <string >1 </string >
768
+ <string >1.5 </string >
769
769
</dict >
770
770
<key >type </key >
771
771
<string >alfred.workflow.utility.delay </string >
@@ -956,10 +956,8 @@ Please drop the folder which contains your notes into the User Configuration tab
956
956
<string >notes_location </string >
957
957
</dict >
958
958
</array >
959
- <key >variablesdontexport </key >
960
- <array />
961
959
<key >version </key >
962
- <string >1.0.0 </string >
960
+ <string >1.0.1 </string >
963
961
<key >webaddress </key >
964
962
<string >https://github.com/kostyafarber/alfred-notable-workflow </string >
965
963
</dict >
Original file line number Diff line number Diff line change 16
16
NOTABLE_URI = "notable://"
17
17
NOTABLE_NOTE = "note/"
18
18
19
- UPDATE_SETTINGS = {'github_slug' : 'kostyafarber/alfred-notable-workflow' }
20
-
21
19
log = None
22
20
23
21
def get_notes () -> list :
@@ -73,13 +71,6 @@ def search_key_notes(note: dict) -> str:
73
71
74
72
75
73
def main (wf ):
76
- # is update available?
77
- if wf .update_available :
78
- wf .add_item ('A newer version is available' ,
79
- '↩ to install update' ,
80
- autocomplete = 'workflow:update' ,
81
- icon = ICON_UPDATE )
82
-
83
74
# Get query from Alfred
84
75
if len (wf .args ):
85
76
query = wf .args [0 ]
@@ -111,14 +102,13 @@ def main(wf):
111
102
valid = True ,
112
103
)
113
104
114
- # let user open note in deafult editor instead
105
+ # let user open note in default editor instead
115
106
item .add_modifier (key = "cmd" , arg = note ["path" ], valid = True )
116
107
117
108
wf .send_feedback ()
118
109
119
110
120
111
if __name__ == "__main__" :
121
- wf = Workflow3 (libraries = ["./lib" ],
122
- update_settings = UPDATE_SETTINGS )
112
+ wf = Workflow3 (libraries = ["./lib" ])
123
113
log = wf .logger
124
114
sys .exit (wf .run (main ))
Original file line number Diff line number Diff line change 1
- 1.0.0
1
+ 1.0.1
You can’t perform that action at this time.
0 commit comments