[tw] Re: A Simple Way to Add the Tag Bar to the Tiddlerinfo Panel

2018-02-12 Thread HC Haase
This nice. fast, efficient and discrete.
I also use the simple tagger plugin by matabele. this however is faster 
than the simple tagger plugin because of the drop down functionality. 
simple tagger plugin can however mass add or delete tags. 

-- 
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 an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b0f65ee0-8200-47bc-98f5-d18aa62e2447%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] enhance regexp or new filter "pick"

2018-02-12 Thread Stephan Hradek


Am Montag, 12. Februar 2018 17:24:48 UTC+1 schrieb PMario:
>
> Is it possible to have several capturing groups?
>

I think I found a good solution.


   1. filter "pick:field[regexp]"
   Will pick every captured group as a new tiddler. If there is no group it 
   acts exactly like regexp
   2. filter "pickgroups:field[regexp]"
   Will capture every group into one tiddler, joined with character \x00, 
   thus making it usable by
   3. widget "splitgroups"
   which will split the <> at character \x00 into a set of 
   variables, possibly "sweetened" by some text

Examples

Exampletiddler contains
Auf der Mauer, auf der Lauer sitzt 'ne kleine Wanze

First example
<$list filter="[pick:text[auf der (\w+)]]"/>

will return "Lauer" - as "auf" doesn't match "Auf"

Second example
<$list filter="[pick:text[(?i)auf der (\w+)]]"/>

will return "Mauer" - as "auf" now matches "Auf" and we didn't use global 
search

Third example
<$list filter="[pick:text[(?gi)auf der (\w+)]]"/>

will return "Mauer" and "Lauer" - as we did a case-insensitive global search

Fourth example
<$list filter="[pick:text[(?i)auf der \w+]]"/>

will return "Exampletiddler" - as we have no capturing group and so the 
title is returned.

Fifth example
<$list filter="[pick:text[(?i)(auf der) (\w+)]]"/>

will return "Auf der", "Mauer", "auf der" and "Lauer". Each one as a 
seperate tiddler

Sixth example
<$list filter="[pickgroups:text[(?i)(auf der) (\w+)]]">

<$splitgroups a="a: $1" b="b: $2">
<>, <>



will return

"a: Auf der, b: Mauer"
and
"a: auf der, b: Lauer"


-- 
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 an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ce106a6a-07d6-4c13-9a97-3424d7c8ba91%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How-To?: Search/Filter by multiple Tags with checkboxes or buttons for tags /taggroups

2018-02-12 Thread 'Surya' via TiddlyWiki
Hello,

I managed now to add an "open all"-button to the MultipleTagSearch with 
this:

<$button>Open ''ALL found'' Tiddlers
<$list filter=<>>
<$action-navigate $to=<> $scroll=no/>


(Found that somewhere in the web and modified it to work in the 
MultipleTagSearch).


But still there are these unsolved problems (point 1. & 2. are the most 
important ones):

   1. In the "MultipleTagSearch" there are also the tiddlers listed, which 
   have the listed tags (for example in the test-wiki the New Tiddler 1, New 
   Tiddler 2, and so on... How can I hide them in the "MultipleTagSearch"?
   2. I would like to have the checkboxes directly next to the listed tags (for 
   example in the test-wiki the checkbox for "A" next to "A"). In that way I 
   would have to do one click-action less. And also I could see much faster, 
   which tags I have checked / not checked. Because, when I would click on the 
   arrow of a parent-tag I could see ALL child-tags of their parent-tag WITH 
   their checkboxes at once.
  - It wouldn't matter to me, if ALL the child-tags WITH their 
  checkboxes are inside the TableOfContents or in the white space on the 
  right side of the TableOfContents.
   

   - If I added a tag to search-by, I'd like to be able to remove that tag 
   very easy & fast- like in $:/plugins/danielo/tagSearch. There the added 
   tags are shown as the tagpills with their x in it.
   - The "Additional criteria"-Search-Field: At the moment it is like this:
  - When a write in "an", it lists the tiddlers with "an" somewhere in 
  the title.
  - When I write in that search field "An", then it lists the tiddlers 
  beginning with "An".
 - So it seems, that this filter is sensitive for capital & 
 non-capital letters. It would be nice, if it would dosen't matter, if 
I 
 write "an" or "An"- it should list in both ways the tiddlers 
 beginning with "An" and "an".
  
Maybe, it would be better, not to use TableOfContents, but something else 
(so that the unwanted tiddlers could be hidden from the choosable tags)?
But I still couldn't find out how. Experimented a lot

Please, all TW-freaks ;-) Please help...
I'll give hundreds of kisses ;-)
Surya

