diff --git a/editions/tw5.com/tiddlers/Release 5.0.8beta.tid b/editions/tw5.com/tiddlers/Release 5.0.8beta.tid index fefc9976e..bddd33cbe 100644 --- a/editions/tw5.com/tiddlers/Release 5.0.8beta.tid +++ b/editions/tw5.com/tiddlers/Release 5.0.8beta.tid @@ -10,22 +10,50 @@ type: text/vnd.tiddlywiki These are changes that might affect users upgrading from previous betas. -* +* Changed wikitext syntax rules for parsing content of HTML elements -!! Documentation updates +!! Documentation Improvements * Improved documentation for TiddlerFilters, including a notation of the [[TiddlerFilter Formal Grammar]] contributed by [[@Tikkoneus|https://github.com/Tikkoneus]] -!! Improvements +!! Usability Improvements +* Rejigged [[$:/ControlPanel]] to use nested tabs * [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/e3a05625b2368b2167a2a1b30aa82369e96a7538]] experimental KeyboardWidget, including support for ''ctrl-enter'' (or ''cmd-enter'') to finish editing a tiddler * [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/a01bbd4b9c7ca284141078340c8f568b1e0561a2]] [[automatic saving|AutoSave]] on editing a tiddler and a warning when attempting to close the window with unsaved changes * [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/e6fa9b8a859867c147fb289859169b204dea003e]] number of tags to control panel ''Basics'' tab +* Enhanced link handling so that control/command clicking a link opens the target tiddler without navigating to it +* Importing tiddlers via drag and drop no longer opens all the tiddlers +* Add support for switchable (and editable) ColourPalettes +* Added TranslationMechanism and translations for: +** Deutsch (Österreich and Deutschland) by [[@pmario]] +** Français (France) by [[@xcazin]] +** Chinese (Simplified and Traditional) by [[@BramChen]] +* Add error alerts when syncing to a server + +!! Scalability Improvements + * [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/fa5938221552846c255eb50004996528a09534a9]] support for LazyLoading of images +* Extended RevealWidget to allow control over content retention + +!! Hackability Improvements + +* Added experimental support for building plugins in the browser: [[How to create plugins in the browser]] +* Extend the TranscludeWidget to display its content as a fallback if the tiddler or field is missing +* Add logging and AlertMechanism * Added a ''Filter'' tab to [[advanced search|$:/AdvancedSearch]] +* Add ''indexes'' [[filter operator|TiddlerFilters]] +* Control over line width and colour for EditBitmapWidget +* Add support for `.multids` MultiTiddlerFiles +* Extend ViewWidget so that it works with indexes +* Added support for Tank, a new service built on TiddlyWeb: https://tank.peermore.com +* Extend relative dates to work in the future !! Bug Fixes +* Fixed problem with pasting items into the browser +* Fixed problem with colour pickers not showing correct colour in Chrome +* Fixed problem with "tw-new-tiddler" message if the skeleton tiddler is missing * [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/8e8e31fb9f5ed8f2e5deff0271d434dbe91f503c]] problem with tag pills not working inside table cells * [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/6d3d3322e5c676e63d1f64dce89ce86e58dcd715]] problem in client server configuration with ''%'' in tiddler titles * [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/7eafd51a7dd89d2174be3dec97033dc0bb206677]] problem with not using placeholder text when editing missing tiddlers diff --git a/editions/tw5.com/tiddlers/concepts/TiddlerLinks.tid b/editions/tw5.com/tiddlers/concepts/TiddlerLinks.tid index 9d0c8a998..f40f306ac 100644 --- a/editions/tw5.com/tiddlers/concepts/TiddlerLinks.tid +++ b/editions/tw5.com/tiddlers/concepts/TiddlerLinks.tid @@ -1,11 +1,13 @@ created: 20130825202900000 -modified: 20131128093306317 +modified: 20140221093306317 tags: concepts title: TiddlerLinks type: text/vnd.tiddlywiki Links are regions of a tiddler that can be clicked to cause navigation to a different tiddler. The navigation behaviour is determined by the current StoryView; the classic TiddlyWiki view displays the story as a linear sequence of tiddlers. +Holding the ''control'' or ''command'' key while clicking on a tiddler link opens the target tiddler but doesn't navigate to it. This can be a useful way of queueing up tiddlers to be read later. + Links are useful for modelling organic relationships between tiddlers, and particularly for expressing the navigational paths between tiddlers. The TiddlerInfoPanel lists incoming links to a tiddler in the tab ''References''. diff --git a/editions/tw5.com/tiddlers/mechanisms/TranslationMechanism.tid b/editions/tw5.com/tiddlers/mechanisms/TranslationMechanism.tid index d1d4b4a62..bb2529491 100644 --- a/editions/tw5.com/tiddlers/mechanisms/TranslationMechanism.tid +++ b/editions/tw5.com/tiddlers/mechanisms/TranslationMechanism.tid @@ -4,7 +4,7 @@ tags: mechanism title: TranslationMechanism type: text/vnd.tiddlywiki -The translation mechanism of TiddlyWiki manages and switches between language plugins that provide translations of the TiddlyWiki user interface. +The translation mechanism of TiddlyWiki manages and switches between language plugins that provide translations of the TiddlyWiki user interface. [[How to create a translation for TiddlyWiki]] explains how translators can create and submit translations for TiddlyWiki. The title of the current language plugin is read from the tiddler [[$:/language]]. If the selected plugin changes then any displayed translateable text automatically changes. diff --git a/editions/tw5.com/tiddlers/widgets/ViewWidget.tid b/editions/tw5.com/tiddlers/widgets/ViewWidget.tid index ef4eefae2..b5a14ecf7 100644 --- a/editions/tw5.com/tiddlers/widgets/ViewWidget.tid +++ b/editions/tw5.com/tiddlers/widgets/ViewWidget.tid @@ -1,6 +1,6 @@ title: ViewWidget created: 201310241419 -modified: 201310300837 +modified: 201402220837 tags: widget ! Introduction @@ -14,6 +14,7 @@ The content of the `<$view>` widget is displayed if the field or property is mis |!Attribute |!Description | |tiddler |The title of the tiddler (defaults to the [[WidgetVariable: currentTiddler]]) | |field |The name of the field to view (defaults to "text") | +|index |The name of the index to view | |format |The format for displaying the field (see below) | |template |The optional template used with certain formats |