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
@@ -6,7 +6,7 @@ title: Release 5.0.14-beta
|
|
6
6
|
type: text/vnd.tiddlywiki
|
7
7
|
released: 201408131731
|
8
8
|
|
9
|
-
//[[See GitHub for detailed change history of this release|https://github.com/
|
9
|
+
//[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.0.13-beta...v5.0.14-beta]]//
|
10
10
|
|
11
11
|
!! Major Changes
|
12
12
|
|
@@ -34,7 +34,7 @@ There are two components:
|
|
34
34
|
|
35
35
|
!!! Improvements to CamelCase Recognition
|
36
36
|
|
37
|
-
TiddlyWiki now takes a much more conservative approach to recognising CamelCase terms that should be automatically linked. Previously, the dash and underscore were treated as lower case letters, leading to a number of false positives. See the [[GitHub bug #337|https://github.com/
|
37
|
+
TiddlyWiki now takes a much more conservative approach to recognising CamelCase terms that should be automatically linked. Previously, the dash and underscore were treated as lower case letters, leading to a number of false positives. See the [[GitHub bug #337|https://github.com/TiddlyWiki/TiddlyWiki5/issues/337]] for details.
|
38
38
|
|
39
39
|
!!! Automatic Permalinking Off by Default
|
40
40
|
|
@@ -44,39 +44,39 @@ For 5.0.14-beta, the setting has been changed. Visit [[control panel|$:/ControlP
|
|
44
44
|
|
45
45
|
!! Usability Improvements
|
46
46
|
|
47
|
-
* [[Added|https://github.com/
|
48
|
-
* [[Added|https://github.com/
|
49
|
-
* [[Split|https://github.com/
|
50
|
-
* [[Refactored|https://github.com/
|
51
|
-
* [[Stopped|https://github.com/
|
52
|
-
* [[Improved|https://github.com/
|
53
|
-
* [[Updated|https://github.com/
|
54
|
-
* [[Moved|https://github.com/
|
47
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/f6d7d87a3d49f816ccc050bdf4a5394eed37dd51]] previews to the icon dropdown in the [[tag manager|$:/TagManager]]
|
48
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/56945d91d327489478fc44dce5234ece35a01abb]] an indication of unsaved changes by changing the colour of the save changes button
|
49
|
+
* [[Split|https://github.com/TiddlyWiki/TiddlyWiki5/commit/7aa6c7c06d8b5359f183e6b9f6f57cf89611cda8]] the wikitext emphasis parsers into separate modules so that they can be independently controlled with the `\rules` pragma
|
50
|
+
* [[Refactored|https://github.com/TiddlyWiki/TiddlyWiki5/commit/f43cd5ba9c6e5eda221ec738174e61e34fad2b8d]] (and [[here|https://github.com/TiddlyWiki/TiddlyWiki5/commit/a3de93b4eb8b108239b2e4b496308026e9e9eef8]]) ReleaseHistory to place the releases into vertical tabs
|
51
|
+
* [[Stopped|https://github.com/TiddlyWiki/TiddlyWiki5/commit/3ff7462afd5414b92680c6b6e67274be79233224]] saving [[$:/HistoryList]], thus avoiding it uncontrollably increasing in size
|
52
|
+
* [[Improved|https://github.com/TiddlyWiki/TiddlyWiki5/commit/73cf1bfdb3cd238ac7800162f58d44a8bb60019b]] (and [[here|https://github.com/TiddlyWiki/TiddlyWiki5/commit/d5e4b9b5d1e7db5ad4d769433cc934ef08265f57]]) print stylesheet to remove page background
|
53
|
+
* [[Updated|https://github.com/TiddlyWiki/TiddlyWiki5/commit/07f13b310d300631267936ad8bc55a338369afc0]] display of plugin tiddlers so that their constituent tiddlers are shown, rather than the raw JSON
|
54
|
+
* [[Moved|https://github.com/TiddlyWiki/TiddlyWiki5/commit/799a5b059a40a51fdeb1dae7a0eb5bf8a79f5106]] the functionality of the fullscreen plugin into the core
|
55
55
|
|
56
56
|
!! Hackability Improvements
|
57
57
|
|
58
|
-
* [[Extended|https://github.com/
|
59
|
-
* [[Added|https://github.com/
|
60
|
-
* [[Added|https://github.com/
|
61
|
-
* [[Added|https://github.com/
|
62
|
-
* [[Added|https://github.com/
|
63
|
-
* [[Added|https://github.com/
|
64
|
-
* [[Added|https://github.com/
|
65
|
-
* [[Extended|https://github.com/
|
66
|
-
* [[Refactored|https://github.com/
|
67
|
-
* [[Extend|https://github.com/
|
68
|
-
* [[Added|https://github.com/
|
69
|
-
* [[Added|https://github.com/
|
70
|
-
* [[Added|https://github.com/
|
71
|
-
* [[Extended|https://github.com/
|
58
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c23f6af4b5c59f4d09dd8d6704e1939bb9d5b2d3]] TiddlerWidget to add a CSS class corresponding to each tag present on displayed tiddlers
|
59
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/d357e1706c91d17a72fb19fedf43e57071fc7dd6]] support for hiding specified fields in the tiddler editor
|
60
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/be040ea8a2cc8962f1a28a313e4c9ebc2d5c0e31]] support for variable operands in filters (see [[Filter Parameter]])
|
61
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/1f16ef6fa88b51d2dad7c8e57fcff014950a7442]] support for widget messages [[tw-permalink|WidgetMessage: tw-permalink]] and [[tw-permaview|WidgetMessage: tw-permaview]]
|
62
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/tree/master/plugins/tiddlywiki/browser-sniff]] browser sniffing plugin so that tiddlywiki.com can present the correct browser-specific documentation
|
63
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/ef67cc3fd9b267a522598abccdfbb93fbfca240c]] a configuration option for specifying the default location for saving new tiddlers in the client-server configuration
|
64
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b4d47858e587c96f3a68cc28cffff181ec45f55f]] support for the InfoMechanism
|
65
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/commit/f08f57c5d24eb0146ac2cb77472a5fc5f135f1e9]] CheckboxWidget to allow it to toggle fields as well as tags
|
66
|
+
* [[Refactored|https://github.com/TiddlyWiki/TiddlyWiki5/commit/21c137a66c37f010b36697bb6bed5321138fbb9f]] [[control panel|$:/ControlPanel]] theme tweaks to be stored in individual tiddlers
|
67
|
+
* [[Extend|https://github.com/TiddlyWiki/TiddlyWiki5/commit/e18d8a88661a1c2caa1b722841747c75ca6af437]] the <<.mlink tabs>> macro to allow tabs to be templated
|
68
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/91acad0f7ce8637945a953dfcb122cd31292626d]] (and [[here|https://github.com/TiddlyWiki/TiddlyWiki5/commit/8612bc4006e717e4fa3c562fa72a85650206b66f]]) SystemTags support for inserting content above and below the story river
|
69
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/f793816dfa687ae7791143b33487fd5f95f3265c]] support for transcluding plugin subtiddlers with the TranscludeWidget
|
70
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c73853288c5b4b0716da94fea2f2edec09345643]] (and [[here|https://github.com/TiddlyWiki/TiddlyWiki5/commit/08f775eac8cb053d08c1c561e65a5eeb87c4c6b6]]) support for importing from `*.htm` and `*.hta` files as well as the existing support for `*.html` files
|
71
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/commit/73d7e85e11c7732080ca8bc4321ebb12afbac09c]] the "sticky titles" theme so that it works when tiddlers are in edit mode
|
72
72
|
|
73
73
|
!! Bug Fixes
|
74
74
|
|
75
|
-
* [[Fixed|https://github.com/
|
76
|
-
* [[Fixed|https://github.com/
|
77
|
-
* [[Fixed|https://github.com/
|
78
|
-
* [[Fixed|https://github.com/
|
79
|
-
* [[Relax|https://github.com/
|
75
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/5b3b62f93da4b7b19e24ccf72d9ce20b9edce6d5]] bug with execution order of BuildCommand targets
|
76
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/d93da81671a704377209fc1871425c3a7c5db35a]] bug with missing hover colours for external links
|
77
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/465f4ac46903070759a572d183c498c5579cb922]] problem with refreshing modal dialogues
|
78
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/3351ae7e29cbf3bed6fc1925ef33664bcc59fef5]] issue with cookies disabled on Firefox
|
79
|
+
* [[Relax|https://github.com/TiddlyWiki/TiddlyWiki5/commit/5260899d8b090e8886e41e3aa770fdcf5967ad8c]] the requirement for a newline immediately the closing `\end` of a macro definition
|
80
80
|
|
81
81
|
!! Contributors
|
82
82
|
|
@@ -6,34 +6,34 @@ title: Release 5.0.15-beta
|
|
6
6
|
type: text/vnd.tiddlywiki
|
7
7
|
released: 201408202255
|
8
8
|
|
9
|
-
//[[See GitHub for detailed change history of this release|https://github.com/
|
9
|
+
//[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.0.14-beta...v5.0.15-beta]]//
|
10
10
|
|
11
11
|
!! Usability Improvements
|
12
12
|
|
13
|
-
* [[Simplified|https://github.com/
|
14
|
-
* [[Added|https://github.com/
|
15
|
-
* [[Added|https://github.com/
|
16
|
-
* [[Simplified|https://github.com/
|
17
|
-
* [[Blocked|https://github.com/
|
13
|
+
* [[Simplified|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c57b00996855f10d9b7fa2aa4e9deb2a2a607d7f]] shadow default tiddlers
|
14
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/32a7ee2683ace619599f0ab73028307ca33f4e4c]] the ability to disable plugins (see PluginMechanism) with a user interface in [[control panel|$:/ControlPanel]]
|
15
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/4b05608ad5e77043b01495825ea0f0e76c378760]] page control button for invoking the [[tag manager|$:/TagManager]]
|
16
|
+
* [[Simplified|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c4b76ceb0bc786bcceb12fc3417bb8c4bfde27a9]] downloading an offline copy of a client-server wiki
|
17
|
+
* [[Blocked|https://github.com/TiddlyWiki/TiddlyWiki5/commit/2bbe9f76ecf8fc89c789e72be00ac19e811195ee]] temporary state tiddlers from import/upgrade
|
18
18
|
|
19
19
|
!! Hackability Improvements
|
20
20
|
|
21
|
-
* [[Added|https://github.com/
|
22
|
-
* [[Refactored|https://github.com/
|
23
|
-
* [[Added|https://github.com/
|
21
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c912fed55d94c9bef2d541cd55f458b12172941c]] a banner to the edit template encouraging improvements to the documentation
|
22
|
+
* [[Refactored|https://github.com/TiddlyWiki/TiddlyWiki5/commit/f75af2c983e10e8a82639890b993fb5cf042d610]] `saver-handler.js` out of `syncer.js`
|
23
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/8cf726275c19ed5b4a0ed1cf8354d64d1bc29da5]] [[Table-of-Contents Macros]]
|
24
24
|
* Simplified startup module organisation (see [[Startup Modules.svg]])
|
25
|
-
* [[Changed|https://github.com/
|
26
|
-
* [[Introduced|https://github.com/
|
27
|
-
* [[Added|https://github.com/
|
25
|
+
* [[Changed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/25777b147fa4ed2f915150aec503ad1e094e6043]] the overlay text for the DropzoneWidget to make it translateable
|
26
|
+
* [[Introduced|https://github.com/TiddlyWiki/TiddlyWiki5/commit/920e11e7921f777170aa2f9e1836c000fec2e26d]] a new [[refresh button|WidgetMessage: tw-browser-refresh]] and reverted [[home button|WidgetMessage: tw-home]] behaviour
|
27
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/fbf307c648ae0e92679c54f7d03f197a75b4e101]] ''alt'' attribute to the ImageWidget
|
28
28
|
|
29
29
|
!! Bug Fixes
|
30
30
|
|
31
|
-
* [[Fixed|https://github.com/
|
32
|
-
* [[Fixed|https://github.com/
|
33
|
-
* [[Fixed|https://github.com/
|
34
|
-
* [[Fixed|https://github.com/
|
35
|
-
* [[Fixed|https://github.com/
|
36
|
-
* [[Fixed|https://github.com/
|
31
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c8830d32f74b8c228553f11f7f55b5be45ae6471]] problem with building TiddlyWiki under Windows
|
32
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/34461cb2fe554331a0269fd7795b1d6a879fcba9]] unclickable download ink in upgrade wizard
|
33
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/9e85ddfec78dd8df71e6173100dce659417551f4]] missing language flag in ''empty.html''
|
34
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/18592fe8f810d1858ca040da1a7c4a81fb74cfed]] problem with switching the type of a tiddler between the bitmap and text editor
|
35
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/fe6623d7feed1a9068e15bfac57be0b0924e8915]] foreground colour for tag pills in the sidebar
|
36
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c912fed55d94c9bef2d541cd55f458b12172941c]] problem with github source links for tiddlywiki.com not working for titles containing colons
|
37
37
|
|
38
38
|
!! Contributors
|
39
39
|
|
@@ -6,16 +6,16 @@ title: Release 5.0.16-beta
|
|
6
6
|
type: text/vnd.tiddlywiki
|
7
7
|
released: 20140902124037214
|
8
8
|
|
9
|
-
//[[See GitHub for detailed change history of this release|https://github.com/
|
9
|
+
//[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.0.15-beta...v5.0.16-beta]]//
|
10
10
|
|
11
11
|
!! Incompatible Changes
|
12
12
|
|
13
13
|
5.0.16-beta brings more incompatible changes than any previous release. These changes are likely to break almost all plugins written for previous releases of TiddlyWiki 5, and will break many customisations.
|
14
14
|
|
15
|
-
* [[Changed|https://github.com/
|
16
|
-
* [[Changed|https://github.com/
|
17
|
-
* [[Changed|https://github.com/
|
18
|
-
* [[Changed|https://github.com/
|
15
|
+
* [[Changed|https://github.com/TiddlyWiki/TiddlyWiki5/issues/764]] all CSS class prefixes from `tw-` to `tc-` (eg `tw-tiddler-frame` has become `tc-tiddler-frame`; missing prefixes have also been added, so `btn-invisible` has become `tc-btn-invisible`)
|
16
|
+
* [[Changed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/2f69ea362cd673f59b9fadbe11f1f95549a59813]] all message prefixes from `tw-` to `tm-` (eg `tw-close-tiddler` has become `tm-close-tiddler`)
|
17
|
+
* [[Changed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/89fd5379dd78887fc21746d792072bf5a25f0c56]] all variable prefixes from `tw-` to `tv-` (eg `tw-config-toolbar-icons` has become `tv-config-toolbar-icons`)
|
18
|
+
* [[Changed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/112a9a95d95e9f62f110c97a4faaf537c5c100b1]] prefix/removeprefix filter operators to be case-sensitive
|
19
19
|
|
20
20
|
!! Compatibility with TiddlyWikiClassic
|
21
21
|
|
@@ -29,21 +29,21 @@ Many thanks to @buggyj for his work on this plugin.
|
|
29
29
|
|
30
30
|
!! Usability Improvements
|
31
31
|
|
32
|
-
* [[Amended|https://github.com/
|
33
|
-
* [[Hide|https://github.com/
|
32
|
+
* [[Amended|https://github.com/TiddlyWiki/TiddlyWiki5/commit/e47852cb141b384ad2a9097eca795545cb5b2494]] behaviour of the [[tm-browser-refresh|WidgetMessage: tw-browser-refresh]] message so that it no longer clears the location hash
|
33
|
+
* [[Hide|https://github.com/TiddlyWiki/TiddlyWiki5/commit/88c9c0c3ee115917b8c1a9126452bb0574061857]] toolbar buttons from static renderings
|
34
34
|
|
35
35
|
!! Hackability Improvements
|
36
36
|
|
37
|
-
* [[Extend|https://github.com/
|
38
|
-
* [[Fixed|https://github.com/
|
39
|
-
* [[Extend|https://github.com/
|
40
|
-
* [[Configurability|https://github.com/
|
41
|
-
* [[Added|https://github.com/
|
37
|
+
* [[Extend|https://github.com/TiddlyWiki/TiddlyWiki5/commit/48312272adb17610db96d50758e6af947cab7b1d]] the <<.olink all>> operator to be able to select all the source tiddlers
|
38
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/43aeb47fc34f1ba424030c4f78ee907fe7b1d5d8]] problem with single line macro definitions incorrectly including whitespace in the value. (For example, `\define mymacro() yes` would set the macro value to " yes", with a leading space)
|
39
|
+
* [[Extend|https://github.com/TiddlyWiki/TiddlyWiki5/commit/d2a5a12f2d6b6ccc36dd22a70ac2def08d1d3722]] [[Table-of-Contents Macros]] use the caption field if present
|
40
|
+
* [[Configurability|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b437f1b450f5f2a3104a9086f7c674299b53b9bc]] for the default tab shown in the tiddler info panel (see [[Configuring the default TiddlerInfo tab]])
|
41
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/dcf4e93a3283e3e93cc14e50366f9b0252870835]] <<.olink suffix>> and <<.olink removesuffix>> operators
|
42
42
|
|
43
43
|
!! Bug Fixes
|
44
44
|
|
45
|
-
* [[Reverted|https://github.com/
|
46
|
-
* [[Fixed|https://github.com/
|
45
|
+
* [[Reverted|https://github.com/TiddlyWiki/TiddlyWiki5/commit/ad40223d6b9bed435d9381611cb9de1841b53df6]] incorrect refreshing of the tiddler widget
|
46
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/44228ed9f733217557851150f5ae45d9ebb23420]] indentation of selective expandable [[Table-of-Contents Macros]]
|
47
47
|
|
48
48
|
!! Contributors
|
49
49
|
|
@@ -6,7 +6,7 @@ title: Release 5.0.17-beta
|
|
6
6
|
type: text/vnd.tiddlywiki
|
7
7
|
released: 20140912164804565
|
8
8
|
|
9
|
-
//[[See GitHub for detailed change history of this release|https://github.com/
|
9
|
+
//[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.0.16-beta...v5.0.17-beta]]//
|
10
10
|
|
11
11
|
!! Highlights
|
12
12
|
|
@@ -16,28 +16,28 @@ This release includes major improvements from @giffmex to the welcome and tutori
|
|
16
16
|
|
17
17
|
!!! Change System Tag `$:/tags/stylesheet` with `$:/tags/Stylesheet`
|
18
18
|
|
19
|
-
The [[issue|https://github.com/
|
19
|
+
The [[issue|https://github.com/TiddlyWiki/TiddlyWiki5/issues/824]] is that the capitalisation of `$:/tags/stylesheet` is not consistent with other system tags. This release adds support for `$:/tags/Stylesheet`, and adds a deprecation warning if `$:/tags/stylesheet` is used. Support for `$:/tags/stylesheet` will be removed before the beta.
|
20
20
|
|
21
|
-
* [[Added|https://github.com/
|
21
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/f6ff0a7f715bdf12dfba6556f72c49ea2c3016b0]] support for `$:/tags/Stylesheet` and a deprecation warning when `$:/tags/stylesheet` is used
|
22
22
|
|
23
23
|
!!! Change ButtonWidget `title` attribute to `tooltip`
|
24
24
|
|
25
25
|
The use of the `title` attribute in the ButtonWidget was not consistent with the `tooltip` attribute used by the ImageWidget and LinkWidget. This release adds support for the `tooltip` attribute to the ButtonWidget alongside the existing support for the `title` attribute, but with a deprecation warning.
|
26
26
|
|
27
|
-
* [[Added|https://github.com/
|
27
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b7f638aef3094d0552db2f72330b40a526113bd5]] `tooltip` attribute to ButtonWidget
|
28
28
|
|
29
29
|
!!! Removing Support for RegExp Filter Operands
|
30
30
|
|
31
|
-
As discussed in [[the associated ticket|https://github.com/
|
31
|
+
As discussed in [[the associated ticket|https://github.com/TiddlyWiki/TiddlyWiki5/issues/762]], the support for regular expression filter operands is incomplete and inconsistent. The plan is to remove support for this feature in the next release. A new filter operator has been provided to replace it, along with the addition of a deprecation warning that is displayed whenever regular expression filter operators are used.
|
32
32
|
|
33
|
-
* [[Added|https://github.com/
|
34
|
-
* [[Added|https://github.com/
|
33
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/f4fff7a33037ba9dd537379bcb44a52a280868d6]] new <<.olink regexp>> operator
|
34
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/d45c417c187fe3dcc35ee7a308e64feebc7b185b]] deprecation warning for regular expression filter operators
|
35
35
|
|
36
36
|
!!! Repository Reorganisation
|
37
37
|
|
38
38
|
The goal is to make the TiddlyWiki repository easier to comprehend for newcomers.
|
39
39
|
|
40
|
-
* [[Moved|https://github.com/
|
40
|
+
* [[Moved|https://github.com/TiddlyWiki/TiddlyWiki5/commit/6e9cd5943703f7137e819fcb85376423b9c930d5]] scripts into a separate `bin` folder
|
41
41
|
|
42
42
|
!! Usability Improvements
|
43
43
|
|
@@ -46,21 +46,21 @@ The goal is to make the TiddlyWiki repository easier to comprehend for newcomers
|
|
46
46
|
!! Hackability Improvements
|
47
47
|
|
48
48
|
* Moved developer documentation to https://tiddlywiki.com/dev
|
49
|
-
* [[Improvements|https://github.com/
|
50
|
-
* [[Disable|https://github.com/
|
51
|
-
* [[Added|https://github.com/
|
52
|
-
* [[Added|https://github.com/
|
53
|
-
* [[Extended|https://github.com/
|
54
|
-
* [[Removed|https://github.com/
|
55
|
-
* [[Added|https://github.com/
|
56
|
-
* [[Extended|https://github.com/
|
49
|
+
* [[Improvements|https://github.com/TiddlyWiki/TiddlyWiki5/commit/872e6fc2532012f0f9acfb29aa24a9cd5f340b9d]] (and [[here|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c8a131ffd4716f2b99ab508567422ff463f2849d]]) to `serve.sh`/`serve.cmd` scripts
|
50
|
+
* [[Disable|https://github.com/TiddlyWiki/TiddlyWiki5/commit/ac54fe33263cbe48bc294f9c14257ccc146be38e]] plugins when in SafeMode
|
51
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c1de85838f3d0d3e6a207152ecc9d61ff08a4b05]] new <<.mlink timeline>> macro
|
52
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/f16d1832aae9a7ce71dea78b16c11afaf673acf2]] new <<.mlink dumpvariables>> macro
|
53
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/commit/ba3f8002355607c8b00b7d184f01fa68bbcda152]] [[Table-of-Contents Macros]] so that individual links can be disabled
|
54
|
+
* [[Removed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/542788bfeba98ec3bac0bb721293c16354bc1b34]] (and [[here|https://github.com/TiddlyWiki/TiddlyWiki5/commit/487c4a40abda2b457b4015033bf1be76bd81dcc9]]) unnecessary `<p>` tag from edit tags and types dropdowns
|
55
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/ccd916ca7cb45468ac30eb48bfdf86bea704d810]] ''multiple'' attribute to the BrowseWidget
|
56
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/commit/ab944bbf02e9fae606632a11df1053a46573fa49]] view template to hide bodies of tiddlers with field ''hide-body'' set to ''yes''
|
57
57
|
|
58
58
|
!! Bug Fixes
|
59
59
|
|
60
|
-
* [[Fixed|https://github.com/
|
61
|
-
* [[Fixed|https://github.com/
|
62
|
-
* [[Fixed|https://github.com/
|
63
|
-
* [[Fixed|https://github.com/
|
60
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c713eddbef50603e313a86f78c185753bab3d607]] problem with draft tiddlers not counting as dirty
|
61
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/f87ce7e98a083f1bdcff5b1887b56aa95b731efe]] problem with keyboard shortcuts introduced in 5.0.16-beta
|
62
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/756e05504b33c387da7d3f81446a18f9a8fefe49]] problem with stylesheets being parsed in inline mode
|
63
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/9adc30f69fba169813638021780263ff0df4e2bc]] bug with selective expandable [[Table-of-Contents Macros]]
|
64
64
|
|
65
65
|
!! Contributors
|
66
66
|
|
@@ -6,27 +6,27 @@ title: Release 5.0.18-beta
|
|
6
6
|
type: text/vnd.tiddlywiki
|
7
7
|
released: 20140917211055150
|
8
8
|
|
9
|
-
//[[See GitHub for detailed change history of this release|https://github.com/
|
9
|
+
//[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.0.17-beta...v5.0.18-beta]]//
|
10
10
|
|
11
11
|
This is a minor release prior to the full release of TiddlyWiki on September 20th. The documentation has been cleaned up and improved (with more improvements to come).
|
12
12
|
|
13
13
|
!! File Layout of tiddlywiki.com
|
14
14
|
|
15
|
-
The layout of files on tiddlywiki.com has been adjusted to make it more logical. See the [[ticket|https://github.com/
|
15
|
+
The layout of files on tiddlywiki.com has been adjusted to make it more logical. See the [[ticket|https://github.com/TiddlyWiki/TiddlyWiki5/issues/823]] for a discussion. You can see the source files that make up tiddlywiki.com at https://github.com/Jermolene/jermolene.github.com
|
16
16
|
|
17
17
|
!! Hackability Improvements
|
18
18
|
|
19
19
|
* Added first iteration of a <<.mlink list-links>> macro (further improvements are planned)
|
20
|
-
* [[Added|https://github.com/
|
21
|
-
* [[Extended|https://github.com/
|
20
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/6d9bd4df8a1133c2ba246333edad14e6028d3ea4]] support for importing `.markdown` and `.md` files
|
21
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/commit/c4123ba3740f74f172468c4aa050451ebc5780d8]] <<.mlink timeline>> macro to support a subfilter
|
22
22
|
|
23
23
|
!! Bug Fixes
|
24
24
|
|
25
|
-
* [[Fixed|https://github.com/
|
26
|
-
* [[Fixed|https://github.com/
|
27
|
-
* [[Fixed|https://github.com/
|
28
|
-
* [[Fixed|https://github.com/
|
29
|
-
* [[Fixed|https://github.com/
|
25
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/a9f46525a0b1ecf7ce6d1bdae64e6763a247106b]] problem with digits being classified as lower case letters for wiki link matching
|
26
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/8cc236b4dca96327c7b28ad45e1eb4c2dce174e5]] crash when sorting missing tiddlers by fields other than title
|
27
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/73a4747d05c6746476ccd9e8cb8255853f631d17]] problem with handling `.jpeg` file extensions
|
28
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/775482a2428d24a475e0c7df7bea215c190b5574]] problem with RadioWidget and missing tiddlers
|
29
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/2571f534aa67c7f9d423d44d36efa32480f4c370]] problem with dragging a partially selected link
|
30
30
|
|
31
31
|
!! Contributors
|
32
32
|
|
@@ -6,7 +6,7 @@ type: text/vnd.tiddlywiki
|
|
6
6
|
released: 201312151436
|
7
7
|
caption: 5.0.2-beta
|
8
8
|
|
9
|
-
//[[See GitHub for detailed change history of this release|https://github.com/
|
9
|
+
//[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.0.1-alpha...v5.0.2-beta]]//
|
10
10
|
|
11
11
|
!! Improvements
|
12
12
|
|
@@ -6,6 +6,6 @@ type: text/vnd.tiddlywiki
|
|
6
6
|
released: 201312151700
|
7
7
|
caption: 5.0.3-beta
|
8
8
|
|
9
|
-
//[[See GitHub for detailed change history of this release|https://github.com/
|
9
|
+
//[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.0.2-beta...v5.0.3-beta]]//
|
10
10
|
|
11
11
|
This release includes minor bug fixes and documentation updates.
|
@@ -6,26 +6,26 @@ type: text/vnd.tiddlywiki
|
|
6
6
|
released: 201312221544
|
7
7
|
caption: 5.0.4-beta
|
8
8
|
|
9
|
-
//[[See GitHub for detailed change history of this release|https://github.com/
|
9
|
+
//[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.0.3-beta...v5.0.4-beta]]//
|
10
10
|
|
11
11
|
!! Improvements
|
12
12
|
|
13
13
|
* Switched to using an HTML5 placeholder for the default text of a new tiddler
|
14
14
|
* Refactored stylesheet handling so that theme tweaks are now applied immediately, and some ordering issues have been resolved
|
15
15
|
* Several improvements for running [[TiddlyWiki on Node.js]]:
|
16
|
-
** The `tiddlywiki.info` file in the root of [[wiki folder|TiddlyWikiFolders]] file is now optional, falling back to a default configuration suitable for serverside use ([[commit|https://github.com/
|
16
|
+
** The `tiddlywiki.info` file in the root of [[wiki folder|TiddlyWikiFolders]] file is now optional, falling back to a default configuration suitable for serverside use ([[commit|https://github.com/TiddlyWiki/TiddlyWiki5/commit/0ec2224757dd07f009246ec9ea97cd859d077e72]])
|
17
17
|
** The file system plugin now automatically creates the `tiddlers` subfolder in the [[wiki folder|TiddlyWikiFolders]]
|
18
18
|
* Added [[favicon.ico support|Using favicons]]
|
19
19
|
* Added SaveTiddlerCommand
|
20
20
|
|
21
21
|
!! Bug Fixes
|
22
22
|
|
23
|
-
* Fixed problem with tiddlers sometimes wrongly opening at the top of the story ([[commit|https://github.com/
|
23
|
+
* Fixed problem with tiddlers sometimes wrongly opening at the top of the story ([[commit|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b50eb8da302431cdfa7c37ac9ef1414a33d00292]])
|
24
24
|
* Fixed problem with refreshing RadioWidget
|
25
25
|
* Fixed problem with the dragger image being visible in some circumstances
|
26
26
|
* Fixed drag and drop support on InternetExplorer, contributed by DavidJade (@davidjade on GitHub)
|
27
|
-
* Fixed crash on modifying page template ([[commit|https://github.com/
|
28
|
-
* Updated fullscreen plugin to latest version of the API ([[commit|https://github.com/
|
27
|
+
* Fixed crash on modifying page template ([[commit|https://github.com/TiddlyWiki/TiddlyWiki5/commit/a5f33d875b1339b08838203a4885f8a3a7d10353]])
|
28
|
+
* Updated fullscreen plugin to latest version of the API ([[commit|https://github.com/TiddlyWiki/TiddlyWiki5/commit/638c8b207033f8cb01ac9efdca104d282fd4cffe]])
|
29
29
|
* Improved handling of double square brackets within tags (thanks to StephanHradek)
|
30
30
|
|
31
31
|
This release includes minor bug fixes and documentation updates.
|
@@ -6,7 +6,7 @@ type: text/vnd.tiddlywiki
|
|
6
6
|
released: 201312241430
|
7
7
|
caption: 5.0.5-beta
|
8
8
|
|
9
|
-
//[[See GitHub for detailed change history of this release|https://github.com/
|
9
|
+
//[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.0.4-beta...v5.0.5-beta]]//
|
10
10
|
|
11
11
|
!! Improvements
|
12
12
|
|
@@ -6,23 +6,23 @@ type: text/vnd.tiddlywiki
|
|
6
6
|
released: 201401031714
|
7
7
|
caption: 5.0.6-beta
|
8
8
|
|
9
|
-
//[[See GitHub for detailed change history of this release|https://github.com/
|
9
|
+
//[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.0.5-beta...v5.0.6-beta]]//
|
10
10
|
|
11
11
|
!! Improvements
|
12
12
|
|
13
|
-
* [[Added|https://github.com/
|
14
|
-
* [[Extended|https://github.com/
|
15
|
-
* [[Added|https://github.com/
|
16
|
-
* [[Added|https://github.com/
|
17
|
-
* [[Added|https://github.com/
|
18
|
-
* [[Added|https://github.com/
|
13
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/pull/324]] support for numeric sorting to TiddlerFilters (thanks to StephanHradek)
|
14
|
+
* [[Extended|https://github.com/TiddlyWiki/TiddlyWiki5/pull/321]] [[Tables in WikiText]] to allow for vertical alignment of cells (thanks to StephanHradek)
|
15
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/87fbd988f1fb0164411af190adfe6b6a2404eef3]] experimental support for running [[TiddlyWiki on node-webkit]]
|
16
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/3d79eb87d1c609195b8c518c08e167994b20a346]] an [[$:/AdvancedSearch]]
|
17
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/bd7db62da052ec6262c3319eaa11f00e5c452a7b]] support for specifying hostname for the ServerCommand
|
18
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b9e80a270b7f67db816e9b06e2f71f9c9dd86c17]] a first pass at generating an all-in-one static HTML representation of a wiki, complete with internal anchor links for wiki links
|
19
19
|
** See https://tiddlywiki.com/alltiddlers.html
|
20
|
-
* [[Hide|https://github.com/
|
21
|
-
* [[Added|https://github.com/
|
20
|
+
* [[Hide|https://github.com/TiddlyWiki/TiddlyWiki5/commit/44568dc6ef64be8c1370df8f682777c2c805fee7]] encryption features when running on the server
|
21
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/2ee50939447cf2948e49e5905520943ea4075975]] [[double backticks|Formatting in WikiText]] as an alternative for delimitting inline code (thanks to StephanHradek)
|
22
22
|
|
23
23
|
!! Bug Fixes
|
24
24
|
|
25
|
-
* [[Fixed|https://github.com/
|
26
|
-
* [[Fixed|https://github.com/
|
27
|
-
* [[Fixed|https://github.com/
|
28
|
-
* [[Fixed|https://github.com/
|
25
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/ec7dff291dadb3e128e1db34b4ded6b57bc8ed46]] import ''browse'' button
|
26
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/ef59a3743f02c726f20e035c5d28665000fda79a]] crash when attempting full screen mode on browsers that don't support it
|
27
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/307]] requirement for a newline immediately after a horizontal rule, table or typed block (thanks to StephanHradek)
|
28
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/pull/318]] problem with ''placeholder'' attibute on InternetExplorer (thanks to DavidJade)
|
@@ -6,7 +6,7 @@ type: text/vnd.tiddlywiki
|
|
6
6
|
released: 201401262107
|
7
7
|
caption: 5.0.7-beta
|
8
8
|
|
9
|
-
//[[See GitHub for detailed change history of this release|https://github.com/
|
9
|
+
//[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.0.6-beta...v5.0.7-beta]]//
|
10
10
|
|
11
11
|
!! Incompatible Changes
|
12
12
|
|
@@ -32,19 +32,19 @@ These are changes that might affect users upgrading from previous betas.
|
|
32
32
|
* Added emacs and vim keymapping support to the [[CodeMirror plugin|https://tiddlywiki.com/codemirrordemo.html]], (thanks to João Bolila, @jbolila on GitHub)
|
33
33
|
* Added the [[highlight.js|http://highlightjs.org/]] syntax highlighting plugin: https://tiddlywiki.com/highlightdemo.html (thanks to João Bolila, @jbolila on GitHub)
|
34
34
|
* Added the first export option to the ''Tools'' tab of the [[control panel|$:/ControlPanel]]
|
35
|
-
* [[Added|https://github.com/
|
36
|
-
* [[Adjusted|https://github.com/
|
37
|
-
* [[Adjusted|https://github.com/
|
35
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/ffcc215e8f8896be96093579abc5bcfb76335e66]] an ellipsis for [[advanced search|$:/AdvancedSearch]] next to the search box in the sidebar
|
36
|
+
* [[Adjusted|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b326315b0e9959096b85aa716dd613f21605705a]] the password dialogue to make it narrower for smaller screens
|
37
|
+
* [[Adjusted|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b7a1db1e9fb651928a4f86e1881959150dd66a55]] the display of tiddler dictionaries to make them display as plain text
|
38
38
|
|
39
39
|
!! Bug Fixes
|
40
40
|
|
41
|
-
* [[Fixed|https://github.com/
|
42
|
-
* [[Fixed|https://github.com/
|
43
|
-
* [[Fixed|https://github.com/
|
44
|
-
* [[Fixed|https://github.com/
|
45
|
-
* [[Fixed|https://github.com/
|
46
|
-
* [[Fixed|https://github.com/
|
47
|
-
* [[Fixed|https://github.com/
|
41
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b06e09a4d3e25087ca0495e624c8662ddb69224e]] problem with default format of ViewWidget substituting seconds for minutes in displayed times
|
42
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/e0f428b9b2374487a0758ea80716f337e3c643ff]] problem that was causing several animations to fail in Safari
|
43
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/f2409d4245bbba0ccdf39186dca6a0cbf16d8759]] problem with unclickable sidebar under the Centralised theme
|
44
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/0fb13e649b6558961fd8436bc7aac83bfd991983]] problem with non-system tiddlers showing up in system tiddler [[advanced search|$:/AdvancedSearch]]
|
45
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b64b7982af4285be41cca85db1fa745fc009ca29]] problem with notifications not always disappearing in Firefox
|
46
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/b04141fefd2c0103b525726e4f466c32f0385194]] problem with wiki folders including wiki files with tiddlers that do not have a title
|
47
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/12770ca3e694a8f4edeb065e054eddd5957353b8]] problem with ServerCommand logging "Serving on undefined:8080"
|
48
48
|
|
49
49
|
|
50
50
|
|
@@ -6,7 +6,7 @@ type: text/vnd.tiddlywiki
|
|
6
6
|
released: 201402281551
|
7
7
|
caption: 5.0.8-beta
|
8
8
|
|
9
|
-
//[[See GitHub for detailed change history of this release|https://github.com/
|
9
|
+
//[[See GitHub for detailed change history of this release|https://github.com/TiddlyWiki/TiddlyWiki5/compare/v5.0.7-beta...v5.0.8-beta]]//
|
10
10
|
|
11
11
|
!! Incompatible Changes
|
12
12
|
|
@@ -26,7 +26,7 @@ See [[Notes for upgrading to 5.0.8-beta]] for more details of these changes:
|
|
26
26
|
|
27
27
|
!! Usability Improvements
|
28
28
|
|
29
|
-
* [[Added|https://github.com/
|
29
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/a01bbd4b9c7ca284141078340c8f568b1e0561a2]] [[automatic saving|AutoSave]] on editing a tiddler and a warning when attempting to close the window with unsaved changes
|
30
30
|
* Added confirmation dialogue when deleting tiddlers
|
31
31
|
* Add support for switchable (and editable) ColourPalettes
|
32
32
|
* Added TranslationMechanism and translations for:
|
@@ -36,14 +36,14 @@ See [[Notes for upgrading to 5.0.8-beta]] for more details of these changes:
|
|
36
36
|
* Add error alerts when syncing to a server
|
37
37
|
* Rejigged [[$:/ControlPanel]] to use nested tabs
|
38
38
|
* Added [[$:/TagManager]] for easy management of tags
|
39
|
-
* [[Added|https://github.com/
|
40
|
-
* [[Added|https://github.com/
|
39
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/e3a05625b2368b2167a2a1b30aa82369e96a7538]] experimental KeyboardWidget, including support for ''ctrl-enter'' (or ''cmd-enter'') to finish editing a tiddler
|
40
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/e6fa9b8a859867c147fb289859169b204dea003e]] number of tags to control panel ''Basics'' tab
|
41
41
|
* Enhanced link handling so that control/command clicking a link opens the target tiddler without navigating to it
|
42
42
|
* Importing tiddlers via drag and drop no longer opens all the tiddlers
|
43
43
|
|
44
44
|
!! Scalability Improvements
|
45
45
|
|
46
|
-
* [[Added|https://github.com/
|
46
|
+
* [[Added|https://github.com/TiddlyWiki/TiddlyWiki5/commit/fa5938221552846c255eb50004996528a09534a9]] support for LazyLoading of images
|
47
47
|
* Extended RevealWidget to allow control over content retention
|
48
48
|
|
49
49
|
!! Hackability Improvements
|
@@ -65,10 +65,10 @@ See [[Notes for upgrading to 5.0.8-beta]] for more details of these changes:
|
|
65
65
|
|
66
66
|
* Fixed problem with pasting items into the browser
|
67
67
|
* Fixed problem with colour pickers not showing correct colour in Chrome
|
68
|
-
* [[Fixed|https://github.com/
|
69
|
-
* [[Fixed|https://github.com/
|
70
|
-
* [[Fixed|https://github.com/
|
71
|
-
* [[Fixed|https://github.com/
|
72
|
-
* [[Fixed|https://github.com/
|
73
|
-
* [[Fixed|https://github.com/
|
74
|
-
* [[Fixed|https://github.com/
|
68
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/8e8e31fb9f5ed8f2e5deff0271d434dbe91f503c]] problem with tag pills not working inside table cells
|
69
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/6d3d3322e5c676e63d1f64dce89ce86e58dcd715]] problem in client server configuration with ''%'' in tiddler titles
|
70
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/7eafd51a7dd89d2174be3dec97033dc0bb206677]] problem with not using placeholder text when editing missing tiddlers
|
71
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/1a54d590e1e67825057d7693ac89466a093b4577]] problem with test data in certain time zones
|
72
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/5af30086c02b9d4466c133c87aca76f9b85eea49]] problem with non-breaking space characters being converted into '@' symbols
|
73
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/5d3dda1a1721af05e56e301a8b896e53f9868540]] problem with highlighting plugin only working in the browser
|
74
|
+
* [[Fixed|https://github.com/TiddlyWiki/TiddlyWiki5/commit/175e86078ce2fed34953f337baf2f0edfc093742]] crash when wiki/themes folder contains files that are not themes
|