├── .github └── workflows │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README_zh_CN.md ├── asset └── action.png ├── icon.png ├── package.json ├── plugin.json ├── pnpm-lock.yaml ├── preview.png ├── public └── i18n │ ├── en_US.json │ ├── zh_CN.json │ └── zh_CN.yaml ├── scripts ├── .gitignore ├── make_dev_link.js └── make_install.js ├── src ├── api.ts ├── device_specific_enable_helpers.ts ├── devices_oprator.ts ├── dock-template.ts ├── hello.svelte ├── index.scss ├── index.ts ├── libs │ ├── b3-typography.svelte │ ├── const.ts │ ├── dialog.ts │ ├── index.d.ts │ ├── item-input.svelte │ ├── item-wrap.svelte │ ├── setting-panel.svelte │ └── setting-utils.ts ├── services │ ├── clipboardService.ts │ ├── deviceService.ts │ ├── goeasyService.ts │ └── notificationService.ts ├── setting-example.svelte └── types │ ├── api.d.ts │ └── index.d.ts ├── svelte.config.js ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yaml-plugin.js /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/README.md -------------------------------------------------------------------------------- /README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/README_zh_CN.md -------------------------------------------------------------------------------- /asset/action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/asset/action.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/package.json -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/plugin.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/preview.png -------------------------------------------------------------------------------- /public/i18n/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/public/i18n/en_US.json -------------------------------------------------------------------------------- /public/i18n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/public/i18n/zh_CN.json -------------------------------------------------------------------------------- /public/i18n/zh_CN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/public/i18n/zh_CN.yaml -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | build 3 | dist 4 | *.exe 5 | *.spec 6 | -------------------------------------------------------------------------------- /scripts/make_dev_link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/scripts/make_dev_link.js -------------------------------------------------------------------------------- /scripts/make_install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/scripts/make_install.js -------------------------------------------------------------------------------- /src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/api.ts -------------------------------------------------------------------------------- /src/device_specific_enable_helpers.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/devices_oprator.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dock-template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/dock-template.ts -------------------------------------------------------------------------------- /src/hello.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/hello.svelte -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/libs/b3-typography.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/libs/b3-typography.svelte -------------------------------------------------------------------------------- /src/libs/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/libs/const.ts -------------------------------------------------------------------------------- /src/libs/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/libs/dialog.ts -------------------------------------------------------------------------------- /src/libs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/libs/index.d.ts -------------------------------------------------------------------------------- /src/libs/item-input.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/libs/item-input.svelte -------------------------------------------------------------------------------- /src/libs/item-wrap.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/libs/item-wrap.svelte -------------------------------------------------------------------------------- /src/libs/setting-panel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/libs/setting-panel.svelte -------------------------------------------------------------------------------- /src/libs/setting-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/libs/setting-utils.ts -------------------------------------------------------------------------------- /src/services/clipboardService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/services/clipboardService.ts -------------------------------------------------------------------------------- /src/services/deviceService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/services/deviceService.ts -------------------------------------------------------------------------------- /src/services/goeasyService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/services/goeasyService.ts -------------------------------------------------------------------------------- /src/services/notificationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/services/notificationService.ts -------------------------------------------------------------------------------- /src/setting-example.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/setting-example.svelte -------------------------------------------------------------------------------- /src/types/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/types/api.d.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yaml-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxkmm/siyuan_online_devices_mgr/HEAD/yaml-plugin.js --------------------------------------------------------------------------------