Re: [tw5] Final checks for v5.1.18

2018-12-07 Thread S. S.
Thank you. Uninstalling the *enabled by default* CodeMirror plugin on the pre-release TiddlyWiki , and then saving it, and reloading the file, fixed the issue. The edit box once again has a text entry area just like 5.1.17 - perfect ! -- You received this m

Re: [tw5] Final checks for v5.1.18

2018-12-07 Thread Jeremy Ruston
Hi S.S. It sounds like you’re using the CodeMirror plugin. Sadly, it doesn’t support a minimum height for the edit area like the plain framed editor. If you uninstall the plugin you should see the expected behaviour. Best wishes Jeremy. > I request that when the Editor is set to "Automatical

Re: [tw5] Final checks for v5.1.18

2018-12-06 Thread S. S.
I request that when the Editor is set to "*Automatically adjust height to fit content*" that the new Editor allows the previous style of having a *minimum size of 100px.* The new style of having *just one line* in the edit box is confusing to me - it is hard to click into it quickly, and it do

Re: [tw5] Final checks for v5.1.18

2018-12-04 Thread Joshua Fontany
Hi Jan, I have found that if you include: [list[$:/StoryList]] at the bottom of the list of default tiddlers (in settings), the wiki will re-open any tiddlers you previously had open on re-loads. Best, Joshua Fontany On Monday, December 3, 2018 at 1:23:27 AM UTC-8, Jan wrote: > > Hi Jeremy, > I

Re: [tw5] Final checks for v5.1.18

2018-12-03 Thread Jeremy Ruston
Hi Pit As BurningTreeC said, we’ve reverted the visual changes to the editor. https://tiddlywiki.com/prerelease/empty.html will be up to date in a few minutes when the current build completes. Best wishes Jeremy > On 3 Dec 2018, at 17:16, Pit.W. wrote: > > pro > con > > shadows and rounded

Re: [tw5] Final checks for v5.1.18

2018-12-03 Thread Pit.W.
pro con / / /shadows and rounded corners /consume screen real estate/ / could help new users to identify fields with system functions (would they?) are new for seasoned users, require adaption of the optical pattern recognition /configurable AND switch off by default/: adds addi

Re: [tw5] Final checks for v5.1.18

2018-12-03 Thread Jeremy Ruston
Hi Jan I’m afraid we’re beyond the point of adding new features for v5.1.18. The point of the OP was to draw a line under the new features and focus on finding bugs :) Best wishes Jeremy. > On 3 Dec 2018, at 09:23, Jan wrote: > > Hi Jeremy, > I just got a microscopic suggestion: > A second b

Re: [tw5] Final checks for v5.1.18

2018-12-03 Thread Jan
Hi Jeremy, I just got a microscopic suggestion: A second button below the default tiddlers to consolitate the current story to default. <$set name="myStory" filter="[list[$:/StoryList]!tag[excludeStory]] -[[$:/core/ui/ControlPanel]]"> <$button tooltip="set the default tiddlers to the current

Re: [tw5] Final checks for v5.1.18

