From ef27761193e4c66a520cd93c8285c0dbded58d10 Mon Sep 17 00:00:00 2001 From: saqimtiaz Date: Tue, 20 Jan 2026 17:07:53 +0100 Subject: [PATCH] fix: added text field for changenotes --- .../tiddlers/releasenotes/5.4.0/#9206.tid | 10 +++++++-- .../tiddlers/releasenotes/5.4.0/#9207.tid | 6 +++-- .../tiddlers/releasenotes/5.4.0/#9259.tid | 6 +++-- .../tiddlers/releasenotes/5.4.0/#9260.tid | 22 +++++++++++++++++-- 4 files changed, 36 insertions(+), 8 deletions(-) diff --git a/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9206.tid b/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9206.tid index 7eb8388f0..23dce7a72 100644 --- a/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9206.tid +++ b/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9206.tid @@ -4,8 +4,14 @@ created: 20260120154012282 description: Allows server routes to be prioritized via ordering. github-contributors: saqimtiaz github-links: https://github.com/TiddlyWiki/TiddlyWiki5/pull/9206 -modified: 20260120154424464 +modified: 20260120160656948 release: 5.4.0 tags: $:/tags/ChangeNote title: $:/changenotes/5.4.0/#9206 -type: text/vnd.tiddlywiki \ No newline at end of file +type: text/vnd.tiddlywiki + +This PR adds support for an info property to server route module exports. The info object may include a priority field, which determines the route’s order of precedence. + +Priorities are numeric and follow a descending order: routes with higher priority values are processed first, similar to how saver modules are prioritized. + +To maintain backward compatibility with existing code, any module that omits info or info.priority is assigned a default priority of 100. Core server routes have been updated to explicitly use this default value of 100. \ No newline at end of file diff --git a/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9207.tid b/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9207.tid index 151b4d099..572ca1eef 100644 --- a/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9207.tid +++ b/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9207.tid @@ -4,8 +4,10 @@ created: 20260120154249928 description: Allows server routes to support multiple HTTP methods. github-contributors: saqimtiaz github-links: https://github.com/TiddlyWiki/TiddlyWiki5/pull/9207 -modified: 20260120154418372 +modified: 20260120160159661 release: 5.4.0 tags: $:/tags/ChangeNote title: $:/changenotes/5.4.0/#9207 -type: text/vnd.tiddlywiki \ No newline at end of file +type: text/vnd.tiddlywiki + +Allows server routes to support multiple HTTP methods by introducing an `exports.methods` array. \ No newline at end of file diff --git a/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9259.tid b/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9259.tid index 740c4a2d8..1460a60d2 100644 --- a/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9259.tid +++ b/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9259.tid @@ -4,8 +4,10 @@ created: 20260120154533983 description: The deprecated events and actions-* atrributes for the eventcatcher widget have been removed. github-contributors: saqimtiaz github-links: https://github.com/TiddlyWiki/TiddlyWiki5/pull/9259 -modified: 20260120154629872 +modified: 20260120160236297 release: 5.4.0 tags: $:/tags/ChangeNote title: $:/changenotes/5.4.0/#9259 -type: text/vnd.tiddlywiki \ No newline at end of file +type: text/vnd.tiddlywiki + +Deprecates and removes the `events` and `actions-*` attributes for the $eventcatcher widget. \ No newline at end of file diff --git a/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9260.tid b/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9260.tid index 2ee31979e..ffc444ca6 100644 --- a/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9260.tid +++ b/editions/tw5.com/tiddlers/releasenotes/5.4.0/#9260.tid @@ -4,8 +4,26 @@ created: 20260120154445701 description: Adds info tiddlers for viewport dimensions that are updated on window resize. github-contributors: saqimtiaz github-links: https://github.com/TiddlyWiki/TiddlyWiki5/pull/9260 -modified: 20260120154525238 +modified: 20260120160515462 release: 5.4.0 tags: $:/tags/ChangeNote title: $:/changenotes/5.4.0/#9260 -type: text/vnd.tiddlywiki \ No newline at end of file +type: text/vnd.tiddlywiki + +Adds info tiddlers for viewport dimensions that are updated on window resize. + +!! Example: Main and a user-created window with windowID my-window + +|Window | Info tiddler | Meaning |h +|system/main |`$:/info/browser/window/system/main/outer/width` | Full browser window including chrome, tabs, toolbars | +|system/main |`$:/info/browser/window/system/main/outer/height` | Full browser window including chrome, tabs, toolbars | +|system/main |`$:/info/browser/window/system/main/inner/width` | Viewport width including scrollbars | +|system/main |`$:/info/browser/window/system/main/inner/height` | Viewport height including scrollbars | +|system/main |`$:/info/browser/window/system/main/client/width` | Content width excluding scrollbars | +|system/main |`$:/info/browser/window/system/main/client/height` | Content height excluding scrollbars | +|user/my-window |`$:/info/browser/window/user/my-window/outer/width` | Full browser window including chrome, tabs, toolbars | +|user/my-window |`$:/info/browser/window/user/my-window/outer/height` | Full browser window including chrome, tabs, toolbars | +|user/my-window |`$:/info/browser/window/user/my-window/inner/width` | Viewport width including scrollbars | +|user/my-window |`$:/info/browser/window/user/my-window/inner/height` | Viewport height including scrollbars | +|user/my-window |`$:/info/browser/window/user/my-window/client/width` | Content width excluding scrollbars | +|user/my-window |`$:/info/browser/window/user/my-window/client/height` | Content height excluding scrollbars |