├── .editorconfig ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.yaml ├── .vscode ├── c_cpp_properties.json ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── README_EN.md ├── dev-app-update.yml ├── doc ├── effect-midi.fzz.jpg ├── effect-midi.rp2040.fzz ├── effect.jpg ├── line_rp2040.jpg ├── line_uno_r3.jpg ├── main.jpg ├── tutorial01.png ├── tutorial02.png ├── tutorial03.png ├── tutorial04.png └── tutorial05.png ├── electron-builder.yml ├── electron.vite.config.ts ├── eslint.config.cjs ├── package.json ├── postcss.config.js ├── resources └── EffectMidi_1024.png ├── src ├── ino │ └── EffectMidi │ │ ├── ConfigCmd.cpp │ │ ├── EffectMidi.ino │ │ ├── KeyCommand.cpp │ │ ├── LedController.cpp │ │ ├── OledController.cpp │ │ ├── SerialCommandHolder.cpp │ │ ├── SetColorCmd.cpp │ │ ├── UsbController.cpp │ │ ├── WaitingCmd.cpp │ │ └── headers │ │ ├── LedController.hpp │ │ ├── OledController.hpp │ │ ├── PinDefine.hpp │ │ ├── SerialCommand.hpp │ │ ├── SerialCommandHolder.hpp │ │ └── UsbController.hpp ├── main │ ├── index.ts │ ├── ipcServer.ts │ ├── logger.ts │ ├── serial │ │ ├── cmds.ts │ │ └── usb.ts │ └── storage.ts ├── preload │ ├── index.d.ts │ └── index.ts └── renderer │ ├── index.html │ └── src │ ├── App.tsx │ ├── assets │ ├── loading.jpg │ ├── pedaldown.svg │ └── pedalup.svg │ ├── common │ ├── base.css │ ├── colors.ts │ ├── ipcClient.ts │ ├── score.ts │ └── store.ts │ ├── components │ ├── ConfigMenu │ │ ├── About │ │ │ └── index.tsx │ │ ├── Appearance │ │ │ └── index.tsx │ │ ├── Devices │ │ │ ├── index.styl │ │ │ └── index.tsx │ │ ├── Lights │ │ │ └── index.tsx │ │ ├── MenuSide │ │ │ ├── MenuItem.tsx │ │ │ ├── index.styl │ │ │ └── index.tsx │ │ ├── index.styl │ │ └── index.tsx │ ├── Keyboard │ │ ├── Hanabi.tsx │ │ ├── Waterfall.tsx │ │ ├── index.styl │ │ ├── index.tsx │ │ └── midi.ts │ ├── Loading │ │ ├── index.styl │ │ └── index.tsx │ ├── basic │ │ ├── EmColorPicker │ │ │ ├── index.styl │ │ │ └── index.tsx │ │ ├── EmCubeChecker │ │ │ └── index.tsx │ │ ├── EmImgPicker │ │ │ ├── index.styl │ │ │ └── index.tsx │ │ ├── EmInput │ │ │ └── index.tsx │ │ ├── EmNotifacation │ │ │ ├── container.tsx │ │ │ ├── index.d.ts │ │ │ └── index.tsx │ │ ├── EmRangeKnob │ │ │ ├── index.styl │ │ │ └── index.tsx │ │ ├── EmRangeSlider │ │ │ ├── index.styl │ │ │ └── index.tsx │ │ ├── EmSelect │ │ │ └── index.tsx │ │ ├── EmSwitch │ │ │ └── index.tsx │ │ └── types.d.ts │ └── effects │ │ ├── ClickGranule │ │ └── index.tsx │ │ ├── Firefiles │ │ └── index.tsx │ │ ├── Glow │ │ └── index.tsx │ │ └── timer.ts │ ├── config │ └── index.ts │ ├── env.d.ts │ ├── lang │ ├── en.yaml │ ├── index.ts │ └── zh_cn.yaml │ └── main.tsx ├── tailwind.config.js ├── theme.json ├── tsconfig.json ├── tsconfig.node.json └── tsconfig.web.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | singleQuote: true 2 | semi: false 3 | printWidth: 100 4 | trailingComma: none 5 | -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/README_EN.md -------------------------------------------------------------------------------- /dev-app-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/dev-app-update.yml -------------------------------------------------------------------------------- /doc/effect-midi.fzz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/doc/effect-midi.fzz.jpg -------------------------------------------------------------------------------- /doc/effect-midi.rp2040.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/doc/effect-midi.rp2040.fzz -------------------------------------------------------------------------------- /doc/effect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/doc/effect.jpg -------------------------------------------------------------------------------- /doc/line_rp2040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/doc/line_rp2040.jpg -------------------------------------------------------------------------------- /doc/line_uno_r3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/doc/line_uno_r3.jpg -------------------------------------------------------------------------------- /doc/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/doc/main.jpg -------------------------------------------------------------------------------- /doc/tutorial01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/doc/tutorial01.png -------------------------------------------------------------------------------- /doc/tutorial02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/doc/tutorial02.png -------------------------------------------------------------------------------- /doc/tutorial03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/doc/tutorial03.png -------------------------------------------------------------------------------- /doc/tutorial04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/doc/tutorial04.png -------------------------------------------------------------------------------- /doc/tutorial05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/doc/tutorial05.png -------------------------------------------------------------------------------- /electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/electron-builder.yml -------------------------------------------------------------------------------- /electron.vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/electron.vite.config.ts -------------------------------------------------------------------------------- /eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/eslint.config.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/postcss.config.js -------------------------------------------------------------------------------- /resources/EffectMidi_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/resources/EffectMidi_1024.png -------------------------------------------------------------------------------- /src/ino/EffectMidi/ConfigCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/ino/EffectMidi/ConfigCmd.cpp -------------------------------------------------------------------------------- /src/ino/EffectMidi/EffectMidi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/ino/EffectMidi/EffectMidi.ino -------------------------------------------------------------------------------- /src/ino/EffectMidi/KeyCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/ino/EffectMidi/KeyCommand.cpp -------------------------------------------------------------------------------- /src/ino/EffectMidi/LedController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/ino/EffectMidi/LedController.cpp -------------------------------------------------------------------------------- /src/ino/EffectMidi/OledController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/ino/EffectMidi/OledController.cpp -------------------------------------------------------------------------------- /src/ino/EffectMidi/SerialCommandHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/ino/EffectMidi/SerialCommandHolder.cpp -------------------------------------------------------------------------------- /src/ino/EffectMidi/SetColorCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/ino/EffectMidi/SetColorCmd.cpp -------------------------------------------------------------------------------- /src/ino/EffectMidi/UsbController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/ino/EffectMidi/UsbController.cpp -------------------------------------------------------------------------------- /src/ino/EffectMidi/WaitingCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/ino/EffectMidi/WaitingCmd.cpp -------------------------------------------------------------------------------- /src/ino/EffectMidi/headers/LedController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/ino/EffectMidi/headers/LedController.hpp -------------------------------------------------------------------------------- /src/ino/EffectMidi/headers/OledController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/ino/EffectMidi/headers/OledController.hpp -------------------------------------------------------------------------------- /src/ino/EffectMidi/headers/PinDefine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/ino/EffectMidi/headers/PinDefine.hpp -------------------------------------------------------------------------------- /src/ino/EffectMidi/headers/SerialCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/ino/EffectMidi/headers/SerialCommand.hpp -------------------------------------------------------------------------------- /src/ino/EffectMidi/headers/SerialCommandHolder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/ino/EffectMidi/headers/SerialCommandHolder.hpp -------------------------------------------------------------------------------- /src/ino/EffectMidi/headers/UsbController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/ino/EffectMidi/headers/UsbController.hpp -------------------------------------------------------------------------------- /src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/main/index.ts -------------------------------------------------------------------------------- /src/main/ipcServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/main/ipcServer.ts -------------------------------------------------------------------------------- /src/main/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/main/logger.ts -------------------------------------------------------------------------------- /src/main/serial/cmds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/main/serial/cmds.ts -------------------------------------------------------------------------------- /src/main/serial/usb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/main/serial/usb.ts -------------------------------------------------------------------------------- /src/main/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/main/storage.ts -------------------------------------------------------------------------------- /src/preload/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/preload/index.d.ts -------------------------------------------------------------------------------- /src/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/preload/index.ts -------------------------------------------------------------------------------- /src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/index.html -------------------------------------------------------------------------------- /src/renderer/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/App.tsx -------------------------------------------------------------------------------- /src/renderer/src/assets/loading.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/assets/loading.jpg -------------------------------------------------------------------------------- /src/renderer/src/assets/pedaldown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/assets/pedaldown.svg -------------------------------------------------------------------------------- /src/renderer/src/assets/pedalup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/assets/pedalup.svg -------------------------------------------------------------------------------- /src/renderer/src/common/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/common/base.css -------------------------------------------------------------------------------- /src/renderer/src/common/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/common/colors.ts -------------------------------------------------------------------------------- /src/renderer/src/common/ipcClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/common/ipcClient.ts -------------------------------------------------------------------------------- /src/renderer/src/common/score.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/common/score.ts -------------------------------------------------------------------------------- /src/renderer/src/common/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/common/store.ts -------------------------------------------------------------------------------- /src/renderer/src/components/ConfigMenu/About/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/ConfigMenu/About/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ConfigMenu/Appearance/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/ConfigMenu/Appearance/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ConfigMenu/Devices/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/ConfigMenu/Devices/index.styl -------------------------------------------------------------------------------- /src/renderer/src/components/ConfigMenu/Devices/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/ConfigMenu/Devices/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ConfigMenu/Lights/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/ConfigMenu/Lights/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ConfigMenu/MenuSide/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/ConfigMenu/MenuSide/MenuItem.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ConfigMenu/MenuSide/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/ConfigMenu/MenuSide/index.styl -------------------------------------------------------------------------------- /src/renderer/src/components/ConfigMenu/MenuSide/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/ConfigMenu/MenuSide/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ConfigMenu/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/ConfigMenu/index.styl -------------------------------------------------------------------------------- /src/renderer/src/components/ConfigMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/ConfigMenu/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Keyboard/Hanabi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/Keyboard/Hanabi.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Keyboard/Waterfall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/Keyboard/Waterfall.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Keyboard/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/Keyboard/index.styl -------------------------------------------------------------------------------- /src/renderer/src/components/Keyboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/Keyboard/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Keyboard/midi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/Keyboard/midi.ts -------------------------------------------------------------------------------- /src/renderer/src/components/Loading/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/Loading/index.styl -------------------------------------------------------------------------------- /src/renderer/src/components/Loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/Loading/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/basic/EmColorPicker/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/basic/EmColorPicker/index.styl -------------------------------------------------------------------------------- /src/renderer/src/components/basic/EmColorPicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/basic/EmColorPicker/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/basic/EmCubeChecker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/basic/EmCubeChecker/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/basic/EmImgPicker/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/basic/EmImgPicker/index.styl -------------------------------------------------------------------------------- /src/renderer/src/components/basic/EmImgPicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/basic/EmImgPicker/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/basic/EmInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/basic/EmInput/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/basic/EmNotifacation/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/basic/EmNotifacation/container.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/basic/EmNotifacation/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/basic/EmNotifacation/index.d.ts -------------------------------------------------------------------------------- /src/renderer/src/components/basic/EmNotifacation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/basic/EmNotifacation/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/basic/EmRangeKnob/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/basic/EmRangeKnob/index.styl -------------------------------------------------------------------------------- /src/renderer/src/components/basic/EmRangeKnob/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/basic/EmRangeKnob/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/basic/EmRangeSlider/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/basic/EmRangeSlider/index.styl -------------------------------------------------------------------------------- /src/renderer/src/components/basic/EmRangeSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/basic/EmRangeSlider/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/basic/EmSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/basic/EmSelect/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/basic/EmSwitch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/basic/EmSwitch/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/basic/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/basic/types.d.ts -------------------------------------------------------------------------------- /src/renderer/src/components/effects/ClickGranule/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/effects/ClickGranule/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/effects/Firefiles/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/effects/Firefiles/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/effects/Glow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/effects/Glow/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/effects/timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/components/effects/timer.ts -------------------------------------------------------------------------------- /src/renderer/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/config/index.ts -------------------------------------------------------------------------------- /src/renderer/src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/renderer/src/lang/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/lang/en.yaml -------------------------------------------------------------------------------- /src/renderer/src/lang/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/lang/index.ts -------------------------------------------------------------------------------- /src/renderer/src/lang/zh_cn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/lang/zh_cn.yaml -------------------------------------------------------------------------------- /src/renderer/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/src/renderer/src/main.tsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/theme.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChiruMori/EffectMidi/HEAD/tsconfig.web.json --------------------------------------------------------------------------------