Jermolene
0444420346
Update plugin installation instructions
2015-03-13 10:18:42 +00:00
Jermolene
253859cc7c
Update release note
2015-03-13 10:18:28 +00:00
Jermolene
70e454fa6d
Release note update
2015-03-13 10:07:16 +00:00
Jermolene
550ad4a1a9
Partial fix for #1570
...
Stop the logger from creating alert tiddlers on the server. They
propagate to the client but are not deletable from the client because
they are in the `$:/temp` namespace.
cc @loleg
2015-03-12 22:35:03 +00:00
Jeremy Ruston
0e75a6f41c
Merge pull request #1572 from Spangenhelm/patch-2
...
Adding the 'language' type to the table of plugins options
2015-03-12 18:19:47 +00:00
Florent V.
c4da71e2fd
Adding the 'language' type to the table of plugins options
2015-03-12 13:46:42 +01:00
Jeremy Ruston
6248c29a14
Merge pull request #1571 from BramChen/master
...
Update chinese translations
2015-03-12 08:48:16 +00:00
Bram Chen
fc84ede773
For zh-Hant and zh-Hans, add text and tooltip of help button
2015-03-12 13:29:10 +08:00
Jermolene
b69dff861d
Fix tests for c33a17a475
2015-03-11 21:58:45 +00:00
Jeremy Ruston
d1a4855bfc
Merge pull request #1546 from aelocson/upgrade-typo
...
Correct WikiText in the upgrade wizard
2015-03-11 21:45:13 +00:00
Jeremy Ruston
e4cc5dca77
Merge pull request #1545 from aelocson/variable-docs
...
Document the tv-* variables
2015-03-11 21:44:32 +00:00
Jeremy Ruston
a64575f07f
Merge pull request #1544 from BramChen/master
...
Update chinese translations
2015-03-11 21:26:27 +00:00
Jermolene
c33a17a475
Revert "sort unlisted tags by title"
...
Revert “sort unlisted tags by title”
a8ab08e8fa
by @tobibeer
The problem was that this commit changed the order of stylesheet
processing. For background see:
https://groups.google.com/d/topic/tiddlywiki/BPuuSkG6siU/discussion
2015-03-11 19:17:14 +00:00
Jeremy Ruston
c98990d3d6
Merge pull request #1556 from felixhayashi/patch-2
...
Missing advice in Contributing.tid
2015-03-11 18:26:23 +00:00
Jermolene
3431b84625
Use explicit parameter name
...
As suggested by @pmario in
https://github.com/Jermolene/TiddlyWiki5/pull/1536/files#r26186766
2015-03-11 17:09:25 +00:00
Jeremy Ruston
07d0609083
Merge pull request #1560 from sukima/remove-freedom-bits
...
Remove freedombits community example
2015-03-10 20:32:11 +00:00
Jeremy Ruston
2710049865
Merge pull request #1565 from felixhayashi/patch-5
...
Bugfix: Object.freeze() called on null
2015-03-10 20:31:15 +00:00
Jeremy Ruston
0f5cebc6b0
Merge pull request #1567 from sukima/fix-codemirror-readme
...
Fix CodeMirror README formatting
2015-03-10 20:24:07 +00:00
Jeremy Ruston
9097697c52
Merge pull request #1536 from aelocson/macro-syntax-fix
...
Fix a broken use of the list-links macro
2015-03-10 20:23:23 +00:00
Jeremy Ruston
b430f46d78
Merge pull request #1534 from aelocson/monospaced-font
...
Expose code font family in Control Panel
2015-03-10 20:23:11 +00:00
Jermolene
657c266522
Coding style tweaks
2015-03-10 20:04:34 +00:00
Jermolene
ab9bdb208e
Add thumbnail and links for TiddlyWiki Poster
2015-03-10 17:24:17 +00:00
Jermolene
e80a08f43b
Fix problem with custom tag in reveal widget
2015-03-10 16:59:25 +00:00
Jermolene
e46d3d74be
Rename node-webkit to NW.js
2015-03-10 16:54:53 +00:00
Jermolene
1141911a70
Add strings for help button
2015-03-10 14:27:51 +00:00
Jermolene
1808b1597e
Support custom HTML element tags for reveal widget
2015-03-10 12:44:47 +00:00
Jermolene
64e1a76987
Prevent edit-text widget from generating unsafe elements
2015-03-10 12:34:50 +00:00
Jermolene
d3954af478
Soften colour of system tiddler icons
2015-03-10 12:29:39 +00:00
Jermolene
8ab73894e9
Remove extraneous colon
2015-03-10 11:04:35 +00:00
Jermolene
49a9a2c44c
Add Slovak translation
...
Thanks to Vlado Luknar
2015-03-10 11:04:25 +00:00
Jermolene
bd175504f8
Add "full" edition for testing plugins
2015-03-10 10:49:44 +00:00
Devin Weaver
dcb9e161de
Fix CodeMirror README formatting
...
There was a rendering mess in the CodeMirror readme file. This was cause
by attempting to bold the `$:/tags/Stylesheet` text. Also the context of
the sentence implies this should be backticked not bold (it refers to a
tag not a tiddler).
2015-03-08 16:38:16 -04:00
Felix Küppers
f99a4e7664
Bugfix: Object.freeze() called on null
...
For five minutes I stared at the following code...
if(value != null && typeof value === "object") {
Object.freeze(value);
}
... and at the error message that led me to this code: `Object.freeze called on non-object`
And then I remembered that js treads null as object (http://www.ecma-international.org/ecma-262/5.1/#sec-11.4.3 ). This means the `typeof === "object"` will not discover null and freeze will throw an error...
So `value != null` will also work when value is undefined.
A hard to find bug ;)
2015-03-07 20:47:43 +01:00
Devin Weaver
74deae3c38
Remove freedombits community example
...
The URL (freedombits.org) is no longer hosting this example. It no
longer provides a good example as there is no TiddlyWiki linked anymore.
With much regret it needs to be removed till the original author can fix
the problem.
2015-03-06 16:28:43 -05:00
Felix Küppers
3e47f5c454
Update Contributing.tid
2015-03-06 15:47:56 +01:00
Felix Küppers
8ffe517736
Update Contributing.tid
2015-03-06 14:42:09 +01:00
Bram Chen
6070c4abee
Minor wording tweak for BramChen/TiddlyWiki5@385533e528
2015-03-04 09:24:04 +08:00
Bram Chen
d6ae9ea686
Merge remote-tracking branch 'upstream/master'
2015-03-04 09:12:57 +08:00
Jermolene
42499ea6ff
Minor tweaks and fixes for #1529
...
1. Display friendlier caption field in select dropdown
2. Remove extraneous line break from end of default config tiddler
3. Minor wording tweak
2015-03-03 18:10:01 +00:00
Astrid Elocson
320664a0c7
Correct WikiText in the upgrade wizard
2015-02-28 15:43:48 +00:00
Astrid Elocson
e369bc1eb2
Remove created field accidentally added
2015-02-28 14:47:38 +00:00
Astrid Elocson
27e6c7bb8d
Add links to tv-* variables in LinkWidget.tid
2015-02-28 14:45:22 +00:00
Astrid Elocson
f73891c083
Document the tv-* variables
2015-02-28 14:38:00 +00:00
Bram Chen
385533e528
For chinese translations, add caption and hint text of setting default sidebar tab
2015-02-28 22:33:35 +08:00
Jeremy Ruston
7a326f022b
Merge pull request #1529 from felixhayashi/sidebar-default
...
Option to define the default sidebar tab
2015-02-28 12:13:46 +00:00
Jeremy Ruston
27454dabb1
Merge pull request #1525 from Spangenhelm/patch-1
...
Adding the missing 'language' type
2015-02-28 12:12:11 +00:00
Jeremy Ruston
f89da8522f
Merge pull request #1539 from aelocson/doc-macros-fix
...
Remove extraneous \end from doc-macros.tid
2015-02-28 12:11:07 +00:00
Jermolene
e884192baf
Alternative fix for #1542
...
As suggested by @aelocson, adjusting the viewport has less impact on
the icon size.
2015-02-28 11:28:58 +00:00
Jermolene
bc0a25bc6c
Fix 1px clipping on SVG icons
...
Fixes #1542
2015-02-28 10:47:38 +00:00
Astrid Elocson
af34b1af05
Remove extraneous \end from doc-macros.tid
2015-02-28 08:16:10 +00:00