This repository has been archived by the owner on Dec 14, 2023. It is now read-only.
-
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.
* add rev3 PCB layout to docs * Styling updates to follow new branding * Styling updates to follow new branding * tidy up FE; do styling for settings page * tidy up FE; do styling for settings page * start basic implementation of dark mode * implement some settings items, including dark mode * add disable animations option
- Loading branch information
1 parent
69115c5
commit 8cea126
Showing
13 changed files
with
13,465 additions
and
13,148 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 |
---|---|---|
|
@@ -29,6 +29,7 @@ type State struct { | |
type Fan struct { | ||
Speed int | ||
Auto int | ||
Rpm int | ||
} | ||
|
||
type wailsstruct struct { | ||
|
25,918 changes: 12,967 additions & 12,951 deletions
25,918
src/flowcontrol/frontend/package-lock.json
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1,55 +1,57 @@ | ||
{ | ||
"name": "flowcontrol", | ||
"author": "Charlie Haley<[email protected]>", | ||
"private": true, | ||
"scripts": { | ||
"serve": "vue-cli-service serve", | ||
"build": "vue-cli-service build", | ||
"lint": "vue-cli-service lint" | ||
}, | ||
"dependencies": { | ||
"@wailsapp/runtime": "^1.0.10", | ||
"core-js": "^3.6.4", | ||
"material-design-icons": "^3.0.1", | ||
"regenerator-runtime": "^0.13.3", | ||
"vue": "^2.6.11", | ||
"vue-router": "^3.5.1" | ||
}, | ||
"devDependencies": { | ||
"@vue/cli-plugin-babel": "^4.2.3", | ||
"@vue/cli-plugin-eslint": "^4.2.3", | ||
"@vue/cli-service": "^4.2.3", | ||
"babel-eslint": "^10.1.0", | ||
"eslint": "^6.8.0", | ||
"eslint-plugin-vue": "^6.2.1", | ||
"eventsource-polyfill": "^0.9.6", | ||
"node-sass": "^5.0.0", | ||
"sass-loader": "^11.0.1", | ||
"vue-template-compiler": "^2.6.11", | ||
"webpack-hot-middleware": "^2.25.0" | ||
}, | ||
"eslintConfig": { | ||
"root": true, | ||
"env": { | ||
"node": true | ||
}, | ||
"extends": [ | ||
"plugin:vue/essential", | ||
"eslint:recommended" | ||
], | ||
"rules": {}, | ||
"parserOptions": { | ||
"parser": "babel-eslint" | ||
} | ||
}, | ||
"postcss": { | ||
"plugins": { | ||
"autoprefixer": {} | ||
} | ||
}, | ||
"browserslist": [ | ||
"> 1%", | ||
"last 2 versions", | ||
"not ie <= 8" | ||
] | ||
} | ||
{ | ||
"name": "flowcontrol", | ||
"author": "Charlie Haley<[email protected]>", | ||
"private": true, | ||
"scripts": { | ||
"serve": "vue-cli-service serve", | ||
"build": "vue-cli-service build", | ||
"lint": "vue-cli-service lint" | ||
}, | ||
"dependencies": { | ||
"@wailsapp/runtime": "^1.0.10", | ||
"core-js": "^3.6.4", | ||
"es6-promise": "^4.2.8", | ||
"material-design-icons": "^3.0.1", | ||
"regenerator-runtime": "^0.13.3", | ||
"vue": "^2.6.11", | ||
"vue-router": "^3.5.1", | ||
"vuex": "^3.6.2" | ||
}, | ||
"devDependencies": { | ||
"@vue/cli-plugin-babel": "^4.2.3", | ||
"@vue/cli-plugin-eslint": "^4.2.3", | ||
"@vue/cli-service": "^4.2.3", | ||
"babel-eslint": "^10.1.0", | ||
"eslint": "^6.8.0", | ||
"eslint-plugin-vue": "^6.2.1", | ||
"eventsource-polyfill": "^0.9.6", | ||
"node-sass": "^5.0.0", | ||
"sass-loader": "^11.0.1", | ||
"vue-template-compiler": "^2.6.11", | ||
"webpack-hot-middleware": "^2.25.0" | ||
}, | ||
"eslintConfig": { | ||
"root": true, | ||
"env": { | ||
"node": true | ||
}, | ||
"extends": [ | ||
"plugin:vue/essential", | ||
"eslint:recommended" | ||
], | ||
"rules": {}, | ||
"parserOptions": { | ||
"parser": "babel-eslint" | ||
} | ||
}, | ||
"postcss": { | ||
"plugins": { | ||
"autoprefixer": {} | ||
} | ||
}, | ||
"browserslist": [ | ||
"> 1%", | ||
"last 2 versions", | ||
"not ie <= 8" | ||
] | ||
} |
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
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.