tiddlywiki 5.3.4 → 5.3.6
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.
- package/.github/ISSUE_TEMPLATE/bug_report.yml +2 -2
- package/.github/ISSUE_TEMPLATE/config.yml +1 -1
- package/.github/workflows/ci.yml +1 -1
- package/.github/workflows/cla-check.yml +30 -0
- package/.github/workflows/cla-signed.yml +70 -0
- package/bin/build-site.sh +1 -51
- package/bin/ci-pre-build.sh +1 -1
- package/bin/ci-push.sh +1 -1
- package/bin/readme-bld.sh +8 -0
- package/boot/boot.js +2 -2
- package/boot/bootprefix.js +1 -1
- package/code-of-conduct.md +1 -0
- package/contributing.md +1 -1
- package/core/images/discord.tid +5 -0
- package/core/images/input-button.tid +5 -0
- package/core/language/en-GB/Buttons.multids +2 -0
- package/core/language/en-GB/ControlPanel.multids +16 -0
- package/core/language/en-GB/EditTemplate.multids +2 -0
- package/core/language/en-GB/Search.multids +2 -0
- package/core/language/en-GB/Snippets/FunctionDefinition.tid +7 -0
- package/core/language/en-GB/Snippets/ProcedureDefinition.tid +7 -0
- package/core/language/en-GB/Types/text_vnd.tiddlywiki_multiple.tid +5 -0
- package/core/modules/commands/build.js +1 -1
- package/core/modules/commands/render.js +15 -10
- package/core/modules/config.js +1 -1
- package/core/modules/editor/operations/text/excise.js +12 -4
- package/core/modules/editor/operations/text/wrap-selection.js +112 -24
- package/core/modules/filters/encodings.js +4 -4
- package/core/modules/macros/unusedtitle.js +6 -4
- package/core/modules/parsers/wikiparser/rules/conditional.js +2 -2
- package/core/modules/parsers/wikiparser/rules/table.js +6 -3
- package/core/modules/savers/put.js +3 -3
- package/core/modules/startup/plugins.js +1 -1
- package/core/modules/startup/rootwidget.js +3 -1
- package/core/modules/storyviews/classic.js +6 -6
- package/core/modules/upgraders/system.js +1 -1
- package/core/modules/utils/dom/dom.js +3 -2
- package/core/modules/utils/dom/http.js +5 -0
- package/core/modules/utils/edition-info.js +9 -5
- package/core/modules/utils/fakedom.js +49 -21
- package/core/modules/utils/filesystem.js +1 -1
- package/core/modules/utils/transliterate.js +1 -1
- package/core/modules/utils/utils.js +4 -2
- package/core/modules/widgets/data.js +16 -4
- package/core/modules/widgets/droppable.js +26 -5
- package/core/modules/widgets/genesis.js +10 -10
- package/core/modules/widgets/keyboard.js +10 -8
- package/core/modules/widgets/navigator.js +9 -5
- package/core/modules/widgets/widget.js +6 -1
- package/core/modules/wiki.js +26 -16
- package/core/palettes/Blanca.tid +1 -0
- package/core/palettes/Blue.tid +1 -0
- package/core/palettes/BrightMute.tid +1 -0
- package/core/palettes/ContrastDark.tid +9 -8
- package/core/palettes/ContrastLight.tid +9 -8
- package/core/palettes/CupertinoDark.tid +1 -0
- package/core/palettes/DarkPhotos.tid +1 -0
- package/core/palettes/DesertSand.tid +1 -0
- package/core/palettes/FlexokiDark.tid +212 -0
- package/core/palettes/FlexokiLight.tid +214 -0
- package/core/palettes/GruvBoxDark.tid +5 -0
- package/core/palettes/Nord.tid +5 -0
- package/core/palettes/Rocker.tid +1 -0
- package/core/palettes/SolarFlare.tid +5 -0
- package/core/palettes/SolarizedDark.tid +6 -1
- package/core/palettes/SolarizedLight.tid +6 -1
- package/core/palettes/SpartanDay.tid +1 -0
- package/core/palettes/SpartanNight.tid +1 -0
- package/core/palettes/Twilight.tid +1 -0
- package/core/palettes/Vanilla.tid +10 -9
- package/core/templates/server/static.tiddler.wikitext.tid +4 -4
- package/core/templates/social-metadata.tid +38 -0
- package/core/templates/tiddlywiki5.html.tid +1 -0
- package/core/ui/Actions/new-journal.tid +4 -4
- package/core/ui/Actions/new-tiddler.tid +3 -3
- package/core/ui/AdvancedSearch/Filter.tid +76 -51
- package/core/ui/AdvancedSearch/Shadows.tid +31 -18
- package/core/ui/AdvancedSearch/Standard.tid +20 -15
- package/core/ui/AdvancedSearch/System.tid +32 -19
- package/core/ui/Components/plugin-info.tid +4 -4
- package/core/ui/ControlPanel/Basics.tid +2 -17
- package/core/ui/ControlPanel/Cascades/ViewTemplateSubtitle.tid +9 -0
- package/core/ui/ControlPanel/Cascades/ViewTemplateTags.tid +9 -0
- package/core/ui/ControlPanel/Modals/AddPlugins.tid +4 -4
- package/core/ui/ControlPanel/Saving/GitHub.tid +1 -1
- package/core/ui/ControlPanel/Saving/GitLab.tid +1 -1
- package/core/ui/ControlPanel/Saving/TiddlySpot.tid +1 -1
- package/core/ui/ControlPanel/Saving/gitea.tid +1 -1
- package/core/ui/ControlPanel/Settings/RecentLimit.tid +10 -0
- package/core/ui/ControlPanel/SocialCard.tid +22 -0
- package/core/ui/DefaultSearchResultList.tid +2 -2
- package/core/ui/EditTemplate/controls.tid +1 -2
- package/core/ui/EditTemplate/fields.tid +26 -29
- package/core/ui/EditTemplate/type.tid +4 -4
- package/core/ui/EditToolbar/cancel.tid +11 -7
- package/core/ui/EditToolbar/delete.tid +11 -7
- package/core/ui/EditToolbar/save.tid +6 -7
- package/core/ui/EditorToolbar/bold.tid +2 -1
- package/core/ui/EditorToolbar/excise.tid +1 -1
- package/core/ui/EditorToolbar/file-import.tid +22 -12
- package/core/ui/EditorToolbar/heading-1.tid +1 -1
- package/core/ui/EditorToolbar/heading-2.tid +1 -1
- package/core/ui/EditorToolbar/heading-3.tid +1 -1
- package/core/ui/EditorToolbar/heading-4.tid +1 -1
- package/core/ui/EditorToolbar/heading-5.tid +1 -1
- package/core/ui/EditorToolbar/heading-6.tid +1 -1
- package/core/ui/EditorToolbar/italic.tid +2 -1
- package/core/ui/EditorToolbar/link-dropdown.tid +21 -16
- package/core/ui/EditorToolbar/link.tid +1 -1
- package/core/ui/EditorToolbar/linkify.tid +2 -1
- package/core/ui/EditorToolbar/list-bullet.tid +1 -1
- package/core/ui/EditorToolbar/list-number.tid +1 -1
- package/core/ui/EditorToolbar/mono-block.tid +1 -1
- package/core/ui/EditorToolbar/mono-line.tid +2 -1
- package/core/ui/EditorToolbar/picture.tid +1 -1
- package/core/ui/EditorToolbar/quote.tid +1 -1
- package/core/ui/EditorToolbar/stamp-dropdown-item-template.tid +1 -1
- package/core/ui/EditorToolbar/strikethrough.tid +2 -1
- package/core/ui/EditorToolbar/subscript.tid +2 -1
- package/core/ui/EditorToolbar/superscript.tid +2 -1
- package/core/ui/EditorToolbar/transcludify.tid +2 -1
- package/core/ui/EditorToolbar/underline.tid +2 -1
- package/core/ui/KeyboardShortcuts/open-control-panel.tid +8 -0
- package/core/ui/PageControls/advanced-search.tid +6 -7
- package/core/ui/PageControls/closeall.tid +5 -5
- package/core/ui/PageControls/controlpanel.tid +6 -7
- package/core/ui/PageControls/encryption.tid +8 -8
- package/core/ui/PageControls/export-page.tid +1 -1
- package/core/ui/PageControls/fold-all.tid +5 -5
- package/core/ui/PageControls/full-screen.tid +5 -5
- package/core/ui/PageControls/home.tid +5 -5
- package/core/ui/PageControls/import.tid +5 -5
- package/core/ui/PageControls/language.tid +9 -12
- package/core/ui/PageControls/layout.tid +4 -4
- package/core/ui/PageControls/manager.tid +6 -7
- package/core/ui/PageControls/more-page-actions.tid +17 -21
- package/core/ui/PageControls/network-activity.tid +5 -5
- package/core/ui/PageControls/new-image.tid +4 -4
- package/core/ui/PageControls/new-journal.tid +5 -6
- package/core/ui/PageControls/newtiddler.tid +4 -4
- package/core/ui/PageControls/palette.tid +4 -4
- package/core/ui/PageControls/print.tid +5 -5
- package/core/ui/PageControls/refresh.tid +5 -5
- package/core/ui/PageControls/savewiki.tid +5 -5
- package/core/ui/PageControls/storyview.tid +5 -8
- package/core/ui/PageControls/tag-button.tid +6 -7
- package/core/ui/PageControls/theme.tid +4 -4
- package/core/ui/PageControls/timestamp.tid +8 -8
- package/core/ui/PageControls/unfold-all.tid +5 -5
- package/core/ui/SideBar/Recent.tid +1 -1
- package/core/ui/SideBarSegments/search.tid +16 -14
- package/core/ui/TagManager.tid +17 -2
- package/core/ui/TagTemplate.tid +1 -1
- package/core/ui/TestCaseTemplate.tid +3 -1
- package/core/ui/TestCases/DefaultTemplate.tid +137 -79
- package/core/ui/TestCases/DefaultTemplateSourceTabs.tid +22 -1
- package/core/ui/TestCases/actions/Export.tid +1 -1
- package/core/ui/TestCases/actions/Import.tid +1 -1
- package/core/ui/ViewTemplate/body/code.tid +5 -0
- package/core/ui/ViewTemplate/body/import.tid +1 -0
- package/core/ui/ViewTemplate/body.tid +1 -1
- package/core/ui/ViewTemplate/lazy-loading.tid +10 -0
- package/core/ui/ViewTemplate/subtitle/default.tid +10 -0
- package/core/ui/ViewTemplate/subtitle/modifier.tid +1 -1
- package/core/ui/ViewTemplate/subtitle.tid +1 -7
- package/core/ui/ViewTemplate/tags/default.tid +11 -0
- package/core/ui/ViewTemplate/tags.tid +1 -3
- package/core/ui/ViewTemplate/title.tid +1 -1
- package/core/ui/ViewToolbar/clone.tid +14 -9
- package/core/ui/ViewToolbar/close-others.tid +4 -4
- package/core/ui/ViewToolbar/close.tid +13 -9
- package/core/ui/ViewToolbar/edit.tid +13 -9
- package/core/ui/ViewToolbar/export-tiddler.tid +1 -4
- package/core/ui/ViewToolbar/fold-others.tid +4 -4
- package/core/ui/ViewToolbar/fold.tid +8 -8
- package/core/ui/ViewToolbar/info.tid +8 -9
- package/core/ui/ViewToolbar/more-tiddler-actions.tid +16 -21
- package/core/ui/ViewToolbar/new-here.tid +6 -8
- package/core/ui/ViewToolbar/new-journal-here.tid +9 -17
- package/core/ui/ViewToolbar/open-window.tid +4 -4
- package/core/ui/ViewToolbar/permalink.tid +4 -4
- package/core/ui/ViewToolbar/permaview.tid +4 -4
- package/core/wiki/allfields.tid +25 -8
- package/core/wiki/config/EditorEnableImportFilter.tid +1 -1
- package/core/wiki/config/OfficialPluginLibrary.tid +1 -1
- package/core/wiki/config/RecentLimit.tid +3 -0
- package/core/wiki/config/ShortcutInfo.multids +1 -0
- package/core/wiki/config/TagPillDragFilter.tid +2 -0
- package/core/wiki/config/ViewTemplateBodyFilters.multids +3 -3
- package/core/wiki/config/ViewTemplateSubtitleFilters.multids +4 -0
- package/core/wiki/config/ViewTemplateTagsFilters.multids +4 -0
- package/core/wiki/config/shortcuts/shortcuts.multids +1 -0
- package/core/wiki/macros/CSS.tid +45 -34
- package/core/wiki/macros/colour-picker.tid +0 -2
- package/core/wiki/macros/copy-to-clipboard.tid +1 -1
- package/core/wiki/macros/diff.tid +1 -1
- package/core/wiki/macros/export.tid +43 -25
- package/core/wiki/macros/keyboard-driven-input.tid +91 -59
- package/core/wiki/macros/show-filter-count.tid +17 -0
- package/core/wiki/macros/tag-picker.tid +42 -33
- package/core/wiki/macros/tag.tid +1 -1
- package/core/wiki/macros/testcase.tid +1 -1
- package/core/wiki/macros/timeline.tid +8 -8
- package/core/wiki/macros/toc.tid +31 -24
- package/core/wiki/tags/TextEditorSnippet.tid +2 -0
- package/core/wiki/tags/ViewTemplate.tid +1 -1
- package/core/wiki/tags/ViewTemplateBodyFilter.tid +1 -1
- package/editions/de-AT/tiddlers/HelloThere.tid +1 -1
- package/editions/de-AT/tiddlers/community/Fur_Entwickler.tid +1 -1
- package/editions/de-AT/tiddlers/community/Wie_kann_ich_helfen_.tid +2 -2
- package/editions/de-AT/tiddlers/lexikon/GitHub.tid +1 -1
- package/editions/de-AT/tiddlers/maintainer/Wer pflegt diese Edition_.tid +1 -1
- package/editions/de-AT/tiddlers/referenz/Lizenzen.tid +3 -3
- package/editions/dev/tiddlers/Continuous Deployment.tid +1 -1
- package/editions/dev/tiddlers/GitHub Branches.tid +1 -1
- package/editions/dev/tiddlers/build/Scripts for building tiddlywiki.com.tid +3 -3
- package/editions/dev/tiddlers/from tw5.com/Developing plugins using Node.js and GitHub.tid +1 -1
- package/editions/dev/tiddlers/from tw5.com/How to create a translation for TiddlyWiki.tid +2 -2
- package/editions/dev/tiddlers/from tw5.com/JavaScript Macros.tid +1 -1
- package/editions/dev/tiddlers/from tw5.com/moduletypes/SyncAdaptorModules.tid +1 -1
- package/editions/dev/tiddlers/new/Filter Operators.tid +1 -1
- package/editions/dev/tiddlers/new/Using TiddlyWiki as a library.tid +1 -1
- package/editions/dev/tiddlers/system/ContributionBanner.tid +1 -1
- package/editions/dev/tiddlers/system/Sources.tid +1 -1
- package/editions/dev/tiddlers/system/github-fork-ribbon.tid +1 -1
- package/editions/dev/tiddlers/system/version-macros.tid +2 -2
- package/editions/empty/tiddlers/$__StoryList.tid +2 -0
- package/editions/es-ES/tiddlers/$__ContributionBanner.tid +1 -1
- package/editions/es-ES/tiddlers/Articles.tid +1 -1
- package/editions/es-ES/tiddlers/Contributing.tid +1 -1
- package/editions/es-ES/tiddlers/Contributor_License_Agreement.tid +2 -2
- package/editions/es-ES/tiddlers/Contributors.tid +1 -1
- package/editions/es-ES/tiddlers/Examples.tid +1 -1
- package/editions/es-ES/tiddlers/Forums.tid +2 -2
- package/editions/es-ES/tiddlers/HelloThere.tid +1 -1
- package/editions/es-ES/tiddlers/Installing_TiddlyWiki_on_Node.js.tid +1 -1
- package/editions/es-ES/tiddlers/Resources.tid +1 -1
- package/editions/es-ES/tiddlers/Signing_the_Contributor_License_Agreement.tid +2 -2
- package/editions/es-ES/tiddlers/Tutorials.tid +1 -1
- package/editions/fr-FR/tiddlers/$__ContributionBanner.tid +1 -1
- package/editions/fr-FR/tiddlers/$__editions_tw5.com_version-macros.tid +1 -1
- package/editions/fr-FR/tiddlers/Contributing.tid +4 -4
- package/editions/fr-FR/tiddlers/Contributors.tid +1 -1
- package/editions/fr-FR/tiddlers/Developers.tid +4 -4
- package/editions/fr-FR/tiddlers/GitHub.tid +1 -1
- package/editions/fr-FR/tiddlers/HelloThere.tid +1 -1
- package/editions/fr-FR/tiddlers/HelpingTiddlyWiki.tid +2 -2
- package/editions/fr-FR/tiddlers/How to add a banner for GitHub contributions.tid +1 -1
- package/editions/fr-FR/tiddlers/Release 5.1.2.tid +8 -8
- package/editions/fr-FR/tiddlers/Release_5.1.8.tid +45 -45
- package/editions/fr-FR/tiddlers/ReportingBugs.tid +1 -1
- package/editions/fr-FR/tiddlers/RoadMap.tid +1 -1
- package/editions/fr-FR/tiddlers/nodejs/Installing TiddlyWiki on Node.js.tid +1 -1
- package/editions/full/tiddlywiki.info +5 -6
- package/editions/geospatialdemo/tiddlers/Features.tid +13 -7
- package/editions/geospatialdemo/tiddlers/HelloThere.tid +5 -4
- package/editions/geospatialdemo/tiddlers/cities/LimehouseTownHall-image.jpeg +0 -0
- package/editions/geospatialdemo/tiddlers/cities/LimehouseTownHall-image.jpeg.meta +3 -0
- package/editions/geospatialdemo/tiddlers/cities/LimehouseTownHall.tid +3 -1
- package/editions/geospatialdemo/tiddlers/cities/Motovun-image.jpeg +0 -0
- package/editions/geospatialdemo/tiddlers/cities/Motovun-image.jpeg.meta +3 -0
- package/editions/geospatialdemo/tiddlers/cities/Motovun.tid +3 -1
- package/editions/geospatialdemo/tiddlers/cities/NewYork-image.jpeg +0 -0
- package/editions/geospatialdemo/tiddlers/cities/NewYork-image.jpeg.meta +3 -0
- package/editions/geospatialdemo/tiddlers/cities/NewYork.tid +3 -1
- package/editions/geospatialdemo/tiddlers/cities/Oxford-image.jpeg +0 -0
- package/editions/geospatialdemo/tiddlers/cities/Oxford-image.jpeg.meta +3 -0
- package/editions/geospatialdemo/tiddlers/cities/Oxford.tid +3 -1
- package/editions/geospatialdemo/tiddlers/cities/Toronto-image.jpeg +0 -0
- package/editions/geospatialdemo/tiddlers/cities/Toronto-image.jpeg.meta +3 -0
- package/editions/geospatialdemo/tiddlers/cities/Toronto.tid +3 -1
- package/editions/geospatialdemo/tiddlers/cities/Winchester-image.jpeg +0 -0
- package/editions/geospatialdemo/tiddlers/cities/Winchester-image.jpeg.meta +3 -0
- package/editions/geospatialdemo/tiddlers/cities/Winchester.tid +3 -1
- package/editions/geospatialdemo/tiddlers/config/FeatureVisbility.multids +4 -0
- package/editions/geospatialdemo/tiddlers/features/canada-census-subdivision-millesime-popuptemplate.tid +12 -0
- package/editions/geospatialdemo/tiddlers/features/canada-census-subdivision-millesime.geojson.meta +1 -0
- package/editions/geospatialdemo/tiddlers/features/harvard-glb-volc-geojson-popuptemplate.tid +10 -0
- package/editions/geospatialdemo/tiddlers/features/harvard-glb-volc-geojson.json.meta +2 -1
- package/editions/geospatialdemo/tiddlers/features/natural-earth-countries-low-res-popuptemplate.tid +32 -0
- package/editions/geospatialdemo/tiddlers/features/natural-earth-countries-low-res.json +1 -0
- package/editions/geospatialdemo/tiddlers/features/natural-earth-countries-low-res.json.meta +6 -0
- package/editions/geospatialdemo/tiddlers/features/us-states-popuptemplate.tid +6 -0
- package/editions/geospatialdemo/tiddlers/features/us-states.geojson.meta +1 -0
- package/editions/geospatialdemo/tiddlers/real-estate-demo/schema.json +2 -2
- package/editions/geospatialdemo/tiddlers/ui/geofeature.tid +1 -1
- package/editions/geospatialdemo/tiddlers/ui/geomarker.tid +4 -4
- package/editions/geospatialdemo/tiddlers/ui/popuptemplate.tid +9 -0
- package/editions/ja-JP/tiddlers/$_config_ViewTemplateSubtitle_original-modified.tid +6 -0
- package/editions/ja-JP/tiddlers/$_config_ViewTemplateTitleFilters_ja-default.tid +8 -0
- package/editions/ja-JP/tiddlers/$_core_ui_ViewTemplate_title_ja-default.tid +9 -0
- package/editions/ja-JP/tiddlers/$_editions_ja-JP_Macros_list.tid +25 -0
- package/editions/ja-JP/tiddlers/$_editions_ja-JP_Macros_timeline-title.tid +12 -0
- package/editions/ja-JP/tiddlers/$_editions_ja-JP_Macros_toc-caption.tid +16 -0
- package/editions/ja-JP/tiddlers/$_plugins_tiddlywiki_menubar_items_contents.tid +12 -0
- package/editions/ja-JP/tiddlers/_tw_shared/sites/classic.tiddlywiki.com.tid +7 -0
- package/editions/ja-JP/tiddlers/_tw_shared/sites/links.tiddlywiki.org.tid +7 -0
- package/editions/ja-JP/tiddlers/_tw_shared/sites/marketplace.tid +7 -0
- package/editions/ja-JP/tiddlers/_tw_shared/sites/talk.tiddlywiki.org.tid +7 -0
- package/editions/ja-JP/tiddlers/_tw_shared/sites/tiddlywiki.com.dev.tid +7 -0
- package/editions/ja-JP/tiddlers/_tw_shared/sites/tiddlywiki.com.prerelease.tid +7 -0
- package/editions/ja-JP/tiddlers/_tw_shared/sites/tiddlywiki.com.tid +7 -0
- package/editions/ja-JP/tiddlers/_tw_shared/sites/tiddlywiki.com.upgrade.tid +7 -0
- package/editions/ja-JP/tiddlers/_tw_shared/sites/tiddlywiki.org.tid +7 -0
- package/editions/ja-JP/tiddlers/_tw_shared/sites.tid +33 -0
- package/editions/ja-JP/tiddlers/about/Developers.tid +31 -0
- package/editions/ja-JP/tiddlers/about/Philosophy of Tiddlers.tid +13 -0
- package/editions/ja-JP/tiddlers/community/Articles.tid +28 -0
- package/editions/ja-JP/tiddlers/community/Community Editions.tid +27 -0
- package/editions/ja-JP/tiddlers/community/Community Palettes.tid +27 -0
- package/editions/ja-JP/tiddlers/community/Community Plugins.tid +27 -0
- package/editions/ja-JP/tiddlers/community/Community Themes.tid +27 -0
- package/editions/ja-JP/tiddlers/community/Community.tid +13 -0
- package/editions/ja-JP/tiddlers/community/Examples.tid +26 -0
- package/editions/ja-JP/tiddlers/community/Forums.tid +38 -0
- package/editions/ja-JP/tiddlers/community/Latest.tid +28 -0
- package/editions/ja-JP/tiddlers/community/Meetups.tid +16 -0
- package/editions/ja-JP/tiddlers/community/OXTWIG.tid +25 -0
- package/editions/ja-JP/tiddlers/community/Other Resources.tid +27 -0
- package/editions/ja-JP/tiddlers/community/TiddlyWiki Hangouts.tid +13 -0
- package/editions/ja-JP/tiddlers/community/TiddlyWiki on the Web.tid +18 -0
- package/editions/ja-JP/tiddlers/community/Tutorials.tid +28 -0
- package/editions/ja-JP/tiddlers/community/editions/_Noteself_ by Danielo Rodriguez.tid +35 -0
- package/editions/ja-JP/tiddlers/community/resources/TW5-firebase_ TiddlyWiki5 for Google Firebase by Peter Neumark.tid +29 -0
- package/editions/ja-JP/tiddlers/community/resources/TiddlyDrive Add-on for Google Drive by Joshua Stubbs.tid +26 -0
- package/editions/ja-JP/tiddlers/community/resources/TiddlyServer by Arlen Beiler.tid +30 -0
- package/editions/ja-JP/tiddlers/community/resources/Twexe_ Single File Tiddlywiki5 executable.tid +32 -0
- package/editions/ja-JP/tiddlers/community/resources/_Timimi_ Extension and executable by Riz.tid +36 -0
- package/editions/ja-JP/tiddlers/community/resources/_file-backups_ Extension Firefox by pmario.tid +20 -0
- package/editions/ja-JP/tiddlers/community/resources/_savetiddlers_ Extension for Chrome and Firefox by buggyj.tid +18 -0
- package/editions/ja-JP/tiddlers/concepts/Order of Tagged Tiddlers.tid +22 -0
- package/editions/ja-JP/tiddlers/concepts/TagTiddlers.tid +13 -0
- package/editions/ja-JP/tiddlers/demonstrations/KeyboardDrivenInput/Demonstration_ keyboard-driven-input Macro.tid +123 -0
- package/editions/ja-JP/tiddlers/demonstrations/Tasks/Compose ballad.tid +8 -0
- package/editions/ja-JP/tiddlers/demonstrations/Tasks/Get the Ring.tid +8 -0
- package/editions/ja-JP/tiddlers/demonstrations/Tasks/Go to Mordor.tid +8 -0
- package/editions/ja-JP/tiddlers/demonstrations/Tasks/Kill the Dragon.tid +9 -0
- package/editions/ja-JP/tiddlers/demonstrations/Tasks/Make the beds.tid +8 -0
- package/editions/ja-JP/tiddlers/demonstrations/Tasks/TaskManagementExample.tid +27 -0
- package/editions/ja-JP/tiddlers/demonstrations/Tasks/TaskManagementExampleDraggable.tid +25 -0
- package/editions/ja-JP/tiddlers/demonstrations/Tasks/TaskManagementExampleDraggableTemplate.tid +9 -0
- package/editions/ja-JP/tiddlers/demonstrations/Tasks/done.tid +8 -0
- package/editions/ja-JP/tiddlers/demonstrations/Tasks/task.tid +10 -0
- package/editions/ja-JP/tiddlers/features/Searching in TiddlyWiki.tid +24 -0
- package/editions/ja-JP/tiddlers/filters/Introduction to filter notation.tid +97 -0
- package/editions/ja-JP/tiddlers/gettingstarted/GettingStarted - Android.tid +22 -0
- package/editions/ja-JP/tiddlers/gettingstarted/GettingStarted - Chrome.tid +12 -0
- package/editions/ja-JP/tiddlers/gettingstarted/GettingStarted - Firefox.tid +13 -0
- package/editions/ja-JP/tiddlers/gettingstarted/GettingStarted - Internet Explorer.tid +13 -0
- package/editions/ja-JP/tiddlers/gettingstarted/GettingStarted - Node.js.tid +10 -0
- package/editions/ja-JP/tiddlers/gettingstarted/GettingStarted - Online.tid +15 -0
- package/editions/ja-JP/tiddlers/gettingstarted/GettingStarted - Safari.tid +13 -0
- package/editions/ja-JP/tiddlers/gettingstarted/GettingStarted - iOS.tid +10 -0
- package/editions/ja-JP/tiddlers/gettingstarted/GettingStarted.tid +17 -0
- package/editions/ja-JP/tiddlers/hellothere/Find Out More.tid +18 -0
- package/editions/ja-JP/tiddlers/hellothere/HelloThere.tid +19 -0
- package/editions/ja-JP/tiddlers/hellothere/Testimonials and Reviews.tid +15 -0
- package/editions/ja-JP/tiddlers/hellothere/Welcome.tid +8 -0
- package/editions/ja-JP/tiddlers/hellothere/quickstart/Quick Start.tid +23 -0
- package/editions/ja-JP/tiddlers/hellothere/quickstart/desktop.tid +11 -0
- package/editions/ja-JP/tiddlers/hellothere/quickstart/diy.tid +11 -0
- package/editions/ja-JP/tiddlers/hellothere/quickstart/tiddlyhost.tid +11 -0
- package/editions/ja-JP/tiddlers/hellothere/quickstart/xememex.tid +11 -0
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Funding.tid +10 -0
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Grok TiddlyWiki.tid +10 -0
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Intertwingled Innovations.tid +10 -0
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Introduction Video.tid +11 -0
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Latest Version.tid +15 -0
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Marketplace.tid +10 -0
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Newsletter.tid +10 -0
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWikiLinks.tid +9 -0
- package/editions/ja-JP/tiddlers/hellothere/thumbnails/HelloThumbnail - Twenty Years of TiddlyWiki.tid +10 -0
- package/editions/ja-JP/tiddlers/howtos/Adding a Twitter Follow button.tid +24 -0
- package/editions/ja-JP/tiddlers/howtos/Adopt a Titles Policy.tid +16 -0
- package/editions/ja-JP/tiddlers/howtos/Concatenating text and variables using macro substitution.tid +61 -0
- package/editions/ja-JP/tiddlers/howtos/Constructing JSON tiddlers.tid +18 -0
- package/editions/ja-JP/tiddlers/howtos/Creating SubStories.tid +34 -0
- package/editions/ja-JP/tiddlers/howtos/Editing Tiddlers with Emacs.tid +40 -0
- package/editions/ja-JP/tiddlers/howtos/Editing Tiddlers with Vim.tid +11 -0
- package/editions/ja-JP/tiddlers/howtos/Editor toolbar.tid +22 -0
- package/editions/ja-JP/tiddlers/howtos/Formatting List Results as Tables with CSS - Specified Columns Methods.tid +51 -0
- package/editions/ja-JP/tiddlers/howtos/Formatting List Results as Tables with CSS - Variable Column Method.tid +85 -0
- package/editions/ja-JP/tiddlers/howtos/Formatting_List_Results_as_Tables_(no_CSS).tid +51 -0
- package/editions/ja-JP/tiddlers/howtos/Height of text editor.tid +8 -0
- package/editions/ja-JP/tiddlers/howtos/How to add a banner for GitHub contributions.tid +22 -0
- package/editions/ja-JP/tiddlers/howtos/How to change the sort order of sub-branches in a TOC macro.tid +27 -0
- package/editions/ja-JP/tiddlers/howtos/How to create a custom story tiddler template.tid +42 -0
- package/editions/ja-JP/tiddlers/howtos/How to create a custom tiddler colour rule.tid +38 -0
- package/editions/ja-JP/tiddlers/howtos/How to create a custom tiddler icon rule.tid +38 -0
- package/editions/ja-JP/tiddlers/howtos/How to create keyboard shortcuts.tid +107 -0
- package/editions/ja-JP/tiddlers/howtos/How to customize TiddlyDesktop.tid +34 -0
- package/editions/ja-JP/tiddlers/howtos/How to embed PDF and other documents.tid +37 -0
- package/editions/ja-JP/tiddlers/howtos/How to export tiddlers.tid +32 -0
- package/editions/ja-JP/tiddlers/howtos/How to hide the author's and other fields with CSS.tid +33 -0
- package/editions/ja-JP/tiddlers/howtos/How to put the last modification date in a banner.tid +29 -0
- package/editions/ja-JP/tiddlers/howtos/How to update TiddlyWiki to the latest version.tid +9 -0
- package/editions/ja-JP/tiddlers/howtos/How to widen tiddlers (aka storyriver).tid +17 -0
- package/editions/ja-JP/tiddlers/howtos/How_to_add_a_new_tab_to_the_sidebar.tid +17 -0
- package/editions/ja-JP/tiddlers/howtos/How_to_turn_off_camel_case_linking.tid +27 -0
- package/editions/ja-JP/tiddlers/howtos/Insert link.tid +12 -0
- package/editions/ja-JP/tiddlers/howtos/Insert picture.tid +10 -0
- package/editions/ja-JP/tiddlers/howtos/KeyboardShortcuts.tid +38 -0
- package/editions/ja-JP/tiddlers/howtos/Making curved text with SVG.tid +28 -0
- package/editions/ja-JP/tiddlers/howtos/Modifying JSON tiddlers.tid +20 -0
- package/editions/ja-JP/tiddlers/howtos/More actions.tid +8 -0
- package/editions/ja-JP/tiddlers/howtos/Reading data from JSON tiddlers.tid +36 -0
- package/editions/ja-JP/tiddlers/howtos/Sharing a TiddlyWiki on Dropbox.tid +27 -0
- package/editions/ja-JP/tiddlers/howtos/Simple ways to write protect tiddlers.tid +32 -0
- package/editions/ja-JP/tiddlers/howtos/Structuring TiddlyWiki.tid +14 -0
- package/editions/ja-JP/tiddlers/howtos/Tagging.tid +42 -0
- package/editions/ja-JP/tiddlers/howtos/Text preview.tid +20 -0
- package/editions/ja-JP/tiddlers/howtos/The First Rule of Using TiddlyWiki.tid +37 -0
- package/editions/ja-JP/tiddlers/howtos/Upgrading.tid +64 -0
- package/editions/ja-JP/tiddlers/howtos/Using Excise.tid +20 -0
- package/editions/ja-JP/tiddlers/howtos/Using Stamp.tid +59 -0
- package/editions/ja-JP/tiddlers/howtos/Visible Transclusions.tid +16 -0
- package/editions/ja-JP/tiddlers/howtos/Windows HTA Hack.tid +18 -0
- package/editions/ja-JP/tiddlers/images/Icon Gallery.tid +16 -0
- package/editions/ja-JP/tiddlers/learning/Copying tiddlers between TiddlyWiki files.tid +11 -0
- package/editions/ja-JP/tiddlers/learning/Introduction to Lists.tid +59 -0
- package/editions/ja-JP/tiddlers/learning/Learning.tid +14 -0
- package/editions/ja-JP/tiddlers/menubar/gettingstarted.tid +7 -0
- package/editions/ja-JP/tiddlers/nodejs/Installing TiddlyWiki on Node.js.tid +44 -0
- package/editions/ja-JP/tiddlers/nodejs/Serving TW5 from Android.tid +48 -0
- package/editions/ja-JP/tiddlers/saving/Emergency Tiddler Export.tid +31 -0
- package/editions/ja-JP/tiddlers/saving/Encryption.tid +20 -0
- package/editions/ja-JP/tiddlers/saving/Installing TiddlyWiki on Microsoft Internet Information Server.tid +70 -0
- package/editions/ja-JP/tiddlers/saving/Saving on Android.tid +35 -0
- package/editions/ja-JP/tiddlers/saving/Saving on Browser with TiddlyStow.tid +19 -0
- package/editions/ja-JP/tiddlers/saving/Saving on Browser with the File System Access API.tid +22 -0
- package/editions/ja-JP/tiddlers/saving/Saving on TidGi.tid +27 -0
- package/editions/ja-JP/tiddlers/saving/Saving on TiddlyDesktop.tid +21 -0
- package/editions/ja-JP/tiddlers/saving/Saving on TiddlyHost.tid +21 -0
- package/editions/ja-JP/tiddlers/saving/Saving on a PHP Server.tid +50 -0
- package/editions/ja-JP/tiddlers/saving/Saving on iPad_iPhone.tid +31 -0
- package/editions/ja-JP/tiddlers/saving/Saving to a Git service.tid +32 -0
- package/editions/ja-JP/tiddlers/saving/Saving via WebDAV.tid +91 -0
- package/editions/ja-JP/tiddlers/saving/Saving via a Minimal Web Server.tid +48 -0
- package/editions/ja-JP/tiddlers/saving/Saving via minimal Ruby server.tid +21 -0
- package/editions/ja-JP/tiddlers/saving/Saving with Polly.tid +31 -0
- package/editions/ja-JP/tiddlers/saving/Saving with TW Receiver.tid +17 -0
- package/editions/ja-JP/tiddlers/saving/Saving with TiddlyFox.tid +15 -0
- package/editions/ja-JP/tiddlers/saving/Saving with TiddlyIE.tid +27 -0
- package/editions/ja-JP/tiddlers/saving/Saving with TiddlyPWA.tid +17 -0
- package/editions/ja-JP/tiddlers/saving/Saving with the HTML5 saver.tid +29 -0
- package/editions/ja-JP/tiddlers/saving/Saving.tid +75 -0
- package/editions/ja-JP/tiddlers/saving/TiddlyBucket - Save to AWS or Google Storage.tid +16 -0
- package/editions/ja-JP/tiddlers/saving/TiddlyWiki in the Sky for Dropbox.tid +19 -0
- package/editions/ja-JP/tiddlers/system/$_core_macros_list.tid +115 -0
- package/editions/ja-JP/tiddlers/system/$_core_macros_tag.tid +41 -0
- package/editions/ja-JP/tiddlers/system/$_core_ui_SideBar_Open.tid +42 -0
- package/editions/ja-JP/tiddlers/system/$_core_ui_TagPickerTagTemplate.tid +27 -0
- package/editions/ja-JP/tiddlers/system/TableOfContents.tid +16 -0
- package/editions/ja-JP/tiddlers/testimonials/Testimonials - Joe Armstrong.tid +9 -0
- package/editions/ja-JP/tiddlers/testimonials/Testimonials - Network World.tid +9 -0
- package/editions/ja-JP/tiddlers/testimonials/Testimonials - Product Hunt.tid +9 -0
- package/editions/ja-JP/tiddlers/videos/Getting Started Video.tid +13 -0
- package/editions/ja-JP/tiddlers/videos/Introducing TiddlyDesktop Video.tid +11 -0
- package/editions/ja-JP/tiddlers/videos/Introduction Video.tid +15 -0
- package/editions/ja-JP/tiddlers/videos/TiddlyWiki on Firefox for Android Video.tid +11 -0
- package/editions/ja-JP/tiddlers/videos/Videos.tid +13 -0
- package/editions/ja-JP/tiddlers/videos/Working with the TiddlyWiki5 repository video.tid +11 -0
- package/editions/ja-JP/tiddlers/wikitext/Images in WikiText.tid +69 -0
- package/editions/ja-JP/tiddlers/workingwithtw/Audio.tid +27 -0
- package/editions/ja-JP/tiddlers/workingwithtw/BrowserCompatibility.tid +14 -0
- package/editions/ja-JP/tiddlers/workingwithtw/Creating and editing tiddlers.tid +37 -0
- package/editions/ja-JP/tiddlers/workingwithtw/Creating journal tiddlers.tid +42 -0
- package/editions/ja-JP/tiddlers/workingwithtw/Formatting text in TiddlyWiki.tid +59 -0
- package/editions/ja-JP/tiddlers/workingwithtw/Navigating between open tiddlers.tid +22 -0
- package/editions/ja-JP/tiddlers/workingwithtw/Performance.tid +35 -0
- package/editions/ja-JP/tiddlers/workingwithtw/Sharing your tiddlers with others.tid +19 -0
- package/editions/ja-JP/tiddlers/workingwithtw/Using links to navigate between tiddlers.tid +55 -0
- package/editions/ja-JP/tiddlers/workingwithtw/Working with TiddlyWiki.tid +13 -0
- package/editions/ko-KR/tiddlers/system/ContributionBanner.tid +1 -1
- package/editions/ko-KR/tiddlers/system/Sources.tid +1 -1
- package/editions/multiwikiserver/tiddlers/$__StoryList.tid +0 -0
- package/editions/pluginlibrary/tiddlers/GettingStarted.tid +2 -2
- package/editions/pluginlibrary/tiddlywiki.info +1 -1
- package/editions/prerelease/tiddlers/{Release 5.3.5.tid → Release 5.3.7.tid } +6 -16
- package/editions/prerelease/tiddlers/system/DefaultTiddlers.tid +4 -0
- package/editions/prerelease/tiddlers/system/PrereleaseLocalPluginLibrary.tid +1 -1
- package/editions/prerelease/tiddlers/system/PrereleaseOfficialPluginLibrary.tid +1 -1
- package/editions/prerelease/tiddlers/system/SiteDomain.tid +3 -0
- package/editions/prerelease/tiddlers/system/SitePreviewUrl.tid +3 -0
- package/editions/prerelease/tiddlers/system/SiteUrl.tid +3 -0
- package/editions/prerelease/tiddlers/system/TiddlyWiki Pre-release.tid +8 -2
- package/editions/prerelease/tiddlers/system/styles.tid +6 -0
- package/editions/server/tiddlers/$__StoryList.tid +3 -0
- package/editions/test/tiddlers/tests/data/conditionals/Basic.tid +1 -1
- package/editions/test/tiddlers/tests/data/conditionals/BlockMode.tid +6 -6
- package/editions/test/tiddlers/tests/data/conditionals/Else.tid +1 -1
- package/editions/test/tiddlers/tests/data/conditionals/Elseif.tid +1 -1
- package/editions/test/tiddlers/tests/data/conditionals/MissingEndIf.tid +1 -1
- package/editions/test/tiddlers/tests/data/conditionals/MultipleResults.tid +1 -1
- package/editions/test/tiddlers/tests/data/conditionals/Nested.tid +6 -6
- package/editions/test/tiddlers/tests/data/conditionals/NestedElseif.tid +8 -8
- package/editions/test/tiddlers/tests/data/data-widget/ImportCustomTitle.tid +23 -0
- package/editions/test/tiddlers/tests/data/filters/fake-variables.tid +1 -1
- package/editions/test/tiddlers/tests/data/functions/FunctionFilterrunVariables4.tid +20 -0
- package/editions/test/tiddlers/tests/data/genesis-widget/MultipleAttributes.tid +1 -1
- package/editions/test/tiddlers/tests/data/macros/unusedtitle/basic-params.tid +9 -1
- package/editions/test/tiddlers/tests/data/macros/unusedtitle/template-startCount.tid +27 -0
- package/editions/test/tiddlers/tests/data/macros/unusedtitle/template.tid +1 -1
- package/editions/test/tiddlers/tests/data/messages/tm-new-tiddler/create-a-new-tiddler-with-a-tag.tid +38 -0
- package/editions/test/tiddlers/tests/data/messages/tm-new-tiddler/default.tid +39 -0
- package/editions/test/tiddlers/tests/data/messages/tm-new-tiddler/new-from-template-with-tag.tid +44 -0
- package/editions/test/tiddlers/tests/data/messages/tm-new-tiddler/new-from-template-without-tag.tid +65 -0
- package/editions/test/tiddlers/tests/data/messages/tm-new-tiddler/new-with-tag.tid +40 -0
- package/editions/test/tiddlers/tests/data/reserved-wikitext/ReservedWikiText.tid +54 -0
- package/editions/test/tiddlers/tests/data/tabs-macro/expected-test-tabs-horizontal-a.tid +5 -0
- package/editions/test/tiddlers/tests/data/tabs-macro/expected-test-tabs-horizontal-all.tid +5 -0
- package/editions/test/tiddlers/tests/data/tabs-macro/expected-test-tabs-vertical.tid +5 -0
- package/editions/test/tiddlers/tests/data/widgets/ElementWidgetStyleAttributes2.tid +15 -0
- package/editions/test/tiddlers/tests/data/widgets/view/ViewWidget-field-format-text-doubleurlencoded.tid +22 -0
- package/editions/test/tiddlers/tests/data/widgets/view/ViewWidget-field-format-text-htmlencoded.tid +21 -0
- package/editions/test/tiddlers/tests/data/widgets/view/ViewWidget-field-format-text-htmltextencoded.tid +21 -0
- package/editions/test/tiddlers/tests/data/widgets/view/ViewWidget-field-format-text-urlencoded.tid +22 -0
- package/editions/test/tiddlers/tests/data/widgets/view/ViewWidget-field-format-text.tid +19 -0
- package/editions/test/tiddlers/tests/data/widgets/view/ViewWidget-field-index.tid +28 -0
- package/editions/test/tiddlers/tests/data/widgets/view/ViewWidget-field-text.tid +18 -0
- package/editions/test/tiddlers/tests/data/widgets/view/ViewWidget-field-title.tid +17 -0
- package/editions/test/tiddlers/tests/data/widgets/view/ViewWidget-format-date-template.tid +20 -0
- package/editions/test/tiddlers/tests/test-backtranscludes.js +16 -0
- package/editions/test/tiddlers/tests/test-checkbox-widget.js +1 -1
- package/editions/test/tiddlers/tests/test-tags-operator.js +75 -0
- package/editions/test/tiddlers/tests/test-wikitext-parser.js +94 -0
- package/editions/test/tiddlers/tests/test-wikitext-tabs-macro.js +34 -37
- package/editions/translators/tiddlers/Extracting Translations.tid +0 -1
- package/editions/translators/tiddlywiki.info +27 -26
- package/editions/tw.org/tiddlywiki.info +2 -0
- package/editions/tw5.com/tiddlers/$__StoryList.tid +5 -0
- package/editions/tw5.com/tiddlers/Core Classes.tid +16 -0
- package/editions/tw5.com/tiddlers/Core Functions.tid +8 -0
- package/editions/tw5.com/tiddlers/Core Messages.tid +10 -0
- package/editions/tw5.com/tiddlers/Core Procedures.tid +8 -0
- package/editions/tw5.com/tiddlers/Core Widgets.tid +10 -0
- package/editions/tw5.com/tiddlers/{hiddensettings/Hidden Settings_ Import Content Types for Editor.tid → Hidden Setting_ Import Content Types for Editor.tid } +1 -1
- package/editions/tw5.com/tiddlers/Operators without parameters.tid +18 -0
- package/editions/tw5.com/tiddlers/Selection Constructors Conditional.tid +9 -0
- package/editions/tw5.com/tiddlers/Welcome.tid +9 -0
- package/editions/tw5.com/tiddlers/about/Archive.tid +4 -4
- package/editions/tw5.com/tiddlers/about/Contributors.tid +1 -1
- package/editions/tw5.com/tiddlers/about/Developers.tid +20 -8
- package/editions/tw5.com/tiddlers/about/History of TiddlyWiki.tid +19 -3
- package/editions/tw5.com/tiddlers/actionTiddlerList Variable.tid +9 -0
- package/editions/tw5.com/tiddlers/cards/card-procedures.tid +86 -0
- package/editions/tw5.com/tiddlers/cards/card-styles.tid +256 -0
- package/editions/tw5.com/tiddlers/commands/Commands.tid +8 -2
- package/editions/tw5.com/tiddlers/commands/RenderTiddlerCommand.tid +3 -2
- package/editions/tw5.com/tiddlers/commands/RenderTiddlersCommand.tid +3 -2
- package/editions/tw5.com/tiddlers/commands/SaveTiddlerCommand.tid +4 -4
- package/editions/tw5.com/tiddlers/commands/SaveTiddlersCommand.tid +4 -4
- package/editions/tw5.com/tiddlers/commands/ServerCommand.tid +3 -1
- package/editions/tw5.com/tiddlers/community/Community.tid +1 -1
- package/editions/tw5.com/tiddlers/community/Contributor License Agreement.tid +2 -2
- package/editions/tw5.com/tiddlers/community/Forums.tid +10 -6
- package/editions/tw5.com/tiddlers/community/HelpingTiddlyWiki.tid +2 -2
- package/editions/tw5.com/tiddlers/community/ReportingBugs.tid +1 -1
- package/editions/tw5.com/tiddlers/community/Signing the Contributor License Agreement.tid +1 -1
- package/editions/tw5.com/tiddlers/community/TiddlyWiki Newsletter Team.tid +60 -0
- package/editions/tw5.com/tiddlers/community/TiddlyWiki Newsletter.tid +4 -0
- package/editions/tw5.com/tiddlers/community/TiddlyWiki on the Web.tid +16 -0
- package/editions/tw5.com/tiddlers/community/links/TalkTiddlyWiki.tid +7 -0
- package/editions/tw5.com/tiddlers/community/links/TiddlyWiki on Discord.tid +7 -0
- package/editions/tw5.com/tiddlers/community/links/TiddlyWiki on GitHub.tid +7 -0
- package/editions/tw5.com/tiddlers/community/links/TiddlyWiki on Gitter.tid +7 -0
- package/editions/tw5.com/tiddlers/community/links/TiddlyWiki on Mastodon.tid +7 -0
- package/editions/tw5.com/tiddlers/community/links/TiddlyWiki on Open Collective.tid +7 -0
- package/editions/tw5.com/tiddlers/community/links/TiddlyWiki on Reddit.tid +7 -0
- package/editions/tw5.com/tiddlers/community/links/TiddlyWiki on Twitter.tid +7 -0
- package/editions/tw5.com/tiddlers/community/links/TiddlyWiki on YouTube.tid +7 -0
- package/editions/tw5.com/tiddlers/community/links/external-links-view-template.tid +8 -0
- package/editions/tw5.com/tiddlers/community/resources/Filter Examples by Tobias Beer.tid +1 -1
- package/editions/tw5.com/tiddlers/community/resources/Grok TiddlyWiki by Soren Bjornstad.tid +5 -5
- package/editions/tw5.com/tiddlers/concepts/CompoundTiddlers.tid +5 -2
- package/editions/tw5.com/tiddlers/concepts/Dominant Append.tid +3 -1
- package/editions/tw5.com/tiddlers/concepts/ExternalImages.tid +5 -5
- package/editions/tw5.com/tiddlers/concepts/Macros.tid +2 -2
- package/editions/tw5.com/tiddlers/concepts/Messages.tid +3 -6
- package/editions/tw5.com/tiddlers/concepts/Railroad Diagrams.tid +2 -0
- package/editions/tw5.com/tiddlers/concepts/Selection Constructors.tid +5 -1
- package/editions/tw5.com/tiddlers/concepts/TestCaseTiddlers.tid +15 -10
- package/editions/tw5.com/tiddlers/currentTab Variable.tid +12 -0
- package/editions/tw5.com/tiddlers/customising/Alternative page layouts.tid +3 -4
- package/editions/tw5.com/tiddlers/definitions/CamelCase.tid +7 -3
- package/editions/tw5.com/tiddlers/definitions/GitHub.tid +1 -1
- package/editions/tw5.com/tiddlers/definitions/Intertwingled Innovations.tid +9 -0
- package/editions/tw5.com/tiddlers/definitions/JeremyRuston.tid +2 -1
- package/editions/tw5.com/tiddlers/definitions/TiddlyFox.tid +2 -14
- package/editions/tw5.com/tiddlers/definitions/TiddlyWeb.tid +1 -1
- package/editions/tw5.com/tiddlers/definitions/Tiddlyhost.tid +3 -4
- package/editions/tw5.com/tiddlers/definitions/WordJoiner.tid +9 -0
- package/editions/tw5.com/tiddlers/definitions/Xememex.tid +5 -6
- package/editions/tw5.com/tiddlers/demonstrations/SampleAlert.tid +9 -0
- package/editions/tw5.com/tiddlers/empty-tag-node-template.tid +12 -0
- package/editions/tw5.com/tiddlers/features/AutoSave.tid +1 -1
- package/editions/tw5.com/tiddlers/fields/_canonical_uriField.tid +5 -0
- package/editions/tw5.com/tiddlers/filters/compare Operator.tid +9 -9
- package/editions/tw5.com/tiddlers/filters/decodebase64 Operator (Examples).tid +10 -0
- package/editions/tw5.com/tiddlers/filters/decodebase64 Operator.tid +5 -3
- package/editions/tw5.com/tiddlers/filters/encodebase64 Operator (Examples).tid +10 -0
- package/editions/tw5.com/tiddlers/filters/encodebase64 Operator.tid +5 -3
- package/editions/tw5.com/tiddlers/filters/examples/compare Operator (Examples).tid +1 -0
- package/editions/tw5.com/tiddlers/filters/list.tid +9 -9
- package/editions/tw5.com/tiddlers/filters/minlength.tid +2 -2
- package/editions/tw5.com/tiddlers/filters/sortsub Operator.tid +14 -10
- package/editions/tw5.com/tiddlers/filters/syntax/Filter Parameter.tid +3 -1
- package/editions/tw5.com/tiddlers/filters/syntax/Named Filter Run Prefix.tid +1 -1
- package/editions/tw5.com/tiddlers/filters/syntax/Sort Filter Run Prefix (Examples).tid +1 -1
- package/editions/tw5.com/tiddlers/filters/syntax/Sort Filter Run Prefix.tid +27 -7
- package/editions/tw5.com/tiddlers/filters/unique.tid +4 -0
- package/editions/tw5.com/tiddlers/functions/Functions.tid +8 -8
- package/editions/tw5.com/tiddlers/gettingstarted/GettingStarted.tid +2 -2
- package/editions/tw5.com/tiddlers/hellothere/Find Out More.tid +16 -0
- package/editions/tw5.com/tiddlers/hellothere/HelloThere.tid +6 -59
- package/editions/tw5.com/tiddlers/hellothere/HelloThumbnail.tid +1 -1
- package/editions/tw5.com/tiddlers/hellothere/Testimonials and Reviews.tid +13 -0
- package/editions/tw5.com/tiddlers/hellothere/Welcome.tid +7 -0
- package/editions/tw5.com/tiddlers/hellothere/badges/ProductHunt-Link.tid +1 -1
- package/editions/tw5.com/tiddlers/hellothere/quickstart/Quick Start.tid +20 -1
- package/editions/tw5.com/tiddlers/hellothere/quickstart/desktop.tid +1 -1
- package/editions/tw5.com/tiddlers/hellothere/quickstart/diy.tid +1 -1
- package/editions/tw5.com/tiddlers/hellothere/quickstart/tiddlyhost.tid +1 -1
- package/editions/tw5.com/tiddlers/hellothere/quickstart/xememex.tid +2 -2
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Funding.tid +0 -1
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Grok TiddlyWiki.tid +3 -2
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Intertwingled Innovations.tid +10 -0
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Marketplace.tid +0 -1
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - MultiWikiServer.tid +10 -0
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Newsletter.tid +0 -1
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWiki Privacy.tid +9 -0
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - TiddlyWikiLinks.tid +1 -1
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail - Twenty Years of TiddlyWiki.tid +9 -0
- package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting Content to be displayed for empty story.tid +12 -0
- package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting Default Tiddler Colour.tid +7 -0
- package/editions/tw5.com/tiddlers/hiddensettings/Hidden Setting_ Tag Pill Drag Filter.tid +22 -0
- package/editions/tw5.com/tiddlers/howtos/Configuring the default TiddlerInfo tab.tid +1 -1
- package/editions/tw5.com/tiddlers/howtos/Generating Static Sites with TiddlyWiki.tid +7 -7
- package/editions/tw5.com/tiddlers/howtos/How to add a banner for GitHub contributions.tid +1 -1
- package/editions/tw5.com/tiddlers/howtos/How to build a TiddlyWiki5 from individual tiddlers.tid +2 -2
- package/editions/tw5.com/tiddlers/howtos/How_to_turn_off_camel_case_linking.tid +8 -2
- package/editions/tw5.com/tiddlers/howtos/KeyboardShortcuts.tid +1 -0
- package/editions/tw5.com/tiddlers/howtos/Using Stylesheets.tid +2 -2
- package/editions/tw5.com/tiddlers/images/Blurry Lawn.jpg.meta +2 -1
- package/editions/tw5.com/tiddlers/images/Favicon template.svg.meta +2 -1
- package/editions/tw5.com/tiddlers/images/Funding.png.meta +1 -0
- package/editions/tw5.com/tiddlers/images/Grok TiddlyWiki.png +0 -0
- package/editions/tw5.com/tiddlers/images/Grok TiddlyWiki.png.meta +1 -0
- package/editions/tw5.com/tiddlers/images/Intertwingled Innovations.png +0 -0
- package/editions/tw5.com/tiddlers/images/Intertwingled Innovations.png.meta +3 -0
- package/editions/tw5.com/tiddlers/images/Introduction Video Thumbnail.jpg +0 -0
- package/editions/tw5.com/tiddlers/images/Introduction Video Thumbnail.jpg.meta +2 -1
- package/editions/tw5.com/tiddlers/images/MWS Banner.png +0 -0
- package/editions/tw5.com/tiddlers/images/MWS Banner.png.meta +4 -0
- package/editions/tw5.com/tiddlers/images/Marketplace Banner.png.meta +1 -0
- package/editions/tw5.com/tiddlers/images/Motovun Jack.ascii.tid +1 -0
- package/editions/tw5.com/tiddlers/images/Motovun Jack.jpg.meta +1 -0
- package/editions/tw5.com/tiddlers/images/Motovun Jack.pdf.meta +1 -0
- package/editions/tw5.com/tiddlers/images/New Release Banner.png +0 -0
- package/editions/tw5.com/tiddlers/images/New Release Banner.png.meta +1 -0
- package/editions/tw5.com/tiddlers/images/Newnham Horizon.jpg.meta +1 -0
- package/editions/tw5.com/tiddlers/images/Open Collective Logo.tid +2 -1
- package/editions/tw5.com/tiddlers/images/PerlinLight.jpg.meta +1 -0
- package/editions/tw5.com/tiddlers/images/Reddit Logo.tid +1 -0
- package/editions/tw5.com/tiddlers/images/TWEUM Thumbnail.jpg.meta +1 -0
- package/editions/tw5.com/tiddlers/images/Tiddler Fishes.svg.meta +1 -0
- package/editions/tw5.com/tiddlers/images/Tiddler Poster.png.meta +1 -0
- package/editions/tw5.com/tiddlers/images/TiddlyFox Apocalypse.png.meta +1 -0
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Classic.png.meta +1 -0
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Newsletter Badge.png.meta +5 -2
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.png +0 -0
- package/editions/tw5.com/tiddlers/images/TiddlyWiki Privacy Badge.png.meta +6 -0
- package/editions/tw5.com/tiddlers/images/TiddlyWikiLinks.png.meta +1 -0
- package/editions/tw5.com/tiddlers/images/Tiddlyhost Logo.png.meta +1 -0
- package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.png +0 -0
- package/editions/tw5.com/tiddlers/images/Twenty Years of TiddlyWiki.png.meta +4 -0
- package/editions/tw5.com/tiddlers/images/Xememex Logo.svg.meta +1 -0
- package/editions/tw5.com/tiddlers/images/favicon.png.meta +1 -0
- package/editions/tw5.com/tiddlers/images/green_favicon.png.meta +1 -0
- package/editions/tw5.com/tiddlers/macros/CoreMacros.tid +2 -1
- package/editions/tw5.com/tiddlers/macros/TableOfContentsMacro.tid +15 -9
- package/editions/tw5.com/tiddlers/macros/TabsMacro.tid +2 -2
- package/editions/tw5.com/tiddlers/macros/UnusedTitleMacro.tid +5 -2
- package/editions/tw5.com/tiddlers/macros/examples/unusedtitle Macro (Examples 1).tid +15 -1
- package/editions/tw5.com/tiddlers/macros/examples/unusedtitle.tid +3 -2
- package/editions/tw5.com/tiddlers/macros/show-filter-count.tid +21 -0
- package/editions/tw5.com/tiddlers/macros/tag-picker_Macro.tid +3 -2
- package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-edit-text-operation.tid +16 -14
- package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-http-request Examples.tid +2 -1
- package/editions/tw5.com/tiddlers/messages/WidgetMessage_ tm-http-request.tid +2 -0
- package/editions/tw5.com/tiddlers/nodejs/Customising Tiddler File Naming.tid +4 -4
- package/editions/tw5.com/tiddlers/nodejs/Installing TiddlyWiki Prerelease on Node.js.tid +1 -1
- package/editions/tw5.com/tiddlers/nodejs/Installing TiddlyWiki on Node.js.tid +1 -1
- package/editions/tw5.com/tiddlers/nodejs/Using TiddlyWiki on Node.js.tid +2 -2
- package/editions/tw5.com/tiddlers/nodejs/Working with the TiddlyWiki5 repository.tid +1 -1
- package/editions/tw5.com/tiddlers/nodejs/tiddlywiki.files_Files.tid +1 -1
- package/editions/tw5.com/tiddlers/nodejs/tiddlywiki.info_Files.tid +4 -4
- package/editions/tw5.com/tiddlers/plugins/D3 Plugin.tid +4 -4
- package/editions/tw5.com/tiddlers/plugins/Mobile Drag And Drop Shim Plugin.tid +4 -3
- package/editions/tw5.com/tiddlers/plugins/Railroad Plugin.tid +7 -1
- package/editions/tw5.com/tiddlers/pragmas/Pragma_ _rules.tid +3 -3
- package/editions/tw5.com/tiddlers/procedures/Procedures.tid +2 -2
- package/editions/tw5.com/tiddlers/readme/ReadMe.tid +22 -5
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.0.tid +3 -3
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.1.tid +4 -4
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.10.tid +47 -47
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.11.tid +1 -1
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.12.tid +27 -27
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.13.tid +6 -6
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.14.tid +79 -79
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.15.tid +29 -29
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.16.tid +59 -59
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.17.tid +15 -15
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.18.tid +48 -48
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.19.tid +7 -7
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.2.tid +8 -8
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.20.tid +68 -68
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.21.tid +17 -17
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.22.tid +76 -76
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.23.tid +168 -168
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.3.tid +27 -27
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.4.tid +8 -8
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.5.tid +42 -42
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.6.tid +13 -13
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.7.tid +2 -2
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.8.tid +45 -45
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.1.9.tid +20 -20
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.0.tid +120 -120
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.1.tid +22 -22
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.2.tid +45 -45
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.3.tid +62 -62
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.4.tid +54 -54
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.5.tid +2 -2
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.6.tid +50 -50
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.2.7.tid +2 -2
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.0.tid +35 -35
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.1.tid +18 -18
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.2.tid +47 -47
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.3.tid +6 -6
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.4.tid +48 -48
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.5.tid +50 -0
- package/editions/tw5.com/tiddlers/releasenotes/Release 5.3.6.tid +187 -0
- package/editions/tw5.com/tiddlers/releasenotes/Releases.tid +2 -0
- package/editions/tw5.com/tiddlers/releasenotes/alpha/Release 5.0.0alpha12.tid +1 -1
- package/editions/tw5.com/tiddlers/releasenotes/alpha/Release 5.0.0alpha13.tid +1 -1
- package/editions/tw5.com/tiddlers/releasenotes/alpha/Release 5.0.0alpha14.tid +1 -1
- package/editions/tw5.com/tiddlers/releasenotes/alpha/Release 5.0.0alpha15.tid +1 -1
- package/editions/tw5.com/tiddlers/releasenotes/alpha/Release 5.0.0alpha16.tid +1 -1
- package/editions/tw5.com/tiddlers/releasenotes/alpha/Release 5.0.0alpha17.tid +1 -1
- package/editions/tw5.com/tiddlers/releasenotes/alpha/Release 5.0.1alpha.tid +1 -1
- package/editions/tw5.com/tiddlers/releasenotes/beta/Release 5.0.10beta.tid +16 -16
- package/editions/tw5.com/tiddlers/releasenotes/beta/Release 5.0.11beta.tid +17 -17
- package/editions/tw5.com/tiddlers/releasenotes/beta/Release 5.0.12beta.tid +1 -1
- package/editions/tw5.com/tiddlers/releasenotes/beta/Release 5.0.13beta.tid +29 -29
- package/editions/tw5.com/tiddlers/releasenotes/beta/Release 5.0.14beta.tid +29 -29
- package/editions/tw5.com/tiddlers/releasenotes/beta/Release 5.0.15beta.tid +18 -18
- package/editions/tw5.com/tiddlers/releasenotes/beta/Release 5.0.16beta.tid +14 -14
- package/editions/tw5.com/tiddlers/releasenotes/beta/Release 5.0.17beta.tid +20 -20
- package/editions/tw5.com/tiddlers/releasenotes/beta/Release 5.0.18beta.tid +9 -9
- package/editions/tw5.com/tiddlers/releasenotes/beta/Release 5.0.2beta.tid +1 -1
- package/editions/tw5.com/tiddlers/releasenotes/beta/Release 5.0.3beta.tid +1 -1
- package/editions/tw5.com/tiddlers/releasenotes/beta/Release 5.0.4beta.tid +5 -5
- package/editions/tw5.com/tiddlers/releasenotes/beta/Release 5.0.5beta.tid +1 -1
- package/editions/tw5.com/tiddlers/releasenotes/beta/Release 5.0.6beta.tid +13 -13
- package/editions/tw5.com/tiddlers/releasenotes/beta/Release 5.0.7beta.tid +11 -11
- package/editions/tw5.com/tiddlers/releasenotes/beta/Release 5.0.8beta.tid +12 -12
- package/editions/tw5.com/tiddlers/releasenotes/beta/Release 5.0.9beta.tid +32 -32
- package/editions/tw5.com/tiddlers/roadmap/RoadMap.tid +1 -1
- package/editions/tw5.com/tiddlers/roadmap/multiwikiserver/MWS - Installation using Git.tid +17 -0
- package/editions/tw5.com/tiddlers/roadmap/multiwikiserver/MWS - Installation.tid +15 -0
- package/editions/tw5.com/tiddlers/roadmap/multiwikiserver/MWS - Usage.tid +13 -0
- package/editions/tw5.com/tiddlers/roadmap/multiwikiserver/MultiWikiServer.tid +26 -0
- package/editions/tw5.com/tiddlers/saving/Encryption.tid +2 -2
- package/editions/tw5.com/tiddlers/saving/Example config-tiddlyweb-host for IIS.txt.meta +1 -1
- package/editions/tw5.com/tiddlers/saving/Example package.json for IIS.txt.meta +1 -1
- package/editions/tw5.com/tiddlers/saving/Example tiddlywiki.info for IIS.txt.meta +1 -1
- package/editions/tw5.com/tiddlers/saving/Example web.config for IIS.txt.meta +1 -1
- package/editions/tw5.com/tiddlers/saving/Saving on TidGi.tid +1 -1
- package/editions/tw5.com/tiddlers/saving/Saving on TiddlyHost.tid +2 -0
- package/editions/tw5.com/tiddlers/saving/Saving with TiddlyPWA.tid +15 -0
- package/editions/tw5.com/tiddlers/system/$__config_DefaultSidebarTab.tid +7 -0
- package/editions/tw5.com/tiddlers/system/$__startup_open-welcome.tid +4 -0
- package/editions/tw5.com/tiddlers/system/ContributionBanner.tid +1 -1
- package/editions/tw5.com/tiddlers/system/DefaultTiddlers.tid +4 -0
- package/editions/tw5.com/tiddlers/system/SiteDomain.tid +3 -0
- package/editions/tw5.com/tiddlers/system/SitePreviewUrl.tid +3 -0
- package/editions/tw5.com/tiddlers/system/SiteTitle.tid +1 -1
- package/editions/tw5.com/tiddlers/system/SiteUrl.tid +3 -0
- package/editions/tw5.com/tiddlers/system/Sources.tid +1 -1
- package/editions/tw5.com/tiddlers/system/TableOfContents.tid +2 -2
- package/editions/tw5.com/tiddlers/system/doc-macros.tid +9 -1
- package/editions/tw5.com/tiddlers/system/filter-run-template.tid +4 -4
- package/editions/tw5.com/tiddlers/system/netlify-build-badge.tid +17 -0
- package/editions/tw5.com/tiddlers/system/operator-macros.tid +2 -2
- package/editions/tw5.com/tiddlers/system/operator-template.tid +4 -4
- package/editions/tw5.com/tiddlers/system/systemtag-template.tid +12 -6
- package/editions/tw5.com/tiddlers/system/tw5.com-styles.tid +25 -283
- package/editions/tw5.com/tiddlers/system/version-macros.tid +11 -9
- package/editions/tw5.com/tiddlers/system/wikitext-macros.tid +4 -44
- package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ClassFilters_PageTemplate.tid +1 -1
- package/editions/tw5.com/tiddlers/systemtags/SystemTag_ $__tags_ControlPanel_SettingsTab.tid +9 -0
- package/editions/tw5.com/tiddlers/tag-picker Macro (Examples).tid +13 -13
- package/editions/tw5.com/tiddlers/testcases/DataWidget/FilterMissingTiddler.tid +17 -0
- package/editions/tw5.com/tiddlers/testcases/DataWidget/ImportCustomTitle.tid +29 -0
- package/editions/tw5.com/tiddlers/testcases/HTML/BlockModeInHTMLTable.tid +30 -0
- package/editions/tw5.com/tiddlers/testcases/HTML/OpenTagBlankLine.tid +23 -0
- package/editions/tw5.com/tiddlers/testcases/HTML/OpenTagBlankLineInBoldSyntax.tid +22 -0
- package/editions/tw5.com/tiddlers/testcases/HTML/OpenTagBlankLineInTableSyntax.tid +22 -0
- package/editions/tw5.com/tiddlers/testcases/HTML/OpenTagNoBlankLine.tid +34 -0
- package/editions/tw5.com/tiddlers/testcases/RevealWidget/AccordionSlider.tid +30 -0
- package/editions/tw5.com/tiddlers/testcases/RevealWidget/Popup.tid +27 -0
- package/editions/tw5.com/tiddlers/testcases/RevealWidget/SimpleReveal.tid +27 -0
- package/editions/tw5.com/tiddlers/testcases/RevealWidget/TextReference.tid +23 -0
- package/editions/tw5.com/tiddlers/testimonials/Testimonials - Product Hunt.tid +2 -0
- package/editions/tw5.com/tiddlers/variables/Behaviour of invoked variables depends on how the variable was declared.tid +5 -5
- package/editions/tw5.com/tiddlers/variables/Behaviour of variables invoked via normal wikitext.tid +2 -2
- package/editions/tw5.com/tiddlers/variables/Behaviour of variables invoked via widget attributes.tid +2 -2
- package/editions/tw5.com/tiddlers/variables/Core Variables.tid +4 -3
- package/editions/tw5.com/tiddlers/variables/Variables.tid +2 -2
- package/editions/tw5.com/tiddlers/variables/actionTiddler Variable.tid +2 -2
- package/editions/tw5.com/tiddlers/videos/Getting Started Video.tid +1 -1
- package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Example 1.tid +7 -18
- package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Example 2.tid +9 -17
- package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Example 3.tid +10 -17
- package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Example 4.tid +9 -16
- package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget Example 5.tid +9 -21
- package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget.tid +4 -35
- package/editions/tw5.com/tiddlers/widgets/ActionCreateTiddlerWidget_Example.tid +17 -7
- package/editions/tw5.com/tiddlers/widgets/CodeblockWidget.tid +2 -2
- package/editions/tw5.com/tiddlers/widgets/Custom Widgets.tid +2 -2
- package/editions/tw5.com/tiddlers/widgets/DataWidget.tid +2 -1
- package/editions/tw5.com/tiddlers/widgets/DroppableWidget.tid +32 -13
- package/editions/tw5.com/tiddlers/widgets/EditTextWidget.tid +18 -1
- package/editions/tw5.com/tiddlers/widgets/EditWidget.tid +14 -1
- package/editions/tw5.com/tiddlers/widgets/GenesisWidget.tid +1 -1
- package/editions/tw5.com/tiddlers/widgets/LinkCatcherWidget.tid +6 -2
- package/editions/tw5.com/tiddlers/widgets/LinkWidget.tid +4 -2
- package/editions/tw5.com/tiddlers/widgets/RevealWidget.tid +5 -52
- package/editions/tw5.com/tiddlers/widgets/Widgets.tid +2 -4
- package/editions/tw5.com/tiddlers/wikitext/Conditional Shortcut Syntax.tid +16 -16
- package/editions/tw5.com/tiddlers/wikitext/HTML Entities.tid +3 -2
- package/editions/tw5.com/tiddlers/wikitext/HTML in WikiText.tid +7 -9
- package/editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid +1 -1
- package/editions/tw5.com/tiddlers/wikitext/Utility Classes.tid +2 -1
- package/editions/tw5.com/tiddlers/wikitext/parser/Places where the parser ignores WikiText.tid +2 -2
- package/editions/tw5.com/tiddlers/wikitext/parser/WikiText parser mode_ HTML examples.tid +6 -39
- package/editions/tw5.com/tiddlers/workingwithtw/TiddlyWiki Privacy and Security.tid +48 -0
- package/editions/tw5.com/tiddlywiki.info +1 -4
- package/editions/tw5.com-docs/tiddlers/Welcome to tw5.com-docs.tid +1 -1
- package/editions/tw5.com-server/tiddlywiki.info +0 -1
- package/eslint.config.js +333 -0
- package/languages/ar-PS/plugin.info +1 -1
- package/languages/ca-ES/plugin.info +1 -1
- package/languages/cs-CZ/plugin.info +1 -1
- package/languages/da-DK/plugin.info +1 -1
- package/languages/de-DE/Snippets/FunctionDefinition.tid +7 -0
- package/languages/de-DE/Snippets/MacroDefinition.tid +1 -1
- package/languages/de-DE/Snippets/ProcedureDefinition.tid +8 -0
- package/languages/de-DE/Types/application_javascript.tid +1 -0
- package/languages/de-DE/Types/application_json.tid +1 -0
- package/languages/de-DE/Types/application_x_tiddler_dictionary.tid +1 -0
- package/languages/de-DE/Types/image_gif.tid +2 -1
- package/languages/de-DE/Types/image_jpeg.tid +1 -0
- package/languages/de-DE/Types/image_png.tid +1 -0
- package/languages/de-DE/Types/image_svg_xml.tid +1 -0
- package/languages/de-DE/Types/text_css.tid +1 -0
- package/languages/de-DE/Types/text_html.tid +1 -0
- package/languages/de-DE/Types/text_plain.tid +1 -0
- package/languages/de-DE/Types/text_vnd.tiddlywiki.tid +2 -1
- package/languages/de-DE/Types/text_vnd.tiddlywiki_multiple.tid +5 -0
- package/languages/el-GR/plugin.info +1 -1
- package/languages/en-PH/Buttons.multids +13 -0
- package/languages/en-PH/ControlPanel.multids +9 -0
- package/languages/en-PH/CoreReadMe.tid +8 -0
- package/languages/en-PH/Dates.multids +5 -0
- package/languages/en-PH/Docs/ModuleTypes.multids +3 -0
- package/languages/en-PH/Docs/PaletteColours.multids +7 -0
- package/languages/en-PH/Fields.multids +4 -0
- package/languages/en-PH/Filters.multids +3 -0
- package/languages/en-PH/Import.multids +3 -0
- package/languages/en-PH/Misc.multids +15 -0
- package/languages/en-PH/Modals/Download.tid +13 -0
- package/languages/en-PH/NewJournal.multids +3 -0
- package/languages/en-PH/icon.tid +21 -0
- package/languages/en-PH/plugin.info +8 -0
- package/languages/es-ES/Buttons.multids +5 -0
- package/languages/es-ES/ControlPanel.multids +20 -0
- package/languages/es-ES/Docs/ModuleTypes.multids +1 -1
- package/languages/es-ES/Docs/PaletteColours.multids +7 -0
- package/languages/es-ES/EditTemplate.multids +2 -0
- package/languages/es-ES/Fields.multids +2 -0
- package/languages/es-ES/Help/commands.tid +1 -1
- package/languages/es-ES/Misc.multids +2 -2
- package/languages/es-ES/Search.multids +2 -0
- package/languages/es-ES/Snippets/FunctionDefinition.tid +7 -0
- package/languages/es-ES/Snippets/ProcedureDefinition.tid +7 -0
- package/languages/es-ES/Types/image_svg_xml.tid +1 -1
- package/languages/es-ES/Types/text_vnd.tiddlywiki_multiple.tid +5 -0
- package/languages/es-ES/plugin.info +2 -2
- package/languages/fa-IR/plugin.info +1 -1
- package/languages/fr-FR/Buttons.multids +4 -0
- package/languages/fr-FR/ControlPanel.multids +6 -0
- package/languages/fr-FR/Docs/PaletteColours.multids +7 -3
- package/languages/fr-FR/Snippets/FunctionDefinition.tid +7 -0
- package/languages/fr-FR/Snippets/ProcedureDefinition.tid +7 -0
- package/languages/fr-FR/Types/text_vnd.tiddlywiki_multiple.tid +5 -0
- package/languages/he-IL/plugin.info +1 -1
- package/languages/hi-IN/plugin.info +1 -1
- package/languages/it-IT/plugin.info +1 -1
- package/languages/ja-JP/plugin.info +1 -1
- package/languages/ko-KR/plugin.info +1 -1
- package/languages/mk-MK/plugin.info +1 -1
- package/languages/nl-NL/plugin.info +1 -1
- package/languages/pa-IN/plugin.info +1 -1
- package/languages/pl-PL/Buttons.multids +4 -0
- package/languages/pl-PL/ControlPanel.multids +20 -0
- package/languages/pl-PL/Docs/PaletteColours.multids +7 -0
- package/languages/pl-PL/EditTemplate.multids +1 -0
- package/languages/pl-PL/Fields.multids +1 -0
- package/languages/pl-PL/Misc.multids +2 -0
- package/languages/pl-PL/Search.multids +2 -0
- package/languages/pl-PL/Snippets/FunctionDefinition.tid +7 -0
- package/languages/pl-PL/Snippets/ProcedureDefinition.tid +7 -0
- package/languages/pl-PL/Types/text_vnd.tiddlywiki_multiple.tid +6 -0
- package/languages/pl-PL/plugin.info +1 -1
- package/languages/pl-PL/readme.md +1 -1
- package/languages/pt-PT/plugin.info +1 -1
- package/languages/ru-RU/plugin.info +1 -1
- package/languages/sk-SK/plugin.info +1 -1
- package/languages/sl-SI/plugin.info +1 -1
- package/languages/sv-SE/plugin.info +1 -1
- package/languages/zh-CN/plugin.info +1 -1
- package/languages/zh-HK/Buttons.multids +17 -0
- package/languages/zh-HK/ControlPanel.multids +31 -0
- package/languages/zh-HK/Docs/ModuleTypes.multids +3 -0
- package/languages/zh-HK/Fields.multids +5 -0
- package/languages/zh-HK/GettingStarted.tid +18 -0
- package/languages/zh-HK/Help/listen.tid +35 -0
- package/languages/zh-HK/Help/notfound.tid +3 -0
- package/languages/zh-HK/Help/password.tid +10 -0
- package/languages/zh-HK/Help/render.tid +34 -0
- package/languages/zh-HK/Help/savetiddlers.tid +16 -0
- package/languages/zh-HK/Help/server.tid +44 -0
- package/languages/zh-HK/Help/setfield.tid +17 -0
- package/languages/zh-HK/Misc.multids +5 -0
- package/languages/zh-HK/SideBar.multids +3 -0
- package/languages/zh-HK/Snippets/ProcedureDefinition.tid +7 -0
- package/languages/zh-HK/ThemeTweaks.multids +3 -0
- package/languages/zh-HK/plugin.info +1 -1
- package/languages/zh-Hans/Buttons.multids +2 -0
- package/languages/zh-Hans/ControlPanel.multids +10 -0
- package/languages/zh-Hans/Snippets/FunctionDefinition.tid +7 -0
- package/languages/zh-Hans/Snippets/ProcedureDefinition.tid +7 -0
- package/languages/zh-Hans/Types/text_vnd.tiddlywiki_multiple.tid +5 -0
- package/languages/zh-Hans/plugin.info +1 -1
- package/languages/zh-Hant/Buttons.multids +2 -0
- package/languages/zh-Hant/ControlPanel.multids +11 -1
- package/languages/zh-Hant/Snippets/FunctionDefinition.tid +7 -0
- package/languages/zh-Hant/Snippets/ProcedureDefinition.tid +7 -0
- package/languages/zh-Hant/Types/text_vnd.tiddlywiki_multiple.tid +5 -0
- package/languages/zh-Hant/plugin.info +1 -1
- package/languages/zh-TW/plugin.info +1 -1
- package/licenses/cla-entity.md +3 -1
- package/licenses/cla-individual.md +22 -0
- package/package.json +4 -3
- package/plugins/tiddlywiki/aws/docs/setup.tid +1 -1
- package/plugins/tiddlywiki/aws/modules/command.js +0 -5
- package/plugins/tiddlywiki/aws/modules/encodings.js +0 -4
- package/plugins/tiddlywiki/aws/modules/init.js +0 -4
- package/plugins/tiddlywiki/aws/modules/utils.js +0 -4
- package/plugins/tiddlywiki/blog/templates/tiddler.tid +2 -2
- package/plugins/tiddlywiki/browser-sniff/readme.tid +1 -1
- package/plugins/tiddlywiki/browser-storage/readme.tid +1 -1
- package/plugins/tiddlywiki/browser-storage/settings.tid +2 -0
- package/plugins/tiddlywiki/browser-storage/startup.js +16 -9
- package/plugins/tiddlywiki/browser-storage/util.js +1 -1
- package/plugins/tiddlywiki/cecily/readme.tid +1 -1
- package/plugins/tiddlywiki/classictools/languages/ia-IA/types/text_Fx-tiddlywiki.tid +4 -0
- package/{languages/sv-SE/Types → plugins/tiddlywiki/classictools/languages/sv-SE/types}/text_x-tiddlywiki.tid +4 -4
- package/plugins/tiddlywiki/classictools/readme.tid +1 -1
- package/plugins/tiddlywiki/codemirror/readme.tid +1 -1
- package/plugins/tiddlywiki/codemirror/settings/cursorBlinkRate.tid +1 -1
- package/plugins/tiddlywiki/codemirror/settings/indentUnit.tid +1 -1
- package/plugins/tiddlywiki/codemirror/settings/tabSize.tid +1 -1
- package/plugins/tiddlywiki/codemirror/ui/controlpanel/codemirror.tid +2 -2
- package/plugins/tiddlywiki/comments/config.tid +2 -0
- package/plugins/tiddlywiki/consent-banner/config.tid +2 -0
- package/plugins/tiddlywiki/consent-banner/docs.tid +1 -1
- package/plugins/tiddlywiki/d3/barwidget.js +4 -4
- package/plugins/tiddlywiki/d3/readme.tid +1 -1
- package/plugins/tiddlywiki/dynaview/config.tid +2 -0
- package/plugins/tiddlywiki/external-attachments/settings.tid +2 -0
- package/plugins/tiddlywiki/filesystem/filesystemadaptor.js +9 -3
- package/plugins/tiddlywiki/filesystem/readme.tid +1 -1
- package/plugins/tiddlywiki/freelinks/settings.tid +2 -0
- package/plugins/tiddlywiki/geospatial/docs/geolayer.tid +5 -2
- package/plugins/tiddlywiki/geospatial/docs/geomap.tid +71 -1
- package/plugins/tiddlywiki/geospatial/images/markers/pin.svg +1 -9
- package/plugins/tiddlywiki/geospatial/operators/helper.js +1 -1
- package/plugins/tiddlywiki/geospatial/operators/olc.js +6 -6
- package/plugins/tiddlywiki/geospatial/settings.tid +2 -0
- package/plugins/tiddlywiki/geospatial/tests/operators/geodistance.tid +1 -1
- package/plugins/tiddlywiki/geospatial/tests/operators/geolookup.tid +3 -3
- package/plugins/tiddlywiki/geospatial/tests/operators/geonearestpoint.tid +2 -2
- package/plugins/tiddlywiki/geospatial/tests/operators/geonearestpoint2.tid +3 -3
- package/plugins/tiddlywiki/geospatial/tests/operators/geopoint.tid +1 -1
- package/plugins/tiddlywiki/geospatial/tests/operators/olc-decode.tid +2 -2
- package/plugins/tiddlywiki/geospatial/tests/widgets/geomap-empty-layer.tid +19 -0
- package/plugins/tiddlywiki/geospatial/widgets/geomap.js +78 -23
- package/plugins/tiddlywiki/github-fork-ribbon/plugin.info +1 -1
- package/plugins/tiddlywiki/github-fork-ribbon/readme.tid +1 -1
- package/plugins/tiddlywiki/github-fork-ribbon/template.tid +1 -1
- package/plugins/tiddlywiki/github-fork-ribbon/usage.tid +5 -5
- package/plugins/tiddlywiki/googleanalytics/readme.tid +1 -1
- package/plugins/tiddlywiki/googleanalytics/settings.tid +2 -0
- package/plugins/tiddlywiki/help/help.tid +8 -8
- package/plugins/tiddlywiki/help/readme.tid +1 -1
- package/plugins/tiddlywiki/help/tabs/Support.tid +1 -1
- package/plugins/tiddlywiki/highlight/usage.tid +2 -2
- package/plugins/tiddlywiki/jasmine/readme.tid +1 -1
- package/plugins/tiddlywiki/katex/config.tid +2 -0
- package/plugins/tiddlywiki/katex/readme.tid +1 -1
- package/plugins/tiddlywiki/katex/styles.tid +1 -1
- package/plugins/tiddlywiki/katex/wrapper.js +1 -1
- package/plugins/tiddlywiki/markdown/EditorToolbar/picture-dropdown.tid +24 -0
- package/plugins/tiddlywiki/markdown/EditorToolbar/picture.tid +10 -0
- package/plugins/tiddlywiki/markdown/EditorToolbar/strikethrough.tid +15 -0
- package/plugins/tiddlywiki/markdown/EditorToolbar/subscript.tid +15 -0
- package/plugins/tiddlywiki/markdown/EditorToolbar/superscript.tid +15 -0
- package/plugins/tiddlywiki/markdown/editor-operations/make-markdown-link.js +4 -4
- package/plugins/tiddlywiki/markdown/markdown-it-katex.js +24 -24
- package/plugins/tiddlywiki/markdown/new-markdown.tid +4 -4
- package/plugins/tiddlywiki/markdown/plugin.info +1 -1
- package/plugins/tiddlywiki/markdown/readme.tid +69 -0
- package/plugins/tiddlywiki/markdown/settings/breaks.tid +9 -0
- package/plugins/tiddlywiki/markdown/settings/linkify.tid +9 -0
- package/plugins/tiddlywiki/markdown/settings/quotes.tid +8 -0
- package/plugins/tiddlywiki/markdown/settings/renderWikiText.tid +9 -0
- package/plugins/tiddlywiki/markdown/settings/renderWikiTextPragma.tid +7 -0
- package/plugins/tiddlywiki/markdown/settings/typographer.tid +9 -0
- package/plugins/tiddlywiki/markdown/settings.tid +19 -0
- package/plugins/tiddlywiki/markdown/styles.tid +1 -1
- package/plugins/tiddlywiki/markdown/wrapper.js +2 -2
- package/plugins/tiddlywiki/markdown-legacy/new-markdown.tid +4 -4
- package/plugins/tiddlywiki/markdown-legacy/readme.tid +1 -1
- package/plugins/tiddlywiki/menubar/keyboardshortcuts-menubar-search.tid +5 -0
- package/plugins/tiddlywiki/menubar/shortcutinfo-menubar-search.tid +4 -0
- package/plugins/tiddlywiki/nodewebkitsaver/readme.tid +1 -1
- package/plugins/tiddlywiki/pluginlibrary/readme.tid +1 -1
- package/plugins/tiddlywiki/qrcode/ViewToolbarButton/Button.tid +17 -39
- package/plugins/tiddlywiki/qrcode/docs/makeqr.tid +13 -9
- package/plugins/tiddlywiki/qrcode/makeqr.js +2 -2
- package/plugins/tiddlywiki/railroad/parser.js +1 -1
- package/plugins/tiddlywiki/savetrail/settings.tid +2 -1
- package/plugins/tiddlywiki/share/settings.tid +2 -0
- package/plugins/tiddlywiki/stacked-view/readme.tid +1 -1
- package/plugins/tiddlywiki/tahoelafs/readme.tid +1 -1
- package/plugins/tiddlywiki/text-slicer/modules/slicer.js +1 -1
- package/plugins/tiddlywiki/text-slicer/ui/slice-toolbar-button.tid +5 -5
- package/plugins/tiddlywiki/tiddlyweb/configOfficialPluginLibrary.tid +1 -1
- package/plugins/tiddlywiki/tiddlyweb/readme.tid +1 -1
- package/plugins/tiddlywiki/tiddlyweb/save-wiki-button.tid +4 -4
- package/plugins/tiddlywiki/tiddlyweb/tiddlywebadaptor.js +2 -2
- package/plugins/tiddlywiki/tour/settings.tid +63 -57
- package/plugins/tiddlywiki/tour/simplified-tiddler-with-tags.tid +4 -4
- package/plugins/tiddlywiki/tour/simplified-tiddler.tid +2 -2
- package/plugins/tiddlywiki/tour/styles.tid +1 -0
- package/plugins/tiddlywiki/translators/Translators.tid +6 -0
- package/plugins/tiddlywiki/translators/readme.tid +1 -1
- package/plugins/tiddlywiki/translators/templates/help-tid.tid +5 -5
- package/plugins/tiddlywiki/translators/templates/modal-tid.tid +8 -8
- package/plugins/tiddlywiki/translators/templates/snippet-tid.tid +5 -5
- package/plugins/tiddlywiki/translators/templates/type-tid.tid +6 -6
- package/plugins/tiddlywiki/tw2parser/entry.js +1 -1
- package/plugins/tiddlywiki/tw2parser/readme.tid +1 -1
- package/plugins/tiddlywiki/tw2parser/wikitextparser.js +1 -1
- package/plugins/tiddlywiki/tw2parser/wikitextrules.js +7 -7
- package/plugins/tiddlywiki/upgrade/readme.tid +1 -1
- package/readme.md +8 -7
- package/themes/tiddlywiki/vanilla/base.tid +85 -16
- package/themes/tiddlywiki/vanilla/settings.multids +2 -2
- package/.eslintignore +0 -8
- package/.eslintrc.yml +0 -283
- package/core/language/en-GB/Types/image_x-icon.tid +0 -5
- package/editions/test/tiddlers/tests/data/tabs-macro/expected-html-tabs-horizontal-all.tid +0 -5
- package/editions/test/tiddlers/tests/data/tabs-macro/expected-html-tabs-horizontal.tid +0 -5
- package/editions/test/tiddlers/tests/data/tabs-macro/expected-html-tabs-vertical.tid +0 -5
- package/editions/tw5.com/tiddlers/definitions/Federatial.tid +0 -21
- package/editions/tw5.com/tiddlers/hellothere/thumbnails/HelloThumbnail_-_Federatial.tid +0 -11
- package/editions/tw5.com/tiddlers/images/Federatial.png +0 -0
- package/editions/tw5.com/tiddlers/images/Federatial.png.meta +0 -3
- package/editions/tw5.com/tiddlers/saving/Saving with FireFox.tid +0 -17
- package/editions/tw5.com/tiddlers/saving/Saving with TiddlyFox on Android.tid +0 -26
- package/languages/ca-ES/Types/image%2Fx-icon.tid +0 -4
- package/languages/cs-CZ/Types/image%2Fx-icon.tid +0 -4
- package/languages/da-DK/Types/image%2Fx-icon.tid +0 -4
- package/languages/de-DE/Types/image_x-icon.tid +0 -4
- package/languages/el-GR/Types/image%2Fx-icon.tid +0 -4
- package/languages/es-ES/Types/image_x-icon.tid +0 -5
- package/languages/fr-FR/Types/image_x-icon.tid +0 -5
- package/languages/he-IL/Types/image%2Fx-icon.tid +0 -4
- package/languages/hi-IN/Types/image%2Fx-icon.tid +0 -5
- package/languages/ia-IA/Types/image%2Fx-icon.tid +0 -4
- package/languages/it-IT/Types/image_x-icon.tid +0 -5
- package/languages/ja-JP/Types/image%2Fx-icon.tid +0 -4
- package/languages/ko-KR/Types/image%2Fx-icon.tid +0 -4
- package/languages/mk-MK/Types/image%2Fx-icon.tid +0 -4
- package/languages/nl-NL/Types/image%2Fx-icon.tid +0 -4
- package/languages/pa-IN/Types/image%2Fx-icon.tid +0 -4
- package/languages/pl-PL/Types/image_x-icon.tid +0 -5
- package/languages/pt-BR/Types/image%2Fx-icon.tid +0 -4
- package/languages/pt-PT/Types/image%2Fx-icon.tid +0 -4
- package/languages/ru-RU/Types/image%2Fx-icon.tid +0 -4
- package/languages/sk-SK/Types/image%2Fx-icon.tid +0 -4
- package/languages/sl-SI/Types/image%2Fx-icon.tid +0 -4
- package/languages/sv-SE/Types/image_x-icon.tid +0 -4
- package/languages/zh-Hans/Types/image_x-icon.tid +0 -4
- package/languages/zh-Hant/Types/image_x-icon.tid +0 -4
- package/plugins/tiddlywiki/markdown/config.tid +0 -80
- /package/core/ui/{StandardLayout.tid → PageTemplate.tid} +0 -0
- /package/{languages/ca-ES/Types/text%2Fx-tiddlywiki.tid → plugins/tiddlywiki/classictools/languages/ca-ES/types/text_Fx-tiddlywiki.tid} +0 -0
- /package/{languages/cs-CZ/Types/text%2Fx-tiddlywiki.tid → plugins/tiddlywiki/classictools/languages/cs-CZ/types/text_Fx-tiddlywiki.tid} +0 -0
- /package/{languages/da-DK/Types/text%2Fx-tiddlywiki.tid → plugins/tiddlywiki/classictools/languages/da-DK/types/text_Fx-tiddlywiki.tid} +0 -0
- /package/{languages/de-DE/Types → plugins/tiddlywiki/classictools/languages/de-DE/types}/text_x-tiddlywiki.tid +0 -0
- /package/{languages/el-GR/Types/text%2Fx-tiddlywiki.tid → plugins/tiddlywiki/classictools/languages/el-Gr/types/text_Fx-tiddlywiki.tid} +0 -0
- /package/{core/language/en-GB/Types → plugins/tiddlywiki/classictools/languages/en-GB/types}/text_x-tiddlywiki.tid +0 -0
- /package/{languages/es-ES/Types → plugins/tiddlywiki/classictools/languages/es-ES/types}/text_x-tiddlywiki.tid +0 -0
- /package/{languages/fr-FR/Types → plugins/tiddlywiki/classictools/languages/fr-FR/types}/text_x-tiddlywiki.tid +0 -0
- /package/{languages/he-IL/Types/text%2Fx-tiddlywiki.tid → plugins/tiddlywiki/classictools/languages/he-IL/types/text_Fx-tiddlywiki.tid} +0 -0
- /package/{languages/hi-IN/Types/text%2Fx-tiddlywiki.tid → plugins/tiddlywiki/classictools/languages/hi-IN/types/text_Fx-tiddlywiki.tid} +0 -0
- /package/{languages/it-IT/Types → plugins/tiddlywiki/classictools/languages/it-IT/types}/text_x-tiddlywiki.tid +0 -0
- /package/{languages/ja-JP/Types/text%2Fx-tiddlywiki.tid → plugins/tiddlywiki/classictools/languages/ja-JP/types/text_Fx-tiddlywiki.tid} +0 -0
- /package/{languages/ko-KR/Types/text%2Fx-tiddlywiki.tid → plugins/tiddlywiki/classictools/languages/ko-KR/types/text_Fx-tiddlywiki.tid} +0 -0
- /package/{languages/mk-MK/Types/text%2Fx-tiddlywiki.tid → plugins/tiddlywiki/classictools/languages/mk-MK/types/text_Fx-tiddlywiki.tid} +0 -0
- /package/{languages/nl-NL/Types/text%2Fx-tiddlywiki.tid → plugins/tiddlywiki/classictools/languages/nl-NL/types/text_Fx-tiddlywiki.tid} +0 -0
- /package/{languages/pa-IN/Types/text%2Fx-tiddlywiki.tid → plugins/tiddlywiki/classictools/languages/pa-IN/types/text_Fx-tiddlywiki.tid} +0 -0
- /package/{languages/pl-PL/Types → plugins/tiddlywiki/classictools/languages/pl-PL/types}/text_x-tiddlywiki.tid +0 -0
- /package/{languages/pt-BR/Types/text%2Fx-tiddlywiki.tid → plugins/tiddlywiki/classictools/languages/pt-BR/types/text_Fx-tiddlywiki.tid} +0 -0
- /package/{languages/pt-PT/Types/text%2Fx-tiddlywiki.tid → plugins/tiddlywiki/classictools/languages/pt-PT/types/text_Fx-tiddlywiki.tid} +0 -0
- /package/{languages/ru-RU/Types/text%2Fx-tiddlywiki.tid → plugins/tiddlywiki/classictools/languages/ru-RU/types/text_Fx-tiddlywiki.tid} +0 -0
- /package/{languages/sk-SK/Types/text%2Fx-tiddlywiki.tid → plugins/tiddlywiki/classictools/languages/sk-SK/types/text_Fx-tiddlywiki.tid} +0 -0
- /package/{languages/sl-SI/Types/text%2Fx-tiddlywiki.tid → plugins/tiddlywiki/classictools/languages/sl-SI/types/text_Fx-tiddlywiki.tid} +0 -0
- /package/{languages/zh-Hans/Types → plugins/tiddlywiki/classictools/languages/zh-Hans/types}/text_x-tiddlywiki.tid +0 -0
- /package/{languages/zh-Hant/Types → plugins/tiddlywiki/classictools/languages/zh-Hant/types}/text_x-tiddlywiki.tid +0 -0
@@ -7,7 +7,7 @@ title: Release 5.2.2
|
|
7
7
|
type: text/vnd.tiddlywiki
|
8
8
|
description: Minor bug fix release
|
9
9
|
|
10
|
-
//[[See GitHub for detailed change history of this release|https://github.com/
|
10
|
+
//[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.2.1...v5.2.2]]//
|
11
11
|
|
12
12
|
<<.banner-credits
|
13
13
|
credit:"""Congratulations to [[Elise Springer|https://www.wesleyan.edu/academics/faculty/espringer/profile.html]] for her winning design for the banner for this release (here is the [[competition thread|https://groups.google.com/d/msgid/tiddlywiki/ad868177-3432-4f8c-bec5-5f6639d1aeddn%40googlegroups.com]]).
|
@@ -17,17 +17,17 @@ description: Minor bug fix release
|
|
17
17
|
|
18
18
|
! Highlights
|
19
19
|
|
20
|
-
!! <<.link-badge-updated "https://github.com/
|
20
|
+
!! <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6427">> [[Highlight Plugin]] to use highlight.js v11.4.0
|
21
21
|
|
22
22
|
This is a major upgrade to the latest version of highlight.js. The new version has many improvements, including better support for Fortran.
|
23
23
|
|
24
24
|
<<.warning """The new version of the [[Highlight Plugin]] requires a modern browser that fully supports JavaScript ES6 (released in 2015). The older version is still available as the ''highlight-legacy'' plugin for users who need to use an older browser.""">>
|
25
25
|
|
26
|
-
!! <<.link-badge-extended "https://github.com/
|
26
|
+
!! <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6498">> support for secondary windows
|
27
27
|
|
28
28
|
The [[WidgetMessage: tm-open-window]] now supports an optional `windowID` parameter so that opened windows can be closed with the new [[WidgetMessage: tm-close-window]] message. There is also a new [[WidgetMessage: tm-close-all-windows]] message which closes all secondary windows.
|
29
29
|
|
30
|
-
!! <<.link-badge-added "https://github.com/
|
30
|
+
!! <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6421">> support for line breaks within filtered transcluded attributes
|
31
31
|
|
32
32
|
To improve readability, it is now possible to use newlines as whitespace within filtered transcluded attributes of HTML elements and widgets. For example:
|
33
33
|
|
@@ -39,7 +39,7 @@ To improve readability, it is now possible to use newlines as whitespace within
|
|
39
39
|
}}}>
|
40
40
|
```
|
41
41
|
|
42
|
-
!! <<.link-badge-fixed "https://github.com/
|
42
|
+
!! <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6383">> inconsistent ordering of tagged tiddlers
|
43
43
|
|
44
44
|
This was a long standing bug that manifested itself in several ways.
|
45
45
|
|
@@ -51,7 +51,7 @@ For example, adding a new tiddler with a given tag previously caused the new tid
|
|
51
51
|
|
52
52
|
The fix ensures that the enumeration order remains consistent.
|
53
53
|
|
54
|
-
!! <<.link-badge-fixed "https://github.com/
|
54
|
+
!! <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6553">> some incorrectly nested `<span>` and `<div>` elements
|
55
55
|
|
56
56
|
TiddlyWiki's core page layout has historically included several instances of inline `<span>` elements containing block `<div>` elements, something that is technically invalid HTML. In practice, browsers have always handled these cases leniently to make the page work but it has also been unhelpful for developers to encountering invalid HTML constructions in their first interactions with TiddlyWiki.
|
57
57
|
|
@@ -59,9 +59,9 @@ The immediate prompt for starting to fix these issue now is that Chrome v100 [[i
|
|
59
59
|
|
60
60
|
! Plugin Improvements
|
61
61
|
|
62
|
-
* <<.link-badge-fixed "https://github.com/
|
63
|
-
* <<.link-badge-fixed "https://github.com/
|
64
|
-
* <<.link-badge-updated "https://github.com/
|
62
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6428">> issue with ~LaTeX content within Markdown tiddlers
|
63
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6457">> incorrect handling of dropdown classes in the menu bar plugin
|
64
|
+
* <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6520">> the Dynannotate plugin to use the new [[View Template Body Cascade]] to avoid modifying the default view template.
|
65
65
|
|
66
66
|
! Translation improvements
|
67
67
|
|
@@ -71,63 +71,63 @@ The immediate prompt for starting to fix these issue now is that Chrome v100 [[i
|
|
71
71
|
|
72
72
|
! Usability Improvements
|
73
73
|
|
74
|
-
* <<.link-badge-improved "https://github.com/
|
75
|
-
* <<.link-badge-fixed "https://github.com/
|
76
|
-
* <<.link-badge-fixed "https://github.com/
|
77
|
-
* <<.link-badge-fixed "https://github.com/
|
78
|
-
* <<.link-badge-fixed "https://github.com/
|
74
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6435">> wording of drag and drop banner (from "drop here" to "drop now")
|
75
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/853a899c77766e47eade1dfa5822640ef9915637">> wrapping and wikification of field names in field viewer
|
76
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/0186c6490fbd1d8fd4de7c3fa99ccf4d129fbd80">> missing whitespace between description and MIME type in edit template dropdown for the ''type'' field
|
77
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/c7e8c87f85b54f60302ff8e396a7569d996e3f67">> incorrect usage of code view for certain system tiddlers
|
78
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6501">> sidebar plugin listing to be sorted by name rather than description
|
79
79
|
|
80
80
|
! Widget Improvements
|
81
81
|
|
82
|
-
* <<.link-badge-added "https://github.com/
|
83
|
-
* <<.link-badge-fixed "https://github.com/
|
84
|
-
* <<.link-badge-fixed "https://github.com/
|
85
|
-
* <<.link-badge-extended "https://github.com/
|
82
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/commit/66ae1d6930796a9eb062fdb64a755adab8f39294">> classes to the ImageWidget to indicate whether it is loading, loaded or has encountered an error
|
83
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6389">> RadioWidget not using default value if the field or index is missing
|
84
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6426">> issue with ImportVariablesWidget when importing block mode widgets
|
85
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6480">> DraggableWidget to support an optional drag handle
|
86
86
|
|
87
87
|
! Filter improvements
|
88
88
|
|
89
|
-
* <<.link-badge-added "https://github.com/
|
90
|
-
* <<.link-badge-added "https://github.com/
|
91
|
-
* <<.link-badge-fixed "https://github.com/
|
92
|
-
* <<.link-badge-extended "https://github.com/
|
93
|
-
* <<.link-badge-extended "https://github.com/
|
94
|
-
* <<.link-badge-fixed "https://github.com/
|
95
|
-
* <<.link-badge-extended "https://github.com/
|
96
|
-
* <<.link-badge-fixed "https://github.com/
|
89
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6468">> support for case insensitive matching for the [[prefix Operator]] and [[suffix Operator]]
|
90
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/commit/1a0c831216c397c6fef8e5685e47857193411a1b">> [[sha256 Operator]]
|
91
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6438">> crash when using deprecated regexp operands for filter operators
|
92
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/5742">> [[lookup Operator]] to support indexes as well as fields
|
93
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6293">> [[search Operator]] with new 'some' flag
|
94
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6478">> [[untagged Operator]] to consider non-existent tiddlers to be untagged
|
95
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6477">> [[insertbefore Operator]] to accept the position title as a parameter, instead of as a variable name in the suffix
|
96
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6483">> [[butlast Operator]] to be consistent with the [[rest Operator]]
|
97
97
|
|
98
98
|
! Hackability Improvements
|
99
99
|
|
100
|
-
* <<.link-badge-added "https://github.com/
|
101
|
-
* <<.link-badge-added "https://github.com/
|
102
|
-
* <<.link-badge-added "https://github.com/
|
103
|
-
* <<.link-badge-added "https://github.com/
|
104
|
-
* <<.link-badge-added "https://github.com/
|
105
|
-
* <<.link-badge-extended "https://github.com/
|
106
|
-
* <<.link-badge-added "https://github.com/
|
100
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6511">> [[Field Editor Cascade]] for customising how fields are displayed in the edit template
|
101
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6388">> support for directly specifying style properties on [[HTML elements|HTML in WikiText]] (for example, `<div style.color={{!!color}}>`)
|
102
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/commit/54cfda76ee353190f1cf0210b9071894fb1a5690">> support for ''code-body'' field set to ''yes'' to trigger display of a tiddler in the code view
|
103
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6410">> support to [[WidgetMessage: tm-scroll]] for scrolling without animating
|
104
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/commit/1d16206188ebd5ca7481a7f565bf5fc4c08239fd">> support for [[WidgetMessage: tm-relink-tiddler]]
|
105
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6470">> [[WidgetMessage: tm-open-window]] to support 'top' and 'left' parameters
|
106
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6523">> new ''matchSelector'' attribute to the EventCatcherWidget
|
107
107
|
|
108
108
|
! Developer Improvements
|
109
109
|
|
110
|
-
* <<.link-badge-added "https://github.com/
|
111
|
-
* <<.link-badge-added "https://github.com/
|
110
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6409">> support for ''renderEnd()'' method for storyviews
|
111
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6381">> sourceURL tags to $:/boot/boot.js and $:/boot/bootprefix.js, enabling them to be accessed in the browser debugger more easily
|
112
112
|
|
113
113
|
! Node.js Improvements
|
114
114
|
|
115
|
-
* <<.link-badge-added "https://github.com/
|
115
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/5899">> several new web server options: [[admin|WebServer Parameter: admin]], [[required-plugins|WebServer Parameter: required-plugins]] and [[tls-passphrase|WebServer Parameter: tls-passphrase]]
|
116
116
|
|
117
117
|
! Performance Improvements
|
118
118
|
|
119
|
-
* <<.link-badge-added "https://github.com/
|
120
|
-
* <<.link-badge-improved "https://github.com/
|
119
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6327">> support for caching the [[listed Operator]]
|
120
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6537">> stylesheet handling to avoid unnecessary refreshes
|
121
121
|
|
122
122
|
! Bug Fixes
|
123
123
|
|
124
|
-
* <<.link-badge-fixed "https://github.com/
|
125
|
-
* <<.link-badge-fixed "https://github.com/
|
126
|
-
* <<.link-badge-fixed "https://github.com/
|
127
|
-
* <<.link-badge-fixed "https://github.com/
|
128
|
-
* <<.link-badge-fixed "https://github.com/
|
129
|
-
* <<.link-badge-fixed "https://github.com/
|
130
|
-
* <<.link-badge-fixed "https://github.com/
|
124
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/60187dc59e6546d9ca8e6a35418f782a9627cda0">> importing/upgrading encrypted single file wikis
|
125
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6376">> [[WidgetMessage: tm-edit-text-operation]] crash with ''wrap-lines'' operation if prefix or suffix is missing
|
126
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6395">> processing of $:/tags/RawMarkupWikified/TopHead tiddlers
|
127
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6398">> issue whereby renaming tags could result in duplicate tags
|
128
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6440">> search results obscured on narrow screens
|
129
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6540">> ActionListopsWidget bug with input list items starting with `-`, `+`, `~`, `:` or other character with a special meaning in filters
|
130
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/28a91aafa74da04842dbff4b8d0eb7a8dad5dbaa">> (and [[here|https://github.com/TiddlyWiki/TiddlyWiki5/pull/6531]]) refreshing of the ButtonWidget when the `default` attribute changes
|
131
131
|
|
132
132
|
! Acknowledgements
|
133
133
|
|
@@ -7,7 +7,7 @@ title: Release 5.2.3
|
|
7
7
|
type: text/vnd.tiddlywiki
|
8
8
|
description: Minor fixes and improvements
|
9
9
|
|
10
|
-
//[[See GitHub for detailed change history of this release|https://github.com/
|
10
|
+
//[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.2.2...v5.2.3]]//
|
11
11
|
|
12
12
|
<<.banner-credits
|
13
13
|
credit:"""Congratulations to [[feedthegood|https://talk.tiddlywiki.org/u/feedthegood]] 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-3]] and the [[voting thread|https://talk.tiddlywiki.org/t/banner-competition-voting-for-v5-2-3]]).
|
@@ -17,16 +17,16 @@ description: Minor fixes and improvements
|
|
17
17
|
|
18
18
|
! Plugin Improvements
|
19
19
|
|
20
|
-
* <<.link-badge-updated "https://github.com/
|
21
|
-
* <<.link-badge-extended "https://github.com/
|
22
|
-
* <<.link-badge-extended "https://github.com/
|
20
|
+
* <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/commit/2f817e42935a3ab15cad697a7b8200dd8152eb9f">> (and <<.link-badge-here "https://github.com/TiddlyWiki/TiddlyWiki5/commit/bbae2ab6da6c6cd1facab37fb7b9fd42e1d73169">>) [[KaTeX Plugin]] to ~KaTeX v0.16
|
21
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6625">> [[BrowserStorage Plugin]] to be able to delete existing tiddlers as well as modify or add tiddlers
|
22
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6691">> (and <<.link-badge-here "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6691">>) [[Markdown Plugin]] to add the ''link'' and ''linkify'' editor toolbar buttons
|
23
23
|
** The linkify button just inserts `[]()`. If any text is selected, it will be inside the square brackets: `[text]()`
|
24
24
|
** The link button opens a popup menu in which you can either paste a URL or search for an existing tiddler
|
25
|
-
* <<.link-badge-extended "https://github.com/
|
26
|
-
* <<.link-badge-extended "https://github.com/
|
27
|
-
* <<.link-badge-extended "https://github.com/
|
28
|
-
* <<.link-badge-fixed "https://github.com/
|
29
|
-
* <<.link-badge-improved "https://github.com/
|
25
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6689">> [[Markdown Plugin]] to add the ''codeblock'' editor toolbar button
|
26
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6696">> [[Markdown Plugin]] to add <kbd>ctrl-M</kbd> (Mac) or <kbd>alt-M</kbd> (other platforms) to create a new Markdown tiddler
|
27
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6675">> Browser Sniff Plugin to expose [[$:/info/browser/is/mobile]]
|
28
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6701">> [[BrowserStorage Plugin]] crashing if local storage not available
|
29
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/commit/df7416d16bf8fe39d7a2a8a4a917248d45506ba1">> (and <<.link-badge-here "https://github.com/TiddlyWiki/TiddlyWiki5/commit/0391e1855cd5c770928a3b4252aef54ed0a51385">>) Dynannotate Plugin selection tracker, making it easier to add a popup menu to text selections
|
30
30
|
|
31
31
|
! Translation improvements
|
32
32
|
|
@@ -38,83 +38,83 @@ description: Minor fixes and improvements
|
|
38
38
|
|
39
39
|
! Accessibility Improvements
|
40
40
|
|
41
|
-
* <<.link-badge-improved "https://github.com/
|
42
|
-
* <<.link-badge-improved "https://github.com/
|
43
|
-
* <<.link-badge-improved "https://github.com/
|
41
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6742">> [[ARIA|https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA]] support for the sidebar and story river
|
42
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6743">> [[ARIA|https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA]] support for notifications so that screen readers will automatically read them
|
43
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6749">> [[ARIA|https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA]] support for the edit template
|
44
44
|
|
45
45
|
! Usability Improvements
|
46
46
|
|
47
|
-
* <<.link-badge-updated "https://github.com/
|
48
|
-
* <<.link-badge-updated "https://github.com/
|
49
|
-
* <<.link-badge-updated "https://github.com/
|
50
|
-
* <<.link-badge-extended "https://github.com/
|
51
|
-
* <<.link-badge-updated "https://github.com/
|
52
|
-
* <<.link-badge-improved "https://github.com/
|
47
|
+
* <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/issues/5916">> ActionSetFieldWidget to avoid inadvertent changes to the current tiddler
|
48
|
+
* <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6589">> "put" and "upload" savers (as used by [[TiddlyHost|Saving on TiddlyHost]] to display error responses from the server
|
49
|
+
* <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6655">> (and <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6661">>) various palettes to work with ''color-scheme: dark''
|
50
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6698">> the monospaced blocks and block quotes editor buttons so that they can be undone by clicking the button again
|
51
|
+
* <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6740">> field and tag editors to trim whitespace
|
52
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6778">> formatting of stylesheet tiddlers to use syntax highlighting if the [[Highlight Plugin]] is installed
|
53
53
|
|
54
54
|
! Widget Improvements
|
55
55
|
|
56
|
-
* <<.link-badge-extended "https://github.com/
|
57
|
-
* <<.link-badge-extended "https://github.com/
|
58
|
-
* <<.link-badge-extended "https://github.com/
|
59
|
-
* <<.link-badge-extended "https://github.com/
|
60
|
-
* <<.link-badge-improved "https://github.com/
|
61
|
-
* <<.link-badge-fixed "https://github.com/
|
62
|
-
* <<.link-badge-updated "https://github.com/
|
56
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6593">> CheckboxWidget to support the indeterminate state
|
57
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6561">> CheckboxWidget to support the ''listField'' and ''filter'' attributes
|
58
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6581">> DraggableWidget to support an ''enabled'' attribute
|
59
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6582">> DraggableWidget to pass additional context variables to the ''dragstartactions'' action string
|
60
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6787">> refreshing of DraggableWidget
|
61
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6786">> brittle selector implementation for the DraggableWidget
|
62
|
+
* <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6809">> the ImageWidget to support [[lazy loading of images|https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/loading]]
|
63
63
|
|
64
64
|
! Filter improvements
|
65
65
|
|
66
|
-
* <<.link-badge-added "https://github.com/
|
67
|
-
* <<.link-badge-fixed "https://github.com/
|
68
|
-
* <<.link-badge-added "https://github.com/
|
66
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6771">> new [[insertafter Operator]] to match the existing [[insertbefore Operator]]
|
67
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/35b0833e0cafc477e402309c006a163eb59a94ca">> handling of `{!!title}` in a filter with no currentTiddler variable set
|
68
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6806">> new "flat" option to the [[Map Filter Run Prefix]] enabling multiple items to be returned from each invocation of the filter run
|
69
69
|
|
70
70
|
! Hackability Improvements
|
71
71
|
|
72
|
-
* <<.link-badge-updated "https://github.com/
|
73
|
-
* <<.link-badge-added "https://github.com/
|
74
|
-
* <<.link-badge-extended "https://github.com/
|
75
|
-
* <<.link-badge-improved "https://github.com/
|
76
|
-
* <<.link-badge-added "https://github.com/
|
77
|
-
* <<.link-badge-extended "https://github.com/
|
78
|
-
* <<.link-badge-extended "https://github.com/
|
72
|
+
* <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6779">> tiddler subtitle rendering to allow individual elements to be controlled via the [[SystemTag: $:/tags/ViewTemplate/Subtitle]]
|
73
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/commit/f3bf5b6e850691b6bff430b0575387a09f6aaf97">> support for [[SystemTag: $:/tags/Macro/View/Body]]
|
74
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6624">> [[colour Macro]] to allow for palette-specific fallback colours to be specified
|
75
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6578">> whitespace and indentation of [[tabs Macro]] to improve readability
|
76
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6659">> ''color-scheme'' CSS property to the root of the Vanilla base theme
|
77
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6681">> EventCatcherWidget to support `tv-widgetnode-width` and `tv-widgetnode-height`
|
78
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6776">> [[list-links-draggable Macro]] to support an message to be displayed if the list is empty
|
79
79
|
|
80
80
|
! Bug Fixes
|
81
81
|
|
82
|
-
* <<.link-badge-fixed "https://github.com/
|
83
|
-
* <<.link-badge-fixed "https://github.com/
|
84
|
-
* <<.link-badge-fixed "https://github.com/
|
85
|
-
* <<.link-badge-fixed "https://github.com/
|
86
|
-
* <<.link-badge-fixed "https://github.com/
|
87
|
-
* <<.link-badge-fixed "https://github.com/
|
88
|
-
* <<.link-badge-fixed "https://github.com/
|
89
|
-
* <<.link-badge-fixed "https://github.com/
|
90
|
-
* <<.link-badge-fixed "https://github.com/
|
91
|
-
* <<.link-badge-fixed "https://github.com/
|
92
|
-
* <<.link-badge-fixed "https://github.com/
|
93
|
-
* <<.link-badge-fixed "https://github.com/
|
94
|
-
* <<.link-badge-fixed "https://github.com/
|
95
|
-
* <<.link-badge-fixed "https://github.com/
|
96
|
-
* <<.link-badge-fixed "https://github.com/
|
97
|
-
* <<.link-badge-fixed "https://github.com/
|
98
|
-
* <<.link-badge-fixed "https://github.com/
|
99
|
-
* <<.link-badge-fixed "https://github.com/
|
100
|
-
* <<.link-badge-improved "https://github.com/
|
101
|
-
* <<.link-badge-fixed "https://github.com/
|
102
|
-
* <<.link-badge-fixed "https://github.com/
|
103
|
-
* <<.link-badge-fixed "https://github.com/
|
104
|
-
* <<.link-badge-fixed "https://github.com/
|
105
|
-
* <<.link-badge-fixed "https://github.com/
|
82
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6789">> issue with drag and drop running on mobile Chrome browsers
|
83
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6628">> problem when switching fields in the editor causing their values to be cleared
|
84
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6656">> incorrect ''color-scheme'' metatag for iframe content with the framed editor
|
85
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6649">> crash when using the SaveCommand to attempt to save missing fields
|
86
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6614">> bug with formatting UTC date strings
|
87
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6603">> SaveCommand crash when attempting to save missing tiddlers
|
88
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6599">> fix broken [[style block behaviour|Styles and Classes in WikiText]]
|
89
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6594">> incorrect display of image system tiddlers as text
|
90
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/1c16f12d6f5b81d86f79c3e687eec05b3a8d45bf">> erroneous link rendering within captions in [[list-links Macro]]
|
91
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/758d590837c30ddde9cc7b8171273756680f1545">> erroneous link rendering within captions in [[list-links-draggable Macro]]
|
92
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6644">> bug with JavaScript modules and lazy loading
|
93
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6679">> fixed tiddler title indentation discrepancy
|
94
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6697">> problem with numbered list editor button not undoing markers in Markdown tiddlers
|
95
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6700">> palette manager showing duplicate entries
|
96
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/7e4722f07a81fadc419738d2c2a55a090a830f8c">> crash with missing palette tiddlers
|
97
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/d5030eb87b7a21c5b76978aeed819eedc4740245">> (and <<.link-badge-here "https://github.com/TiddlyWiki/TiddlyWiki5/commit/a29889a7412fcba45d7779e8a8ee9ca91b499946">>) search inputs not to trigger Chrome's password autocomplete popup
|
98
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6755">> embedded SVG [[foreignObject|https://developer.mozilla.org/en-US/docs/Web/SVG/Element/foreignObject]] namespace
|
99
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6757">> anchor links not working when address bar is updated with a permalink, and animation duration is set to zero
|
100
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6767">> positioning of server page control dropdown
|
101
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6832">> "save changes" button in the menu bar not turning red when the wiki is dirty
|
102
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6825">> hardcoded spaces in [[Table-of-Contents Macros]]
|
103
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6840">> state handling in [[tabs Macro]]
|
104
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/34b1b8128f4832e111a5d71af36d5ca2e2a1e0d4">> fixed formatting of IPv6 URLs by ListenCommand and ServerCommand
|
105
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/667da96c970283cbf0fc2b3672fba3812886be65">> crash when closing multiple plugin libraries
|
106
106
|
|
107
107
|
! Developer Improvements
|
108
108
|
|
109
|
-
* A number of core tiddlers have been refactored to use `\whitespace trim` for improved readability. The work was split into a number of PRs: [[#6257|https://github.com/
|
109
|
+
* A number of core tiddlers have been refactored to use `\whitespace trim` for improved readability. The work was split into a number of PRs: [[#6257|https://github.com/TiddlyWiki/TiddlyWiki5/pull/6257]], [[#6265|https://github.com/TiddlyWiki/TiddlyWiki5/pull/6265]], [[#6269|https://github.com/TiddlyWiki/TiddlyWiki5/pull/6269]], [[#6270|https://github.com/TiddlyWiki/TiddlyWiki5/pull/6270]], [[#6272|https://github.com/TiddlyWiki/TiddlyWiki5/pull/6272]], [[#6275|https://github.com/TiddlyWiki/TiddlyWiki5/pull/6275]], [[#6276|https://github.com/TiddlyWiki/TiddlyWiki5/pull/6276]], [[#6587|https://github.com/TiddlyWiki/TiddlyWiki5/pull/6587]], [[#6600|https://github.com/TiddlyWiki/TiddlyWiki5/pull/6600]], [[#6604|https://github.com/TiddlyWiki/TiddlyWiki5/pull/6604]], [[#6611|https://github.com/TiddlyWiki/TiddlyWiki5/pull/6611]]
|
110
110
|
|
111
111
|
! Node.js Improvements
|
112
112
|
|
113
|
-
* <<.link-badge-extended "https://github.com/
|
113
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6746">> RenderCommand to support the `storyTiddler` variable
|
114
114
|
|
115
115
|
! Performance Improvements
|
116
116
|
|
117
|
-
* <<.link-badge-updated "https://github.com/
|
117
|
+
* <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6402">> filter processing to allow compiled filters to be cached
|
118
118
|
|
119
119
|
! Acknowledgements
|
120
120
|
|
@@ -7,7 +7,7 @@ title: Release 5.2.4
|
|
7
7
|
type: text/vnd.tiddlywiki
|
8
8
|
description: Hot fixes for v5.2.3, Twitter archivist plugin, GenesisWidget, JSON read operators, nested macro definitions
|
9
9
|
|
10
|
-
//[[See GitHub for detailed change history of this release|https://github.com/
|
10
|
+
//[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.2.3...v5.2.4]]//
|
11
11
|
|
12
12
|
<<.banner-credits
|
13
13
|
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]]).
|
@@ -17,15 +17,15 @@ description: Hot fixes for v5.2.3, Twitter archivist plugin, GenesisWidget, JSON
|
|
17
17
|
|
18
18
|
! Important Update
|
19
19
|
|
20
|
-
After the release of v5.2.5, we found some backwards compatibility issues with the stylesheet changes in [[#7039|https://github.com/
|
20
|
+
After the release of v5.2.5, we found some backwards compatibility issues with the stylesheet changes in [[#7039|https://github.com/TiddlyWiki/TiddlyWiki5/pull/7039]] and [[#6910|https://github.com/TiddlyWiki/TiddlyWiki5/pull/6910]]. We have therefore decided to make a rapid bug fix [[Release 5.2.5]] to resolve these issues, and all users should upgrade to the new version.
|
21
21
|
|
22
22
|
! Major Improvements
|
23
23
|
|
24
24
|
New [ext[Twitter Archivist|./editions/twitter-archivist]] plugin to import the tweets and associated media from a Twitter Archive as individual tiddlers.
|
25
25
|
|
26
|
-
<<.link-badge-added "https://github.com/
|
26
|
+
<<.link-badge-added "https://github.com/TiddlyWiki/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
|
27
27
|
|
28
|
-
<<.link-badge-added "https://github.com/
|
28
|
+
<<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6936">> (and <<.link-badge-here "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7105">>) new operators for reading and formatting JSON data: [[jsonget Operator]], [[jsonindexes Operator]], [[jsontype Operator]], [[jsonextract Operator]] and [[format Operator]]
|
29
29
|
|
30
30
|
! Translation Improvements
|
31
31
|
|
@@ -40,77 +40,77 @@ Improvements to the following translations:
|
|
40
40
|
|
41
41
|
Improvements to the translation features of TiddlyWiki itself:
|
42
42
|
|
43
|
-
* <<.link-badge-improved "https://github.com/
|
44
|
-
* <<.link-badge-updated "https://github.com/
|
43
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/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
|
44
|
+
* <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6933">> "delete" button text in $:/AdvancedSearch so that it is translatable
|
45
45
|
|
46
46
|
! Usability Improvements
|
47
47
|
|
48
|
-
* <<.link-badge-fixed "https://github.com/
|
49
|
-
* <<.link-badge-improved "https://github.com/
|
50
|
-
* <<.link-badge-fixed "https://github.com/
|
51
|
-
* <<.link-badge-fixed "https://github.com/
|
52
|
-
* <<.link-badge-improved "https://github.com/
|
53
|
-
* <<.link-badge-extended "https://github.com/
|
54
|
-
* <<.link-badge-improved "https://github.com/
|
55
|
-
* <<.link-badge-improved "https://github.com/
|
56
|
-
* <<.link-badge-added "https://github.com/
|
57
|
-
* <<.link-badge-fixed "https://github.com/
|
58
|
-
* <<.link-badge-improved "https://github.com/
|
48
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/d62a16ee464fb9984b766b48504829a1a3eb143b">> problem with long presses on tiddler links triggering a preview on iOS/iPadOS
|
49
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6910">> consistency of button and input elements across browsers
|
50
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/d825f1c875f5e46158c9c41c8c66471138c162d1">> edit preview to use the [[View Template Body Cascade]]
|
51
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/36896c3db8c9678c0385a561996248a6f00a45ff">> opening a tiddler in a new window to use the [[View Template Body Cascade]]
|
52
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6970">> detection of infinite recursion errors in widgets and filters
|
53
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6877">> default styles for [[styled runs|Styles and Classes in WikiText]]
|
54
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6881">> upgrade wizard to make the version number more prominent
|
55
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7042">> parsing of tiddlers containing CSV data for greater compatibility
|
56
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7076">> new page control button to summon the layout switcher
|
57
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/7084">> folded tiddlers to ensure that the unfold button is always visible
|
58
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7072">> handling of [[Modals]] to optionally allow them to be dismissed by clicking on the background
|
59
59
|
|
60
60
|
! Widget Improvements
|
61
61
|
|
62
|
-
* <<.link-badge-fixed "https://github.com/
|
63
|
-
* <<.link-badge-added "https://github.com/
|
64
|
-
* <<.link-badge-removed "https://github.com/
|
62
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/127f660c91020dcbb43897d954066b31af729e74">> EditTextWidget to remove the default text "Type the text for the tiddler 'foo'"
|
63
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7081">> ''focus'' attribute to SelectWidget
|
64
|
+
* <<.link-badge-removed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/1df4c29d73073788ba3859668112e8bb46171a6c">> restriction of the LetWidget being unable to create variables whose names begin with a dollar sign
|
65
65
|
|
66
66
|
! Filter improvements
|
67
67
|
|
68
|
-
* <<.link-badge-fixed "https://github.com/
|
69
|
-
* <<.link-badge-fixed "https://github.com/
|
68
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/6303">> issue with availability of variables within filter runs
|
69
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7065">> issue with removing multiple items from a linked list during filter processing
|
70
70
|
|
71
71
|
! Hackability Improvements
|
72
72
|
|
73
|
-
* <<.link-badge-added "https://github.com/
|
74
|
-
* <<.link-badge-added "https://github.com/
|
75
|
-
* <<.link-badge-improved "https://github.com/
|
76
|
-
* <<.link-badge-fixed "https://github.com/
|
77
|
-
* <<.link-badge-extended "https://github.com/
|
78
|
-
* <<.link-badge-extended "https://github.com/
|
79
|
-
* <<.link-badge-improved "https://github.com/
|
80
|
-
* <<.link-badge-added "https://github.com/
|
81
|
-
* <<.link-badge-extended "https://github.com/
|
82
|
-
* <<.link-badge-added "https://github.com/
|
83
|
-
* <<.link-badge-fixed "https://github.com/
|
84
|
-
* <<.link-badge-added "https://github.com/
|
85
|
-
* <<.link-badge-extended "https://github.com/
|
73
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7004">> support for nested [[macro definitions|Macro Definitions in WikiText]]
|
74
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/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
|
75
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/commit/c5d3d4c26e8fe27f272dda004aec27d6b66c4f60">> safe mode to disable wiki store indexers
|
76
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/166a1565843878083fb1eba47c73b8e67b78400d">> safe mode to prevent globally disabling parser rules
|
77
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6735">> keyboard shortcut handling to allow to global shortcuts to override all other shortcuts
|
78
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/commit/965bd090a905f5756e79124b698c894f7f72ad5b">> [[list-links Macro]] to allow the rendered field to be overriden
|
79
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6913">> [[Table-of-Contents Macros]] to allow the default icons to be overridden
|
80
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6939">> ''data-tags-*'' and ''data-tiddler-title'' attributes to the edit preview area
|
81
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/pull/5947">> [[timeline Macro]] to override the link template
|
82
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7043">> support for Unix epoch timestamps in [[date format strings|DateFormat]]
|
83
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7064">> the "big green download button" to use the defined palette colour
|
84
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7063">> new hidden setting [[to use horizontal tabs for the "more" sidebar tab|Hidden Setting: More Tabs Horizontal]]
|
85
|
+
* <<.link-badge-extended "https://github.com/TiddlyWiki/TiddlyWiki5/commit/bef11fe6a25fb849dee40c4aa4337d6a30daf0b4">> the [[external JavaScript templates|Using the external JavaScript template]] to allow the URL of the external script file to be configured
|
86
86
|
|
87
87
|
! Bug Fixes
|
88
88
|
|
89
|
-
* <<.link-badge-fixed "https://github.com/
|
90
|
-
* <<.link-badge-fixed "https://github.com/
|
91
|
-
* <<.link-badge-fixed "https://github.com/
|
92
|
-
* <<.link-badge-fixed "https://github.com/
|
93
|
-
* <<.link-badge-fixed "https://github.com/
|
94
|
-
* <<.link-badge-fixed "https://github.com/
|
95
|
-
* <<.link-badge-fixed "https://github.com/
|
96
|
-
* <<.link-badge-fixed "https://github.com/
|
97
|
-
* <<.link-badge-fixed "https://github.com/
|
89
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7099">> truncated search results on small screens
|
90
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7010">> table contents overflow on small screens
|
91
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/fb34df84ed41882c1c2a6ff54f0e908b43ef95a3">> "new image" keyboard shortcut not to assign journal tags
|
92
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6987">> SelectWidget class to update if it uses a filter
|
93
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/7017">> issue with wikification within the advanced search filter dropdown
|
94
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7057">> the table in $:/Import to avoid creating hidden empty rows
|
95
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/7008">> advanced search keyboard shortcut not navigating correctly
|
96
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/issues/7083">> erroneous display of drafts within the advanced search filter dropdown
|
97
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7092">> backwards compatibility of new field editor cascade introduced in v5.2.3
|
98
98
|
|
99
99
|
! Node.js Improvements
|
100
100
|
|
101
|
-
* <<.link-badge-added "https://github.com/
|
102
|
-
* <<.link-badge-improved "https://github.com/
|
103
|
-
* <<.link-badge-fixed "https://github.com/
|
104
|
-
* <<.link-badge-fixed "https://github.com/
|
105
|
-
* <<.link-badge-added "https://github.com/
|
106
|
-
* <<.link-badge-added "https://github.com/
|
107
|
-
* <<.link-badge-updated "https://github.com/
|
101
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7073">> new CommandsCommand to enable command tokens to be dynamically generated from a filter
|
102
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6947">> console logging to avoid spaces and `<empty string>` message
|
103
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7014">> problem with lazy loading deleting tiddler bodies under certain circumstances
|
104
|
+
* <<.link-badge-fixed "https://github.com/TiddlyWiki/TiddlyWiki5/commit/344110e2890caf711ab8f3c4f4deaa7d86771231">> handling of ".mp4" file extension so that it defaults to video not audio
|
105
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6588">> test server to the plugin library edition
|
106
|
+
* <<.link-badge-added "https://github.com/TiddlyWiki/TiddlyWiki5/pull/7049">> [[Hidden Setting: Sync Logging]] to control logging of sync-related messages
|
107
|
+
* <<.link-badge-updated "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6944">> Jasmine plugin to require the explicit use of the `--test` command in order to cause the tests to be run
|
108
108
|
|
109
109
|
! Performance Improvements
|
110
110
|
|
111
|
-
* <<.link-badge-improved "https://github.com/
|
112
|
-
* <<.link-badge-improved "https://github.com/
|
113
|
-
* <<.link-badge-improved "https://github.com/
|
111
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/commit/53d229592df76c6dd607e40be5bea4d5e063c48e">> performance of `wiki.getTiddler()`
|
112
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/commit/81ac9874846b3ead275f67010fcfdb49f3d2f43c">> performance of variable prototype chain handling
|
113
|
+
* <<.link-badge-improved "https://github.com/TiddlyWiki/TiddlyWiki5/pull/6056">> performance of list handling during filter processing
|
114
114
|
|
115
115
|
! Acknowledgements
|
116
116
|
|
@@ -7,7 +7,7 @@ title: Release 5.2.5
|
|
7
7
|
type: text/vnd.tiddlywiki
|
8
8
|
description: Hot fix release for v5.2.4
|
9
9
|
|
10
|
-
//[[See GitHub for detailed change history of this release|https://github.com/
|
10
|
+
//[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.2.4...v5.2.5]]//
|
11
11
|
|
12
12
|
<<.banner-credits
|
13
13
|
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]]).
|
@@ -15,7 +15,7 @@ description: Hot fix release for v5.2.4
|
|
15
15
|
url:"https://raw.githubusercontent.com/Jermolene/TiddlyWiki5/25b8f26073504dace56a5537f29c8bff0ead2acd/editions/tw5.com/tiddlers/images/New%20Release%20Banner.png"
|
16
16
|
>>
|
17
17
|
|
18
|
-
This is a bug fix release intended to resolve backwards compatibility issues discovered in v5.2.4. See [[this GitHub ticket|https://github.com/
|
18
|
+
This is a bug fix release intended to resolve backwards compatibility issues discovered in v5.2.4. See [[this GitHub ticket|https://github.com/TiddlyWiki/TiddlyWiki5/issues/7126]] for the background.
|
19
19
|
|
20
20
|
The issues are entirely cosmetic stylesheet changes, and do not affect the functionality of TiddlyWiki. However, we encourage all users to upgrade to this new version for consistency.
|
21
21
|
|