├── .editorconfig ├── .eslintrc.js ├── .github ├── actions │ ├── build │ │ └── action.yml │ └── tag │ │ ├── action.yml │ │ ├── index.js │ │ └── package.json └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .prettierrc.yml ├── .yarn └── releases │ └── yarn-3.2.0.cjs ├── .yarnrc.yml ├── automatic1111.ipynb ├── core ├── browser │ ├── api │ │ └── system.tsx │ ├── app │ │ ├── frame.tsx │ │ ├── hooks │ │ │ ├── plugin-loader.tsx │ │ │ └── update-alert.tsx │ │ ├── index.tsx │ │ ├── menu.tsx │ │ └── theme.tsx │ ├── components │ │ ├── error-modal.tsx │ │ └── input-item.tsx │ ├── constants.tsx │ ├── index.html │ ├── index.tsx │ ├── state.tsx │ └── toys │ │ ├── base-toy.tsx │ │ ├── general │ │ ├── components │ │ │ ├── color-mode.tsx │ │ │ ├── configuration.tsx │ │ │ ├── info.tsx │ │ │ ├── plugin-list.tsx │ │ │ └── run-aviutl.tsx │ │ └── index.tsx │ │ └── toy-container.tsx ├── env.d.ts ├── main │ ├── __setup.ts │ ├── development.ts │ ├── index.ts │ ├── ipc │ │ ├── api.ts │ │ └── system.ts │ ├── plugin-loader.ts │ └── updater.ts ├── package.json ├── preload │ └── index.ts ├── scripts │ ├── build.mjs │ └── shims │ │ └── react.js ├── tsconfig.json └── types │ ├── globals.ts │ ├── index.ts │ ├── ipc │ ├── index.ts │ └── system.ts │ ├── plugin.ts │ └── update.ts ├── modules ├── _dev_tools │ ├── bin.js │ ├── package.json │ ├── src │ │ ├── build │ │ │ ├── emit-declaration.ts │ │ │ ├── module.ts │ │ │ └── plugins.ts │ │ ├── index.ts │ │ ├── publish.ts │ │ └── types.ts │ └── tsconfig.json ├── api │ ├── client │ │ ├── index.ts │ │ ├── ipc │ │ │ ├── client.ts │ │ │ └── index.ts │ │ ├── plugin.ts │ │ ├── preload │ │ │ ├── electron.ts │ │ │ └── index.ts │ │ └── toy.ts │ ├── module.config.ts │ ├── package.json │ ├── readme.md │ ├── root │ │ ├── config.ts │ │ ├── index.ts │ │ └── ipc │ │ │ ├── events.ts │ │ │ └── index.ts │ ├── scripts │ │ └── publish.mjs │ ├── server │ │ ├── aviutl-toys.ts │ │ ├── configuration.ts │ │ ├── index.ts │ │ ├── ipc │ │ │ ├── index.ts │ │ │ └── server.ts │ │ └── plugin.ts │ └── tsconfig.json ├── assets │ ├── image │ │ ├── drag-and-drop.png │ │ ├── icon-100x100.png │ │ ├── icon.png │ │ └── icon.svg │ ├── index.js │ └── package.json ├── cli │ ├── cli.js │ ├── module.config.ts │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── cli │ │ │ ├── builder │ │ │ │ ├── index.ts │ │ │ │ └── plugins │ │ │ │ │ └── globals-resolver.ts │ │ │ ├── index.ts │ │ │ └── new │ │ │ │ ├── index.ts │ │ │ │ ├── templates.ts │ │ │ │ └── types.ts │ │ └── common │ │ │ └── index.ts │ └── tsconfig.json └── config │ ├── base.tsconfig.json │ ├── browser.tsconfig.json │ ├── package.json │ └── properties.json ├── package.json ├── plugin-templates └── basic │ ├── aut.config.ts │ ├── client │ ├── futures │ │ └── index.tsx │ └── index.tsx │ ├── package.json │ ├── server │ └── index.ts │ ├── tsconfig.browser.json │ └── tsconfig.json ├── plugins ├── common │ ├── aut.config.ts │ ├── client │ │ ├── context.tsx │ │ ├── index.tsx │ │ └── toys │ │ │ ├── exos │ │ │ ├── components │ │ │ │ ├── add.tsx │ │ │ │ ├── exo-draggable.tsx │ │ │ │ └── exo-list.tsx │ │ │ └── index.tsx │ │ │ └── files │ │ │ ├── components │ │ │ ├── categories-editor.tsx │ │ │ ├── file-list.tsx │ │ │ ├── file-select-button.tsx │ │ │ └── file-set-list.tsx │ │ │ ├── index.tsx │ │ │ └── routes │ │ │ ├── add.tsx │ │ │ ├── edit.tsx │ │ │ └── index.tsx │ ├── package.json │ ├── server │ │ ├── api │ │ │ ├── index.ts │ │ │ └── registers │ │ │ │ ├── exos.ts │ │ │ │ ├── files.ts │ │ │ │ └── index.ts │ │ ├── context.ts │ │ ├── exo │ │ │ └── manager.ts │ │ ├── files │ │ │ └── manager.ts │ │ └── index.ts │ ├── tsconfig.browser.json │ ├── tsconfig.json │ └── types │ │ ├── api.ts │ │ ├── exos.ts │ │ └── files.ts └── softalk │ ├── aut.config.ts │ ├── client │ ├── api.tsx │ ├── index.tsx │ ├── state.tsx │ └── toys │ │ └── softalk │ │ ├── components │ │ ├── controller.tsx │ │ ├── options.tsx │ │ ├── presets.tsx │ │ └── subtitle.tsx │ │ └── index.tsx │ ├── package.json │ ├── server │ ├── api.ts │ ├── index.ts │ └── voice-manager.ts │ ├── tsconfig.json │ └── types │ ├── api.ts │ ├── configuration.ts │ ├── index.ts │ └── softalk.ts ├── readme.md ├── tsconfig.eslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/actions/build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/.github/actions/build/action.yml -------------------------------------------------------------------------------- /.github/actions/tag/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/.github/actions/tag/action.yml -------------------------------------------------------------------------------- /.github/actions/tag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/.github/actions/tag/index.js -------------------------------------------------------------------------------- /.github/actions/tag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/.github/actions/tag/package.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- 1 | singleQuote: true 2 | semi: false 3 | trailingComma: all 4 | printWidth: 100 5 | -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.2.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/.yarn/releases/yarn-3.2.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /automatic1111.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/automatic1111.ipynb -------------------------------------------------------------------------------- /core/browser/api/system.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/api/system.tsx -------------------------------------------------------------------------------- /core/browser/app/frame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/app/frame.tsx -------------------------------------------------------------------------------- /core/browser/app/hooks/plugin-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/app/hooks/plugin-loader.tsx -------------------------------------------------------------------------------- /core/browser/app/hooks/update-alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/app/hooks/update-alert.tsx -------------------------------------------------------------------------------- /core/browser/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/app/index.tsx -------------------------------------------------------------------------------- /core/browser/app/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/app/menu.tsx -------------------------------------------------------------------------------- /core/browser/app/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/app/theme.tsx -------------------------------------------------------------------------------- /core/browser/components/error-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/components/error-modal.tsx -------------------------------------------------------------------------------- /core/browser/components/input-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/components/input-item.tsx -------------------------------------------------------------------------------- /core/browser/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/constants.tsx -------------------------------------------------------------------------------- /core/browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/index.html -------------------------------------------------------------------------------- /core/browser/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/index.tsx -------------------------------------------------------------------------------- /core/browser/state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/state.tsx -------------------------------------------------------------------------------- /core/browser/toys/base-toy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/toys/base-toy.tsx -------------------------------------------------------------------------------- /core/browser/toys/general/components/color-mode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/toys/general/components/color-mode.tsx -------------------------------------------------------------------------------- /core/browser/toys/general/components/configuration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/toys/general/components/configuration.tsx -------------------------------------------------------------------------------- /core/browser/toys/general/components/info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/toys/general/components/info.tsx -------------------------------------------------------------------------------- /core/browser/toys/general/components/plugin-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/toys/general/components/plugin-list.tsx -------------------------------------------------------------------------------- /core/browser/toys/general/components/run-aviutl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/toys/general/components/run-aviutl.tsx -------------------------------------------------------------------------------- /core/browser/toys/general/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/toys/general/index.tsx -------------------------------------------------------------------------------- /core/browser/toys/toy-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/browser/toys/toy-container.tsx -------------------------------------------------------------------------------- /core/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/env.d.ts -------------------------------------------------------------------------------- /core/main/__setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/main/__setup.ts -------------------------------------------------------------------------------- /core/main/development.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/main/development.ts -------------------------------------------------------------------------------- /core/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/main/index.ts -------------------------------------------------------------------------------- /core/main/ipc/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/main/ipc/api.ts -------------------------------------------------------------------------------- /core/main/ipc/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/main/ipc/system.ts -------------------------------------------------------------------------------- /core/main/plugin-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/main/plugin-loader.ts -------------------------------------------------------------------------------- /core/main/updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/main/updater.ts -------------------------------------------------------------------------------- /core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/package.json -------------------------------------------------------------------------------- /core/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/preload/index.ts -------------------------------------------------------------------------------- /core/scripts/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/scripts/build.mjs -------------------------------------------------------------------------------- /core/scripts/shims/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/scripts/shims/react.js -------------------------------------------------------------------------------- /core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/tsconfig.json -------------------------------------------------------------------------------- /core/types/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/types/globals.ts -------------------------------------------------------------------------------- /core/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/types/index.ts -------------------------------------------------------------------------------- /core/types/ipc/index.ts: -------------------------------------------------------------------------------- 1 | export * from './system' 2 | -------------------------------------------------------------------------------- /core/types/ipc/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/types/ipc/system.ts -------------------------------------------------------------------------------- /core/types/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/types/plugin.ts -------------------------------------------------------------------------------- /core/types/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/core/types/update.ts -------------------------------------------------------------------------------- /modules/_dev_tools/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/_dev_tools/bin.js -------------------------------------------------------------------------------- /modules/_dev_tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/_dev_tools/package.json -------------------------------------------------------------------------------- /modules/_dev_tools/src/build/emit-declaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/_dev_tools/src/build/emit-declaration.ts -------------------------------------------------------------------------------- /modules/_dev_tools/src/build/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/_dev_tools/src/build/module.ts -------------------------------------------------------------------------------- /modules/_dev_tools/src/build/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/_dev_tools/src/build/plugins.ts -------------------------------------------------------------------------------- /modules/_dev_tools/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/_dev_tools/src/index.ts -------------------------------------------------------------------------------- /modules/_dev_tools/src/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/_dev_tools/src/publish.ts -------------------------------------------------------------------------------- /modules/_dev_tools/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/_dev_tools/src/types.ts -------------------------------------------------------------------------------- /modules/_dev_tools/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/_dev_tools/tsconfig.json -------------------------------------------------------------------------------- /modules/api/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/client/index.ts -------------------------------------------------------------------------------- /modules/api/client/ipc/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/client/ipc/client.ts -------------------------------------------------------------------------------- /modules/api/client/ipc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/client/ipc/index.ts -------------------------------------------------------------------------------- /modules/api/client/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/client/plugin.ts -------------------------------------------------------------------------------- /modules/api/client/preload/electron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/client/preload/electron.ts -------------------------------------------------------------------------------- /modules/api/client/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/client/preload/index.ts -------------------------------------------------------------------------------- /modules/api/client/toy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/client/toy.ts -------------------------------------------------------------------------------- /modules/api/module.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/module.config.ts -------------------------------------------------------------------------------- /modules/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/package.json -------------------------------------------------------------------------------- /modules/api/readme.md: -------------------------------------------------------------------------------- 1 | # @aviutl-toys/api 2 | -------------------------------------------------------------------------------- /modules/api/root/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/root/config.ts -------------------------------------------------------------------------------- /modules/api/root/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/root/index.ts -------------------------------------------------------------------------------- /modules/api/root/ipc/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/root/ipc/events.ts -------------------------------------------------------------------------------- /modules/api/root/ipc/index.ts: -------------------------------------------------------------------------------- 1 | export * from './events.js' 2 | -------------------------------------------------------------------------------- /modules/api/scripts/publish.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/scripts/publish.mjs -------------------------------------------------------------------------------- /modules/api/server/aviutl-toys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/server/aviutl-toys.ts -------------------------------------------------------------------------------- /modules/api/server/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/server/configuration.ts -------------------------------------------------------------------------------- /modules/api/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/server/index.ts -------------------------------------------------------------------------------- /modules/api/server/ipc/index.ts: -------------------------------------------------------------------------------- 1 | export * from './server.js' 2 | -------------------------------------------------------------------------------- /modules/api/server/ipc/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/server/ipc/server.ts -------------------------------------------------------------------------------- /modules/api/server/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/server/plugin.ts -------------------------------------------------------------------------------- /modules/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/api/tsconfig.json -------------------------------------------------------------------------------- /modules/assets/image/drag-and-drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/assets/image/drag-and-drop.png -------------------------------------------------------------------------------- /modules/assets/image/icon-100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/assets/image/icon-100x100.png -------------------------------------------------------------------------------- /modules/assets/image/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/assets/image/icon.png -------------------------------------------------------------------------------- /modules/assets/image/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/assets/image/icon.svg -------------------------------------------------------------------------------- /modules/assets/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/assets/package.json -------------------------------------------------------------------------------- /modules/cli/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 'use strict' 3 | require('./dist/cli/index') 4 | -------------------------------------------------------------------------------- /modules/cli/module.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/cli/module.config.ts -------------------------------------------------------------------------------- /modules/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/cli/package.json -------------------------------------------------------------------------------- /modules/cli/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/cli/readme.md -------------------------------------------------------------------------------- /modules/cli/src/cli/builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/cli/src/cli/builder/index.ts -------------------------------------------------------------------------------- /modules/cli/src/cli/builder/plugins/globals-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/cli/src/cli/builder/plugins/globals-resolver.ts -------------------------------------------------------------------------------- /modules/cli/src/cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/cli/src/cli/index.ts -------------------------------------------------------------------------------- /modules/cli/src/cli/new/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/cli/src/cli/new/index.ts -------------------------------------------------------------------------------- /modules/cli/src/cli/new/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/cli/src/cli/new/templates.ts -------------------------------------------------------------------------------- /modules/cli/src/cli/new/types.ts: -------------------------------------------------------------------------------- 1 | export type NewProjectOptions = { 2 | name?: string 3 | } 4 | -------------------------------------------------------------------------------- /modules/cli/src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/cli/src/common/index.ts -------------------------------------------------------------------------------- /modules/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/cli/tsconfig.json -------------------------------------------------------------------------------- /modules/config/base.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/config/base.tsconfig.json -------------------------------------------------------------------------------- /modules/config/browser.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/config/browser.tsconfig.json -------------------------------------------------------------------------------- /modules/config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/config/package.json -------------------------------------------------------------------------------- /modules/config/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/modules/config/properties.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/package.json -------------------------------------------------------------------------------- /plugin-templates/basic/aut.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugin-templates/basic/aut.config.ts -------------------------------------------------------------------------------- /plugin-templates/basic/client/futures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugin-templates/basic/client/futures/index.tsx -------------------------------------------------------------------------------- /plugin-templates/basic/client/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugin-templates/basic/client/index.tsx -------------------------------------------------------------------------------- /plugin-templates/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugin-templates/basic/package.json -------------------------------------------------------------------------------- /plugin-templates/basic/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugin-templates/basic/server/index.ts -------------------------------------------------------------------------------- /plugin-templates/basic/tsconfig.browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugin-templates/basic/tsconfig.browser.json -------------------------------------------------------------------------------- /plugin-templates/basic/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugin-templates/basic/tsconfig.json -------------------------------------------------------------------------------- /plugins/common/aut.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/aut.config.ts -------------------------------------------------------------------------------- /plugins/common/client/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/client/context.tsx -------------------------------------------------------------------------------- /plugins/common/client/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/client/index.tsx -------------------------------------------------------------------------------- /plugins/common/client/toys/exos/components/add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/client/toys/exos/components/add.tsx -------------------------------------------------------------------------------- /plugins/common/client/toys/exos/components/exo-draggable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/client/toys/exos/components/exo-draggable.tsx -------------------------------------------------------------------------------- /plugins/common/client/toys/exos/components/exo-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/client/toys/exos/components/exo-list.tsx -------------------------------------------------------------------------------- /plugins/common/client/toys/exos/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/client/toys/exos/index.tsx -------------------------------------------------------------------------------- /plugins/common/client/toys/files/components/categories-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/client/toys/files/components/categories-editor.tsx -------------------------------------------------------------------------------- /plugins/common/client/toys/files/components/file-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/client/toys/files/components/file-list.tsx -------------------------------------------------------------------------------- /plugins/common/client/toys/files/components/file-select-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/client/toys/files/components/file-select-button.tsx -------------------------------------------------------------------------------- /plugins/common/client/toys/files/components/file-set-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/client/toys/files/components/file-set-list.tsx -------------------------------------------------------------------------------- /plugins/common/client/toys/files/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/client/toys/files/index.tsx -------------------------------------------------------------------------------- /plugins/common/client/toys/files/routes/add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/client/toys/files/routes/add.tsx -------------------------------------------------------------------------------- /plugins/common/client/toys/files/routes/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/client/toys/files/routes/edit.tsx -------------------------------------------------------------------------------- /plugins/common/client/toys/files/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/client/toys/files/routes/index.tsx -------------------------------------------------------------------------------- /plugins/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/package.json -------------------------------------------------------------------------------- /plugins/common/server/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/server/api/index.ts -------------------------------------------------------------------------------- /plugins/common/server/api/registers/exos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/server/api/registers/exos.ts -------------------------------------------------------------------------------- /plugins/common/server/api/registers/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/server/api/registers/files.ts -------------------------------------------------------------------------------- /plugins/common/server/api/registers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/server/api/registers/index.ts -------------------------------------------------------------------------------- /plugins/common/server/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/server/context.ts -------------------------------------------------------------------------------- /plugins/common/server/exo/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/server/exo/manager.ts -------------------------------------------------------------------------------- /plugins/common/server/files/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/server/files/manager.ts -------------------------------------------------------------------------------- /plugins/common/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/server/index.ts -------------------------------------------------------------------------------- /plugins/common/tsconfig.browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/tsconfig.browser.json -------------------------------------------------------------------------------- /plugins/common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/tsconfig.json -------------------------------------------------------------------------------- /plugins/common/types/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/types/api.ts -------------------------------------------------------------------------------- /plugins/common/types/exos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/types/exos.ts -------------------------------------------------------------------------------- /plugins/common/types/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/common/types/files.ts -------------------------------------------------------------------------------- /plugins/softalk/aut.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/aut.config.ts -------------------------------------------------------------------------------- /plugins/softalk/client/api.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/client/api.tsx -------------------------------------------------------------------------------- /plugins/softalk/client/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/client/index.tsx -------------------------------------------------------------------------------- /plugins/softalk/client/state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/client/state.tsx -------------------------------------------------------------------------------- /plugins/softalk/client/toys/softalk/components/controller.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/client/toys/softalk/components/controller.tsx -------------------------------------------------------------------------------- /plugins/softalk/client/toys/softalk/components/options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/client/toys/softalk/components/options.tsx -------------------------------------------------------------------------------- /plugins/softalk/client/toys/softalk/components/presets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/client/toys/softalk/components/presets.tsx -------------------------------------------------------------------------------- /plugins/softalk/client/toys/softalk/components/subtitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/client/toys/softalk/components/subtitle.tsx -------------------------------------------------------------------------------- /plugins/softalk/client/toys/softalk/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/client/toys/softalk/index.tsx -------------------------------------------------------------------------------- /plugins/softalk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/package.json -------------------------------------------------------------------------------- /plugins/softalk/server/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/server/api.ts -------------------------------------------------------------------------------- /plugins/softalk/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/server/index.ts -------------------------------------------------------------------------------- /plugins/softalk/server/voice-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/server/voice-manager.ts -------------------------------------------------------------------------------- /plugins/softalk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/tsconfig.json -------------------------------------------------------------------------------- /plugins/softalk/types/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/types/api.ts -------------------------------------------------------------------------------- /plugins/softalk/types/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/types/configuration.ts -------------------------------------------------------------------------------- /plugins/softalk/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/types/index.ts -------------------------------------------------------------------------------- /plugins/softalk/types/softalk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/plugins/softalk/types/softalk.ts -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/readme.md -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/AviUtlToys/HEAD/yarn.lock --------------------------------------------------------------------------------