-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from dahegyi/0.7
0.7
- Loading branch information
Showing
30 changed files
with
7,562 additions
and
2,843 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"parser": "vue-eslint-parser", | ||
"parserOptions": { | ||
"ecmaVersion": 2020, | ||
"sourceType": "module" | ||
}, | ||
"env": { | ||
"browser": true, | ||
"es2020": true, | ||
"node": true | ||
}, | ||
"extends": [ | ||
"plugin:vue/vue3-recommended", | ||
"eslint:recommended", | ||
"plugin:prettier/recommended" | ||
], | ||
"plugins": ["prettier"], | ||
"rules": { | ||
"prettier/prettier": "error" | ||
}, | ||
"ignorePatterns": [ | ||
"node_modules/*", | ||
".next/*", | ||
".out/*", | ||
"!.prettierrc.js", | ||
"src/external/*" | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npx lint-staged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"**/*.{js,vue}": ["eslint --fix"], | ||
"**/*.{css,scss,vue}": ["stylelint --fix"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"singleQuote": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"extends": ["stylelint-config-idiomatic-order"], | ||
"overrides": [ | ||
{ | ||
"files": ["**/*.scss"], | ||
"customSyntax": "postcss-scss" | ||
}, | ||
{ | ||
"files": ["**/*.vue"], | ||
"customSyntax": "postcss-html" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,37 @@ | ||
# hydra+ | ||
|
||
[![Deploy to Firebase Hosting on merge](https://github.com/dahegyi/hydra-plus/actions/workflows/firebase-hosting-merge.yml/badge.svg)](https://github.com/dahegyi/hydra-plus/actions/workflows/firebase-hosting-merge.yml) | ||
hydra+ is a double-screen visual editing environment for [hydra synth](https://github.com/hydra-synth/hydra-synth), designed for ease of use and to project live visuals without revealing any code. | ||
|
||
A double-screen visual editing environment for [hydra](https://github.com/hydra-synth/hydra-synth). | ||
### 👉 [Live demo available here](https://hydra-plus.web.app) | ||
|
||
[Live demo](https://hydra-plus.web.app) | ||
**For now, the project is only tested on Chrome on desktop.** | ||
|
||
If you have any questions, suggestions, or just want to report a bug, please use the **Issues** / **Discussions** tabs here on Github. | ||
|
||
--- | ||
|
||
The project uses Vue 3 with Vite. | ||
### usable key combos: | ||
|
||
- hide/show GUI: `Escape` | ||
- undo: `Ctrl/Cmd + Z` | ||
- redo: `Ctrl/Cmd + Y` or `Ctrl/Cmd + Shift + Z` | ||
|
||
To run the application, install dependencies with | ||
### known issues: | ||
|
||
``` | ||
npm install | ||
``` | ||
- initSreen() doesn't work properly in visualizer | ||
|
||
and run the application with | ||
### planned features: | ||
|
||
``` | ||
npm run dev | ||
``` | ||
- audio settings modal | ||
- transition on updates | ||
- hover info boxes for sources & effects | ||
- UI for arrays | ||
- MIDI integration | ||
- import / export configs | ||
- built-in extra shaders + option to add new ones from the GUI | ||
- [1.0] customizable colors for GUI | ||
- [1.0] implementation of backend server where files and configs can be saved | ||
|
||
or build the application with | ||
--- | ||
|
||
``` | ||
npm run build | ||
``` | ||
The project uses Vue 3 with Vuex and Vite. Commands to run and build the program are left the way they are by default (`npm i`, `npm run dev`, `npm run build`). |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.