tiddlywiki 5.2.3 → 5.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (396) hide show
  1. package/bin/build-site.sh +11 -2
  2. package/bin/test.sh +1 -0
  3. package/boot/boot.js +9 -6
  4. package/core/images/layout-button.tid +4 -0
  5. package/core/images/mastodon.tid +6 -0
  6. package/core/language/en-GB/Buttons.multids +4 -0
  7. package/core/language/en-GB/ControlPanel.multids +3 -3
  8. package/core/language/en-GB/Fields.multids +2 -2
  9. package/core/language/en-GB/GettingStarted.tid +4 -3
  10. package/core/language/en-GB/Help/commands.tid +18 -0
  11. package/core/language/en-GB/Misc.multids +1 -0
  12. package/core/modules/commands/commands.js +42 -0
  13. package/core/modules/editor/engines/framed.js +12 -1
  14. package/core/modules/editor/factory.js +2 -2
  15. package/core/modules/filters/format/json.js +35 -0
  16. package/core/modules/filters/is/variable.js +2 -2
  17. package/core/modules/filters/json-ops.js +186 -0
  18. package/core/modules/filters/variables.js +9 -3
  19. package/core/modules/filters.js +15 -6
  20. package/core/modules/keyboard.js +13 -1
  21. package/core/modules/parsers/csvparser.js +25 -17
  22. package/core/modules/parsers/wikiparser/rules/macrodef.js +1 -1
  23. package/core/modules/parsers/wikiparser/rules/parsermode.js +68 -0
  24. package/core/modules/parsers/wikiparser/rules/styleinline.js +3 -3
  25. package/core/modules/parsers/wikiparser/wikiparser.js +4 -2
  26. package/core/modules/server/routes/put-tiddler.js +10 -0
  27. package/core/modules/startup/startup.js +5 -1
  28. package/core/modules/utils/csv.js +101 -23
  29. package/core/modules/utils/dom/dom.js +17 -2
  30. package/core/modules/utils/dom/modal.js +6 -0
  31. package/core/modules/utils/dom/popup.js +69 -6
  32. package/core/modules/utils/fakedom.js +2 -2
  33. package/core/modules/utils/linked-list.js +79 -75
  34. package/core/modules/utils/logger.js +3 -1
  35. package/core/modules/utils/parsetree.js +20 -10
  36. package/core/modules/utils/utils.js +3 -0
  37. package/core/modules/widgets/action-deletefield.js +2 -2
  38. package/core/modules/widgets/action-popup.js +10 -8
  39. package/core/modules/widgets/button.js +7 -2
  40. package/core/modules/widgets/checkbox.js +12 -5
  41. package/core/modules/widgets/error.js +63 -0
  42. package/core/modules/widgets/genesis.js +108 -0
  43. package/core/modules/widgets/importvariables.js +4 -1
  44. package/core/modules/widgets/keyboard.js +4 -0
  45. package/core/modules/widgets/let.js +3 -5
  46. package/core/modules/widgets/reveal.js +11 -10
  47. package/core/modules/widgets/select.js +9 -0
  48. package/core/modules/widgets/transclude.js +3 -5
  49. package/core/modules/widgets/widget.js +44 -18
  50. package/core/palettes/Blanca.tid +2 -0
  51. package/core/palettes/Blue.tid +2 -0
  52. package/core/palettes/BrightMute.tid +2 -0
  53. package/core/palettes/ContrastDark.tid +2 -0
  54. package/core/palettes/ContrastLight.tid +2 -0
  55. package/core/palettes/CupertinoDark.tid +2 -0
  56. package/core/palettes/DarkPhotos.tid +2 -0
  57. package/core/palettes/DesertSand.tid +2 -0
  58. package/core/palettes/GruvBoxDark.tid +2 -0
  59. package/core/palettes/Nord.tid +2 -0
  60. package/core/palettes/Rocker.tid +2 -0
  61. package/core/palettes/SolarFlare.tid +2 -0
  62. package/core/palettes/SolarizedDark.tid +2 -0
  63. package/core/palettes/SolarizedLight.tid +2 -0
  64. package/core/palettes/SpartanDay.tid +2 -0
  65. package/core/palettes/SpartanNight.tid +2 -0
  66. package/core/palettes/Twilight.tid +2 -0
  67. package/core/palettes/Vanilla.tid +2 -0
  68. package/core/templates/external-js/save-all-external-js.tid +4 -2
  69. package/core/templates/external-js/save-offline-external-js.tid +4 -2
  70. package/core/templates/single.tiddler.window.tid +1 -1
  71. package/core/ui/Actions/new-image.tid +1 -7
  72. package/core/ui/AdvancedSearch/FilterButtons/delete.tid +3 -3
  73. package/core/ui/AdvancedSearch/FilterButtons/dropdown.tid +2 -2
  74. package/core/ui/ControlPanel/Basics/retain-story-ordering-button.tid +3 -0
  75. package/core/ui/ControlPanel/Basics.tid +3 -2
  76. package/core/ui/EditTemplate/Preview/output.tid +1 -1
  77. package/core/ui/EditTemplate/body/default.tid +1 -1
  78. package/core/ui/EditTemplate/fields.tid +12 -2
  79. package/core/ui/EditTemplate.tid +7 -2
  80. package/core/ui/ImportListing.tid +5 -5
  81. package/core/ui/KeyboardShortcuts/advanced-search.tid +1 -1
  82. package/core/ui/PageControls/layout.tid +15 -0
  83. package/core/ui/PageTemplate.tid +1 -4
  84. package/core/ui/SideBar/More.tid +2 -2
  85. package/core/ui/SwitcherModal.tid +1 -0
  86. package/core/ui/TagManager.tid +75 -63
  87. package/core/ui/ViewTemplate/unfold.tid +6 -2
  88. package/core/ui/ViewTemplate.tid +1 -1
  89. package/core/wiki/config/DefaultTiddlersRetainStory.tid +3 -0
  90. package/core/wiki/config/OfficialPluginLibrary.tid +1 -1
  91. package/core/wiki/config/PageControlButtons.multids +1 -0
  92. package/core/wiki/macros/list.tid +7 -7
  93. package/core/wiki/macros/timeline.tid +6 -9
  94. package/core/wiki/macros/toc.tid +12 -8
  95. package/core/wiki/tags/PageControls.tid +1 -1
  96. package/editions/de-AT/tiddlywiki.info +0 -1
  97. package/editions/de-AT-server/tiddlywiki.info +0 -1
  98. package/editions/de-DE/tiddlywiki.info +0 -1
  99. package/editions/dev/tiddlers/HelloThere.tid +2 -1
  100. package/editions/dev/tiddlers/How to run a local plugin library for testing.tid +42 -0
  101. package/editions/dev/tiddlers/javascript-widget-tutorial/Child widgets tutorial.tid +140 -0
  102. package/editions/dev/tiddlers/javascript-widget-tutorial/Do nothing widget demo.tid +22 -0
  103. package/editions/dev/tiddlers/javascript-widget-tutorial/Do nothing widget tutorial.tid +25 -0
  104. package/editions/dev/tiddlers/javascript-widget-tutorial/Hello World demo.tid +23 -0
  105. package/editions/dev/tiddlers/javascript-widget-tutorial/Hello World widget tutorial.tid +18 -0
  106. package/editions/dev/tiddlers/javascript-widget-tutorial/Javascript Widget Tutorial.tid +37 -0
  107. package/editions/dev/tiddlers/javascript-widget-tutorial/Undefined widget demo.tid +18 -0
  108. package/editions/dev/tiddlers/javascript-widget-tutorial/Undefined widget tutorial.tid +11 -0
  109. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget attributes demo I.tid +48 -0
  110. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget attributes demo II.tid +48 -0
  111. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget attributes tutorial part I.tid +50 -0
  112. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget attributes tutorial part II.tid +33 -0
  113. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh demo I.tid +44 -0
  114. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh demo II.tid +40 -0
  115. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh demo III.tid +50 -0
  116. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh tutorial part I.tid +47 -0
  117. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh tutorial part II.tid +37 -0
  118. package/editions/dev/tiddlers/javascript-widget-tutorial/Widget refresh tutorial part III.tid +26 -0
  119. package/editions/dev/tiddlers/javascript-widget-tutorial/domwidget.js +47 -0
  120. package/editions/dev/tiddlers/javascript-widget-tutorial/domwidget.js.meta +6 -0
  121. package/editions/dev/tiddlers/javascript-widget-tutorial/donothing.js +16 -0
  122. package/editions/dev/tiddlers/javascript-widget-tutorial/donothing.js.meta +6 -0
  123. package/editions/dev/tiddlers/javascript-widget-tutorial/hello-attribute-optimized.js +51 -0
  124. package/editions/dev/tiddlers/javascript-widget-tutorial/hello-attribute-optimized.js.meta +6 -0
  125. package/editions/dev/tiddlers/javascript-widget-tutorial/hello-attribute.js +47 -0
  126. package/editions/dev/tiddlers/javascript-widget-tutorial/hello-attribute.js.meta +6 -0
  127. package/editions/dev/tiddlers/javascript-widget-tutorial/hello.js +35 -0
  128. package/editions/dev/tiddlers/javascript-widget-tutorial/hello.js.meta +6 -0
  129. package/editions/dev/tiddlers/javascript-widget-tutorial/refreshcount.js +43 -0
  130. package/editions/dev/tiddlers/javascript-widget-tutorial/refreshcount.js.meta +6 -0
  131. package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield-norefresh.js +36 -0
  132. package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield-norefresh.js.meta +6 -0
  133. package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield.js +46 -0
  134. package/editions/dev/tiddlers/javascript-widget-tutorial/tiddlerfield.js.meta +6 -0
  135. package/editions/dev/tiddlywiki.info +2 -1
  136. package/editions/fr-FR/tiddlers/$__editions_tw5.com_doc-macros.tid +1 -1
  137. package/editions/fr-FR/tiddlers/system/$__core_macros_list.tid +113 -0
  138. package/editions/fr-FR/tiddlers/system/$__core_macros_tag.tid +39 -0
  139. package/editions/fr-FR/tiddlers/system/$__core_ui_TagPickerTagTemplate.tid +25 -0
  140. package/editions/full/tiddlywiki.info +0 -1
  141. package/editions/introduction/tiddlywiki.info +0 -1
  142. package/editions/pluginlibrary/tiddlers/GettingStarted.tid +45 -0
  143. package/editions/pluginlibrary/tiddlers/PrereleaseLocalPluginLibrary.tid +6 -0
  144. package/editions/pluginlibrary/tiddlers/meta/SiteSubtitle.tid +3 -0
  145. package/editions/pluginlibrary/tiddlers/meta/SiteTitle.tid +3 -0
  146. package/editions/pluginlibrary/tiddlers/system/$__themes_tiddlywiki_vanilla_options_sidebarlayout.tid +3 -0
  147. package/editions/pluginlibrary/tiddlywiki.info +7 -0
  148. package/editions/prerelease/tiddlers/{Release 5.2.4.tid → Release 5.2.5.tid } +8 -17
  149. package/editions/prerelease/tiddlers/system/PrereleaseOfficialPluginLibrary.tid +1 -1
  150. package/editions/prerelease/tiddlers/system/TiddlyWiki Pre-release.tid +5 -1
  151. package/editions/test/tiddlers/tests/data/csv-cases.tid +282 -0
  152. package/editions/test/tiddlers/tests/data/filters/Recursion.tid +15 -0
  153. package/editions/test/tiddlers/tests/data/filters/fake-variables.tid +27 -0
  154. package/editions/test/tiddlers/tests/data/genesis-widget/DollarSigns.tid +14 -0
  155. package/editions/test/tiddlers/tests/data/genesis-widget/MultipleAttributes.tid +14 -0
  156. package/editions/test/tiddlers/tests/data/genesis-widget/Simple.tid +14 -0
  157. package/editions/test/tiddlers/tests/data/macros/NestedMacros.tid +36 -0
  158. package/editions/test/tiddlers/tests/data/pragmas/Parsermode.tid +36 -0
  159. package/editions/test/tiddlers/tests/data/transclude/Recursion.tid +13 -0
  160. package/editions/test/tiddlers/tests/modules/utils/test-csv.js +33 -0
  161. package/editions/test/tiddlers/tests/test-checkbox-widget.js +35 -1
  162. package/editions/test/tiddlers/tests/test-json-filters.js +112 -0
  163. package/editions/test/tiddlers/tests/test-linked-list.js +42 -2
  164. package/editions/test/tiddlers/tests/test-popup.js +63 -0
  165. package/editions/test/tiddlers/tests/test-utils.js +1 -0
  166. package/editions/test/tiddlers/tests/test-wikitext.js +16 -0
  167. package/editions/test/tiddlywiki.info +2 -1
  168. package/editions/translators/tiddlers/system/PageControlButtonsVisibility.multids +1 -0
  169. package/editions/translators/tiddlywiki.info +0 -1
  170. package/editions/tw.org/tiddlers/Code of Conduct.tid +4 -1
  171. package/editions/tw.org/tiddlers/Fundraising.tid +2 -2
  172. package/editions/tw5.com/tiddlers/Tables in WikiText CSS Utility Classes.tid +81 -0
  173. package/editions/tw5.com/tiddlers/_tw_shared/favicons/markplace.png +0 -0
  174. package/editions/tw5.com/tiddlers/_tw_shared/favicons/markplace.png.meta +3 -0
  175. package/editions/tw5.com/tiddlers/_tw_shared/sites/marketplace.tid +6 -0
  176. package/editions/tw5.com/tiddlers/_tw_shared/tags-TiddlyWikiSites.tid +1 -1
  177. package/editions/tw5.com/tiddlers/about/Funding TiddlyWiki.tid +19 -0
  178. package/editions/tw5.com/tiddlers/about/Open Collective.tid +14 -0
  179. package/editions/tw5.com/tiddlers/commands/CommandsCommand.tid +8 -0
  180. package/editions/tw5.com/tiddlers/commands/RenderTiddlerCommand.tid +2 -0
  181. package/editions/tw5.com/tiddlers/commands/RenderTiddlersCommand.tid +2 -0
  182. package/editions/tw5.com/tiddlers/commands/SaveTiddlerCommand.tid +2 -0
  183. package/editions/tw5.com/tiddlers/commands/SaveTiddlersCommand.tid +2 -0
  184. package/editions/tw5.com/tiddlers/community/plugins/GSD5.tid +2 -2
  185. package/editions/tw5.com/tiddlers/community/plugins/_JD Mobile Layout plugin_ by JD.tid +0 -1
  186. package/editions/tw5.com/tiddlers/community/resources/_Dropboard_ by Reid Gould.tid +0 -1
  187. package/editions/tw5.com/tiddlers/community/resources/_Hacks_ by Thomas Elmiger.tid +0 -2
  188. package/editions/tw5.com/tiddlers/community/resources/_MathCell_ by Ste Wilson.tid +0 -1
  189. package/editions/tw5.com/tiddlers/community/resources/_TiddlyServer_ by Matt Lauber.tid +0 -1
  190. package/editions/tw5.com/tiddlers/community/resources/_X3DOM for TiddlyWiki 5_ by Jamal Wills.tid +0 -1
  191. package/editions/tw5.com/tiddlers/concepts/CoordinateSystems.tid +42 -0
  192. package/editions/tw5.com/tiddlers/concepts/KeyboardShortcutTiddler.tid +2 -0
  193. package/editions/tw5.com/tiddlers/definitions/Federatial.tid +13 -1
  194. package/editions/tw5.com/tiddlers/definitions/HTML Block Elements.tid +9 -0
  195. package/editions/tw5.com/tiddlers/definitions/TiddlyWikiClassic.tid +3 -1
  196. package/editions/tw5.com/tiddlers/demonstrations/TableOfContentsMacro Selective Expandable Example custom icons.tid +16 -0
  197. package/editions/tw5.com/tiddlers/demonstrations/Tasks/TaskManagementExampleDraggable.tid +1 -1
  198. package/editions/tw5.com/tiddlers/features/DateFormat.tid +27 -3
  199. package/editions/tw5.com/tiddlers/features/JSON in TiddlyWiki.tid +1 -1
  200. package/editions/tw5.com/tiddlers/features/Modals.tid +3 -0
  201. package/editions/tw5.com/tiddlers/filters/examples/format Operator (Examples).tid +5 -2
  202. package/editions/tw5.com/tiddlers/filters/format.tid +5 -4
  203. package/editions/tw5.com/tiddlers/filters/jsonextract.tid +66 -0
  204. package/editions/tw5.com/tiddlers/filters/jsonget.tid +93 -0
  205. package/editions/tw5.com/tiddlers/filters/jsonindexes.tid +65 -0
  206. package/editions/tw5.com/tiddlers/filters/jsontype.tid +74 -0
  207. package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted.tid +3 -7
  208. package/editions/tw5.com/tiddlers/hellothere/HelloThere.tid +23 -22
  209. package/editions/tw5.com/tiddlers/hellothere/HelloThumbnail.tid +1 -1
  210. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Funding.tid +10 -0
  211. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Grok TiddlyWiki.tid +2 -0
  212. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Introduction Video.tid +2 -0
  213. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Latest Version.tid +9 -1
  214. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Marketplace.tid +10 -0
  215. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWikiLinks.tid +3 -1
  216. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail_-_Federatial.tid +11 -0
  217. package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting Default Story Ordering.tid +4 -0
  218. package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting Sync System Tiddlers From Server.tid +13 -0
  219. package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting SyncLogging.tid +13 -0
  220. package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting_ More Tabs Horizontal.tid +7 -0
  221. package/editions/tw5.com/tiddlers/howtos/How to create keyboard shortcuts.tid +2 -0
  222. package/editions/tw5.com/tiddlers/howtos/Reading data from JSON tiddlers.tid +10 -1
  223. package/editions/tw5.com/tiddlers/images/Federatial.png +0 -0
  224. package/editions/tw5.com/tiddlers/images/Federatial.png.meta +3 -0
  225. package/editions/tw5.com/tiddlers/images/Funding.png +0 -0
  226. package/editions/tw5.com/tiddlers/images/{TiddlyMap.png.meta → Funding.png.meta} +1 -1
  227. package/editions/tw5.com/tiddlers/images/Marketplace Banner.png +0 -0
  228. package/editions/tw5.com/tiddlers/images/Marketplace Banner.png.meta +3 -0
  229. package/editions/tw5.com/tiddlers/images/New Release Banner.png +0 -0
  230. package/editions/tw5.com/tiddlers/macros/ListMacro.tid +3 -1
  231. package/editions/tw5.com/tiddlers/macros/TableOfContentsMacro.tid +36 -2
  232. package/editions/tw5.com/tiddlers/marketplace/TiddlyWiki Marketplace.tid +18 -0
  233. package/editions/tw5.com/tiddlers/mechanisms/PopupMechanism.tid +1 -0
  234. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-modal.tid +4 -2
  235. package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-new-tiddler.tid +1 -1
  236. package/editions/tw5.com/tiddlers/nodejs/Installing TiddlyWiki on Node.js.tid +2 -2
  237. package/editions/tw5.com/tiddlers/pragmas/Pragma_ _parsermode.tid +17 -0
  238. package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.4.tid +140 -0
  239. package/editions/tw5.com/tiddlers/releasenotes/Releases.tid +1 -1
  240. package/editions/tw5.com/tiddlers/saving/Emergency Tiddler Export.tid +1 -1
  241. package/editions/tw5.com/tiddlers/saving/Saving on TiddlyHost.tid +1 -1
  242. package/editions/tw5.com/tiddlers/saving/Saving on TiddlySpot.tid +0 -1
  243. package/editions/tw5.com/tiddlers/saving/Saving with Polly.tid +1 -0
  244. package/editions/tw5.com/tiddlers/saving/Saving.tid +12 -5
  245. package/editions/tw5.com/tiddlers/saving/TiddlyBucket - Save to AWS or Google Storage.tid +15 -0
  246. package/editions/tw5.com/tiddlers/system/doc-macros.tid +1 -1
  247. package/editions/tw5.com/tiddlers/system/tw5.com-card-template.tid +1 -16
  248. package/editions/tw5.com/tiddlers/system/tw5.com-styles.tid +168 -40
  249. package/editions/tw5.com/tiddlers/system/version-macros.tid +3 -4
  250. package/editions/tw5.com/tiddlers/system/wikitext-macros.tid +43 -15
  251. package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ClassFilters_PageTemplate.tid +9 -0
  252. package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ClassFilters_TiddlerTemplate.tid +9 -0
  253. package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_Filter.tid +2 -2
  254. package/editions/tw5.com/tiddlers/testimonials/Testimonials - Joe Armstrong.tid +8 -0
  255. package/editions/tw5.com/tiddlers/testimonials/Testimonials - Network World.tid +8 -0
  256. package/editions/tw5.com/tiddlers/testimonials/Testimonials - Product Hunt.tid +6 -0
  257. package/editions/tw5.com/tiddlers/webserver/Using the external JavaScript template.tid +10 -10
  258. package/editions/tw5.com/tiddlers/webserver/WebServer API_ Get All Tiddlers.tid +3 -1
  259. package/editions/tw5.com/tiddlers/widgets/ActionPopupWidget.tid +4 -3
  260. package/editions/tw5.com/tiddlers/widgets/ButtonWidget.tid +2 -1
  261. package/editions/tw5.com/tiddlers/widgets/DraggableWidget.tid +2 -1
  262. package/editions/tw5.com/tiddlers/widgets/ErrorWidget.tid +17 -0
  263. package/editions/tw5.com/tiddlers/widgets/EventCatcherWidget.tid +4 -3
  264. package/editions/tw5.com/tiddlers/widgets/GenesisWidget.tid +41 -0
  265. package/editions/tw5.com/tiddlers/widgets/LetWidget.tid +4 -1
  266. package/editions/tw5.com/tiddlers/widgets/ScrollableWidget.tid +1 -1
  267. package/editions/tw5.com/tiddlers/widgets/SelectWidget.tid +1 -0
  268. package/editions/tw5.com/tiddlers/wikitext/Macro Definitions in WikiText.tid +27 -4
  269. package/editions/tw5.com/tiddlers/wikitext/Styles and Classes in WikiText.tid +1 -1
  270. package/editions/tw5.com/tiddlers/wikitext/Table Classes Captions Headers and Footers.tid +20 -0
  271. package/editions/tw5.com/tiddlers/wikitext/Tables in WikiText.tid +3 -13
  272. package/editions/tw5.com/tiddlers/wikitext/Utility Classes.tid +20 -0
  273. package/editions/tw5.com/tiddlers/wikitext/parser/WikiText Parser Modes.tid +1 -1
  274. package/editions/twitter-archivist/tiddlers/DefaultTiddlers.tid +4 -0
  275. package/editions/twitter-archivist/tiddlers/HelloThere.tid +9 -0
  276. package/editions/twitter-archivist/tiddlers/SiteSubtitle.tid +3 -0
  277. package/editions/twitter-archivist/tiddlers/SiteTitle.tid +3 -0
  278. package/editions/twitter-archivist/tiddlywiki.info +16 -0
  279. package/languages/ar-PS/ControlPanel.multids +1 -1
  280. package/languages/ca-ES/ControlPanel.multids +1 -1
  281. package/languages/cs-CZ/ControlPanel.multids +1 -1
  282. package/languages/da-DK/ControlPanel.multids +1 -1
  283. package/languages/de-DE/Buttons.multids +5 -1
  284. package/languages/de-DE/ControlPanel.multids +1 -1
  285. package/languages/de-DE/Help/commands.tid +14 -0
  286. package/languages/de-DE/Misc.multids +1 -0
  287. package/languages/el-GR/ControlPanel.multids +1 -1
  288. package/languages/es-ES/Buttons.multids +89 -87
  289. package/languages/es-ES/ControlPanel.multids +18 -1
  290. package/languages/es-ES/Docs/PaletteColours.multids +2 -2
  291. package/languages/es-ES/EditTemplate.multids +3 -0
  292. package/languages/es-ES/Fields.multids +4 -3
  293. package/languages/es-ES/GettingStarted.tid +4 -3
  294. package/languages/es-ES/Help/default.tid +4 -1
  295. package/languages/es-ES/Help/listen.tid +0 -1
  296. package/languages/es-ES/Help/render.tid +2 -2
  297. package/languages/es-ES/Import.multids +1 -1
  298. package/languages/es-ES/Misc.multids +2 -1
  299. package/languages/es-ES/SideBar.multids +1 -0
  300. package/languages/es-ES/Snippets/ListByTag.tid +1 -1
  301. package/languages/fa-IR/ControlPanel.multids +1 -1
  302. package/languages/fr-FR/Buttons.multids +2 -0
  303. package/languages/fr-FR/ControlPanel.multids +4 -4
  304. package/languages/fr-FR/Misc.multids +3 -2
  305. package/languages/hi-IN/ControlPanel.multids +1 -1
  306. package/languages/ia-IA/ControlPanel.multids +1 -1
  307. package/languages/it-IT/ControlPanel.multids +1 -1
  308. package/languages/ja-JP/ControlPanel.multids +9 -9
  309. package/languages/ko-KR/ControlPanel.multids +1 -1
  310. package/languages/nl-NL/ControlPanel.multids +1 -1
  311. package/languages/pl-PL/Buttons.multids +7 -3
  312. package/languages/pl-PL/ControlPanel.multids +26 -24
  313. package/languages/pl-PL/GettingStarted.tid +4 -3
  314. package/languages/pl-PL/Help/commands.tid +18 -0
  315. package/languages/pl-PL/Help/render.tid +2 -2
  316. package/languages/pl-PL/Misc.multids +1 -0
  317. package/languages/pl-PL/ThemeTweaks.multids +3 -3
  318. package/languages/pt-BR/ControlPanel.multids +1 -1
  319. package/languages/pt-PT/ControlPanel.multids +1 -1
  320. package/languages/ru-RU/ControlPanel.multids +1 -1
  321. package/languages/sk-SK/ControlPanel.multids +1 -1
  322. package/languages/sl-SI/ControlPanel.multids +1 -1
  323. package/languages/sv-SE/ControlPanel.multids +1 -1
  324. package/languages/zh-Hans/Buttons.multids +36 -32
  325. package/languages/zh-Hans/ControlPanel.multids +19 -19
  326. package/languages/zh-Hans/CoreReadMe.tid +1 -1
  327. package/languages/zh-Hans/Docs/ModuleTypes.multids +2 -2
  328. package/languages/zh-Hans/Docs/PaletteColours.multids +8 -8
  329. package/languages/zh-Hans/Fields.multids +7 -7
  330. package/languages/zh-Hans/Filters.multids +1 -1
  331. package/languages/zh-Hans/GettingStarted.tid +8 -6
  332. package/languages/zh-Hans/Help/commands.tid +18 -0
  333. package/languages/zh-Hans/Help/fetch.tid +6 -6
  334. package/languages/zh-Hans/Help/init.tid +1 -1
  335. package/languages/zh-Hans/Help/listen.tid +5 -5
  336. package/languages/zh-Hans/Help/makelibrary.tid +1 -1
  337. package/languages/zh-Hans/Help/savetiddlers.tid +1 -1
  338. package/languages/zh-Hans/Help/server.tid +6 -6
  339. package/languages/zh-Hans/Help/setfield.tid +3 -3
  340. package/languages/zh-Hans/Import.multids +1 -1
  341. package/languages/zh-Hans/Misc.multids +12 -11
  342. package/languages/zh-Hans/Search.multids +6 -6
  343. package/languages/zh-Hans/SiteSubtitle.tid +1 -1
  344. package/languages/zh-Hans/Snippets/ListByTag.tid +1 -1
  345. package/languages/zh-Hans/ThemeTweaks.multids +7 -7
  346. package/languages/zh-Hans/TiddlerInfo.multids +2 -2
  347. package/languages/zh-Hant/Buttons.multids +4 -0
  348. package/languages/zh-Hant/ControlPanel.multids +2 -2
  349. package/languages/zh-Hant/Fields.multids +2 -2
  350. package/languages/zh-Hant/GettingStarted.tid +4 -3
  351. package/languages/zh-Hant/Help/commands.tid +18 -0
  352. package/languages/zh-Hant/Misc.multids +1 -0
  353. package/licenses/cla-individual.md +4 -0
  354. package/package.json +1 -1
  355. package/plugins/tiddlywiki/codemirror/engine.js +4 -0
  356. package/plugins/tiddlywiki/dynannotate/docs/readme.tid +2 -2
  357. package/plugins/tiddlywiki/dynannotate/modules/dynannotate.js +4 -2
  358. package/plugins/tiddlywiki/help/tabs/Support.tid +6 -2
  359. package/plugins/tiddlywiki/jasmine/command.js +33 -0
  360. package/plugins/tiddlywiki/jasmine/help.tid +24 -0
  361. package/plugins/tiddlywiki/jasmine/jasmine-plugin.js +24 -18
  362. package/plugins/tiddlywiki/jasmine/readme.tid +31 -1
  363. package/plugins/tiddlywiki/jasmine/run-wiki-based-tests.js +93 -0
  364. package/plugins/tiddlywiki/jasmine/startup.js +37 -0
  365. package/plugins/tiddlywiki/translators/macros/translatableStringEditor.tid +6 -0
  366. package/plugins/tiddlywiki/translators/system/styles.tid +5 -0
  367. package/plugins/tiddlywiki/twitter-archivist/Twitter Archives.tid +5 -0
  368. package/plugins/tiddlywiki/twitter-archivist/archivist.js +319 -0
  369. package/plugins/tiddlywiki/twitter-archivist/configTiddlerInfoMode.tid +2 -0
  370. package/plugins/tiddlywiki/twitter-archivist/loadtwitterarchive.js +53 -0
  371. package/plugins/tiddlywiki/twitter-archivist/macros.tid +222 -0
  372. package/plugins/tiddlywiki/twitter-archivist/plugin.info +6 -0
  373. package/plugins/tiddlywiki/twitter-archivist/readme.tid +33 -0
  374. package/plugins/tiddlywiki/twitter-archivist/spec.tid +62 -0
  375. package/plugins/tiddlywiki/twitter-archivist/startup.js +38 -0
  376. package/plugins/tiddlywiki/twitter-archivist/styles.tid +47 -0
  377. package/plugins/tiddlywiki/twitter-archivist/template-archive.tid +3 -0
  378. package/plugins/tiddlywiki/twitter-archivist/template-hashtag.tid +3 -0
  379. package/plugins/tiddlywiki/twitter-archivist/template-tweet.tid +3 -0
  380. package/plugins/tiddlywiki/twitter-archivist/template-tweeter.tid +3 -0
  381. package/plugins/tiddlywiki/twitter-archivist/todo.tid +15 -0
  382. package/plugins/tiddlywiki/twitter-archivist/usage.tid +18 -0
  383. package/plugins/tiddlywiki/twitter-archivist/view-template-body-cascade.tid +8 -0
  384. package/plugins/tiddlywiki/upgrade/UpgradeWizard.tid +3 -3
  385. package/readme.md +1 -1
  386. package/themes/tiddlywiki/vanilla/base.tid +131 -10
  387. package/editions/fr-FR/tiddlers/$__core_ui_TagTemplate.tid +0 -33
  388. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Classic.tid +0 -6
  389. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Developers.tid +0 -7
  390. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Gentle Guide.tid +0 -11
  391. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - HelpingTiddlyWiki.tid +0 -7
  392. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TWEUM2017.tid +0 -8
  393. package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyMap.tid +0 -6
  394. package/editions/tw5.com/tiddlers/images/Dev Thumbnail.jpg +0 -0
  395. package/editions/tw5.com/tiddlers/images/Dev Thumbnail.jpg.meta +0 -3
  396. package/editions/tw5.com/tiddlers/images/TiddlyMap.png +0 -0
