1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-25 23:03:15 +00:00

Release note and doc updates for 5.0.13

This commit is contained in:
Jermolene 2014-06-12 19:03:12 +01:00
parent 4e5fa2c6e6
commit 666f243a82
4 changed files with 26 additions and 9 deletions

View File

@ -19,18 +19,32 @@ See [[Notes for upgrading to 5.0.13-beta]] for more details of these changes:
!! Usability Improvements
*
* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/9ab0c84140bbc0f31cf65e632bddac616bbadbda]] support for global [[Macros in WikiText]] via the new ImportVariablesWidget
* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/3182a2d599f0e4b70a73fe369df4f398587dc1a9]] new SelectWidget
* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/f131c378934a86b741ab5b808437c95694dc5503]] behaviour of `text/html` tiddlers so that they are displayed within an HTML iframe element
* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/9b576f2a8d39dcca37bcb709183a8f9b27f33ccf]] group headings to the content type dropdown in edit mode
* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/4d70d5780e51cf0918fba15954cd47549e4e1a9f]] advanced navigation settings in $:/ControlPanel to use radio buttons
* [[Improved|https://github.com/Jermolene/TiddlyWiki5/commit/f7b8813a27141a78980eefa03df70a4a2de9d10b]] (and [[here|https://github.com/Jermolene/TiddlyWiki5/commit/3f25db0abe8cd28712c020f218506710cec004b6]]) behaviour of PermaLinks so that now [ext[http://tiddlywiki.com/#HelloThere]] just opens the single specified tiddler
!! Hackability Improvements
*
* [[Restored|https://github.com/Jermolene/TiddlyWiki5/commit/1b37d660ea7cd576cfeadfe8b782fe6c62dc9048]] ''escape'' as a shortcut to abandon edits
* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/9547a1f01c144c604c294f394a68d7dc6dbe4e5d]] support for ExternalImages that are referenced by URI and not stored in the TiddlyWiki HTML file
* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/d2796d0c9c7ed7a971ae6b0752d7418384072bb5]] new SetFieldCommand
* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/305617b632fd6ecf25cd4be85f4dfb5a5a65dfef]] new SaveTiddlersCommand
* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/f14ecf4eb8965f2e407ccac51d4277330221efe3]] support for system tag [[$:/tags/RawMarkup]]
!! Bug Fixes
*
* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/a03a15e7de32a1b41618146ac334b5cd7d432e91]] bug with TextWidget not refreshing correctly
* [[Fixed|https://github.com/Jermolene/TiddlyWiki5/commit/d8a142fed5b22a8273d93ba05095e5f9c6929cb3]] problem with vertical tabs in Safari
!! Contributors
I ([[@Jermolene|https://github.com/Jermolene]]) would like to thank the contributors to this release who have generously given their time to helping improve TiddlyWiki:
[[@BramChen|https://github.com/BramChen]], [[@mwfogleman|https://github.com/mwfogleman]], [[@nameanyone|https://github.com/nameanyone]], [[@natecain|https://github.com/natecain]], [[@pekopeko1|https://github.com/pekopeko1]], [[@pmario|https://github.com/pmario]], [[@sukima|https://github.com/sukima]], [[@xcazin|https://github.com/xcazin]].
[[@BramChen|https://github.com/BramChen]]
[[@danielo515|https://github.com/danielo515]]
[[@IreneKnapp|https://github.com/IreneKnapp]]
[[@mwfogleman|https://github.com/mwfogleman]]
[[@xcazin|https://github.com/xcazin]]

View File

@ -11,4 +11,3 @@ Macros are snippets of text that can be inserted with a concise shortcut:
```
You can write your own [[Macros in WikiText]] or for more flexibility you can write [[JavaScript Macros]].

View File

@ -1,5 +1,5 @@
created: 20130823203800000
modified: 20140505221726794
modified: 20140612181726794
tags: planning
title: RoadMap
type: text/vnd.tiddlywiki
@ -12,7 +12,7 @@ During the beta ~TiddlyWiki will be practical for cautious everyday use but as w
The following additional features are planned or under consideration for implementation during the beta:
* Features improving user data integrity
* Features to improve user data integrity
** Optional defensive backups with TiddlyFox and TiddlyDesktop
* Features required for large scale adoption
** Improve upgrade process
@ -22,7 +22,7 @@ The following additional features are planned or under consideration for impleme
** ~TiddlyWiki file format (to avoid illegal attribute names)
** Tiddler object format (to provide true polymorphism of field values)
* Perfecting WikiText
** Global macros
** ~~Global macros~~
** ~~`[img[url]]` for remote image embedding, and `[ext[url]]` for explicit external links~~
** Further ~WikiText features
* Productivity features

View File

@ -1,5 +1,5 @@
created: 20131205160746466
modified: 20140409133148420
modified: 20140612182148420
tags: wikitext
title: Macros in WikiText
type: text/vnd.tiddlywiki
@ -26,6 +26,10 @@ Single-line macros can omit the `\end` marker like this:
Macro definitions must be placed at the top of a tiddler. Macros are available to the tiddler that defines them, plus any tiddlers that it transcludes.
Global macros can be defined in any tiddler with the tag [[$:/tags/Macro]]. They are then available within all tiddlers.
Macros can be imported from other tiddlers with the ImportVariablesWidget.
[[JavaScript Macros]] can also be used for more flexibility.
! Using Macros