2018-12-03 Thread Jeremy Ruston
Hi Mario > On 3 Dec 2018, at 01:42, PMario wrote: > > The editor box shadow and the rounded corners really hurt!!! > > If we really want to keep it, we need to make it configurable AND switch off > by default. Apologies that was merged in error, and is in the process of being revoked. Best w

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Mohammad
Evan, This is revised version of range.js based on your formula plugin. It seems it can handle all cases. I am not a JS programmer so it may need to clean up and improve for performance. Please have a look and let me know your opinion. Best Mohammad -- You received this message because you

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Mohammad
Evan, If we check the direction in switch case, then there is no need to correct for it in // May need to count backwards // var direction = ((endb then step=-1 Mohammad -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from t

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Mohammad
Hello Evan, Many thanks for your clarification! Formula plugin is a very useful tool and I am using it. Yes, I expect a programmer range like Python. What do you think if we make the below change in range.js code! I revised it in Formula plugin

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Evan Balster
Hello, Mohammad, BurningTreeC, everybody — I'm the author of the range filter. The long and short of it is, this is not a "programmer's range" like a for-loop in C. This is a "layman's range" which uses natural numbers by default, includes the end-value, and counts from begin to end. The sig

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Mohammad
@Mark That's right! But the code is error prone! If you change the begin end by mistake it still works! My sygesstion is range[a,b], if a< b then step=1 range[a,b], if a>b then step=-1 range[a,b,c], if a0 otherwise empty list range [a,b,c] if a a>b then c<0 otherwise empty list The python ran

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread PMario
hi, The editor box shadow and the rounded corners really hurt!!! If we really want to keep it, we need to make it configurable AND switch off by default. -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and sto

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread 'Mark S.' via TiddlyWiki
This <$list filter="[range[10,1,-0.1]]"/> works. This also counts down: <$list filter="[range[10,1,0.1]]"/> So the code appears to figure out which way you want to count based on whether start is greater than end, and uses the absolute value of the step. -- Mark On Sunday, December 2,

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Mohammad
Thank you Simon! But you can not have negative step from 1 to 10 and again you get 1,2,3 I read the Evans formula and range code and it seems TW5.1.18 uses the same code from Evans! Evans code can be found here: http://evanbalster.com/tiddlywiki/formulas.html#%24%3A%2Fplugins%2Febalster%2Ffo

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Mohammad
Many thanks Simon! Yes, it gives a new taste! The important thing is I can customize it! Thank you for all your efforts. /Mohammad On Sunday, December 2, 2018 at 9:36:15 PM UTC+3:30, BurningTreeC wrote: > > @Mohammad, that's a change I proposed, I found the old editor look is ugly > ... but I m

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread BurningTreeC
@Mohammad, here are the docs: https://tiddlywiki.com/prerelease/#range%20Operator On Sunday, December 2, 2018 at 6:32:49 PM UTC+1, Mohammad wrote: > > Many thanks for all your efforts Jeremy! > > One question: > > {{{ [range[1,10,-2]] }}} > > > returns 1357 while it is expected to return empty l

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread BurningTreeC
@Mohammad, that's a change I proposed, I found the old editor look is ugly ... but I made a PR to give it its previous background color. removing the box-shadow from the editor is just .tc-tiddler-frame.tc-tiddler-edit-frame iframe.tc-edit-texteditor { box-shadow: none; } to remove the border-r

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Mohammad
The text area and preview seems have a new look! Is it customizable? if I wish to use the previous styles in 5.1.17! Mohammad -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Mohammad
Many thanks for all your efforts Jeremy! One question: {{{ [range[1,10,-2]] }}} returns 1357 while it is expected to return empty list! Note to the negative step! Is this intentionally set to have such output? Also {{{ [range[10,4,2]] }}} returns 10864 I appreciate to clarify this! Moh

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Jeremy Ruston
Hi Stef Thank you, I’ve hopefully fixed that here: https://github.com/Jermolene/build.jermolene.github.io/commit/1271dd152e67b049d124bad693c6278523f2c391 There’ll be a new build available in a few minutes for you to try, Best wishes Jeremy. > On 2 Dec 2018, at 16:22, stef...@gmail.com wrote:

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread stefct4
Hi Jeremy, On Sunday, December 2, 2018 at 5:05:01 PM UTC+1, Jeremy Ruston wrote: > > > I’m hoping to release v5.1.18 tomorrow, 3rd December, so this is one last > request to give the latest version as much testing as you can: > Great! The "Export Tiddler" feature seems to work properly now.

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Jeremy Ruston
Many thanks to everyone for your feedback. There’s been a whirlwind of activity over the last week, with quite a few tweaks and fixes merged. I’m hoping to release v5.1.18 tomorrow, 3rd December, so this is one last request to give the latest version as much testing as you can: https://tiddlywi

[tw5] Final checks for v5.1.18

2018-11-24 Thread Jeremy Ruston
The release of v5.1.18 is long overdue, I’m afraid, and there’s an unusually large number of new features and improvements: much better web serving functionality, global keyboard shortcuts, splash screens, the new ~ (tilde) filter operator, and much, much more. I’ve now frozen the addition of n