├── .eslintignore ├── .eslintrc.cjs ├── .github └── workflows │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README_zh_CN.md ├── asset └── action.png ├── icon.png ├── package.json ├── plugin.json ├── preview.png ├── public └── i18n │ ├── en_US.json │ └── zh_CN.json ├── scripts ├── .gitignore └── make_dev_link.js ├── src ├── api.ts ├── css_injection.ts ├── hello.svelte ├── helpers.ts ├── index.scss ├── index.ts ├── libs │ ├── b3-typography.svelte │ ├── index.d.ts │ ├── setting-item.svelte │ ├── setting-panel.svelte │ └── setting-utils.ts ├── setting-example.svelte └── types │ ├── api.d.ts │ └── index.d.ts ├── svelte.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/README.md -------------------------------------------------------------------------------- /README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/README_zh_CN.md -------------------------------------------------------------------------------- /asset/action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/asset/action.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/package.json -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/plugin.json -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/preview.png -------------------------------------------------------------------------------- /public/i18n/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/public/i18n/en_US.json -------------------------------------------------------------------------------- /public/i18n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/public/i18n/zh_CN.json -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | build 3 | dist 4 | *.exe 5 | *.spec 6 | -------------------------------------------------------------------------------- /scripts/make_dev_link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/scripts/make_dev_link.js -------------------------------------------------------------------------------- /src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/src/api.ts -------------------------------------------------------------------------------- /src/css_injection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/src/css_injection.ts -------------------------------------------------------------------------------- /src/hello.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/src/hello.svelte -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/libs/b3-typography.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/src/libs/b3-typography.svelte -------------------------------------------------------------------------------- /src/libs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/src/libs/index.d.ts -------------------------------------------------------------------------------- /src/libs/setting-item.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/src/libs/setting-item.svelte -------------------------------------------------------------------------------- /src/libs/setting-panel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/src/libs/setting-panel.svelte -------------------------------------------------------------------------------- /src/libs/setting-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/src/libs/setting-utils.ts -------------------------------------------------------------------------------- /src/setting-example.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/src/setting-example.svelte -------------------------------------------------------------------------------- /src/types/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/src/types/api.d.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_main_window_modification/HEAD/vite.config.ts --------------------------------------------------------------------------------