|
8 | 8 | "plugin.author": "Jonathan Clark", |
9 | 9 | "plugin.url": "https://github.com/NotePlan/plugins/blob/main/jgclark.WindowTools/README.md", |
10 | 10 | "plugin.changelog": "https://github.com/NotePlan/plugins/blob/main/jgclark.WindowTools/CHANGELOG.md", |
11 | | - "plugin.version": "1.5.0", |
| 11 | + "plugin.version": "1.5.1", |
12 | 12 | "plugin.releaseStatus": "full", |
13 | | - "plugin.lastUpdateInfo": "v1.5.0: Use 'smart placement' when opening new Editor windows in the commands. New setting 'Use Smart Placement?' allows you to turn off this behaviour.\nv1.4.0: New '/reset windows' command.\nNow can save folders andsidebar width in Window Sets, and open to that width (requires NP v3.19.2).\nOther improvements to Window Sets.\nv1.3.0: Improve note and heading pickers. Support for Teamspace notes in /open note... commands. Fix to Window Set selection.\nv1.2.1: update list of plugin windows it knows about\nv1.2.0: new command 'swap splits', plus positioning bug fix\nv1.1.2: Bug fixes.\nv1.1.1: improve migration from previous plugin ('WindowSets')\nv1.1.0: added x-callbacks for /open Window Set, /open note in new split and /open note in new window commands.\nv1.0.0: 3 new commands, and renamed plugin from 'Window Sets'. Also moved 3 window-related commands from 'Note Helpers' plugin.\nv0.4.0: First public release, and requires NP v3.9.8.", |
| 13 | + "plugin.lastUpdateInfo": "v1.5.1: under-the-hood changes to deal with changes in NP's window handling.\nv1.5.0: Use 'smart placement' when opening new Editor windows in the commands. New setting 'Use Smart Placement?' allows you to turn off this behaviour.\nv1.4.0: New '/reset windows' command.\nNow can save folders andsidebar width in Window Sets, and open to that width (requires NP v3.19.2).\nOther improvements to Window Sets.", |
14 | 14 | "plugin.dependencies": [], |
15 | 15 | "plugin.script": "script.js", |
16 | 16 | "plugin.isRemote": "false", |
|
116 | 116 | "description": "Delete a saved set of windows/panes", |
117 | 117 | "jsFunction": "deleteWindowSet" |
118 | 118 | }, |
| 119 | + { |
| 120 | + "name": "onEditorWillSave", |
| 121 | + "hidden": true, |
| 122 | + "description": "Trigger entry point to sync WS note to local WS preference", |
| 123 | + "jsFunction": "onEditorWillSave" |
| 124 | + }, |
| 125 | + { |
| 126 | + "name": "log current windows list", |
| 127 | + "alias": [ |
| 128 | + "lwl" |
| 129 | + ], |
| 130 | + "description": "Log list of currently-open windows/panes", |
| 131 | + "jsFunction": "logWindowsList" |
| 132 | + }, |
| 133 | + { |
| 134 | + "name": "test: log preference", |
| 135 | + "alias": [ |
| 136 | + "lp" |
| 137 | + ], |
| 138 | + "description": "Log local preference", |
| 139 | + "jsFunction": "logPreferenceAskUser" |
| 140 | + }, |
| 141 | + { |
| 142 | + "name": "test: unset preference", |
| 143 | + "alias": [ |
| 144 | + "up" |
| 145 | + ], |
| 146 | + "description": "Unset local preference", |
| 147 | + "jsFunction": "unsetPreferenceAskUser" |
| 148 | + }, |
119 | 149 | { |
120 | 150 | "name": "test: write window set note to pref", |
| 151 | + "hidden": true, |
121 | 152 | "alias": [ |
122 | 153 | "wnp" |
123 | 154 | ], |
|
126 | 157 | }, |
127 | 158 | { |
128 | 159 | "name": "test: write window set pref to note", |
| 160 | + "hidden": true, |
129 | 161 | "alias": [ |
130 | 162 | "wpn" |
131 | 163 | ], |
132 | 164 | "description": "Write WS local preference to note", |
133 | 165 | "jsFunction": "writeWSsToNote" |
134 | 166 | }, |
135 | | - { |
136 | | - "name": "onEditorWillSave", |
137 | | - "hidden": true, |
138 | | - "description": "Trigger entry point to sync WS note to local WS preference", |
139 | | - "jsFunction": "onEditorWillSave" |
140 | | - }, |
141 | 167 | { |
142 | 168 | "name": "test: log current window sets", |
143 | 169 | "alias": [ |
|
146 | 172 | "description": "Log my available windows sets", |
147 | 173 | "jsFunction": "logWindowSets" |
148 | 174 | }, |
149 | | - { |
150 | | - "name": "test: log current windows list", |
151 | | - "alias": [ |
152 | | - "lwl" |
153 | | - ], |
154 | | - "description": "Log list of currently-open windows/panes", |
155 | | - "jsFunction": "logWindowsList" |
156 | | - }, |
157 | 175 | { |
158 | 176 | "name": "test: set editor width", |
| 177 | + "hidden": true, |
159 | 178 | "alias": [ |
160 | 179 | "sew" |
161 | 180 | ], |
|
164 | 183 | }, |
165 | 184 | { |
166 | 185 | "name": "test: delete all saved Window Sets", |
| 186 | + "hidden": true, |
167 | 187 | "description": "Delete all saved window sets", |
168 | 188 | "jsFunction": "deleteAllSavedWindowSets" |
169 | 189 | }, |
170 | | - { |
171 | | - "name": "test: log preference", |
172 | | - "alias": [ |
173 | | - "lp" |
174 | | - ], |
175 | | - "description": "Log local preference", |
176 | | - "jsFunction": "logPreferenceAskUser" |
177 | | - }, |
178 | | - { |
179 | | - "name": "test: unset preference", |
180 | | - "alias": [ |
181 | | - "up" |
182 | | - ], |
183 | | - "description": "Unset local preference", |
184 | | - "jsFunction": "unsetPreferenceAskUser" |
185 | | - }, |
186 | | - { |
187 | | - "name": "test: updatePlugin", |
188 | | - "description": "Test migration to newer name", |
189 | | - "jsFunction": "testUpdate" |
190 | | - }, |
191 | 190 | { |
192 | 191 | "name": "test: log sidebar width", |
| 192 | + "hidden": true, |
193 | 193 | "description": "Log the current sidebar width (requires NP v3.19.2 or later)", |
194 | 194 | "alias": [ |
195 | 195 | "lsbw" |
|
198 | 198 | }, |
199 | 199 | { |
200 | 200 | "name": "test: set sidebar width", |
| 201 | + "hidden": true, |
201 | 202 | "description": "Set the sidebar width (requires NP v3.19.2 or later)", |
202 | 203 | "alias": [ |
203 | 204 | "ssbw" |
|
209 | 210 | }, |
210 | 211 | { |
211 | 212 | "name": "test: toggle sidebar", |
| 213 | + "hidden": true, |
212 | 214 | "description": "Toggle the sidebar (requires NP v3.19.2 or later)", |
213 | 215 | "alias": [ |
214 | 216 | "tsb" |
|
217 | 219 | }, |
218 | 220 | { |
219 | 221 | "name": "test: open sidebar", |
| 222 | + "hidden": true, |
220 | 223 | "description": "Open the sidebar (requires NP v3.19.2 or later)", |
221 | 224 | "alias": [ |
222 | 225 | "osb" |
|
225 | 228 | }, |
226 | 229 | { |
227 | 230 | "name": "test: close sidebar", |
| 231 | + "hidden": true, |
228 | 232 | "description": "Close the sidebar (requires NP v3.19.2 or later)", |
229 | 233 | "alias": [ |
230 | 234 | "csb" |
|
0 commit comments