-- 
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 an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3579e221-7533-4f2a-865b-12b6a54af390%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] enhance regexp or new filter "pick"

2018-02-12 Thread Stephan Hradek


Am Montag, 12. Februar 2018 17:24:48 UTC+1 schrieb PMario:
>
> On Monday, February 12, 2018 at 2:38:49 PM UTC+1, Stephan Hradek wrote:
>>
>> Last Example
>> <$list filter="[regexp:text[(?i)auf der \w+]]"/>
>>
>> will return "Exampletiddler" - as we have no capturing group and so the 
>> title is returned.
>>
>
> Is it possible to have several capturing groups?
>
> Yes

But now that you ask it… Esch group will be a seperate tiddler, so the 
connection, that they belong to the same source tiddler, is lost. This is 
(was) fine for my usecase, but now that I think about it… 

-- 
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 an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b77793fd-1115-47e0-a8f0-7c83e2914666%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Useful macro to build and display/act-on a "linked-list" of tiddlers

2018-02-12 Thread Diego Mesa
Hey all,

While working on my Spaced Repetition/Anki system, I've developed this 
general link-list macro which might be useful. Its purpose is to take a 
subfilter, eg: "tag[Flash Card]", sort them someway, eg: created, an ending 
link (eg: "Results"), and create a series of links from one tiddler to the 
next, all the way to the end. The "next" tiddler in the link is saved in a 
field, whose name you can also specify. 

Right now, it also has the list navigation built in (action-navigate), 
though Im sure we can just add an additional actions parameter to this 
macro in the future.

\define createAndShowLinkedList(subfilter lastlink sortby:created 
linkfieldname:next)

<$formula-vars counter="count([$subfilter$])-1">

<$list filter="[rangebutlast[]]" variable="iter">

<$formula-vars current="nth([$subfilter$sort[$sortby$]], <> + 
1)" next="nth([$subfilter$sort[$sortby$]], <> + 2)">
<$action-setfield $tiddler=<> $field=$linkfieldname$ 
$value=<>/>




<$list filter="[rangelast[]]" variable="iter">
<$formula-vars current="nth([$subfilter$sort[$sortby$]], <> + 
1)">
<$action-setfield $tiddler=<> $field=$linkfieldname$ 
$value=$lastlink$/>





<$list filter="[$subfilter$sort[$sortby$]first[]]">
<$action-navigate $to=<>/>

\end

It currently uses Evan's excellent formula plugin. I'm pretty sure someone 
could do all of the counting, adding, etc without it, but Im not sure how 
to get the *range* using just core features. I was thinking of trying to 
make this my first core PR, but I couldnt see a way around the use of range.

If anyone has any feedback, critcisms, etc please let me know!

Best,
Diego

-- 
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 an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/776d405c-c5e3-46a1-8318-1eb41cc2f623%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Work on Spaced Repetition System

2018-02-12 Thread Diego Mesa
Hey all,

With Evan's fix of the formula plugin today, I released an updated version 
of Anwiki:

http://anwiki.tiddlyspot.com/

You can now quiz in 1 of 2 ways:

   - Quiz by due date, regardless of deck
   - Quiz by deck, regardless of due date
   
Any feedback is welcome.

Diego

