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,17 +7,17 @@ title: Release 5.1.14
|
|
7
7
|
type: text/vnd.tiddlywiki
|
8
8
|
description: Drag and drop improvements, initial RTL support, plugins for XLSX import, QR Codes, ~BibTeX, Google Analytics, Twitter
|
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.1.13...v5.1.14]]//
|
11
11
|
|
12
12
|
!! New and Improved Plugins
|
13
13
|
|
14
14
|
* Added [[SaveTrail Plugin]] that continuously downloads edited tiddlers in the background, providing a trail of backups
|
15
15
|
* Added XLSX Utilities plugin for importing Excel-compatible spreadsheets. See the [[XLSX Utilities Edition]] for details
|
16
|
-
* [[Added|https://github.com/
|
17
|
-
* [[Added|https://github.com/
|
18
|
-
* [[Updated|https://github.com/
|
19
|
-
* [[Added|https://github.com/
|
20
|
-
* [[Updated|https://github.com/
|
16
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/22c1b04ee79a5ccc25cbc33cc91bf5daac1df831]] QR code generator plugin
|
17
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/7f11c151f06cd039d1887a6940075237ccb4b7a9]] ~BibTeX importer plugin
|
18
|
+
* [[Updated|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c16f96626e2ff9d849563eeba7d8ef5cf8e4ed4b]] Google Analytics plugin to the latest version
|
19
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/e30330d4be0e0b9b04ea807a034c8d9fa3d13fea]] [[Twitter Plugin]] for embedding tweets etc
|
20
|
+
* [[Updated|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c0f7f18f0a268087e51813bfbba1b796478d0bb1]] [[KaTeX Plugin]] to [[v0.7.1 of KaTeX|https://github.com/Khan/KaTeX/releases]]
|
21
21
|
|
22
22
|
!! Improved Support for Drag and Drop
|
23
23
|
|
@@ -46,7 +46,7 @@ Revert
|
|
46
46
|
|
47
47
|
!! New Tiddler Manager
|
48
48
|
|
49
|
-
[[Added|https://github.com/
|
49
|
+
[[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/16bb65d17f5a20a0076320c6b1305b7b139d7375]] new [[tiddler manager|$:/Manager]] to support tasks such as:
|
50
50
|
|
51
51
|
* Reviewing and applying tags to a large number of tiddlers
|
52
52
|
* Tweaking the custom colours and icons for a large number of tiddlers
|
@@ -55,41 +55,41 @@ The tiddler manager will be extended in the future to increase flexibility and t
|
|
55
55
|
|
56
56
|
!! Performance Improvements
|
57
57
|
|
58
|
-
* [[Extended|https://github.com/
|
58
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/commit/989cee50594a76a0f30d1d2124ce9e5e5808c6cf]] search mechanism to require the search string to be a minimum length
|
59
59
|
|
60
60
|
!! Translation Improvements
|
61
61
|
|
62
|
-
* [[Improvements|https://github.com/
|
63
|
-
* [[Added|https://github.com/
|
64
|
-
* [[Added|https://github.com/
|
62
|
+
* [[Improvements|https://github.com/TiddlyWiki/TiddlyWiki5/tree/master/languages]] to Danish, Dutch, French, German, Portuguese and Chinese translations
|
63
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b96377099a7377e4c77582800cac78103a08b066]] new Hebrew translation
|
64
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/e20bce5450f40c8db891893fa0674c493bba7f11]] preliminary support for right-to-left (RTL) languages
|
65
65
|
|
66
66
|
!! Usability Improvements
|
67
67
|
|
68
|
-
* [[Added|https://github.com/
|
69
|
-
* [[Added|https://github.com/
|
70
|
-
* [[Added|https://github.com/
|
71
|
-
* [[Improved|https://github.com/
|
72
|
-
* [[Added|https://github.com/
|
73
|
-
* [[Added|https://github.com/
|
74
|
-
* [[Added|https://github.com/
|
75
|
-
* [[Improved|https://github.com/
|
68
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/3197f9a639761e1e56b2f5b18b5f7cf5c3d992da]] a select all/none checkbox to the header of the import panel
|
69
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2072]] "close plugin library" button
|
70
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2592]] support for adding tags using the <kbd>enter</kbd> key
|
71
|
+
* [[Improved|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2590]] handling of <kbd>ctrl-Enter</kbd> to add partially completed tags and fields
|
72
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/e8bb897e263feea1a671ce035af68d0c6bc246b5]] support for relinking references to renamed tiddlers
|
73
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/0b76c327c217251e2eb8e318e3f2d4637192581a]] new "print page" page control button {{$:/core/ui/Buttons/print}} (and [[added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c4e13bc94afb022e40aaa70b06464084188acfea]] associated [[icon|$:/core/images/print-button]])
|
74
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/d1121787c090ec8f5fc592b83c3dbad1075fe0ec]] new page control button to temporarily suspend timestamps {{$:/core/ui/Buttons/timestamp}}
|
75
|
+
* [[Improved|https://github.com/TiddlyWiki/TiddlyWiki5/commit/7a6d7e2a1567ce04330939b3926b21b88796b4c9]] access to plugin information:
|
76
76
|
** Refactored the display of plugin tiddlers to use the same format as the control panel, adding the shadow tiddler listing as an overridable extension tab
|
77
77
|
** Added a new tab in the “More” sidebar providing quick access to all installed plugins
|
78
|
-
* [[Fixed|https://github.com/
|
79
|
-
* [[Extended|https://github.com/
|
80
|
-
* [[Increased|https://github.com/
|
81
|
-
* [[Fixed|https://github.com/
|
82
|
-
* [[Improved|https://github.com/
|
83
|
-
* [[Improved|https://github.com/
|
84
|
-
* [[Added|https://github.com/
|
85
|
-
* [[Increased|https://github.com/
|
86
|
-
* [[Added|https://github.com/
|
87
|
-
* [[Added|https://github.com/
|
78
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/issues/2616]] height of preview pane to use a scrollbar when fixed height layout is selected
|
79
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/commit/4eed18496fe2f4f67ad6a382b813b5c5371d3930]] editor "link" button to create external links and missing links
|
80
|
+
* [[Increased|https://github.com/TiddlyWiki/TiddlyWiki5/commit/2d9aa12aa867d1b7c983e21de2ed60abf6f5a1bc]] size of icons in the "Filter" tab of $:/AdvancedSearch
|
81
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/issues/2381]] problem with multiple copies of a tiddler appearing in the story river
|
82
|
+
* [[Improved|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2585]] dropdown for new field names with typeahead search
|
83
|
+
* [[Improved|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c02c3a06e09baaa7746a26dffebb97ef8ec1ff6e]] the ordering of groups in the tiddler editor content type dropdown
|
84
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b3273bcbda6bcb9f3a0670b79ea598c3674c5012]] "sticky" mode for tiddler info panel. See "Settings" in [[control panel|$:/ControlPanel]]
|
85
|
+
* [[Increased|https://github.com/TiddlyWiki/TiddlyWiki5/commit/5bf238fc8698a6b750dd0f577ab745a4db714a17]] boldness of tag pill text
|
86
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/ee66d1a1afb939c0cba8c2257b8300921831c716]] documentation marker to indicate the version in which a new feature was released
|
87
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b1a5afbf158fab9e224978c81a10aca15d30d91a]] an entry to the advanced search filter drop down for exporting the current story (minus advanced search)
|
88
88
|
|
89
89
|
!! New and Improved Filter Operators
|
90
90
|
|
91
|
-
* [[Added|https://github.com/
|
92
|
-
* [[Added|https://github.com/
|
91
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/issues/2767]] new [[enlist Operator]]
|
92
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b4b77d1681023d4ccc0e157df1ce67d0d388cd5a]] several new filter operators for string encoding/decoding:
|
93
93
|
** [[decodehtml Operator]]
|
94
94
|
** [[decodeuri Operator]]
|
95
95
|
** [[decodeuricomponent Operator]]
|
@@ -98,66 +98,66 @@ The tiddler manager will be extended in the future to increase flexibility and t
|
|
98
98
|
** [[encodeuricomponent Operator]]
|
99
99
|
** [[escaperegexp Operator]]
|
100
100
|
** [[stringify Operator]]
|
101
|
-
* [[Added|https://github.com/
|
102
|
-
* [[Added|https://github.com/
|
103
|
-
* [[Added|https://github.com/
|
104
|
-
* [[Added|https://github.com/
|
105
|
-
* [[Changed|https://github.com/
|
106
|
-
* [[Added|https://github.com/
|
107
|
-
* [[Improved|https://github.com/
|
101
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/ffcbcbfa82cb8f1044c57967117aeae0978579f0]] new [[minlength Operator]]
|
102
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/9a386421414aacd23e21bc9cb1a116b905fb39ff]] new [[order Operator]]
|
103
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c65d08240b1f69078c8b3129cb9b00df56ada1d3]] strict mode to [[tag Operator]]
|
104
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/a3dc3b4b98f424d12019550df52639224100316f]] new ''tags'' option to the [[all Operator]]
|
105
|
+
* [[Changed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c460cc03a49be2c41157814f5a1fc25c4bc3fe41]] [[is Operator]] to pass through arguments if the operand is blank
|
106
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2066]] "field" suffix for [[has Operator]]
|
107
|
+
* [[Improved|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2193]] [[wikiparserrules Operator]] to return all available parse rules
|
108
108
|
|
109
109
|
!! Hackability Improvements
|
110
110
|
|
111
|
-
* [[Added|https://github.com/
|
112
|
-
* [[Added|https://github.com/
|
113
|
-
* [[Refactored|https://github.com/
|
114
|
-
* [[Improved|https://github.com/
|
115
|
-
* [[Extended|https://github.com/
|
116
|
-
* [[Added|https://github.com/
|
117
|
-
* [[Added|https://github.com/
|
118
|
-
* [[Extended|https://github.com/
|
119
|
-
* [[Added|https://github.com/
|
120
|
-
* [[Added|https://github.com/
|
121
|
-
* [[Added|https://github.com/
|
122
|
-
* [[Added|https://github.com/
|
123
|
-
* [[Added|https://github.com/
|
124
|
-
* [[Added|https://github.com/
|
111
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/d9f301f7556ce899840dab0ebc31c040d9c7a72b]] support for "formattedtext" output type to the WikifyWidget
|
112
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/a20da9f5303fdd52a54d61b231450c2aa35d3804]] a saver for the peer-to-peer Beaker browser; see [[TiddlyWiki on Beaker Browser]] for details
|
113
|
+
* [[Refactored|https://github.com/TiddlyWiki/TiddlyWiki5/commit/f07e0f981a1cded691227146e0281f7c4f06d55c]] the tag templates and macros to make them more reusable
|
114
|
+
* [[Improved|https://github.com/TiddlyWiki/TiddlyWiki5/commit/87fa7f972cae859c466dea8a531d50f060e7d910]] modals and notifications so that global macros are available
|
115
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b35544bf4946596e60f7b0c7f0a55fa490ac2a24]] the SetWidget to allow a single result to be selected from a filtered result list
|
116
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/2f590a365e5b6bfecc1170fdbeaaf398795a2feb]] new `$:/info/url/*` [[information tiddlers|InfoMechanism]] providing document location information
|
117
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/3bceb98119c6f1fbbed76c977c601a930b0bcac9]] support for the ''actions'' attribute to the CheckboxWidget
|
118
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2104]] CheckboxWidget to support data tiddlers via the `index` attribute
|
119
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b1a5afbf158fab9e224978c81a10aca15d30d91a]] new entry to the advanced search filtered export menu for exporting the current story river
|
120
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/1b339e17bc0c67ff7eb3e8f7f299588ecf8848ee]] `tag` attribute to the KeyboardWidget
|
121
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2614]] overwrite protection to the ~WebDAV saver
|
122
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/202ffd9c51d71b469eff968ae63b56a985a3c6bf]] new "big block quote" style for [[Block Quotes in WikiText]]
|
123
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c25a44756b1a4a08a29fbe02a908ef57a6a193bf]] customisable template text for new journal tiddlers, accessible the control panel
|
124
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/779e62a30fc5e61cee893eabc0f268e7fb959639]] support for `.json` tiddler files containing a single tiddler object, instead of an array of tiddlers
|
125
125
|
|
126
126
|
!! Node.js Improvements
|
127
127
|
|
128
|
-
* [[Fixed|https://github.com/
|
129
|
-
* [[Added|https://github.com/
|
130
|
-
* [[Enhanced|https://github.com/
|
128
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commits/master/plugins/tiddlywiki/filesystem/filesystemadaptor.js]] multiple issues the creation of new tiddler files by the filesystem adaptor
|
129
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/0d0ece63777a22422ab2ddae7dee996b28f62c5e]] new FetchCommand for retrieving tiddlers over http/https
|
130
|
+
* [[Enhanced|https://github.com/TiddlyWiki/TiddlyWiki5/commit/6f93ce6ea790427fe1e6e11a062d64f14449bfa3]] RenderTiddlerCommand to add support for an additional variable
|
131
131
|
|
132
132
|
!! Bug Fixes
|
133
133
|
|
134
|
-
* [[Improved|https://github.com/
|
135
|
-
* [[Fixed|https://github.com/
|
136
|
-
* [[Prevented|https://github.com/
|
137
|
-
* [[Fixed|https://github.com/
|
138
|
-
* [[Partially fixed|https://github.com/
|
139
|
-
* [[Revised|https://github.com/
|
140
|
-
* [[Fixed|https://github.com/
|
141
|
-
* [[Fixed|https://github.com/
|
142
|
-
* [[Fixed|https://github.com/
|
143
|
-
* [[Fixed|https://github.com/
|
144
|
-
* [[Fixed|https://github.com/
|
145
|
-
* [[Fixed|https://github.com/
|
146
|
-
* [[Fixed|https://github.com/
|
147
|
-
* [[Fixed|https://github.com/
|
148
|
-
* [[Fixed|https://github.com/
|
149
|
-
* [[Fixed|https://github.com/
|
150
|
-
* [[Fixed|https://github.com/
|
134
|
+
* [[Improved|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b1ecf81b0c0727db2245cfeba78cc46a33c3a814]] Node.js support for the HighlightPlugin
|
135
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2650]] problem with recursion errors in the [[Table-of-Contents Macros]]
|
136
|
+
* [[Prevented|https://github.com/TiddlyWiki/TiddlyWiki5/commit/f97c1226aac9f3a5b563fc8d95bfeff91b8ab810]] email addresses from being mis-recognised as HTML tags
|
137
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2572]] issue with `$tw.utils.strEndsWith()`
|
138
|
+
* [[Partially fixed|https://github.com/TiddlyWiki/TiddlyWiki5/issues/2599]] problem with action widgets being invoked independently of refresh cycle
|
139
|
+
* [[Revised|https://github.com/TiddlyWiki/TiddlyWiki5/issues/2522]] handling of `syncAdaptor.isReady()` method to improve compatibility with older adaptors
|
140
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/issues/2517]] problem with unsafe use of `String.prototype.replace()`, corrupting fields containing dollar signs
|
141
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/8b60dbb81d3495aa8be1f160e4f31bcae995f400]] problem with page background colour not showing through transparent background images
|
142
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/issues/2514]] sync problem with skinny tiddlers not being loaded
|
143
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/06b7de415cd2cef3848f2ef2516200ee79afd130]] problem with "Cancel" button in login dialogue also submitting the form
|
144
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/issues/2579]] typo affecting created/creator fields when deleting a field
|
145
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/issues/2595]] issue with system links containing international characters not being recognised
|
146
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/issues/2076]] issue with single line macro definitions without a terminating line break
|
147
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/cf28eeb2a120fe3f263235c35fe5603013f88049]] issue with empty strings and the CheckboxWidget
|
148
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b759d82f4ce2bf44da0bcce0c08550870f3216f8]] problem with calculation of week numbers
|
149
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/issues/2312]] problem with [[move Operator]] not wrapping correctly
|
150
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/f0ff1f993e94d6928f0aa249b7f6f5e5624ebb69]] problem preventing customisation of textarea background colours
|
151
151
|
|
152
152
|
!! Developer Bug Fixes and Improvements
|
153
153
|
|
154
|
-
* [[Updated|https://github.com/
|
155
|
-
* [[Updated|https://github.com/
|
156
|
-
* [[Improved|https://github.com/
|
157
|
-
* [[Improved|https://github.com/
|
158
|
-
* [[Refactored|https://github.com/
|
159
|
-
* [[Refactored|https://github.com/
|
160
|
-
* [[Added|https://github.com/
|
154
|
+
* [[Updated|https://github.com/TiddlyWiki/TiddlyWiki5/commit/25b2e846cea0f560b259296263a98e3287e5f311]] Stanford JavaScript Library to version v1.0.6
|
155
|
+
* [[Updated|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c16f96626e2ff9d849563eeba7d8ef5cf8e4ed4b]] Google Analytics plugin to latest version of Google's code
|
156
|
+
* [[Improved|https://github.com/TiddlyWiki/TiddlyWiki5/commit/3c715c5e0d1117ca32760d4da6578cd27af06172]] Common/JS compatibility by adding support for implicitly adding `/index.js` to a require target
|
157
|
+
* [[Improved|https://github.com/TiddlyWiki/TiddlyWiki5/commit/1b41b4468495bbe66f99345ee94a67346176deb7]] support for bulk loading tiddler files via [[tiddlywiki.files Files]] within TiddlyWikiFolders
|
158
|
+
* [[Refactored|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2627]] server mechanism to make it simpler to integrate TiddlyWiki into [[ExpressJS|http://expressjs.com/]] apps
|
159
|
+
* [[Refactored|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2626]] the TiddlyFox saver module to make it easier to use it with other saving mechanisms
|
160
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/2397f0aa6f7af305807b61ccb1d435c2e6a789ab]] (and [[here|https://github.com/TiddlyWiki/TiddlyWiki5/commit/daf703b67fae0dd029eeaa4317b721fa8c284648]]) several new UI hooks, and [[improved|https://github.com/TiddlyWiki/TiddlyWiki5/commit/6b2ab9072111cb87508f83a385b0885fb196cbcf]] the hook mechanism; see <a href="./dev/index.html#:[search:title[hook]]" target="_blank">developer docs</a>
|
161
161
|
|
162
162
|
! Contributors
|
163
163
|
|
@@ -7,7 +7,7 @@ title: Release 5.1.15
|
|
7
7
|
type: text/vnd.tiddlywiki
|
8
8
|
description: Explorer tab, whitespace pragma, save and render commands
|
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.1.14...v5.1.15]]//
|
11
11
|
|
12
12
|
!! New and Improved Plugins
|
13
13
|
|
@@ -21,49 +21,49 @@ New and improved translations:
|
|
21
21
|
* New Persian translation
|
22
22
|
* Updated Chinese and Greek translations
|
23
23
|
|
24
|
-
Another improvement that benefits users of translations is the addition of about 800 new //transliteration pairs//. These are substitutions that are performed when converting a tiddler title into a filename, such as the two characters "oe" for the single character "œ". See [[the commit|https://github.com/
|
24
|
+
Another improvement that benefits users of translations is the addition of about 800 new //transliteration pairs//. These are substitutions that are performed when converting a tiddler title into a filename, such as the two characters "oe" for the single character "œ". See [[the commit|https://github.com/TiddlyWiki/TiddlyWiki5/commit/5cdf86b3072604f8c556c84f266767be5b8e75c3]] for more details. The result is that automatically generated filenames are much more readable.
|
25
25
|
|
26
26
|
!! Usability Improvements
|
27
27
|
|
28
|
-
* [[Added|https://github.com/
|
29
|
-
* [[Added|https://github.com/
|
28
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/1e9d214f67906e63758f8665091bc0ef6651f10d]] new "Explorer" tab to "More" sidebar and underlying [[tree Macro]]
|
29
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/cee7baa1831a8f236c46d8c438c2a4d9bda8a0e2]] configuration option in [[theme tweaks|$:/themes/tiddlywiki/vanilla/themetweaks]] for the editor font
|
30
30
|
|
31
31
|
!! Hackability Improvements
|
32
32
|
|
33
|
-
* [[Added|https://github.com/
|
34
|
-
* [[Extended|https://github.com/
|
35
|
-
* [[Added|https://github.com/
|
36
|
-
* [[Updated|https://github.com/
|
37
|
-
* [[Extended|https://github.com/
|
38
|
-
* [[Extended|https://github.com/
|
39
|
-
* [[Extended|https://github.com/
|
40
|
-
* [[Added|https://github.com/
|
41
|
-
* [[Added|https://github.com/
|
42
|
-
* [[Added|https://github.com/
|
33
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/aa417fe899d0983ad8a3fe1fdfe9cac42364b2b6]] new [[lookup Operator]] to simplify use of lookup tables
|
34
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/commit/5dd3d97760083f7c6ba9a6cd6186525edb3fb836]] the SetWidget with ''tiddler'', ''field'' and ''index'' attributes
|
35
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/d966583854d7c7f4a7df25c0e2a8d6b9e217a12c]] new ''whitespace'' [[Pragma]] allowing whitespace to be selectively ignored within wikitext
|
36
|
+
* [[Updated|https://github.com/TiddlyWiki/TiddlyWiki5/commit/ef9efbc3995248d72148423bee10a1374c842926]] support for saving in [[Beaker Browser]]
|
37
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/commit/4db950cc450ef1ea87ce8f480fe882f2b108cdb4]] [[date formatting|DateFormat]] to support milliseconds and UTC dates
|
38
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/commit/dc295b2536cdf411893e15b6dc0d62107f50a08d]] LinkCatcherWidget to make the target tiddler available within the action string
|
39
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/commit/596dfa1d5058e030a318e4a0f23d078500c3d154]] (and [[here|https://github.com/TiddlyWiki/TiddlyWiki5/commit/a4d919f45caae393f99018e0d797980b3667867f]]) the DropzoneWidget and BrowseWidget to allow the deserializer to be manually specified
|
40
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/523280362b529ee73229001a1bcd79272f483908]] new `tc-btn-*` classes to toolbar buttons allowing easier custom styling
|
41
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/8293a77c6e6870960956dcf1501c687d2f88ea3c]] new ''mode'' attribute to the ViewWidget, allowing control over the parsing mode for wikified output formats
|
42
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/d7a6816307f4fd47df29cb8e0343ea39c079a2b0]] new [[jsonstringify Operator]]
|
43
43
|
|
44
44
|
!! Node.js Improvements
|
45
45
|
|
46
|
-
* [[Added|https://github.com/
|
47
|
-
* [[Added|https://github.com/
|
48
|
-
* [[Added|https://github.com/
|
49
|
-
* [[Added|https://github.com/
|
46
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/35a7a66b019f2ea0532ba65cd5475f5cfe46a860]] SaveCommand and RenderCommand, intended as more flexible replacements for RenderTiddlerCommand, RenderTiddlersCommand, SaveTiddlerCommand and SaveTiddlersCommand
|
47
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/51b1ead5c9aa5a754e7fdc0bfbf241dd98db5f7c]] (and [[here|https://github.com/TiddlyWiki/TiddlyWiki5/commit/1b7d9d65f42e77fdceb11b0b0b9ab9a63f6762e9]]) more colour to command line output
|
48
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c179dc93cbd8947f92a8007d28c497b70efc4204]] new "raw" options to the FetchCommand
|
49
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/e951047461c3c2c273484a759ce5fc2c388fb684]] new ImportCommand
|
50
50
|
|
51
51
|
!! Bug Fixes
|
52
52
|
|
53
|
-
* [[Fixed|https://github.com/
|
54
|
-
* [[Removed|https://github.com/
|
55
|
-
* [[Restored|https://github.com/
|
56
|
-
* [[Fixed|https://github.com/
|
57
|
-
* [[Fixed|https://github.com/
|
58
|
-
* [[Fixed|https://github.com/
|
59
|
-
* [[Fixed|https://github.com/
|
60
|
-
* [[Updated|https://github.com/
|
53
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2821]] problem with "new journal" button clearing the text field
|
54
|
+
* [[Removed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c069d48a2a690b333c0733328f3574ae8a76e435]] extraneous URI encoding of filename with PUT saver
|
55
|
+
* [[Restored|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2940]] ability to use sub-filter with image-picker macro
|
56
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/ccac0258af9b6d8c93d41b1f170e20dbf2efe3f3]] problem with the download saver and filenames containing spaces, accents or other characters that need URL encoding
|
57
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/issues/2850]] problem with importing JSON tiddlers with leading or trailing spaces in the title
|
58
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/683285d44943db2d993bd574ed2d2f8a07dfc816]] plugin display so that "contents" tab is shown even if no other tabs are provided
|
59
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2842]] problem with `allbefore:include` filter operator
|
60
|
+
* [[Updated|https://github.com/TiddlyWiki/TiddlyWiki5/commit/e471bd54d42226d3b6d070b8561f8883f44df68a]] Update Stanford JavaScript Library to version 1.0.7
|
61
61
|
|
62
62
|
!! Developer Bug Fixes and Improvements
|
63
63
|
|
64
|
-
* [[Extended|https://github.com/
|
65
|
-
* [[Extended|https://github.com/
|
66
|
-
* [[Added|https://github.com/
|
64
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/commit/0bc325025a61c265dafe7ce8750ea8deed2be51b]] `$tw.boot.boot()` to add a callback parameter
|
65
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/commit/d89010752a8b169a4917bde9a9028ddd871e743d]] navigation handling to pass original event data
|
66
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/518f57f4bbc747c3675260eb3ffde1dc7468c805]] new `th-importing-files` hook
|
67
67
|
|
68
68
|
! Contributors
|
69
69
|
|
@@ -7,7 +7,7 @@ title: Release 5.1.16
|
|
7
7
|
type: text/vnd.tiddlywiki
|
8
8
|
description: [[Dynaview Plugin]], import previews, DiffTextWidget, rotate left in bitmap editor, StartupActions
|
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.1.15...v5.1.16]]//
|
11
11
|
|
12
12
|
!! Improved ~CodeMirror Plugins
|
13
13
|
|
@@ -58,77 +58,77 @@ New and improved translations:
|
|
58
58
|
|
59
59
|
!! Privacy Improvements
|
60
60
|
|
61
|
-
Prompted by the [[General Data Protection Regulation (GDPR)|https://en.wikipedia.org/wiki/General_Data_Protection_Regulation]], we've [[removed all third party cookies from tiddlywiki.com|https://github.com/
|
61
|
+
Prompted by the [[General Data Protection Regulation (GDPR)|https://en.wikipedia.org/wiki/General_Data_Protection_Regulation]], we've [[removed all third party cookies from tiddlywiki.com|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3106]].
|
62
62
|
|
63
63
|
!! Usability Improvements
|
64
64
|
|
65
|
-
* [[Added|https://github.com/
|
66
|
-
* [[Added|https://github.com/
|
67
|
-
* [[Added|https://github.com/
|
68
|
-
* [[Added|https://github.com/
|
69
|
-
* [[Improved|https://github.com/
|
70
|
-
* [[Added|https://github.com/
|
71
|
-
* [[Simplified|https://github.com/
|
72
|
-
* [[Added|https://github.com/
|
73
|
-
* [[Added|https://github.com/
|
74
|
-
* [[Added|https://github.com/
|
75
|
-
* [[Added|https://github.com/
|
76
|
-
* [[Added|https://github.com/
|
77
|
-
* [[Improved|https://github.com/
|
78
|
-
* [[Added|https://github.com/
|
79
|
-
* [[Improved|https://github.com/
|
80
|
-
* [[Added|https://github.com/
|
81
|
-
* [[Added|https://github.com/
|
65
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3112]] new DiffTextWidget, and integrated it into the import listing and as a preview pane
|
66
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/9e03264ebe141a5dc4d37dcb62f3bbf2f740d983]] selectable previews to the import listing
|
67
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3155]] new editor toolbar buttons for wrapping the selection with double square and curly brackets
|
68
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3134]] new [[sortan Operator]] for sorting alphanumeric values such as "Apple 6", "Apple 7", "Apple 8", "Apple 9", "Apple 10", "Apple 20", "Apple 30", "Apple 100"
|
69
|
+
* [[Improved|https://github.com/TiddlyWiki/TiddlyWiki5/commit/da0ffce2d66f16ad14587fbe58b8d7a5c8d36657]] default fonts for readability as advised by [[GitHub|http://markdotto.com/2018/02/07/github-system-fonts/]]
|
70
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3131]] an editor toolbar button for stamping fragments of formulae for the [[KaTeX Plugin]]
|
71
|
+
* [[Simplified|https://github.com/TiddlyWiki/TiddlyWiki5/commit/1c8170463c80a18c0753783aa0b32a0ff2f9028c]] the page scrolling behaviour: navigating to a tiddler now scrolls the top of the tiddler to the top of the viewport
|
72
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/d2ff164c07788818ded9826c9e3811599272e69c]] [[WidgetMessage: tm-copy-to-clipboard]] and [[also|https://github.com/TiddlyWiki/TiddlyWiki5/commit/1b6a06a4d79ad5c58593a7844e306c25848979ea]] [[copy-to-clipboard Macro]] for copying text directly to the clipboard
|
73
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3040]] a hint to the field list dropdown
|
74
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3135]] a control panel setting for the default tab in the More sidebar
|
75
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3149]] a control panel setting for the titles of new tiddlers
|
76
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c0569849d22f99623423d349c0d96ecae11ffbe8]] "rotate left" button to bitmap editor toolbar
|
77
|
+
* [[Improved|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3180]] criteria under which certain editor toolbar buttons are displayed
|
78
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3190]] support for a minimum length for the new tag field before the dropdown is shown
|
79
|
+
* [[Improved|https://github.com/TiddlyWiki/TiddlyWiki5/commit/02529a51d0be47477e62cd52dd5e4989a4993663]] consistency and reusability of the palette, language and theme switchers
|
80
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/ea763d0eaba7edf928ae247563deb95278504e9f]] support for retaining tab content in the [[tabs Macro]]
|
81
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2703]] support for adding links via the <kbd>enter</kbd> key
|
82
82
|
|
83
83
|
!! Hackability Improvements
|
84
84
|
|
85
|
-
* [[Added|https://github.com/
|
86
|
-
* [[Added|https://github.com/
|
87
|
-
* [[Extended|https://github.com/
|
88
|
-
* [[Added|https://github.com/
|
89
|
-
* [[Extended|https://github.com/
|
90
|
-
* [[Extended|https://github.com/
|
91
|
-
* [[Added|https://github.com/
|
92
|
-
* [[Added|https://github.com/
|
93
|
-
* [[Added|https://github.com/
|
94
|
-
* [[Added|https://github.com/
|
95
|
-
* [[Enhanced|https://github.com/
|
96
|
-
* [[Enhanced|https://github.com/
|
97
|
-
* [[Added|https://github.com/
|
98
|
-
* [[Added|https://github.com/
|
99
|
-
* [[Added|https://github.com/
|
100
|
-
* [[Added|https://github.com/
|
101
|
-
* [[Added|https://github.com/
|
102
|
-
* [[Extended|https://github.com/
|
103
|
-
* [[Added|https://github.com/
|
104
|
-
* [[Added|https://github.com/
|
85
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/033feda02d7f5cdf27a9393b8229f22219cdab88]] support for comparison operators to the RevealWidget
|
86
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/1c6942402ee7b6d938f01bad23130ebe75b109f2]] support for StartupActions to execute action widgets at startup
|
87
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/commit/f4fd5e76f8da8555bb9056725f11e0c0c91649f7]] ServerCommand to allow the port number to be specified as an environment variable
|
88
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/28e713caac1582e30b9ab8f7364ac8a564f4ffd7]] screen width/height to [[platform information exposed at startup|InfoMechanism]]
|
89
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3167]] DroppableWidget to pass modifier keys in a variable
|
90
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3203]] DraggableWidget with actions for drag start and drag end
|
91
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/7cb54f32c6ee2d98f3f13ddda39f92281d419afd]] a new [[TaskManagementExample (Draggable)]]
|
92
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/460a07ca03a501009530a57352d6bec0e3cf49cd]] new 'Stylesheets' tab to control panel
|
93
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b4c7c59d5d1bc5282fcfed58abbf087b9f65b86c]] new 'emptyMessage' parameter to [[list-links Macro]] and [[list-tagged-draggable Macro]]
|
94
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/de4eb5ca89132db136c8f5fb3103f289f25fe98a]] new `th-page-refreshed` hook
|
95
|
+
* [[Enhanced|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3063]] macro evaluation by making parameters available as variables - see "Parameters as Variables" in [[Macro Definitions in WikiText]]
|
96
|
+
* [[Enhanced|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3052]] LinkWidget to allow better customisation of CSS classes
|
97
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3124]] new "value" suffix for the [[each Operator]]
|
98
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/0d354fe57f7424c1751a5c0cf5fbf1203803f3c8]] new ''subtiddler'' attribute to the SetWidget
|
99
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/47cdf5513391742c3410bb80b36107ab17b0476d]] new [[subtiddlerfields Operator]] for extracting the fields from tiddlers within plugins
|
100
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3182]] ability to trigger actions on unchecking the CheckboxWidget
|
101
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2182]] support for a checked class to the RadioWidget
|
102
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2982]] the [[is Operator]] to allow multiple types to be specified
|
103
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3209]] data attributes to ViewTemplate (see [[Custom data-styles]])
|
104
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2988]] new RangeWidget
|
105
105
|
|
106
106
|
!! Bug Fixes
|
107
107
|
|
108
|
-
* [[Removed|https://github.com/
|
109
|
-
* [[Fixed|https://github.com/
|
110
|
-
* [[Fixed|https://github.com/
|
111
|
-
* [[Fixed|https://github.com/
|
112
|
-
* [[Fixed|https://github.com/
|
113
|
-
* [[Fixed|https://github.com/
|
114
|
-
* [[Fixed|https://github.com/
|
115
|
-
* [[Fixed|https://github.com/
|
116
|
-
* [[Fixed|https://github.com/
|
117
|
-
* [[Fixed|https://github.com/
|
118
|
-
* [[Fixed|https://github.com/
|
119
|
-
* [[Extended|https://github.com/
|
108
|
+
* [[Removed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3043]] superfluous list item at the end of list-links-draggable macro
|
109
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/7e71fcfab80bed9aed4389eea386fb2036cc4a85]] problem with the content area of vertical tabs sometimes overflowing their right hand margin
|
110
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3079]] problem with double quotes within the new journal template
|
111
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3070]] problem with dragging inside a textarea
|
112
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3099]] usage of "default" attribute of SelectWidget when "index" attribute is used
|
113
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3093]] problem with crash when dragging over TiddlyWiki on some browsers
|
114
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3079]] issue with new journal button
|
115
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3164]] problem with ''filter'' and ''value'' attributes of SetWidget
|
116
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3190]] problem with numeric operands in the [[Extended Listops Filters]]
|
117
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/df1f7e9798b5f6c3d2c3fd82e438cbc9713ade04]] problem with "put" saver and 412 return codes
|
118
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3048]] problem with variable references in field values in the edit template
|
119
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3219]] behaviour of list-after field so that the tiddler is placed at the end of the list if the list-after field is present but empty
|
120
120
|
|
121
121
|
!! Developer Bug Fixes and Improvements
|
122
122
|
|
123
|
-
* [[Added|https://github.com/
|
124
|
-
* [[Fixed|https://github.com/
|
123
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/1dc764764055243acd07d0c4f480e6e912be6870]] ''plugin-priority'' field to core plugins
|
124
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3113]] problems with plugin ordering
|
125
125
|
* Several optimisations to the tiddler store:
|
126
|
-
** [[Avoiding slow Object.keys calls|https://github.com/
|
127
|
-
** [[Optimising the tag filter|https://github.com/
|
128
|
-
** [[Minor improvements to tiddler deletion|https://github.com/
|
129
|
-
* [[Added|https://github.com/
|
130
|
-
* [[Added|https://github.com/
|
131
|
-
* [[Added|https://github.com/
|
126
|
+
** [[Avoiding slow Object.keys calls|https://github.com/TiddlyWiki/TiddlyWiki5/commit/254e1ca7f7a5fe9d2deef72692ada2b7637f34ce]] - saving 50% of some operations
|
127
|
+
** [[Optimising the tag filter|https://github.com/TiddlyWiki/TiddlyWiki5/commit/e4b10d42f9480c0505862a93f0b97d1c4270ed65]] - saving 50% on some tag operations
|
128
|
+
** [[Minor improvements to tiddler deletion|https://github.com/TiddlyWiki/TiddlyWiki5/commit/358d4165260311446f2b433591762dd667250975]]
|
129
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2990]] support for custom boot paths
|
130
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3206]] new navigation hooks: `th-cancelling-tiddler`, `th-new-tiddler` and `th-renaming-tiddler`
|
131
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3024]] new hook when the HTTP server starts `th-server-command-post-start`
|
132
132
|
|
133
133
|
|
134
134
|
! Contributors
|
@@ -7,33 +7,33 @@ title: Release 5.1.17
|
|
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.1.16...v5.1.17]]//
|
11
11
|
|
12
12
|
!! Reversions
|
13
13
|
|
14
|
-
After encountering significant problems we've reluctantly decided to [[remove support|https://github.com/
|
14
|
+
After encountering significant problems we've reluctantly decided to [[remove support|https://github.com/TiddlyWiki/TiddlyWiki5/commit/737e9ae4cb136ca3f473624f64142bd83e532b9b]] for multiple sub-operators with the [[is Operator]] that was added in v5.1.16.
|
15
15
|
|
16
16
|
!! Usability Improvements
|
17
17
|
|
18
|
-
* [[Improved|https://github.com/
|
18
|
+
* [[Improved|https://github.com/TiddlyWiki/TiddlyWiki5/commit/7468ad7acf1ca2280ad89ee014484928e160f54b]] appearance of ~TiddlyWiki's "red screen of embarrassment"
|
19
19
|
|
20
20
|
!! Bug Fixes
|
21
21
|
|
22
|
-
* [[Fixed|https://github.com/
|
23
|
-
* [[Fixed|https://github.com/
|
24
|
-
* [[Fixed|https://github.com/
|
25
|
-
* [[Fixed|https://github.com/
|
26
|
-
* [[Restored|https://github.com/
|
27
|
-
* [[Fixed|https://github.com/
|
28
|
-
* [[Fixed|https://github.com/
|
29
|
-
* [[Fixed|https://github.com/
|
30
|
-
* [[Fixed|https://github.com/
|
22
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/e6466b2c320cdab46a74aa343b6c56c5783e3f94]] problem with extraneous space in new journal titles
|
23
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b95aa6ec6ad51672e9ed26ab94d7fe799698782c]] problem with repeated use of "new journal" with text set
|
24
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/f9be417204695d26d5f458fbc53870b2adb9a372]] (and [[here|https://github.com/TiddlyWiki/TiddlyWiki5/commit/46e8e4343acba876b9540b9fc77a5c85faa10939]]) problem with Etag handling
|
25
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3240]] problem with [[is Operator]] introduced in 5.1.16
|
26
|
+
* [[Restored|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b2173d11ea550ba4a5f2fd89b1388b392e37dd51]] default of the preview pane being hidden
|
27
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/issues/3245]] incorrect plugin library location
|
28
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3226]] animation timing problem with reveal widget that sometimes caused the sidebar not to show when requested
|
29
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/3244]] problem with saving with non-Dat URI schemes
|
30
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/4c89bbabbe5f5665e92258b560ed7380ae06d9e8]] deletion of `$:/status/UserName` when logged out
|
31
31
|
|
32
32
|
!! Node.js Improvements
|
33
33
|
|
34
|
-
* [[Stopped|https://github.com/
|
35
|
-
* [[Fixed|https://github.com/
|
36
|
-
* [[Added|https://github.com/
|
34
|
+
* [[Stopped|https://github.com/TiddlyWiki/TiddlyWiki5/pull/2893]] clearing [[$:/status/UserName]] when logged out
|
35
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/ab5e5795e88892b5687885c8ead8d6959082399b]] bug with attempting to lazy load tiddlers that do not qualify for syncing
|
36
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/2c7f467514cb75aefa87912620575deabde1a530]] support for `/*\` style metadata comments at the top of `*.CSS` files
|
37
37
|
|
38
38
|
! Contributors
|
39
39
|
|