@@ -1,6 +1,14 @@
1
1
  title: HelloThumbnail - Latest Version
2
2
  tags: HelloThumbnail
3
- caption: What's New in <<version>>
3
+ caption: What's New in v<<version>>
4
4
  link: Releases
5
5
  image: New Release Banner
6
6
  color: #fff
7
+
8
+ \define prerelease-regexp() [0-9]+\.[0-9]+\.[0-9]+\-prerelease
9
+ <$list filter="[<version>!regexp<prerelease-regexp>]" variable="ignore">
10
+ The latest version v<<version>> of ~TiddlyWiki (released on <$view field="released" tiddler={{{ [<version>addprefix[Release ]] }}} format="date" template="DDth MMM YYYY"/>)
11
+ </$list>
12
+ <$list filter="[<version>regexp<prerelease-regexp>]" variable="ignore">
13
+ This is a prerelease build for testing and review
14
+ </$list>
@@ -0,0 +1,10 @@
1
+ title: HelloThumbnail - Marketplace
2
+ tags: HelloThumbnail
3
+ color: #6B6E98
4
+ background-color: #EAE57D
5
+ image: TiddlyWiki Marketplace Banner
6
+ caption: ~TiddlyWiki Marketplace
7
+ link: TiddlyWiki Marketplace
8
+ ribbon-text: NEW
9
+
10
+ Explore commercial products and services for ~TiddlyWiki
@@ -2,5 +2,7 @@ title: HelloThumbnail - TiddlyWikiLinks
2
2
  tags: HelloThumbnail