On Friday, February 9, 2018 at 3:24:26 PM UTC-6, Diego Mesa wrote:
>
> Thanks Kirshaan,
>
> Thats the plan! For right now Im sitll testing it, but I hope to release 
> it as a plugin soon. 
>
> Best,
> Diego
>
> On Friday, February 9, 2018 at 2:33:31 PM UTC-6, Krishaan Khubchand wrote:
>>
>> It looks really cool man, is there any way to use the spaced repetition 
>> system as a plugin? 
>>
>> On Tuesday, February 6, 2018 at 12:00:56 AM UTC+1, Diego Mesa wrote:
>>>
>>> Hey all,
>>>
>>> I've put together a small demo of my current progress here:
>>>
>>> http://anwiki.tiddlyspot.com/
>>>
>>> As always, any and all feedback is welcome. And I mean on *everything*, 
>>> from the way I coded it up, to the way its structured, styled, etc. 
>>> Anything!
>>>
>>> Best,
>>> Diego
>>>
>>>
>>> On Friday, February 2, 2018 at 3:35:15 PM UTC-6, TonyM wrote:

 Diego,

 Does sound a useful tool to put in tiddlywiki. I was interested in 
 building something similar for review and study times rather than at the 
 question level. Its more about scheduling study.

 Once such a question answer solution exists it seems to me the next 
 opportunity is how to populate it with questions. Imagin if you could dump 
 a translation dictionary on it. Alternativly manual question creation 
 needs 
 to be quick and easy. Could questions even be created from marking up your 
 study notes?

 Regards
 Tony



-- 
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 an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/66d1c5a2-ec25-47ca-acfc-ca85e61abcf0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] enhance regexp or new filter "pick"

2018-02-12 Thread PMario
On Monday, February 12, 2018 at 2:38:49 PM UTC+1, Stephan Hradek wrote:
>
> Last Example
> <$list filter="[regexp:text[(?i)auf der \w+]]"/>
>
> will return "Exampletiddler" - as we have no capturing group and so the 
> title is returned.
>

Is it possible to have several capturing groups?

-m 

-- 
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 an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/96b9d19e-7e06-4b82-a9c5-8958a709ab71%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] enhance regexp or new filter "pick"

