Skip to content

Commit

Permalink
Updated with Git-Sync
Browse files Browse the repository at this point in the history
  • Loading branch information
jc006 authored and jc006 committed Aug 9, 2022
1 parent 8784d4d commit aba4c74
Show file tree
Hide file tree
Showing 39 changed files with 114 additions and 57 deletions.
8 changes: 8 additions & 0 deletions tiddlers/$__palette.tid
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
created: 20220809005000163
creator: TidGiUser
modified: 20220809005003635
modifier: TidGiUser
title: $:/palette
type: text/vnd.tiddlywiki

$:/palettes/Vanilla
2 changes: 1 addition & 1 deletion tiddlers/$__plugins_flibbles_relink-titles.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tiddlers/$__plugins_flibbles_relink-titles.json.meta
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ plugin-type: plugin
source: https://github.com/flibbles/tw5-relink
title: $:/plugins/flibbles/relink-titles
type: application/json
version: 2.1.2
version: 2.1.3
2 changes: 1 addition & 1 deletion tiddlers/$__plugins_flibbles_relink.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tiddlers/$__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.1.2
version: 2.1.3
2 changes: 1 addition & 1 deletion tiddlers/$__plugins_kookma_refnotes.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tiddlers/$__plugins_kookma_refnotes.json.meta
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ plugin-type: plugin
source: https://github.com/kookma/TW-Refnotes
title: $:/plugins/kookma/refnotes
type: application/json
version: 1.7.3
version: 1.8.4
2 changes: 1 addition & 1 deletion tiddlers/$__plugins_kookma_shiraz.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions tiddlers/$__plugins_kookma_shiraz.json.meta
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
author: Mohammad Rahmani
core-version: >=5.2.0
core-version: >=5.2.1
dependents:
description: extended markups, styles, images, tables, and macros
list: readme license history
Expand All @@ -8,4 +8,4 @@ plugin-type: plugin
source: https://github.com/kookma/TW-Shiraz
title: $:/plugins/kookma/shiraz
type: application/json
version: 2.4.6
version: 2.5.1
1 change: 1 addition & 0 deletions tiddlers/$__plugins_kookma_thinkup.json

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions tiddlers/$__plugins_kookma_thinkup.json.meta
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
author: Mohammad Rahmani
core-version: >=5.2.0
dependents: Shiraz
description: Personal knowledge management with Tiddlywiki
list: readme license history
name: Thinkup
plugin-type: plugin
source: https://github.com/kookma/TW-Thinkup
title: $:/plugins/kookma/thinkup
type: application/json
version: 0.2.6
1 change: 1 addition & 0 deletions tiddlers/$__plugins_kookma_trashbin.json

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions tiddlers/$__plugins_kookma_trashbin.json.meta
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
author: Mohammad Rahmani
core-version: >= 5.1.22
dependents:
description: A trashbin mechanism for Tiddlywiki
list: readme license history
name: Trashbin
plugin-type: plugin
source: https://github.com/kookma/TW-Trashbin
title: $:/plugins/kookma/trashbin
type: application/json
version: 1.2.3
2 changes: 1 addition & 1 deletion tiddlers/$__plugins_kookma_utility.json

Large diffs are not rendered by default.

