Skip to content

Commit

Permalink
chore: upgrade plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
linonetwo committed Sep 5, 2024
1 parent 72bf9d1 commit 7acdec2
Show file tree
Hide file tree
Showing 20 changed files with 72 additions and 40 deletions.
2 changes: 1 addition & 1 deletion tiddlers/TCTSystem/plugins/Gk0Wk/CPL-Repo.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions tiddlers/TCTSystem/plugins/Gk0Wk/CPL-Repo.json.meta
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
author: Gk0Wk
description: Essential and powerful plugin manager and library
list: readme
list: readme tree
name: CPL Repo
plugin-type: plugin
title: $:/plugins/Gk0Wk/CPL-Repo
type: application/json
version: 2023.12.9
version: 2024.5.22
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
created: 20240327061730309
created: 20240905112134056
list-before: $:/core/ui/ViewTemplate/title
modified: 20240327061730309
modified: 20240905112134056
overwrite: yes
tags: $:/tags/ViewTemplate
title: $:/plugins/Gk0Wk/notionpage-covericon/body
Expand Down
4 changes: 2 additions & 2 deletions tiddlers/TCTSystem/plugins/flibbles/relink.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"module-type": "relinkfilteroperator"
},
"$:/plugins/flibbles/relink/js/filteroperators/wouldchange.js": {
"text": "/*\\\nmodule-type: relinkfilteroperator\n\nwouldchange: Generator.\n\nGiven each input title, it returns all the tiddlers that would be changed if the currentTiddler were to be renamed to the operand.\n\nimpossible: filters all source titles for ones that encounter errors on failure.\n\nTHESE ARE INTERNAL FILTER OPERATOR AND ARE NOT INTENDED TO BE USED BY USERS.\n\n\\*/\n\nvar language = require(\"$:/plugins/flibbles/relink/js/language.js\");\nvar utils = require(\"$:/plugins/flibbles/relink/js/utils.js\");\n\nexports.wouldchange = function(source,operator,options) {\n\tvar from = options.widget && options.widget.getVariable(\"currentTiddler\"),\n\t\tto = operator.operand,\n\t\tindexer = utils.getIndexer(options.wiki);\n\tif (from !== to) {\n\t\tvar records = indexer.relinkLookup(from, to, options);\n\t\treturn Object.keys(records);\n\t} else {\n\t\treturn [];\n\t}\n};\n\nexports.impossible = function(source,operator,options) {\n\tvar from = options.widget && options.widget.getVariable(\"currentTiddler\"),\n\t\tto = operator.operand,\n\t\tresults = [];\n\tif (from !== to) {\n\t\tvar indexer = utils.getIndexer(options.wiki),\n\t\t\trecords = indexer.relinkLookup(from, to, options);\n\t\tsource(function(tiddler, title) {\n\t\t\tvar fields = records[title];\n\t\t\tif (fields) {\n\t\t\t\tfor (var field in fields) {\n\t\t\t\t\tif (fields[field].impossible) {\n\t\t\t\t\t\tresults.push(title);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n",
"text": "/*\\\nmodule-type: relinkfilteroperator\n\nwouldchange: Generator.\n\nGiven each input title, it returns all the tiddlers that would be changed if the currentTiddler were to be renamed to the operand.\n\nimpossible: filters all source titles for ones that encounter errors on failure.\n\nTHESE ARE INTERNAL FILTER OPERATOR AND ARE NOT INTENDED TO BE USED BY USERS.\n\n\\*/\n\nvar language = require(\"$:/plugins/flibbles/relink/js/language.js\");\nvar utils = require(\"$:/plugins/flibbles/relink/js/utils.js\");\n\nexports.wouldchange = function(source,operator,options) {\n\tvar from = options.widget && options.widget.getVariable(\"currentTiddler\"),\n\t\tto = operator.operand,\n\t\tindexer = utils.getIndexer(options.wiki);\n\tif (from !== to) {\n\t\tvar records = indexer.relinkLookup(from, to, options);\n\t\treturn Object.keys(records);\n\t} else {\n\t\treturn [];\n\t}\n};\n\nexports.impossible = function(source,operator,options) {\n\tvar from = options.widget && options.widget.getVariable(\"currentTiddler\"),\n\t\tto = operator.operand,\n\t\tresults = [];\n\tif (to && from !== to) {\n\t\tvar indexer = utils.getIndexer(options.wiki),\n\t\t\trecords = indexer.relinkLookup(from, to, options);\n\t\tsource(function(tiddler, title) {\n\t\t\tvar fields = records[title];\n\t\t\tif (fields) {\n\t\t\t\tfor (var field in fields) {\n\t\t\t\t\tif (fields[field].impossible) {\n\t\t\t\t\t\tresults.push(title);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\treturn results;\n};\n",
"module-type": "relinkfilteroperator",
"title": "$:/plugins/flibbles/relink/js/filteroperators/wouldchange.js",
"type": "application/javascript"
Expand Down Expand Up @@ -296,7 +296,7 @@
"type": "application/javascript"
},
"$:/plugins/flibbles/relink/js/relinkoperations/text/wikitext/prettylink.js": {
"text": "/*\\\nmodule-type: relinkwikitextrule\n\nHandles replacement in wiki text inline rules, like,\n\n[[Introduction]]\n\n[[link description|TiddlerTitle]]\n\n\\*/\n\nvar utils = require(\"./utils.js\");\n\nexports.name = \"prettylink\";\n\nexports.report = function(text, callback, options) {\n\tvar text = this.match[1],\n\t\tlink = this.match[2] || text;\n\tif (!$tw.utils.isLinkExternal(link)) {\n\t\tcallback(link, '[[' + text + ']]');\n\t}\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n};\n\nexports.relink = function(text, fromTitle, toTitle, options) {\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\tvar caption, m = this.match;\n\tif (m[2] === fromTitle) {\n\t\t// format is [[caption|MyTiddler]]\n\t\tcaption = m[1];\n\t} else if (m[2] !== undefined || m[1] !== fromTitle) {\n\t\t// format is [[MyTiddler]], and it doesn't match\n\t\treturn undefined;\n\t}\n\tvar entry = { output: utils.makePrettylink(this.parser, toTitle, caption) };\n\tif (entry.output === undefined) {\n\t\tentry.impossible = true;\n\t}\n\treturn entry;\n};\n",
"text": "/*\\\nmodule-type: relinkwikitextrule\n\nHandles replacement in wiki text inline rules, like,\n\n[[Introduction]]\n\n[[link description|TiddlerTitle]]\n\n\\*/\n\nvar utils = require(\"./utils.js\");\nvar relinkUtils = require('$:/plugins/flibbles/relink/js/utils.js');\n\nexports.name = \"prettylink\";\n\nexports.report = function(text, callback, options) {\n\tvar text = this.match[1],\n\t\tlink = this.match[2] || text;\n\tif (!$tw.utils.isLinkExternal(link)) {\n\t\tvar type = relinkUtils.getType('title');\n\t\ttype.report(link, function(title) {\n\t\t\tcallback(title, '[[' + text + ']]');\n\t\t}, options);\n\t}\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n};\n\nexports.relink = function(text, fromTitle, toTitle, options) {\n\tvar type = relinkUtils.getType('title'),\n\t\tcaption = this.match[1],\n\t\tlink = this.match[2] || caption,\n\t\tentry = type.relink(link, fromTitle, toTitle, options);\n\tif (entry && !entry.impossible) {\n\t\tentry.output = utils.makePrettylink(this.parser, entry.output, this.match[2] && caption);\n\t\tif (entry.output === undefined) {\n\t\t\tentry.impossible = true;\n\t\t}\n\t}\n\tthis.parser.pos = this.matchRegExp.lastIndex;\n\treturn entry;\n};\n",
"module-type": "relinkwikitextrule",
"title": "$:/plugins/flibbles/relink/js/relinkoperations/text/wikitext/prettylink.js",
"type": "application/javascript"
Expand Down
2 changes: 1 addition & 1 deletion tiddlers/TCTSystem/plugins/flibbles/relink.json.meta
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ plugin-type: plugin
source: https://github.com/flibbles/tw5-relink
title: $:/plugins/flibbles/relink
type: application/json
version: 2.4.2
version: 2.4.3
2 changes: 1 addition & 1 deletion tiddlers/TCTSystem/plugins/kookma/commander.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tiddlers/TCTSystem/plugins/kookma/commander.json.meta
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ plugin-type: plugin
source: https://github.com/kookma/TW-Commander
title: $:/plugins/kookma/commander
type: application/json
version: 2.1.7
version: 2.1.8
2 changes: 1 addition & 1 deletion tiddlers/TCTSystem/plugins/kookma/shiraz.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions tiddlers/TCTSystem/plugins/kookma/shiraz.json.meta
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
author: Mohammad Rahmani
core-version: >=5.2.2
core-version: >=5.2.7
dependents:
description: extended markups, styles, images, tables, and macros
list: readme license history
name: Shiraz
plugin-type: plugin
source: https://github.com/kookma/TW-Shiraz
stability: STABILITY_2_STABLE
title: $:/plugins/kookma/shiraz
type: application/json
version: 2.9.0
version: 2.9.7
2 changes: 1 addition & 1 deletion tiddlers/TCTSystem/plugins/kookma/tamasha.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tiddlers/TCTSystem/plugins/kookma/tamasha.json.meta
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ plugin-type: plugin
source: https://github.com/kookma/TW-Tamasha
title: $:/plugins/kookma/tamasha
type: application/json
version: 0.6.0
version: 0.6.1
1 change: 1 addition & 0 deletions tiddlers/TCTSystem/plugins/kookma/toc.json

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions tiddlers/TCTSystem/plugins/kookma/toc.json.meta
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
author: Mohammad Rahmani
core-version: >=5.2.5
dependents:
description: Table of contents and navigation builder
list: readme license history
name: Toc
plugin-type: plugin
source: https://github.com/kookma/TOC
stability: STABILITY_2_STABLE
title: $:/plugins/kookma/toc
type: application/json
version: 1.6.2
2 changes: 1 addition & 1 deletion tiddlers/TCTSystem/plugins/kookma/utility.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions tiddlers/TCTSystem/plugins/kookma/utility.json.meta
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
author: Mohammad Rahmani
core-version: >=5.2.5
core-version: >=5.3.5
dependents:
description: Small tools for authors and developers
list: readme license history
name: Utility
plugin-type: plugin
source: https://github.com/kookma/TW-Utility
stability: STABILITY_2_STABLE
title: $:/plugins/kookma/utility
type: application/json
version: 2.7.0
version: 3.0.0
16 changes: 16 additions & 0 deletions tiddlers/TCTSystem/plugins/linonetwo/autocomplete.json

Large diffs are not rendered by default.

15 changes: 8 additions & 7 deletions tiddlers/TCTSystem/plugins/linonetwo/commandpalette.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions tiddlers/TCTSystem/plugins/linonetwo/itonnote.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions tiddlers/TCTSystem/plugins/linonetwo/opened-tiddlers-bar.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions tiddlers/TCTSystem/themes/linonetwo/itonnote.json

Large diffs are not rendered by default.

0 comments on commit 7acdec2

Please sign in to comment.