3
3
  color: #D5B7EA
4
4
  image: TiddlyWikiLinks
5
- caption: links.tiddlywiki.com
5
+ caption: links.tiddlywiki.org
6
6
  link: Community Links Aggregator
7
+
8
+ Links to ~TiddlyWiki-related content collected by the community
@@ -0,0 +1,11 @@
1
+ background-color: #EDB431
2
+ caption: Federatial
3
+ color: #ff0
4
+ image: Federatial.png
5
+ link: Federatial
6
+ tags: HelloThumbnail
7
+ title: HelloThumbnail - Federatial
8
+ type: text/vnd.tiddlywiki
9
+ ribbon-text: NEW
10
+
11
+ Support the development of ~TiddlyWiki by hiring Jeremy Ruston through Federatial Limited
@@ -0,0 +1,4 @@
1
+ title: Hidden Setting: Retain Story ordering
2
+ tags: [[Hidden Settings]]
3
+
4
+ <<.from-version "5.2.4">> The tiddler $:/config/ControlPanel/Basics/DefaultTiddlers/RetainStory contains the value that is assigned to $:/DefaultTiddlers when clicking the "retain story ordering" button in $:/ControlPanel under the ''Info'' -> ''Basics'' tab.
@@ -0,0 +1,13 @@
1
+ created: 20220909094340097
2
+ modified: 20220909094340097
3
+ title: Hidden Setting: Sync System Tiddlers From Server
4
+ tags: [[Hidden Settings]]
5
+
6
+ <<.from-version "5.1.23">> Determines whether system tiddlers are synced from the server under Node.js. (Note that this is a one-way setting; system tiddlers are always synced //to// the server).
7
+
8
+ * `no` -- system tiddlers are not synced from the server (default)
9
+ * `yes` -- system tiddlers are synced from the server
10
+
11
+ Engaging sync of system tiddlers means that tiddlers such as $:/StoryList and $:/HistoryList get synced, which can lead to unexpected outcomes when multiple users are connected to the same server at the same time (it means that the story sequence is synced between all the users).
12
+
13
+ $:/config/SyncSystemTiddlersFromServer
@@ -0,0 +1,13 @@
1
+ created: 20190903192324700
2
+ modified: 20190903192324700
3
+ tags: [[Hidden Settings]]
4
+ title: Hidden Setting: Sync Logging
5
+ type: text/vnd.tiddlywiki
6
+
7
+ Specifies whether [[Syncadaptor|https://tiddlywiki.com/dev/#Syncadaptor]] should log information to the browser's developer console or not.
8
+
9
+ Defaults to `yes`. Set to `no` to disable logging.
10
+
11
+ Changing needs restart to take effect.
12
+
13
+ $:/config/SyncLogging
@@ -0,0 +1,7 @@
1
+ created: 20221128092648000
2
+ modified: 20221128092903706
3
+ tags: [[Hidden Settings]]
4
+ title: Hidden Setting: More Tabs Horizontal
5
+ type: text/vnd.tiddlywiki
6
+
7
+ Set the $:/config/ui/SideBar/More/horizontal tiddler to ''yes'', to align the ''More -> Tabs'' in horizontal orientation.
@@ -66,6 +66,8 @@ In the [[Keyboard Shortcuts Tab|$:/core/ui/ControlPanel/KeyboardShortcuts]] the
66
66
 
67
67
  !! Using global Keyboard Shortcuts
68
68
 
69
+ > See [[Keyboard Shortcut Tiddler]] for detailed information about creating new global keyboard shortcuts.
70
+
69
71
  > The actions for ''global'' keyboard shortcuts are stored in the ''text'' field of tiddlers tagged with <<tag $:/tags/KeyboardShortcut>>
70
72
 
71
73
  > The ''key field'' connects an action-tiddler with the corresponding shortcut through the `((my-shortcut))` syntax, called [[Keyboard Shortcut Descriptor]]
@@ -1,11 +1,20 @@
1
1
  created: 20220427174702859
2
- modified: 20220427171449102
2
+ modified: 20220611104737314
3
3
  tags: [[JSON in TiddlyWiki]] Learning
4
4
  title: Reading data from JSON tiddlers
5
5
  type: text/vnd.tiddlywiki
6
6
 
7
7
  See [[JSON in TiddlyWiki]] for an overview of using JSON in TiddlyWiki.
8
8
 
9
+ !! Filter Operators for Accessing JSON Data
10
+
11
+ The following filter operators allow values to be read from JSON data:
12
+
13
+ * <<.olink jsonget>> to retrieve the values of a property in JSON data
14
+ * <<.olink jsontype>> to retrieve the type of a JSON value
15
+ * <<.olink jsonindexes>> to retrieve the names of the fields of a JSON object, or the indexes of a JSON array
16
+ * <<.olink jsonextract>> to retrieve a JSON value as a string of JSON
17
+
9
18
  !! Text References for Accessing JSON Data
10
19
 
11
20
  [[Text references|TextReference]] are a simple shortcut syntax to look up the value of a named property. For example, if a [[DictionaryTiddler|DictionaryTiddlers]] called `MonthDays` contains:
@@ -0,0 +1,3 @@
1
+ title: Federatial.png
2
+ type: image/png
3
+ tags: picture
@@ -1,3 +1,3 @@
1
- title: TiddlyMap.png
1
+ title: Funding.png
2
2
  type: image/png
3
3
  tags: picture
@@ -0,0 +1,3 @@
1
+ title: TiddlyWiki Marketplace Banner
2
+ type: image/jpeg
3
+ tags: picture
@@ -1,6 +1,6 @@
1
1
  caption: list-links
2
2
  created: 20140917083515996
3
- modified: 20190206000000000
3
+ modified: 20221105090835041
4
4
  tags: Macros [[Core Macros]]
5
5
  title: list-links Macro
6
6
  type: text/vnd.tiddlywiki
@@ -15,6 +15,8 @@ Note: Each first [[step|Filter Step]] of a [[filter run|Filter Run]] not given a
15
15
 
16
16
  ;filter
17
17
  : A [[filter|Filters]] selecting which tiddlers to include
18
+ ;caption
19
+ : The name of the field to transclude for each list item, defaultingt to `caption`
18
20
  ;type
19
21
  : An HTML element to use for the overall list element, defaulting to `ul`
20
22
  ;subtype
@@ -1,5 +1,5 @@
1
1
  created: 20140919155729620
2
- modified: 20201017134038305
2
+ modified: 20220819093733569
3
3
  tags: Macros [[Core Macros]]
4
4
  title: Table-of-Contents Macros
5
5
  type: text/vnd.tiddlywiki
@@ -62,4 +62,38 @@ These two parameters are combined into a single [[filter expression|Filter Expre
62
62
  ;template
63
63
  : Optionally, the title of a tiddler to use as a [[template|TemplateTiddlers]] for transcluding the selected tiddler into the right-hand panel
64
64
 
65
- [[Examples|Table-of-Contents Macros (Examples)]]
65
+ !! Custom Icons
66
+
67
+ <<.from-version "5.2.4">>
68
+
69
+ To change the icons used by the Table-of-Contents macros, redefine the macros `toc-open-icon` and `toc-closed-icon`. This setting works for all toc-macro variants.
70
+
71
+ !!! Default Settings
72
+
73
+ * <<.var toc-open-icon>>: `\define toc-open-icon() $:/core/images/down-arrow`
74
+
75
+ * <<.var toc-closed-icon>>: `\define toc-closed-icon() $:/core/images/right-arrow`
76
+
77
+ !!! Custom Definitions
78
+
79
+ The default settings can be overwritten in your code using the define-pragma or the let-widget. The <<.wlink LetWidget>> widget can be used, if you have multiple table of contents macros in one tiddler, that need different icons.
80
+
81
+ ''Define new icons using a pragma''
82
+
83
+ ```
84
+ \define toc-open-icon() $:/core/images/fold-button
85
+ \define toc-closed-icon() $:/core/images/folder
86
+ ...
87
+ ```
88
+
89
+ ''Define new icons using the let-widget''
90
+
91
+ ```
92
+ <$let toc-open-icon="$:/core/images/fold-button" toc-closed-icon="$:/core/images/folder">
93
+ ...
94
+ </$let>
95
+ ```
96
+
97
+ !! Examples
98
+
99
+ Learn more at [[Examples|Table-of-Contents Macros (Examples)]]
@@ -0,0 +1,18 @@
1
+ title: TiddlyWiki Marketplace
2
+ tags: Community
3
+ modified: 20221204165636777
4
+ created: 20221204165636777
5
+
6
+ <span style="float:right;">[img width=200px [TiddlyWiki Marketplace Banner]]</span>
7
+
8
+ Welcome to the TiddlyWiki Marketplace. This new forum is designed to provide a space for individuals and organizations to offer commercial products and services that are built around TiddlyWiki:
9
+
10
+ * Paid hosting services
11
+ * Custom solution development
12
+ * Training courses
13
+ * One-to-one training sessions
14
+ * "Fix my wiki" debugging sessions
15
+
16
+ <a href="https://talk.tiddlywiki.org/c/marketplace/22" class="tc-btn-big-green" style="border-radius:4px;background-color:#ff5c48;" target="_blank" rel="noopener noreferrer">
17
+ ~TiddlyWiki Marketplace
18
+ </a>
@@ -8,6 +8,7 @@ The popup mechanism allows blocks of content to be selectively displayed and pos
8
8
 
9
9
  * [[StateTiddlers|StateMechanism]] to record whether a popup is currently displayed or not
10
10
  * The RevealWidget to selectively display the popup content
11
+ ** <<.from-version "5.2.4">> For positioning the popups relative or absolute coordinates can be used. See [[Coordinate Systems]] for more information about usage and format.
11
12
  ** For "sticky" popups — those that don't close when clicking inside one — set the ''class'' attribute to `tc-popup-keep`
12
13
  * The ButtonWidget to trigger the display of the popup by setting the state tiddler appropriately
13
14
 
@@ -10,12 +10,14 @@ type: text/vnd.tiddlywiki
10
10
  |paramObject |Hashmap of variables to be provided to the modal, contains all extra parameters passed to the widget sending the message. |
11
11
  |rootwindow |<<.from-version 5.1.18>> ''yes'' or ''true'' will always display a modal in the wiki-root-window |
12
12
 
13
- The "currentTiddler" variable is set to the title of the modal tiddler, but can be overridden by specifying a different value in `paramObject`.
14
-
15
13
  The modal message is usually generated with the ButtonWidget. The modal message is handled by the TiddlyWiki core.
16
14
 
17
15
  [[Fields within the tiddler|Modals]] being displayed in the modal can be used to customize its appearance.
18
16
 
17
+ !! paramObject
18
+
19
+ The "currentTiddler" variable is set to the title of the modal tiddler, but can be overridden by specifying a different value in `paramObject`.
20
+
19
21
  ! Example
20
22
 
21
23
  Here is an example of displaying a modal and passing parameters to it:
@@ -22,7 +22,7 @@ The new tiddler message is usually generated with the ButtonWidget or ActionSend
22
22
 
23
23
  ! Examples
24
24
 
25
- To make a button that creates new tiddlers tagged "task", create a tiddler called "TaskTemplate" with that tag, and then make your button like this:
25
+ To make a button that creates new tiddlers tagged "task", create a tiddler called "~TaskTemplate" with that tag, and then make your button like this:
26
26
 
27
27
  ```
28
28
  <$button message="tm-new-tiddler" param="TaskTemplate">New Task</$button>
@@ -4,7 +4,7 @@ created: 20131219100608529
4
4
  delivery: DIY
5
5
  description: Flexible hosting on your own machine or in the cloud
6
6
  method: sync
7
- modified: 20211003230831173
7
+ modified: 20221115230831173
8
8
  tags: Saving [[TiddlyWiki on Node.js]] Windows Mac Linux
9
9
  title: Installing TiddlyWiki on Node.js
10
10
  type: text/vnd.tiddlywiki
@@ -12,7 +12,7 @@ type: text/vnd.tiddlywiki
12
12
  # Install [[Node.js]]
13
13
  #* Linux:
14
14
  #*> //Debian/Ubuntu//:<br/>`apt install nodejs`<br/>May need to be followed up by:<br/>`apt install npm`
15
- #*> //Arch Linux//<br/>`pacman -S tiddlywiki` <br/>(installs node and tiddlywiki)
15
+ #*> //Arch Linux//<br/>`yay -S tiddlywiki` <br/>(installs node and tiddlywiki)
16
16
  #* Mac
17
17
  #*> `brew install node`
18
18
  #* Android
@@ -0,0 +1,17 @@
1
+ created: 20221123223127425
2
+ modified: 20221123223127425
3
+ tags: Pragmas
4
+ title: Pragma: \parsermode
5
+ type: text/vnd.tiddlywiki
6
+
7
+ The ''\parsermode'' [[pragma|Pragmas]] adjusts whether the remaining text is parsed in block mode or inline mode. See [[WikiText Parser Modes]] for details of parser modes.
8
+
9
+ ```
10
+ \parsermode block|inline
11
+ ```
12
+
13
+ For example:
14
+
15
+ ```
16
+ \parsermode inline
17
+ ```
@@ -0,0 +1,140 @@
1
+ caption: 5.2.4
2
+ created: 20221213163110439
3
+ modified: 20221213163110439
4
+ released: 20221213163110439
5
+ tags: ReleaseNotes
6
+ title: Release 5.2.4
7
+ type: text/vnd.tiddlywiki
8
+
9
+ //[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.2.3...v5.2.4]]//
10
+
11
+ <<.banner-credits
12
+ credit:"""Congratulations to [[dmikh|https://talk.tiddlywiki.org/u/dmikh]] for their winning design for the banner for this release (here is the [[competition thread|https://talk.tiddlywiki.org/t/new-release-banner-competition-for-v5-2-4/4982]] and the [[voting thread|https://talk.tiddlywiki.org/t/vote-for-the-v5-2-4-new-release-banner/5140/2]]).
13
+ """
14
+ url:"https://raw.githubusercontent.com/Jermolene/TiddlyWiki5/0dc30086e933cf2272cddb076a9fcbedad252735/editions/tw5.com/tiddlers/images/New%20Release%20Banner.png"
15
+ >>
16
+
17
+ ! Major Improvements
18
+
19
+ New [ext[Twitter Archivist|./editions/twitter-archivist]] plugin to import the tweets and associated media from a Twitter Archive as individual tiddlers.
20
+
21
+ <<.link-badge-added "https://github.com/Jermolene/TiddlyWiki5/pull/6961">> new GenesisWidget that allows the dynamic construction of another widget, where the name and attributes of the new widget can be dynamically determined, without needing to be known in advance
22
+
23
+ <<.link-badge-added "https://github.com/Jermolene/TiddlyWiki5/pull/6936">> (and <<.link-badge-here "https://github.com/Jermolene/TiddlyWiki5/pull/7105">>) new operators for reading and formatting JSON data: [[jsonget Operator]], [[jsonindexes Operator]], [[jsontype Operator]], [[jsonextract Operator]] and [[format Operator]]
24
+
25
+ ! Translation Improvements
26
+
27
+ Improvements to the following translations:
28
+
29
+ * Chinese
30
+ * French
31
+ * German
32
+ * Polish
33
+ * Spanish
34
+ * Japanese
35
+
36
+ Improvements to the translation features of TiddlyWiki itself:
37
+
38
+ * <<.link-badge-improved "https://github.com/Jermolene/TiddlyWiki5/pull/6882">> the [[Translators Edition|Translate TiddlyWiki into your language]] to add an option to display the original English text underneath the text area
39
+ * <<.link-badge-updated "https://github.com/Jermolene/TiddlyWiki5/pull/6933">> "delete" button text in $:/AdvancedSearch so that it is translatable
40
+
41
+ ! Usability Improvements
42
+
43
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/commit/d62a16ee464fb9984b766b48504829a1a3eb143b">> problem with long presses on tiddler links triggering a preview on iOS/iPadOS
44
+ * <<.link-badge-improved "https://github.com/Jermolene/TiddlyWiki5/pull/6910">> consistency of button and input elements across browsers
45
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/commit/d825f1c875f5e46158c9c41c8c66471138c162d1">> edit preview to use the [[View Template Body Cascade]]
46
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/commit/36896c3db8c9678c0385a561996248a6f00a45ff">> opening a tiddler in a new window to use the [[View Template Body Cascade]]
47
+ * <<.link-badge-improved "https://github.com/Jermolene/TiddlyWiki5/pull/6970">> detection of infinite recursion errors in widgets and filters
48
+ * <<.link-badge-extended "https://github.com/Jermolene/TiddlyWiki5/pull/6877">> default styles for [[styled runs|Styles and Classes in WikiText]]
49
+ * <<.link-badge-improved "https://github.com/Jermolene/TiddlyWiki5/pull/6881">> upgrade wizard to make the version number more prominent
50
+ * <<.link-badge-improved "https://github.com/Jermolene/TiddlyWiki5/pull/7042">> parsing of tiddlers containing CSV data for greater compatibility
51
+ * <<.link-badge-added "https://github.com/Jermolene/TiddlyWiki5/pull/7076">> new page control button to summon the layout switcher
52
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/issues/7084">> folded tiddlers to ensure that the unfold button is always visible
53
+ * <<.link-badge-improved "https://github.com/Jermolene/TiddlyWiki5/pull/7072">> handling of [[Modals]] to optionally allow them to be dismissed by clicking on the background
54
+
55
+ ! Widget Improvements
56
+
57
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/commit/127f660c91020dcbb43897d954066b31af729e74">> EditTextWidget to remove the default text "Type the text for the tiddler 'foo'"
58
+ * <<.link-badge-added "https://github.com/Jermolene/TiddlyWiki5/pull/7081">> ''focus'' attribute to SelectWidget
59
+ * <<.link-badge-removed "https://github.com/Jermolene/TiddlyWiki5/commit/1df4c29d73073788ba3859668112e8bb46171a6c">> restriction of the LetWidget being unable to create variables whose names begin with a dollar sign
60
+
61
+ ! Filter improvements
62
+
63
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/issues/6303">> issue with availability of variables within filter runs
64
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/pull/7065">> issue with removing multiple items from a linked list during filter processing
65
+
66
+ ! Hackability Improvements
67
+
68
+ * <<.link-badge-added "https://github.com/Jermolene/TiddlyWiki5/pull/7004">> support for nested [[macro definitions|Macro Definitions in WikiText]]
69
+ * <<.link-badge-added "https://github.com/Jermolene/TiddlyWiki5/pull/6976">> support for [[SystemTag: $:/tags/ClassFilters/TiddlerTemplate]] and [[SystemTag: $:/tags/ClassFilters/PageTemplate]] to assign dynamic CSS classes to both tiddler frames and the page template
70
+ * <<.link-badge-improved "https://github.com/Jermolene/TiddlyWiki5/commit/c5d3d4c26e8fe27f272dda004aec27d6b66c4f60">> safe mode to disable wiki store indexers
71
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/commit/166a1565843878083fb1eba47c73b8e67b78400d">> safe mode to prevent globally disabling parser rules
72
+ * <<.link-badge-extended "https://github.com/Jermolene/TiddlyWiki5/pull/6735">> keyboard shortcut handling to allow to global shortcuts to override all other shortcuts
73
+ * <<.link-badge-extended "https://github.com/Jermolene/TiddlyWiki5/commit/965bd090a905f5756e79124b698c894f7f72ad5b">> [[list-links Macro]] to allow the rendered field to be overriden
74
+ * <<.link-badge-improved "https://github.com/Jermolene/TiddlyWiki5/pull/6913">> [[Table-of-Contents Macros]] to allow the default icons to be overridden
75
+ * <<.link-badge-added "https://github.com/Jermolene/TiddlyWiki5/pull/6939">> ''data-tags-*'' and ''data-tiddler-title'' attributes to the edit preview area
76
+ * <<.link-badge-extended "https://github.com/Jermolene/TiddlyWiki5/pull/5947">> [[timeline Macro]] to override the link template
77
+ * <<.link-badge-added "https://github.com/Jermolene/TiddlyWiki5/pull/7043">> support for Unix epoch timestamps in [[date format strings|DateFormat]]
78
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/pull/7064">> the "big green download button" to use the defined palette colour
79
+ * <<.link-badge-added "https://github.com/Jermolene/TiddlyWiki5/pull/7063">> new hidden setting [[to use horizontal tabs for the "more" sidebar tab|Hidden Setting: More Tabs Horizontal]]
80
+ * <<.link-badge-extended "https://github.com/Jermolene/TiddlyWiki5/commit/bef11fe6a25fb849dee40c4aa4337d6a30daf0b4">> the [[external JavaScript templates|Using the external JavaScript template]] to allow the URL of the external script file to be configured
81
+
82
+ ! Bug Fixes
83
+
84
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/pull/7099">> truncated search results on small screens
85
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/pull/7010">> table contents overflow on small screens
86
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/commit/fb34df84ed41882c1c2a6ff54f0e908b43ef95a3">> "new image" keyboard shortcut not to assign journal tags
87
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/pull/6987">> SelectWidget class to update if it uses a filter
88
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/issues/7017">> issue with wikification within the advanced search filter dropdown
89
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/pull/7057">> the table in $:/Import to avoid creating hidden empty rows
90
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/issues/7008">> advanced search keyboard shortcut not navigating correctly
91
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/issues/7083">> erroneous display of drafts within the advanced search filter dropdown
92
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/pull/7092">> backwards compatibility of new field editor cascade introduced in v5.2.3
93
+
94
+ ! Node.js Improvements
95
+
96
+ * <<.link-badge-added "https://github.com/Jermolene/TiddlyWiki5/pull/7073">> new CommandsCommand to enable command tokens to be dynamically generated from a filter
97
+ * <<.link-badge-improved "https://github.com/Jermolene/TiddlyWiki5/pull/6947">> console logging to avoid spaces and `<empty string>` message
98
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/pull/7014">> problem with lazy loading deleting tiddler bodies under certian circumstances
99
+ * <<.link-badge-fixed "https://github.com/Jermolene/TiddlyWiki5/commit/344110e2890caf711ab8f3c4f4deaa7d86771231">> handling of ".mp4" file extension so that it defaults to video not audio
100
+ * <<.link-badge-added "https://github.com/Jermolene/TiddlyWiki5/pull/6588">> test server to the plugin library edition
101
+ * <<.link-badge-added "https://github.com/Jermolene/TiddlyWiki5/pull/7049">> [[Hidden Setting: Sync Logging]] to control logging of sync-related messages
102
+ * <<.link-badge-updated "https://github.com/Jermolene/TiddlyWiki5/pull/6944">> Jasmine plugin to require the explicit use of the `--test` command in order to cause the tests to be run
103
+
104
+ ! Performance Improvements
105
+
106
+ * <<.link-badge-improved "https://github.com/Jermolene/TiddlyWiki5/commit/53d229592df76c6dd607e40be5bea4d5e063c48e">> performance of `wiki.getTiddler()`
107
+ * <<.link-badge-improved "https://github.com/Jermolene/TiddlyWiki5/commit/81ac9874846b3ead275f67010fcfdb49f3d2f43c">> performance of variable prototype chain handling
108
+ * <<.link-badge-improved "https://github.com/Jermolene/TiddlyWiki5/pull/6056">> performance of list handling during filter processing
109
+
110
+ ! Acknowledgements
111
+
112
+ [[@Jermolene|https://github.com/Jermolene]] would like to thank the contributors to this release who have generously given their time to help improve TiddlyWiki:
113
+
114
+ <<.contributors """
115
+ AnthonyMuscio
116
+ bestony
117
+ btheado
118
+ BramChen
119
+ carlo-colombo
120
+ EvidentlyCube
121
+ FlashSystems
122
+ flibbles
123
+ fu-sen
124
+ joebordes
125
+ hoelzro
126
+ kookma
127
+ linonetwo
128
+ Marxsal
129
+ oflg
130
+ pmario
131
+ rmunn
132
+ roma0104
133
+ saqimtiaz
134
+ simonbaird
135
+ talha131
136
+ Telumire
137
+ tw-FRed
138
+ twMat
139
+ xcazin
140
+ """>>
@@ -4,6 +4,6 @@ tags: About
4
4
  title: Releases
5
5
  type: text/vnd.tiddlywiki
6
6
 
7
- New releases of TiddlyWiki, TiddlyDesktop and TiddlyFox are announced via the [[official discussion groups|Forums]] and [[Twitter|https://twitter.com/TiddlyWiki]] (you can also subscribe to an Atom/RSS feed of [[TiddlyWiki releases from GitHub|https://github.com/jermolene/tiddlywiki5/releases.atom]])
7
+ New releases of TiddlyWiki and TiddlyDesktop are announced via the [[official discussion groups|Forums]] and [[Twitter|https://twitter.com/TiddlyWiki]] (you can also subscribe to an Atom/RSS feed of [[TiddlyWiki releases from GitHub|https://github.com/jermolene/tiddlywiki5/releases.atom]])
8
8
 
9
9
  <<tabs "[[TiddlyWiki Releases]] [[TiddlyDesktop Releases]]" "TiddlyWiki Releases" "$:/state/tab">>
@@ -2,7 +2,7 @@ caption: Emergency Export
2
2
  color: #7986CB
3
3
  created: 20180309211328412
4
4
  delivery: Saver
5
- description: Awkward but useful emergency technique for saving tiddlers
5
+ description: Retrieve and save tiddlers when saving is broken
6
6
  method: save
7
7
  modified: 20200507202809334
8
8
  tags: Android Chrome Firefox [[Internet Explorer]] Linux Mac Opera Safari Saving Windows Edge
@@ -3,7 +3,7 @@ color: #29B6F6
3
3
  community-author: Simon Baird
4
4
  created: 20210422191232572
5
5
  delivery: Service
6
- description: Online service for creating and hosting TiddlyWikis
6
+ description: Online service for creating and hosting ~TiddlyWikis
7
7
  method: save
8
8
  modified: 20210423003921468
9
9
  tags: Android Chrome Firefox [[Internet Explorer]] Linux Mac Opera PHP Safari Saving Windows iOS Edge
@@ -6,7 +6,6 @@ delivery: Service
6
6
  description: Online TiddlyWiki hosting. (Deprecated in favour of TiddlyHost)
7
7
  method: save
8
8
  modified: 20210423004027196
9
- tags: Android Chrome Firefox [[Internet Explorer]] Linux Mac Opera PHP Safari Saving Windows iOS Edge
10
9
  title: Saving on TiddlySpot
11
10
  type: text/vnd.tiddlywiki
12
11
 
@@ -9,6 +9,7 @@ modified: 20220223160414274
9
9
  tags: Chrome Firefox [[Internet Explorer]] Linux Mac Opera Safari Saving Windows Edge
10
10
  title: Saving with Polly
11
11
  type: text/vnd.tiddlywiki
12
+ ribbon-text: NEW
12
13
 
13
14
  [[Polly|https://github.com/Marxsal/polly]] is a batch file system using Windows //~PowerShell// to restore ~TiddlyWiki files from a specified download directory to their original home directory.
14
15
 
@@ -1,5 +1,5 @@
1
1
  created: 20140912140651119
2
- modified: 20220401151525812
2
+ modified: 20220812144516626
3
3
  saving-browser: Firefox Chrome Edge [[Internet Explorer]] Safari Opera [[Standalone App]]
4
4
  saving-os: Windows Mac Linux Android iOS
5
5
  tags: [[Working with TiddlyWiki]]
@@ -32,9 +32,16 @@ type: text/vnd.tiddlywiki
32
32
  \define checkactions(item:"Linux")
33
33
  <$action-listops $tiddler=<<stateTiddler>> $subfilter="[[$item$]]"/>
34
34
  \end
35
- <$vars stateTiddler=<<qualify "$:/state/gettingstarted">> >
36
35
 
37
- Available methods for saving changes with TiddlyWiki:
36
+ \define introduction-message()
37
+ <div class="tc-saving-introduction">
38
+ <div>
39
+ Use the checkboxes to explore the methods of saving that work with your platform(s)
40
+ </div>
41
+ </div>
42
+ \end
43
+
44
+ <$vars stateTiddler=<<qualify "$:/state/gettingstarted">> >
38
45
 
39
46
  <div class="tc-wrapper-flex">
40
47
  <div class="tc-saving-sidebar">
@@ -54,9 +61,9 @@ Available methods for saving changes with TiddlyWiki:
54
61
  </div>
55
62
 
56
63
  <!-- Page content -->
57
- <div class="content">
64
+ <div class="tc-cards">
58
65
  <$wikify text=<<alltagsfilter>> name="alltagsfilterwikified">
59
- <$list filter=<<alltagsfilterwikified>>>
66
+ <$list filter=<<alltagsfilterwikified>> emptyMessage=<<introduction-message>>>
60
67
  {{||$:/_tw5.com-card-template}}
61
68
  </$list>
62
69
  </$wikify>
@@ -0,0 +1,15 @@
1
+ caption: ~TiddlyBucket
2
+ color: #f48fb1
3
+ created: 20221126192148031
4
+ delivery: Protocol
5
+ description: Save to AWS or Google Storage
6
+ method: save
7
+ modified: 20221126192853897
8
+ tags: Chrome Firefox [[Internet Explorer]] Linux Mac Opera Safari Saving Windows iOS Edge
9
+ title: TiddlyBucket - Save to AWS or Google Storage
10
+ type: text/vnd.tiddlywiki
11
+ ribbon-text: NEW
12
+
13
+ ~TiddlyBucket - Save to AWS or Google Storage using Go
14
+
15
+ This tool replicates the ~TiddlyWeb backend API and can read and write the tiddler files to a local directory like the canonical ~TiddlyWiki5 app. But, in addition, it can do the same with a given a Google Cloud Storage bucket or AWS S3 bucket. Written in the Go programming language
@@ -117,7 +117,7 @@ This is an example tiddler. See [[Table-of-Contents Macros (Examples)]].
117
117
  <table class="doc-bad-example">
118
118
  <tbody>
119
119
  <tr class="evenRow">
120
- <td><span class="tc-inline-style" style="font-size:1.5em;">&#9888;</span> Warning:<br> Don't do it this way!</td>
120
+ <td><span style="font-size:1.5em;">&#9888;</span> Warning:<br> Don't do it this way!</td>
121
121
  <td>
122
122
 
123
123
  $eg$
@@ -3,19 +3,4 @@ modified: 20220719134613555
3
3
  title: $:/_tw5.com-card-template
4
4
  type: text/vnd.tiddlywiki
5
5
 
6
- \define tw-card-template(bordercolor:"")
7
- \whitespace trim
8
- <div class="tc-card" style="border-top: 5px solid $bordercolor$;">
9
- <$link>
10
- <$let tv-wikilinks=no>
11
- <div class="tc-card-title"><$transclude field="caption"><$view field="title"/></$transclude></div>
12
- <div class="tc-card-author">
13
- <$list filter="[is[current]has[community-author]]">by&nbsp;{{!!community-author}}</$list>
14
- </div>
15
- <p><$view field="description"/></p>
16
- </$let>
17
- </$link>
18
- </div>
19
- \end
20
-
21
- <$macrocall $name="tw-card-template" bordercolor={{!!color}}/>
6
+ <$macrocall $name="flex-card" bordercolor={{!!color}} captionField="caption" subtitle={{{ [{!!community-author}!is[blank]addprefix[by ]] }}}/>