diff --git a/Wiki-OcttKB/plugins/2click2edit/$__plugins_danielo515_2click2edit_ClickListener.js b/Wiki-OcttKB/plugins/2click2edit/$__plugins_danielo515_2click2edit_ClickListener.js new file mode 100644 index 0000000..dc8af6f --- /dev/null +++ b/Wiki-OcttKB/plugins/2click2edit/$__plugins_danielo515_2click2edit_ClickListener.js @@ -0,0 +1,58 @@ +/*\ +title: $:/plugins/danielo515/2click2edit/ClickListener.js +type: application/javascript +module-type: widget + +This widgets adds an double click event listener to its parent + +\*/ + +(function(){ + +/*jslint node: true, browser: true */ +/*global $tw: false */ +"use strict"; + +var Widget = require("$:/core/modules/widgets/widget.js").widget; + +var ClickListener = function(parseTreeNode,options) { + this.initialise(parseTreeNode,options); +}; + +/* +Inherit from the base widget class +*/ +ClickListener.prototype = new Widget(); + +/* +Render this widget into the DOM +*/ +ClickListener.prototype.render = function(parent,nextSibling) { + this.parentDomNode = parent; + this.execute(); + var self = this; + /*Since the event listener have been added to the parent, the "this" property is pointing to the + wrong object, we should call our edit function with our widget object set as the this property.*/ + parent.addEventListener("dblclick",function(event){self.editTiddler.call(self,event)}); +}; + +ClickListener.prototype.editTiddler = function(event) { + this.dispatchEvent({type: "tm-edit-tiddler", param: this.getVariable("currentTiddler")}); +}; + +/* +Compute the internal state of the widget +*/ +ClickListener.prototype.execute = function() { +}; + +/* +Selectively refreshes the widget if needed. Returns true if the widget or any of its children needed re-rendering +*/ +ClickListener.prototype.refresh = function(changedTiddlers) { + return false; +}; + +exports.click = ClickListener; + +})(); \ No newline at end of file diff --git a/Wiki-OcttKB/plugins/2click2edit/$__plugins_danielo515_2click2edit_ClickListener.js.meta b/Wiki-OcttKB/plugins/2click2edit/$__plugins_danielo515_2click2edit_ClickListener.js.meta new file mode 100644 index 0000000..2da32c5 --- /dev/null +++ b/Wiki-OcttKB/plugins/2click2edit/$__plugins_danielo515_2click2edit_ClickListener.js.meta @@ -0,0 +1,3 @@ +module-type: widget +title: $:/plugins/danielo515/2click2edit/ClickListener.js +type: application/javascript \ No newline at end of file diff --git a/Wiki-OcttKB/plugins/2click2edit/$__plugins_danielo515_2click2edit_readme.tid b/Wiki-OcttKB/plugins/2click2edit/$__plugins_danielo515_2click2edit_readme.tid new file mode 100644 index 0000000..0025be4 --- /dev/null +++ b/Wiki-OcttKB/plugins/2click2edit/$__plugins_danielo515_2click2edit_readme.tid @@ -0,0 +1,7 @@ +title: $:/plugins/danielo515/2click2edit/readme + +This plugin adds the ability to edit tiddlers by double clicking on its body. +Just try to edit any tiddler shown here by double clicking on it. + +This can be considered a fast solution. It is only to fill the gap until TiddlyWiki adds support +for it officially. diff --git a/Wiki-OcttKB/plugins/2click2edit/$__plugins_danielo515_2click2edit_ui_ViewTemplate.tid b/Wiki-OcttKB/plugins/2click2edit/$__plugins_danielo515_2click2edit_ui_ViewTemplate.tid new file mode 100644 index 0000000..172f6fb --- /dev/null +++ b/Wiki-OcttKB/plugins/2click2edit/$__plugins_danielo515_2click2edit_ui_ViewTemplate.tid @@ -0,0 +1,5 @@ +tags: $:/tags/ViewTemplate +title: $:/plugins/danielo515/2click2edit/ui/ViewTemplate +type: text/vnd.tiddlywiki + +<$click> \ No newline at end of file diff --git a/Wiki-OcttKB/plugins/2click2edit/plugin.info b/Wiki-OcttKB/plugins/2click2edit/plugin.info new file mode 100644 index 0000000..6e3f0c7 --- /dev/null +++ b/Wiki-OcttKB/plugins/2click2edit/plugin.info @@ -0,0 +1,13 @@ +{ + "bag": "default", + "revision": "0", + "version": "0.1", + "title": "$:/plugins/danielo515/2click2edit", + "source": "https://github.com/danielo515/TW5-2click2edit", + "plugin-type": "plugin", + "list": "readme", + "description": "double click to edit tiddlers", + "dependents": "", + "core-version": ">=5.1.0", + "author": "Danielo Rodriguez" +} \ No newline at end of file diff --git a/Wiki-OcttKB/tiddlers/Normal/_JavaScript.tid b/Wiki-OcttKB/tiddlers/Normal/_JavaScript.tid index 209a81a..e5da792 100644 --- a/Wiki-OcttKB/tiddlers/Normal/_JavaScript.tid +++ b/Wiki-OcttKB/tiddlers/Normal/_JavaScript.tid @@ -1,8 +1,8 @@ created: 20221110145611678 creator: Octt -modified: 20231029001426443 +modified: 20231103214720248 modifier: Octt -tags: Development Internet $:/i18n:en +tags: Development $:/i18n:en Web title: JavaScript ''JavaScript'', or "JS", is an high-level programming language. It constitutes a core technology of the Web, sitting optionally alongside HTML and CSS. In recent years, it has gotten more and more popular even for desktop app and backend development. @@ -21,6 +21,7 @@ title: JavaScript * [["Illegal invocation" errors in JavaScript|https://mtsknn.fi/blog/illegal-invocations-in-js/]] --- //The error is thrown when calling a function whose `this` keyword isn't referring to the object where it originally did (when the context of the function is lost)// * [[Does JavaScript have a method like "range()" to generate a range within the supplied bounds?|https://stackoverflow.com/questions/3895478/does-javascript-have-a-method-like-range-to-generate-a-range-within-the-supp]] --- `[...Array(5).keys()]` * [[Array.prototype.splice()|https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice]] --- //changes the contents of an array by removing or replacing existing elements and/or adding new elements in place// +* [[Listen for triple clicks in JavaScript|https://stackoverflow.com/questions/6480060/how-do-i-listen-for-triple-clicks-in-javascript#6480113]] !!! ''Tools'' diff --git a/Wiki-OcttKB/tiddlers/Normal/_New.tid b/Wiki-OcttKB/tiddlers/Normal/_New.tid new file mode 100644 index 0000000..7218324 --- /dev/null +++ b/Wiki-OcttKB/tiddlers/Normal/_New.tid @@ -0,0 +1,10 @@ +created: 20231103211923238 +creator: Octt +modified: 20231103212152136 +modifier: Octt +tags: +title: New + +<<^wikipediaframe Compiler>> + +* <> diff --git a/Wiki-OcttKB/tiddlers/Normal/_Nintendo DS.tid b/Wiki-OcttKB/tiddlers/Normal/_Nintendo DS.tid index d7aaf41..74e59f8 100644 --- a/Wiki-OcttKB/tiddlers/Normal/_Nintendo DS.tid +++ b/Wiki-OcttKB/tiddlers/Normal/_Nintendo DS.tid @@ -1,6 +1,6 @@ created: 20220923110724649 creator: Octt -modified: 20231102105034497 +modified: 20231103220933272 modifier: Octt tags: Gaming Nintendo NDS Console $:/i18n:en Handheld title: Nintendo DS @@ -15,10 +15,14 @@ title: Nintendo DS ...WIP -* DeSmuMe -** * https://github.com/44670/desmume-wasm +* [[DeSmuMe|https://desmume.org/]] --- for some uses, still the most accurate and flexible NDS emulator, with better x86 support (but poor ARM performance) --- <<[# Git"https://github.com/TASEmulators/desmume">> +** https://github.com/44670/desmume-wasm * [[NooDS|https://github.com/Hydr8gon/NooDS]] --- //A (hopefully!) speedy DS emulator.// +!!! Tools + +* [[dlditool|https://github.com/devkitPro/dstools/tree/master/src/dlditool]] --- //Dynamically Linked Disk Interface patch tool// for NDS homebrew ROMs + !!! Development * (WIP) [[NDS-Homebrew-Development|https://github.com/jdriselvato/NDS-Homebrew-Development]] --- //research for developing on the Nintendo DS// diff --git a/Wiki-OcttKB/tiddlers/Normal/_Windows.tid b/Wiki-OcttKB/tiddlers/Normal/_Windows.tid index fab9a3a..42aaf96 100644 --- a/Wiki-OcttKB/tiddlers/Normal/_Windows.tid +++ b/Wiki-OcttKB/tiddlers/Normal/_Windows.tid @@ -1,6 +1,6 @@ created: 20230207213320932 creator: Octt -modified: 20231102235121958 +modified: 20231103212334824 modifier: Octt tags: Microsoft Proprietary OS title: Windows @@ -39,3 +39,4 @@ title: Windows ** [[TweakUIX|https://www.builtbybel.com/apps/tweak-uix]] --- //Tweak UI Replica// --- [[[Git|https://github.com/builtbybel/TweakUIX]]] * [[Wallpaper Engine|https://wallpaperengine.io/]] --- //Use stunning live wallpapers on your Windows desktop// --- [[[Steampowered|https://store.steampowered.com/app/431960/Wallpaper_Engine/]]] * [[Winaero Tweaker|https://winaerotweaker.com/]] --- //Tweaking normally inaccessible UI features on modern Windows// +* [[Windows Terminal|https://github.com/microsoft/terminal]] --- //The new Windows Terminal and the original Windows console host, all in the same place!// diff --git a/Wiki-OcttKB/tiddlers/System/OcttKB/Config/_LargeSidebar.ui.tid b/Wiki-OcttKB/tiddlers/System/OcttKB/Config/_LargeSidebar.ui.tid index 68da87b..2bd352a 100644 --- a/Wiki-OcttKB/tiddlers/System/OcttKB/Config/_LargeSidebar.ui.tid +++ b/Wiki-OcttKB/tiddlers/System/OcttKB/Config/_LargeSidebar.ui.tid @@ -1,7 +1,7 @@ Enabled: 0 created: 20230208220901786 creator: Octt -modified: 20230920154423649 +modified: 20231103214558443 modifier: Octt tags: $:/GlobalOption title: $:/OcttKB/Config/LargeSidebar.ui diff --git a/Wiki-OcttKB/tiddlers/System/OcttKB/Config/_TripleClickEdit.tid b/Wiki-OcttKB/tiddlers/System/OcttKB/Config/_TripleClickEdit.tid new file mode 100644 index 0000000..bfb5c49 --- /dev/null +++ b/Wiki-OcttKB/tiddlers/System/OcttKB/Config/_TripleClickEdit.tid @@ -0,0 +1,15 @@ +Enabled: 0 +created: 20231103212710757 +creator: Octt +modified: 20231103220127382 +modifier: Octt +tags: $:/GlobalOption +title: $:/OcttKB/Config/TripleClickEdit + +<$checkbox + field="Enabled" + checked="1" + unchecked="0" +> + Triple-Click to Edit + \ No newline at end of file diff --git a/Wiki-OcttKB/tiddlers/System/Styles/View/_9-99-Hacks.tid b/Wiki-OcttKB/tiddlers/System/Styles/View/_9-99-Hacks.tid index 4910ea6..5b82924 100644 --- a/Wiki-OcttKB/tiddlers/System/Styles/View/_9-99-Hacks.tid +++ b/Wiki-OcttKB/tiddlers/System/Styles/View/_9-99-Hacks.tid @@ -1,6 +1,6 @@ created: 20230124112022156 creator: Octt -modified: 20230429202157475 +modified: 20231103220122034 modifier: Octt tags: $:/tags/ViewTemplate title: $:/Styles/View/9-99-Hacks @@ -32,3 +32,7 @@ if ('$(Enabled)$' == 1) { <$set name=Enabled value={{$:/OcttKB/Config/AiLinks.ui!!Enabled}}> <> + +<$list filter="[{$:/OcttKB/Config/TripleClickEdit!!Enabled}compare:number:eq[1]]"> +<$tripleclickedit/> + diff --git a/Wiki-OcttKB/tiddlers/System/_HistoryList.json.meta b/Wiki-OcttKB/tiddlers/System/_HistoryList.json.meta index dedaa29..d5b44b0 100644 --- a/Wiki-OcttKB/tiddlers/System/_HistoryList.json.meta +++ b/Wiki-OcttKB/tiddlers/System/_HistoryList.json.meta @@ -1,5 +1,5 @@ -created: 20231103002257153 +created: 20231103221004887 current-tiddler: GettingStarted -modified: 20231103002257153 +modified: 20231103221004887 title: $:/HistoryList type: application/json \ No newline at end of file diff --git a/Wiki-OcttKB/tiddlers/System/_Import.tid b/Wiki-OcttKB/tiddlers/System/_Import.tid index db737d7..c5d86e9 100644 --- a/Wiki-OcttKB/tiddlers/System/_Import.tid +++ b/Wiki-OcttKB/tiddlers/System/_Import.tid @@ -3,4 +3,4 @@ title: $:/Import The following tiddlers were imported: -# [[$:/plugins/btheado/BrowserStorage]] \ No newline at end of file +# [[$:/plugins/danielo515/2click2edit]] \ No newline at end of file diff --git a/Wiki-OcttKB/tiddlers/System/_StoryList.tid b/Wiki-OcttKB/tiddlers/System/_StoryList.tid index ae5b32a..321c36c 100644 --- a/Wiki-OcttKB/tiddlers/System/_StoryList.tid +++ b/Wiki-OcttKB/tiddlers/System/_StoryList.tid @@ -1,6 +1,6 @@ -created: 20231102230159148 +created: 20231103210837078 creator: Octt list: -modified: 20231102231240743 +modified: 20231103215300411 modifier: Octt title: $:/StoryList \ No newline at end of file diff --git a/Wiki-OcttKB/tiddlers/System/state/_showeditpreview.tid b/Wiki-OcttKB/tiddlers/System/state/_showeditpreview.tid index 2366629..acbabb5 100644 --- a/Wiki-OcttKB/tiddlers/System/state/_showeditpreview.tid +++ b/Wiki-OcttKB/tiddlers/System/state/_showeditpreview.tid @@ -1,7 +1,7 @@ created: 20220920140732083 creator: Octt -modified: 20231102223258782 +modified: 20231103214416538 modifier: Octt title: $:/state/showeditpreview -yes \ No newline at end of file +no \ No newline at end of file diff --git a/Wiki-OcttKB/tiddlers/System/state/_tab-1749438307.tid b/Wiki-OcttKB/tiddlers/System/state/_tab-1749438307.tid index 150a178..1f692d3 100644 --- a/Wiki-OcttKB/tiddlers/System/state/_tab-1749438307.tid +++ b/Wiki-OcttKB/tiddlers/System/state/_tab-1749438307.tid @@ -1,6 +1,6 @@ created: 20220920090405977 creator: Octt -modified: 20231029225255203 +modified: 20231029235240359 modifier: Octt title: $:/state/tab-1749438307 diff --git a/Wiki-OcttKB/tiddlers/System/state/plugin-info--565893350-$/plugins/danielo515/_2click2edit---843390625.tid b/Wiki-OcttKB/tiddlers/System/state/plugin-info--565893350-$/plugins/danielo515/_2click2edit---843390625.tid new file mode 100644 index 0000000..e76d8a2 --- /dev/null +++ b/Wiki-OcttKB/tiddlers/System/state/plugin-info--565893350-$/plugins/danielo515/_2click2edit---843390625.tid @@ -0,0 +1,7 @@ +created: 20231103214254057 +creator: Octt +modified: 20231103214304154 +modifier: Octt +title: $:/state/plugin-info--565893350-$:/plugins/danielo515/2click2edit---843390625 + +readme \ No newline at end of file diff --git a/Wiki-OcttKB/tiddlers/System/state/plugin-info--565893350-$/plugins/danielo515/_2click2edit.tid b/Wiki-OcttKB/tiddlers/System/state/plugin-info--565893350-$/plugins/danielo515/_2click2edit.tid new file mode 100644 index 0000000..ba37128 --- /dev/null +++ b/Wiki-OcttKB/tiddlers/System/state/plugin-info--565893350-$/plugins/danielo515/_2click2edit.tid @@ -0,0 +1,7 @@ +created: 20231103214306224 +creator: Octt +modified: 20231103214306224 +modifier: Octt +title: $:/state/plugin-info--565893350-$:/plugins/danielo515/2click2edit + +no \ No newline at end of file diff --git a/Wiki-OcttKB/tiddlers/System/state/tab/_sidebar--595412856.tid b/Wiki-OcttKB/tiddlers/System/state/tab/_sidebar--595412856.tid index 92a54d8..e7a23f9 100644 --- a/Wiki-OcttKB/tiddlers/System/state/tab/_sidebar--595412856.tid +++ b/Wiki-OcttKB/tiddlers/System/state/tab/_sidebar--595412856.tid @@ -1,6 +1,6 @@ created: 20220920092307479 creator: Octt -modified: 20231102232218808 +modified: 20231103220155941 modifier: Octt title: $:/state/tab/sidebar--595412856 diff --git a/Wiki-OcttKB/tiddlers/System/state/tree/$/OcttKB/Config/_.tid b/Wiki-OcttKB/tiddlers/System/state/tree/$/OcttKB/Config/_.tid index 06b6890..3970b0f 100644 --- a/Wiki-OcttKB/tiddlers/System/state/tree/$/OcttKB/Config/_.tid +++ b/Wiki-OcttKB/tiddlers/System/state/tree/$/OcttKB/Config/_.tid @@ -1,6 +1,6 @@ created: 20230225225512618 creator: Octt -modified: 20230926073332560 +modified: 20231103215247266 modifier: Octt title: $:/state/tree/$:/OcttKB/Config/ diff --git a/Wiki-OcttKB/tiddlers/System/state/tree/$/OcttKB/Tweaks/_.tid b/Wiki-OcttKB/tiddlers/System/state/tree/$/OcttKB/Tweaks/_.tid index 5f8d7a1..5854296 100644 --- a/Wiki-OcttKB/tiddlers/System/state/tree/$/OcttKB/Tweaks/_.tid +++ b/Wiki-OcttKB/tiddlers/System/state/tree/$/OcttKB/Tweaks/_.tid @@ -1,6 +1,6 @@ created: 20230124111843850 creator: Octt -modified: 20230925173820978 +modified: 20231103212511485 modifier: Octt title: $:/state/tree/$:/OcttKB/Tweaks/ diff --git a/Wiki-OcttKB/tiddlers/System/state/tree/$/OcttKB/_.tid b/Wiki-OcttKB/tiddlers/System/state/tree/$/OcttKB/_.tid index 0e75039..d53e129 100644 --- a/Wiki-OcttKB/tiddlers/System/state/tree/$/OcttKB/_.tid +++ b/Wiki-OcttKB/tiddlers/System/state/tree/$/OcttKB/_.tid @@ -1,7 +1,7 @@ created: 20230111084703963 creator: Octt -modified: 20230929095013632 +modified: 20231103215253891 modifier: Octt title: $:/state/tree/$:/OcttKB/ -show \ No newline at end of file +hide \ No newline at end of file diff --git a/Wiki-OcttKB/tiddlers/System/state/tree/$/Styles/Static/_.tid b/Wiki-OcttKB/tiddlers/System/state/tree/$/Styles/Static/_.tid index 2599c3b..05a38af 100644 --- a/Wiki-OcttKB/tiddlers/System/state/tree/$/Styles/Static/_.tid +++ b/Wiki-OcttKB/tiddlers/System/state/tree/$/Styles/Static/_.tid @@ -1,7 +1,7 @@ created: 20230225173056823 creator: Octt -modified: 20230929111305954 +modified: 20231103212518013 modifier: Octt title: $:/state/tree/$:/Styles/Static/ -show \ No newline at end of file +hide \ No newline at end of file diff --git a/Wiki-OcttKB/tiddlers/System/state/tree/$/Styles/View/_.tid b/Wiki-OcttKB/tiddlers/System/state/tree/$/Styles/View/_.tid index da8b654..19647f9 100644 --- a/Wiki-OcttKB/tiddlers/System/state/tree/$/Styles/View/_.tid +++ b/Wiki-OcttKB/tiddlers/System/state/tree/$/Styles/View/_.tid @@ -1,7 +1,7 @@ created: 20230111091048227 creator: Octt -modified: 20230920144637532 +modified: 20231103212513101 modifier: Octt title: $:/state/tree/$:/Styles/View/ -hide \ No newline at end of file +show \ No newline at end of file diff --git a/Wiki-OcttKB/tiddlers/System/state/tree/$/Styles/_.tid b/Wiki-OcttKB/tiddlers/System/state/tree/$/Styles/_.tid index 2e8ae3c..ca7695d 100644 --- a/Wiki-OcttKB/tiddlers/System/state/tree/$/Styles/_.tid +++ b/Wiki-OcttKB/tiddlers/System/state/tree/$/Styles/_.tid @@ -1,6 +1,6 @@ created: 20230108193801573 creator: Octt -modified: 20230929111257602 +modified: 20231103215258587 modifier: Octt title: $:/state/tree/$:/Styles/ diff --git a/Wiki-OcttKB/tiddlers/System/state/tree/$/info/_.tid b/Wiki-OcttKB/tiddlers/System/state/tree/$/info/_.tid index 7751ac8..3a6d50b 100644 --- a/Wiki-OcttKB/tiddlers/System/state/tree/$/info/_.tid +++ b/Wiki-OcttKB/tiddlers/System/state/tree/$/info/_.tid @@ -1,6 +1,6 @@ created: 20230124111928275 creator: Octt -modified: 20231001172559470 +modified: 20231103210825781 modifier: Octt title: $:/state/tree/$:/info/ diff --git a/Wiki-OcttKB/tiddlers/System/state/tree/$/info/browser/_.tid b/Wiki-OcttKB/tiddlers/System/state/tree/$/info/browser/_.tid index 54e1b01..f258f22 100644 --- a/Wiki-OcttKB/tiddlers/System/state/tree/$/info/browser/_.tid +++ b/Wiki-OcttKB/tiddlers/System/state/tree/$/info/browser/_.tid @@ -1,6 +1,6 @@ created: 20230926065212536 creator: Octt -modified: 20230927230104338 +modified: 20231103210825366 modifier: Octt title: $:/state/tree/$:/info/browser/ diff --git a/Wiki-OcttKB/tiddlers/System/state/tree/$/info/browser/storage/_.tid b/Wiki-OcttKB/tiddlers/System/state/tree/$/info/browser/storage/_.tid index c35f8d3..3f7859e 100644 --- a/Wiki-OcttKB/tiddlers/System/state/tree/$/info/browser/storage/_.tid +++ b/Wiki-OcttKB/tiddlers/System/state/tree/$/info/browser/storage/_.tid @@ -1,6 +1,6 @@ created: 20230926065213368 creator: Octt -modified: 20230927230103658 +modified: 20231103210825004 modifier: Octt title: $:/state/tree/$:/info/browser/storage/ diff --git a/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/Gk0Wk/_.tid b/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/Gk0Wk/_.tid index e714f9b..ce32502 100644 --- a/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/Gk0Wk/_.tid +++ b/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/Gk0Wk/_.tid @@ -1,7 +1,7 @@ created: 20230202081911355 creator: Octt -modified: 20230219110809178 +modified: 20231103214237576 modifier: Octt title: $:/state/tree/$:/plugins/Gk0Wk/ -show \ No newline at end of file +hide \ No newline at end of file diff --git a/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/_.tid b/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/_.tid index e8a0efd..b29ba02 100644 --- a/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/_.tid +++ b/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/_.tid @@ -1,6 +1,6 @@ created: 20221108100116751 creator: Octt -modified: 20230219190607331 +modified: 20231103215252579 modifier: Octt title: $:/state/tree/$:/plugins/ diff --git a/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/danielo515/ContextPlugin/_.tid b/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/danielo515/ContextPlugin/_.tid new file mode 100644 index 0000000..3d2ed60 --- /dev/null +++ b/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/danielo515/ContextPlugin/_.tid @@ -0,0 +1,7 @@ +created: 20231103214255008 +creator: Octt +modified: 20231103214256105 +modifier: Octt +title: $:/state/tree/$:/plugins/danielo515/ContextPlugin/ + +hide \ No newline at end of file diff --git a/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/danielo515/_.tid b/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/danielo515/_.tid new file mode 100644 index 0000000..b5c400a --- /dev/null +++ b/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/danielo515/_.tid @@ -0,0 +1,7 @@ +created: 20231103214243736 +creator: Octt +modified: 20231103214244792 +modifier: Octt +title: $:/state/tree/$:/plugins/danielo515/ + +show \ No newline at end of file diff --git a/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/felixhayashi/_.tid b/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/felixhayashi/_.tid index fe3beb1..38b7e34 100644 --- a/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/felixhayashi/_.tid +++ b/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/felixhayashi/_.tid @@ -1,6 +1,6 @@ created: 20230127160143605 creator: Octt -modified: 20230127160201358 +modified: 20231103214243200 modifier: Octt title: $:/state/tree/$:/plugins/felixhayashi/ diff --git a/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/flibbles/_.tid b/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/flibbles/_.tid index 541fffa..36140d4 100644 --- a/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/flibbles/_.tid +++ b/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/flibbles/_.tid @@ -1,6 +1,6 @@ created: 20230127160136838 creator: Octt -modified: 20230127160143214 +modified: 20231103214242193 modifier: Octt title: $:/state/tree/$:/plugins/flibbles/ diff --git a/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/kookma/_.tid b/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/kookma/_.tid index 4964435..4adafe5 100644 --- a/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/kookma/_.tid +++ b/Wiki-OcttKB/tiddlers/System/state/tree/$/plugins/kookma/_.tid @@ -1,7 +1,7 @@ created: 20230127160127494 creator: Octt -modified: 20230219110820284 +modified: 20231103214239520 modifier: Octt title: $:/state/tree/$:/plugins/kookma/ -show \ No newline at end of file +hide \ No newline at end of file diff --git a/Wiki-OcttKB/tiddlers/System/state/tree/$/status/_.tid b/Wiki-OcttKB/tiddlers/System/state/tree/$/status/_.tid index 8b9c04f..77d6c10 100644 --- a/Wiki-OcttKB/tiddlers/System/state/tree/$/status/_.tid +++ b/Wiki-OcttKB/tiddlers/System/state/tree/$/status/_.tid @@ -1,6 +1,6 @@ created: 20230111193642716 creator: Octt -modified: 20230219190611388 +modified: 20231103214233352 modifier: Octt title: $:/state/tree/$:/status/ diff --git a/Wiki-OcttKB/tiddlers/System/status/_RequireReloadDueToPluginChange.tid b/Wiki-OcttKB/tiddlers/System/status/_RequireReloadDueToPluginChange.tid index 6df5e60..9af7b08 100644 --- a/Wiki-OcttKB/tiddlers/System/status/_RequireReloadDueToPluginChange.tid +++ b/Wiki-OcttKB/tiddlers/System/status/_RequireReloadDueToPluginChange.tid @@ -1,3 +1,3 @@ title: $:/status/RequireReloadDueToPluginChange -no \ No newline at end of file +yes \ No newline at end of file