2018-02-12 Thread Stephan Hradek
I tried to follow https://tiddlywiki.com/dev/ in order to create a new 
filter module plugin, but I cannot even see (with console.log) that it is 
actually use :(

What did I do wrong?

$:/plugins/skeeve/filter-pick

{
"tiddlers": {
"$:/plugins/skeeve/filter-pick/pick.js": {
"created": "20180212142125038",
"text": "/*\\\ntitle: 
$:/plugins/skeeve/filter-pick/pick.js\ntype: 
application/javascript\nmodule-type: filteroperator\n\nFilter operator for 
regexp matching and picking out capturing 
groups\n\n\\*/\n(function(){\n\n/*jslint node: true, browser: true 
*/\n/*global $tw: false */\n\"use strict\";\n\n/*\nExport our filter 
function\n*/\nexports.pick = function(source,operator,options) {\n\tvar 
results = [],\n\t\tfieldname = (operator.suffix || 
\"title\").toLowerCase(),\n\t\tregexpString, regexp, flags = \"\", 
match,\n\t\tgetFieldString = function(tiddler,title) {\n\t\t\tif(tiddler) 
{\n\t\t\t\treturn tiddler.getFieldString(fieldname);\n\t\t\t} else 
if(fieldname === \"title\") {\n\t\t\t\treturn title;\n\t\t\t} else 
{\n\t\t\t\treturn null;\n\t\t\t}\n\t\t};\n\t// Process flags and construct 
regexp\n\tregexpString = operator.operand;\n\tmatch = 
/^\\(\\?([gim]+)\\)/.exec(regexpString);\n\tif(match) {\n\t\tflags = 
match[1];\n\t\tregexpString = regexpString.substr(match[0].length);\n\t} 
else {\n\t\tmatch = /\\(\\?([gim]+)\\)$/.exec(regexpString);\n\t\tif(match) 
{\n\t\t\tflags = match[1];\n\t\t\tregexpString = 
regexpString.substr(0,regexpString.length - 
match[0].length);\n\t\t}\n\t}\n\tvar global= flags.indexOf('g') > 
-1;\n\ttry {\n\t\tregexp = new RegExp(regexpString,flags);\n\t} catch(e) 
{\n\t\treturn [\"\" + e];\n\t}\n\t// Process the incoming 
tiddlers\n\tif(operator.prefix === \"!\") 
{\n\t\tsource(function(tiddler,title) {\n\t\t\tvar text = 
getFieldString(tiddler,title);\n\t\t\tif(text !== null) 
{\n\t\t\t\tif(!regexp.exec(text)) 
{\n\t\t\t\t\tresults.push(title);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t} else 
{\n\t\tsource(function(tiddler,title) {\n\t\t\tvar text = 
getFieldString(tiddler,title);\n\t\t\tif(text !== null) {\n\t\t\t\tvar 
m;\n\t\t\t\twhile (m = regexp.exec(text)) {\n\t\t\t\t\tif (m.length == 1) 
{\n\t\t\t\t\t\tresults.push(title);\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tconsole.log(m);\n\t\t\t\t\tfor
 
(var i=1; i



nothing is logged at all.


-- 
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 an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b18eda88-b96a-4a72-9c58-18552e19105b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] enhance regexp or new filter "pick"

2018-02-12 Thread Stephan Hradek


Am Montag, 12. Februar 2018 11:36:42 UTC+1 schrieb PMario:
>
>
> There is a second PR: https://github.com/Jermolene/TiddlyWiki5/pull/2963 
> which may be similar. ... +1 this one too!
>
> Especially that one looks pretty similar to my code, but seems to do 
something differently.

Haven't figured out how to completely see that code and include it in my TW 
to try & test it.

Example of how mine would work:

Exampletiddler contains
Auf der Mauer, auf der Lauer sitzt 'ne kleine Wanze

First example regexp:
<$list filter="[regexp:text[auf der (\w+)]]"/>

will return "Lauer" - as "auf" doesn't match "Auf"

Second example regexp:
<$list filter="[regexp:text[(?i)auf der (\w+)]]"/>

will return "Mauer" - as "auf" now matches "Auf" and we didn't use global 
search

Third example regexp:
<$list filter="[regexp:text[(?gi)auf der (\w+)]]"/>

will return "Mauer" and "Lauer" - as we did a case-insensitive global search

Last Example
<$list filter="[regexp:text[(?i)auf der \w+]]"/>

will return "Exampletiddler" - as we have no capturing group and so the 
title is returned.






-- 
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 an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/eff9ea24-3f8d-4424-baab-2c333a1cbd57%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 beginner: sidebar, css etc

2018-02-12 Thread Ton Gerner
Hi sklpns,

3. I need to get a third state for the topbar button: fullscreen sidebar
>
> (context: currently it toggles between story river fullscreen and story 
> river+sidebar. 
> I need a third state, fullscreen sidebar to be toggled in order to show 
> the aforementioned Viewer fullscreen for beter reading)
>
>  Not exactly where you are after but may be it can help.
Have a look at my Tristate plugin, see http://tw5tristate.tiddlyspot.com/
You can test it there as well.

Cheers,

Ton

-- 
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 an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/fe7bcdbe-3940-46a3-a3a7-f8b494a0b487%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] enhance regexp or new filter "pick"

2018-02-12 Thread PMario
Hi Stephan,

I'm not sure, but imo this pending PR 
https://github.com/Jermolene/TiddlyWiki5/pull/3003  does a similar thing. 
... So it would be nice to +1 the PR and eventually check your code, if the 
functionality could be merged, or if it really is a new operator. 

There is a second PR: https://github.com/Jermolene/TiddlyWiki5/pull/2963 
which may be similar. ... +1 this one too!

-m

-- 
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 an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9281ce58-c607-438a-8438-e2c9292ddd00%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] enhance regexp or new filter "pick"

2018-02-12 Thread Stephan Hradek
Hi!

I wanted to create a new filter called "pick" which is exactly like regexp, 
except that it "picks out" the matched parts instead of finding matching 
tiddlers.

Motivation behind this is: I have some tiddlers containing links to github 
and I wanted to pull out all these links.

As I failed to create a plugin for doing this ad-hoc (too long absence from 
tiddlywiki), I shamelessly enhanced regexp to do what I want.

The enhancement is backwards compatible as long as there are no capturing 
groups in

Pro: Not yet another filter to learn
Cons: Will break current tiddlywikis having capturing groups

Question is: What shall I do with it? Can someone show me how I can create 
a plugin so that I can create a "pick" filter? Shall I create a pull 
request for the enhanced regexp?

-- 
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 an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d9180584-730f-4e63-9f19-352509aab33a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [POLL] What does the community think about the new diff plugin?

2018-02-12 Thread PMario
On Monday, 12 February 2018 09:39:53 UTC+1, BurningTreeC wrote:
>
> ... I want it for every wiki
>

Hi, 
I want it for every of my wikis too. *But as a plugin*. Because other devs 
may use other libraries, that do the same thing, which may cause conflicts.

I personally wanted to use the same library for an un-released 
beaker-adapter-plugin, using all the diff - match - patch functions. If the 
stuff is part of the core, we are basically locked in. 

just my thoughts
mario

-- 
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 an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b173e6ba-fbad-46c1--f8ac1ff54fc9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [POLL] What does the community think about the new diff plugin?

2018-02-12 Thread BurningTreeC
Hi Riz,

I think the most exciting thing is just being able to use it - so the 
question if core or plugin is not that important to me personally

Though it's interesting to gather more points of view

BTC

-- 
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 an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0a644a54-6c9c-476c-b0fd-17d2ee63341b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [POLL] What does the community think about the new diff plugin?

2018-02-12 Thread BurningTreeC
Hi Diego,

I ALSO think, it is great!

I can also understand the point that it could or should be a user-choice to 
add it or not..

for me it's a yes, I want it for every wiki

BTC

Am Montag, 12. Februar 2018 05:56:09 UTC+1 schrieb Diego Mesa:
>
> I for one am a HUGE fan of this! I would love to see the storing of the 
> diffs become tiddler version history.! 
>
> What a time to be in TW!  
>
>
> On Sunday, February 11, 2018 at 10:40:46 PM UTC-6, BurningTreeC wrote:
>>
>> Hello community,
>>
>> there's a new plugin on the TiddlyWiki prerelease page (link) 
>>  that visually shows the differences 
>> of what you added and deleted while editing a tiddler in the preview panel
>>
>> Here's the github commit: 
>> https://github.com/Jermolene/TiddlyWiki5/pull/3112
>> As one can read there, it's not settled if this makes it into the 
>> TiddlyWiki core, adding ~30kb to the empty html, or if it will be available 
>> as a TiddlyWiki plugin
>>
>> I thought it would be interesting to see what the community thinks about 
>> it
>>
>> So here's an anonymous poll:
>>
>> https://goo.gl/forms/Oh2a3Fhx9dUSttWA2
>>
>> BTC
>>
>

-- 
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 an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/bf44160b-047e-4985-93f1-b73810cca120%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [POLL] What does the community think about the new diff plugin?

2018-02-12 Thread Riz
I for one, have voted against adding it to the core. Please understand that 
while I genuinely understand and appreciate the value of such a work, it 
should not be imposed upon people who do not want it. Such a addition is 
useful to a developer, rather than a common user. 

IMHO, the existing core itself should be split further into smaller 
plugins, so the end user can have more freedom to pick and choose, while 
offering a pre-built empty edition to the beginners. That is to say, the 
no-vote is not a vote against the work, rather a reflection of my 
viewpoint. 

regards
Riz

-- 
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 an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2f80b37a-894f-443e-aff3-d21b4795e2e5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.