6 changes: 2 additions & 4 deletions tiddlers/$__plugins_kookma_utility.json.meta
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
author: Mohammad Rahmani
core-version: >=5.1.24
created: 20211017131654739
core-version: >=5.2.3
dependents:
description: Small tools for authors and developers
list: readme license history
modified: 20211017131654739
name: Utility
plugin-type: plugin
source: https://github.com/kookma/TW-Utility
title: $:/plugins/kookma/utility
type: application/json
version: 2.1.6
version: 2.3.0
2 changes: 1 addition & 1 deletion tiddlers/$__plugins_linonetwo_copy-on-select.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"tiddlers":{"$:/plugins/linonetwo/copy-on-select/copy-on-select.html":{"title":"$:/plugins/linonetwo/copy-on-select/copy-on-select.html","text":"<script type=\"application/javascript\">\n // we won't do copy on select on text editor, otherwise you can't select and override text in the editor or text input\n function checkIfElementIsEditor(element) {\n if (!element || !element.nodeName) return false;\n const isEditableElement = ['INPUT', 'TEXTAREA', 'BUTTON'].includes(element.nodeName);\n if (!isEditableElement) {\n if (!element.className || !element.className.toLowerCase) return false;\n }\n const isTextEditor = element.className.toLowerCase().includes('codemirror');\n\n return isEditableElement || isTextEditor;\n }\n // if we start selection on editor, we prevent the following execution of this script\n let copyOnSelectPreventNextCopy = false;\n document.addEventListener('mousedown', function onMouseDown() {\n const elementsUnderMouse = document.querySelectorAll(':hover');\n\n if (!elementsUnderMouse || Array.from(elementsUnderMouse).some(checkIfElementIsEditor)) {\n copyOnSelectPreventNextCopy = true;\n }\n });\n // Copy on select, copy document selection when mouse button is up\n document.addEventListener('mouseup', function onMouseUp() {\n const elementsUnderMouse = document.querySelectorAll(':hover');\n\n if (\n copyOnSelectPreventNextCopy ||\n !elementsUnderMouse ||\n Array.from(elementsUnderMouse).some(checkIfElementIsEditor)\n ) {\n copyOnSelectPreventNextCopy = false;\n return;\n }\n document.execCommand('copy');\n });\n</script>\n","type":"text/html","created":"20200411065413157","modified":"20200414150804034","creator":"LinOnetwo","tags":"$:/tags/RawMarkup"},"$:/plugins/linonetwo/copy-on-select/readme":{"title":"$:/plugins/linonetwo/copy-on-select/readme","created":"20200414135748497","modified":"20200602062349232","creator":"LinOnetwo","type":"text/vnd.tiddlywiki","text":"!! 动机\n\n我已经习惯了用方便的[[Copy On Select|https://addons.mozilla.org/en-US/firefox/addon/copy-on-select]] Firefox 插件,现在到了 TiddlyWiki 里我经常还是以为选中了就复制了,然后黏贴到别的地方才发现其实并没有复制,很不习惯。\n\n所以我自己重新写了一个适配 TiddlyWiki 的选中即复制脚本。\n\n!! 用法\n\n选中编辑器、按钮等区域以外的任何文本都会直接复制。\n\n这个插件里的条件语句让它在编辑器等特殊区域内不会起作用,以免干扰「全选黏贴覆盖原有内容」等操作。\n"}}}
{"tiddlers":{"$:/plugins/linonetwo/copy-on-select/copy-on-select.html":{"title":"$:/plugins/linonetwo/copy-on-select/copy-on-select.html","text":"<script type=\"application/javascript\">\n // we won't do copy on select on text editor, otherwise you can't select and override text in the editor or text input\n function checkIfElementIsEditor(element) {\n if (!element || !element.nodeName) return false;\n const isEditableElement = ['INPUT', 'TEXTAREA', 'BUTTON'].includes(element.nodeName);\n if (!isEditableElement) {\n if (!element.className || !element.className.toLowerCase) return false;\n }\n const isTextEditor = element.className.toLowerCase().includes('codemirror');\n const isSlateEditor = element.dataset.slateEditor || element.dataset.slateNode || element.dataset.slateLeaf || element.dataset.slateString\n\n return isEditableElement || isTextEditor || isSlateEditor;\n }\n // if we start selection on editor, we prevent the following execution of this script\n let copyOnSelectPreventNextCopy = false;\n document.addEventListener('mousedown', function onMouseDown() {\n const elementsUnderMouse = document.querySelectorAll(':hover');\n\n if (!elementsUnderMouse || Array.from(elementsUnderMouse).some(checkIfElementIsEditor)) {\n copyOnSelectPreventNextCopy = true;\n }\n });\n // Copy on select, copy document selection when mouse button is up\n document.addEventListener('mouseup', function onMouseUp() {\n const elementsUnderMouse = document.querySelectorAll(':hover');\n\n if (\n copyOnSelectPreventNextCopy ||\n !elementsUnderMouse ||\n Array.from(elementsUnderMouse).some(checkIfElementIsEditor)\n ) {\n copyOnSelectPreventNextCopy = false;\n return;\n }\n document.execCommand('copy');\n });\n</script>\n","type":"text/html","created":"20200411065413157","modified":"20200414150804034","creator":"LinOnetwo","tags":"$:/tags/RawMarkup"},"$:/plugins/linonetwo/copy-on-select/readme":{"title":"$:/plugins/linonetwo/copy-on-select/readme","created":"20200414135748497","modified":"20200602062349232","creator":"LinOnetwo","type":"text/vnd.tiddlywiki","text":"!! 动机\n\n我已经习惯了用方便的[[Copy On Select|https://addons.mozilla.org/en-US/firefox/addon/copy-on-select]] Firefox 插件,现在到了 TiddlyWiki 里我经常还是以为选中了就复制了,然后黏贴到别的地方才发现其实并没有复制,很不习惯。\n\n所以我自己重新写了一个适配 TiddlyWiki 的选中即复制脚本。\n\n!! 用法\n\n选中编辑器、按钮等区域以外的任何文本都会直接复制。\n\n这个插件里的条件语句让它在编辑器等特殊区域内不会起作用,以免干扰「全选黏贴覆盖原有内容」等操作。\n"}}}
5 changes: 2 additions & 3 deletions tiddlers/$__plugins_linonetwo_copy-on-select.json.meta
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
author: LinOnetwo
core-version: >=5.1.22
created: 20211017092856750
dependents:
description: Copy what you are selecting inside the wiki into the clipboard
list: readme
modified: 20211017092856750
name: copy-on-select
plugin-type: plugin
title: $:/plugins/linonetwo/copy-on-select
type: application/json
version: 0.0.1
version: 0.0.2
36 changes: 27 additions & 9 deletions tiddlers/$__plugins_linonetwo_flowtiwi-sidebar_state.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"w": 1,
"h": 1,
"x": 1,
"y": 16,
"y": 13,
"i": "$:/core/ui/SideBar/Open",
"moved": false,
"static": false
Expand All @@ -13,7 +13,7 @@
"w": 1,
"h": 1,
"x": 0,
"y": 12,
"y": 9,
"i": "$:/plugins/kookma/favorites/sidebar-tab",
"moved": false,
"static": false
Expand Down Expand Up @@ -49,11 +49,29 @@
"w": 1,
"h": 1,
"x": 0,
"y": 16,
"y": 13,
"i": "$:/plugins/kookma/refnotes/ui/bibtexlibrary",
"moved": false,
"static": false
},
{
"w": 1,
"h": 1,
"x": 0,
"y": 14,
"i": "$:/plugins/kookma/thinkup/ui/sidebar",
"moved": false,
"static": false
},
{
"w": 1,
"h": 1,
"x": 0,
"y": 15,
"i": "$:/plugins/kookma/trashbin/sidebar-tab",
"moved": false,
"static": false
},
{
"w": 2,
"h": 3,
Expand All @@ -67,7 +85,7 @@
"w": 2,
"h": 2,
"x": 0,
"y": 14,
"y": 11,
"i": "$:/plugins/linonetwo/itonnote/Sidebar/Locator Fields",
"moved": false,
"static": false
Expand All @@ -76,17 +94,17 @@
"w": 1,
"h": 2,
"x": 1,
"y": 12,
"y": 9,
"i": "$:/plugins/linonetwo/source-control-management/SideBarSCMTab",
"moved": false,
"static": false
},
{
"w": 2,
"h": 3,
"w": 1,
"h": 1,
"x": 0,
"y": 9,
"i": "$:/core/ui/SideBar/FishingAnalysis",
"y": 16,
"i": "$:/plugins/oflg/fishing-analysis/ui/SideBar/FishingAnalysis",
"moved": false,
"static": false
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
created: 20220508025054677
creator: 林一二
modified: 20220508092143588
modifier: 林一二
modified: 20220809005557934
modifier: TidGiUser
title: $:/plugins/linonetwo/flowtiwi-sidebar/state
type: application/json
2 changes: 1 addition & 1 deletion tiddlers/$__plugins_linonetwo_itonnote.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tiddlers/$__plugins_linonetwo_itonnote.json.meta
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ name: ItonNote
plugin-type: plugin
title: $:/plugins/linonetwo/itonnote
type: application/json
version: 0.4.0
version: 0.4.1
2 changes: 1 addition & 1 deletion tiddlers/$__plugins_linonetwo_service-worker.json

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions tiddlers/$__plugins_linonetwo_service-worker.json.meta
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
author: LinOnetwo
core-version: >=5.1.22
created: 20211017092922557
dependents:
description: Use service worker to cache content, make it works even offline, and can be add to the desktop as an App.
list: readme
modified: 20211017092922557
name: service-worker
plugin-type: plugin
title: $:/plugins/linonetwo/service-worker
type: application/json
version: 0.0.1
version: 0.0.2
2 changes: 1 addition & 1 deletion tiddlers/$__plugins_linonetwo_slate-write.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions tiddlers/$__plugins_linonetwo_slate-write.json.meta
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ author: LinOnetwo
core-version: >=5.1.22
dependents: $:/plugins/linonetwo/tw-react
description: A WYSIWYG editor for TiddlyWiki
list: readme
list: readme develop
name: Slate Write
plugin-type: plugin
title: $:/plugins/linonetwo/slate-write
type: application/json
version: 0.1.12
version: 0.3.0
2 changes: 1 addition & 1 deletion tiddlers/$__plugins_linonetwo_tw-react.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tiddlers/$__plugins_linonetwo_tw-react.json.meta
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ name: ReactJS
plugin-type: plugin
title: $:/plugins/linonetwo/tw-react
type: application/json
version: 0.3.9
version: 0.4.3
2 changes: 1 addition & 1 deletion tiddlers/$__plugins_oflg_fishing-analysis.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions tiddlers/$__plugins_oflg_fishing-analysis.json.meta
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
author: oflg
core-version: >=5.2.2
dependents: $:/plugins/Gk0Wk/echarts
core-version: >=5.2.3
dependents: $:/plugins/oflg/fishing $:/plugins/Gk0Wk/echarts
description: Analysis for Fishing
list: readme license
name: Fishing Analysis
Expand All @@ -9,4 +9,4 @@ plugin-type: plugin
source: https://github.com/oflg/fishing-analysis
title: $:/plugins/oflg/fishing-analysis
type: application/json
version: 0.4.3
version: 0.4.9
2 changes: 1 addition & 1 deletion tiddlers/$__plugins_oflg_fishing-catchfish.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions tiddlers/$__plugins_oflg_fishing-catchfish.json.meta
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
author: oflg
core-version: >=5.2.2
core-version: >=5.2.3
dependents: $:/plugins/oflg/fishing $:/plugins/tiddlywiki/dynaview $:/plugins/tiddlywiki/dynannotate
description: Integrate Incremental Learning into TiddlyWiki
description: Integrate Incremental Reading into TiddlyWiki
list: readme license
name: Fishing Catchfish
parent-plugin: $:/plugins/oflg/fishing
plugin-type: plugin
source: https://github.com/oflg/fishing-catchfish
title: $:/plugins/oflg/fishing-catchfish
type: application/json
version: 0.3.1
version: 0.4.0
Loading

0 comments on commit aba4c74

Please sign in to comment.