@our2ndbrain/cli 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.obsidian/.2ndbrain-manifest.json +8 -0
- package/.obsidian/app.json +6 -0
- package/.obsidian/appearance.json +1 -0
- package/.obsidian/community-plugins.json +4 -0
- package/.obsidian/core-plugins.json +33 -0
- package/.obsidian/graph.json +22 -0
- package/.obsidian/plugins/calendar/data.json +10 -0
- package/.obsidian/plugins/calendar/main.js +4459 -0
- package/.obsidian/plugins/calendar/manifest.json +10 -0
- package/.obsidian/plugins/obsidian-custom-attachment-location/data.json +32 -0
- package/.obsidian/plugins/obsidian-custom-attachment-location/main.js +575 -0
- package/.obsidian/plugins/obsidian-custom-attachment-location/manifest.json +11 -0
- package/.obsidian/plugins/obsidian-custom-attachment-location/styles.css +1 -0
- package/.obsidian/plugins/obsidian-git/data.json +62 -0
- package/.obsidian/plugins/obsidian-git/main.js +426 -0
- package/.obsidian/plugins/obsidian-git/manifest.json +10 -0
- package/.obsidian/plugins/obsidian-git/obsidian_askpass.sh +23 -0
- package/.obsidian/plugins/obsidian-git/styles.css +629 -0
- package/.obsidian/plugins/obsidian-tasks-plugin/main.js +504 -0
- package/.obsidian/plugins/obsidian-tasks-plugin/manifest.json +12 -0
- package/.obsidian/plugins/obsidian-tasks-plugin/styles.css +1 -0
- package/.obsidian/types.json +28 -0
- package/00_Dashboard/01_All_Tasks.md +118 -0
- package/00_Dashboard/09_All_Done.md +42 -0
- package/10_Inbox/Agents/Journal.md +1 -0
- package/99_System/Scripts/init_member.sh +108 -0
- package/99_System/Templates/tpl_daily_note.md +13 -0
- package/99_System/Templates/tpl_member_done.md +32 -0
- package/99_System/Templates/tpl_member_tasks.md +97 -0
- package/AGENTS.md +193 -0
- package/CHANGELOG.md +67 -0
- package/CLAUDE.md +153 -0
- package/LICENSE +201 -0
- package/README.md +636 -0
- package/bin/2ndbrain.js +117 -0
- package/package.json +56 -0
- package/src/commands/completion.js +198 -0
- package/src/commands/init.js +308 -0
- package/src/commands/member.js +123 -0
- package/src/commands/remove.js +88 -0
- package/src/commands/update.js +507 -0
- package/src/index.js +17 -0
- package/src/lib/config.js +112 -0
- package/src/lib/diff.js +222 -0
- package/src/lib/files.js +340 -0
- package/src/lib/obsidian.js +366 -0
- package/src/lib/prompt.js +182 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "obsidian-custom-attachment-location",
|
|
3
|
+
"name": "Custom Attachment Location",
|
|
4
|
+
"version": "9.26.0",
|
|
5
|
+
"minAppVersion": "1.10.6",
|
|
6
|
+
"description": "Customize attachment location with variables(${noteFileName}, ${date:format}, etc) like typora.",
|
|
7
|
+
"author": "RainCat1998",
|
|
8
|
+
"authorUrl": "https://github.com/RainCat1998/",
|
|
9
|
+
"isDesktopOnly": false,
|
|
10
|
+
"fundingUrl": "https://www.buymeacoffee.com/mnaoumov"
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.obsidian-custom-attachment-location.obsidian-dev-utils.code-highlighter-component textarea.tokenized-string-setting-control{height:6em}.obsidian-custom-attachment-location.obsidian-dev-utils.multiple-text-component textarea{height:6em;width:20em}.obsidian-custom-attachment-location.obsidian-dev-utils.code-highlighter-component textarea.custom-tokens-setting-control{height:18em;width:36em}.obsidian-custom-attachment-location.prompt-modal .cancel-button{margin-right:10px}.obsidian-custom-attachment-location.preview-modal .preview-container{overflow:auto}.obsidian-custom-attachment-location.preview-modal .preview-container.image-embed img,.obsidian-custom-attachment-location.preview-modal .preview-container.video-embed video{max-width:100%;max-height:100%;object-fit:contain}.obsidian-custom-attachment-location .highlighted-token{color:var(--text-accent)}.obsidian-custom-attachment-location .default-image-size-dimension-setting-control{margin-left:5px}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"commitMessage": "vault backup: {{date}}",
|
|
3
|
+
"autoCommitMessage": "vault backup: {{date}}",
|
|
4
|
+
"commitMessageScript": "",
|
|
5
|
+
"commitDateFormat": "YYYY-MM-DD HH:mm:ss",
|
|
6
|
+
"autoSaveInterval": 60,
|
|
7
|
+
"autoPushInterval": 0,
|
|
8
|
+
"autoPullInterval": 0,
|
|
9
|
+
"autoPullOnBoot": true,
|
|
10
|
+
"autoCommitOnlyStaged": false,
|
|
11
|
+
"disablePush": false,
|
|
12
|
+
"pullBeforePush": true,
|
|
13
|
+
"disablePopups": false,
|
|
14
|
+
"showErrorNotices": true,
|
|
15
|
+
"disablePopupsForNoChanges": false,
|
|
16
|
+
"listChangedFilesInMessageBody": false,
|
|
17
|
+
"showStatusBar": true,
|
|
18
|
+
"updateSubmodules": false,
|
|
19
|
+
"syncMethod": "merge",
|
|
20
|
+
"customMessageOnAutoBackup": false,
|
|
21
|
+
"autoBackupAfterFileChange": true,
|
|
22
|
+
"treeStructure": false,
|
|
23
|
+
"refreshSourceControl": true,
|
|
24
|
+
"basePath": "",
|
|
25
|
+
"differentIntervalCommitAndPush": false,
|
|
26
|
+
"changedFilesInStatusBar": false,
|
|
27
|
+
"showedMobileNotice": true,
|
|
28
|
+
"refreshSourceControlTimer": 7000,
|
|
29
|
+
"showBranchStatusBar": true,
|
|
30
|
+
"setLastSaveToLastCommit": false,
|
|
31
|
+
"submoduleRecurseCheckout": false,
|
|
32
|
+
"gitDir": "",
|
|
33
|
+
"showFileMenu": true,
|
|
34
|
+
"authorInHistoryView": "hide",
|
|
35
|
+
"dateInHistoryView": false,
|
|
36
|
+
"diffStyle": "split",
|
|
37
|
+
"lineAuthor": {
|
|
38
|
+
"show": false,
|
|
39
|
+
"followMovement": "inactive",
|
|
40
|
+
"authorDisplay": "initials",
|
|
41
|
+
"showCommitHash": false,
|
|
42
|
+
"dateTimeFormatOptions": "date",
|
|
43
|
+
"dateTimeFormatCustomString": "YYYY-MM-DD HH:mm",
|
|
44
|
+
"dateTimeTimezone": "viewer-local",
|
|
45
|
+
"coloringMaxAge": "1y",
|
|
46
|
+
"colorNew": {
|
|
47
|
+
"r": 255,
|
|
48
|
+
"g": 150,
|
|
49
|
+
"b": 150
|
|
50
|
+
},
|
|
51
|
+
"colorOld": {
|
|
52
|
+
"r": 120,
|
|
53
|
+
"g": 160,
|
|
54
|
+
"b": 255
|
|
55
|
+
},
|
|
56
|
+
"textColorCss": "var(--text-muted)",
|
|
57
|
+
"ignoreWhitespace": false,
|
|
58
|
+
"gutterSpacingFallbackLength": 5,
|
|
59
|
+
"lastShownAuthorDisplay": "initials",
|
|
60
|
+
"lastShownDateTimeFormatOptions": "date"
|
|
61
|
+
}
|
|
62
|
+
}
|