mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-01-24 20:04:40 +00:00
Compare commits
4 Commits
v5.0.11-be
...
v5.0.12-be
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aaec1b2854 | ||
|
|
9edebc78e7 | ||
|
|
e228ac42db | ||
|
|
be0bc04929 |
@@ -915,8 +915,12 @@ $tw.Wiki = function(options) {
|
||||
// Iterate through all the shadows and then the tiddlers
|
||||
this.eachShadowPlusTiddlers = function(callback) {
|
||||
for(var title in shadowTiddlers) {
|
||||
var shadowInfo = shadowTiddlers[title];
|
||||
callback(shadowInfo.tiddler,title);
|
||||
if(Object.prototype.hasOwnProperty.call(tiddlers,title)) {
|
||||
callback(tiddlers[title],title);
|
||||
} else {
|
||||
var shadowInfo = shadowTiddlers[title];
|
||||
callback(shadowInfo.tiddler,title);
|
||||
}
|
||||
}
|
||||
for(var title in tiddlers) {
|
||||
if(!Object.prototype.hasOwnProperty.call(shadowTiddlers,title)) {
|
||||
|
||||
10
editions/tw5.com/tiddlers/Release 5.0.12beta.tid
Normal file
10
editions/tw5.com/tiddlers/Release 5.0.12beta.tid
Normal file
@@ -0,0 +1,10 @@
|
||||
created: 20140517010234142
|
||||
modified: 20140517010234142
|
||||
tags: releasenote
|
||||
title: Release 5.0.12-beta
|
||||
type: text/vnd.tiddlywiki
|
||||
released: 201405170102
|
||||
|
||||
//[[See GitHub for detailed change history of this release|https://github.com/Jermolene/TiddlyWiki5/compare/v5.0.11-beta...v5.0.12-beta]]//
|
||||
|
||||
This is an emergency release that fixes a single significant bug with shadow tiddler handling in 5.0.11. See the [[discussion thread|https://groups.google.com/d/topic/tiddlywiki/pNxZsSCVp7c/discussion]] for more details.
|
||||
@@ -1,5 +1,5 @@
|
||||
created: 20140213171818824
|
||||
modified: 20150516172236345
|
||||
modified: 20140516172236345
|
||||
tags: mechanism
|
||||
title: HistoryMechanism
|
||||
type: text/vnd.tiddlywiki
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
title: $:/editions/tw5.com/github-fork-ribbon
|
||||
tags: $:/tags/PageControls
|
||||
|
||||
<div class="github-fork-ribbon-wrapper right" style><div class="github-fork-ribbon" style="background-color:#FF76C3;"><$link to="ReleaseHistory"><<version>></$link></div></div>
|
||||
<div class="github-fork-ribbon-wrapper right" style><div class="github-fork-ribbon" style="background-color:#FF76FF;"><$link to="ReleaseHistory"><<version>></$link></div></div>
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "tiddlywiki",
|
||||
"preferGlobal": "true",
|
||||
"version": "5.0.11-beta",
|
||||
"version": "5.0.12-beta",
|
||||
"author": "Jeremy Ruston <jeremy@jermolene.com>",
|
||||
"description": "a non-linear personal web notebook",
|
||||
"contributors": [
|
||||
|
||||
Reference in New Issue
Block a user