Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Design #196

Merged
merged 39 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from 36 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
ec17159
yeh this is ok
GeorgeBarlow Oct 26, 2024
cf7dc29
Faffing around with faffing
GeorgeBarlow Oct 26, 2024
0d378c1
this defo was rebase
GeorgeBarlow Oct 26, 2024
8213c86
maybe cooking maybe not
GeorgeBarlow Oct 26, 2024
a8cbf89
Cookin
GeorgeBarlow Oct 26, 2024
6beb07f
Works better
GeorgeBarlow Oct 27, 2024
235b4ce
Fix looks
GeorgeBarlow Oct 27, 2024
ab338fc
Fix some stuff
GeorgeBarlow Oct 27, 2024
dc6e1ba
global no select
GeorgeBarlow Oct 27, 2024
f52f140
Transparent mini bar
GeorgeBarlow Oct 28, 2024
c2bbad4
package it up
GeorgeBarlow Oct 28, 2024
6e8f8a2
Improve stuff
GeorgeBarlow Oct 28, 2024
9b3d177
Fast reload & option
GeorgeBarlow Oct 28, 2024
39be4ad
fix
GeorgeBarlow Oct 28, 2024
706295f
Initial implementation of OTA updates
GeorgeBarlow Oct 30, 2024
12292e0
Remove updater for now and improve radio scss
GeorgeBarlow Nov 1, 2024
4112bf7
Tidy everything up
GeorgeBarlow Nov 1, 2024
df986ca
Clean up some css
GeorgeBarlow Nov 1, 2024
bb034ee
Fix settings
GeorgeBarlow Nov 1, 2024
d82a1d5
Merge remote-tracking branch 'origin/main' into new-design
GeorgeBarlow Nov 1, 2024
b91a27a
Get rid of this
GeorgeBarlow Nov 1, 2024
8df8743
Font issues
GeorgeBarlow Nov 1, 2024
cd6f85a
Merge branch 'new-design' of github.com:pierr3/TrackAudio into new-de…
GeorgeBarlow Nov 1, 2024
7a66ac1
Fix more ui css stuff
GeorgeBarlow Nov 1, 2024
13ea751
Fix loads of stuff
GeorgeBarlow Nov 1, 2024
52f75df
Fix css
GeorgeBarlow Nov 1, 2024
080655b
autoFocus goes so hard
GeorgeBarlow Nov 1, 2024
d8beb0e
Fix lint
GeorgeBarlow Nov 1, 2024
ca163de
Clean up a lot of the UI so that we have better break points for wind…
GeorgeBarlow Nov 2, 2024
f4ac5a3
Stupid lint
GeorgeBarlow Nov 2, 2024
1baa676
Update config
GeorgeBarlow Nov 2, 2024
01f2f0e
QoL improvements
GeorgeBarlow Nov 2, 2024
5abc33c
Remove logs
GeorgeBarlow Nov 2, 2024
3fcc773
Fix issue
GeorgeBarlow Nov 2, 2024
793f611
Clean up ui
GeorgeBarlow Nov 2, 2024
fbe65a2
Better alignment
GeorgeBarlow Nov 2, 2024
8f39c95
Fix get out of mini mode when disconnected
GeorgeBarlow Nov 2, 2024
914c37f
More suitable error handling in mini mode
GeorgeBarlow Nov 3, 2024
220659c
Don't delete guard and unicom
GeorgeBarlow Nov 3, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ lib-cov
coverage
*.lcov

.vs
# nyc test coverage
.nyc_output

Expand Down
6 changes: 6 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@
"presentation": {
"hidden": true
}
},
{
"type": "lldb",
"request": "attach",
"name": "Debug Electron Renderer",
GeorgeBarlow marked this conversation as resolved.
Show resolved Hide resolved
"pid": "${command:pickProcess}"
GeorgeBarlow marked this conversation as resolved.
Show resolved Hide resolved
}
],
"compounds": [
Expand Down
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,8 @@
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.associations": {
"xstring": "cpp"
}
}
2 changes: 1 addition & 1 deletion backend/vcpkg
Submodule vcpkg updated 3310 files
3 changes: 3 additions & 0 deletions dev-app-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
provider: generic
url: https://example.com/auto-updates
GeorgeBarlow marked this conversation as resolved.
Show resolved Hide resolved
updaterCacheDirName: trackaudio-updater
5 changes: 5 additions & 0 deletions electron-builder-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ module.exports = {
directories: {
buildResources: 'build'
},
publish: {
provider: 's3',
bucket: 'trackaudio',
region: 'eu-west-2'
},
files: [
'!**/.vscode/*',
'!src/*',
Expand Down
138 changes: 124 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"build:win": "npm run build && electron-builder --win -c electron-builder-config.js",
"build:mac": "npm run build && electron-builder --mac -c electron-builder-config.js",
"build:linux": "npm run build && electron-builder --linux -c electron-builder-config.js",
"build:publish": "npm run build && electron-builder --win -c electron-builder-config.js --publish=always",
"build:backend": "cd backend && npm install && npm run build && cd .. && npm install ./backend/trackaudio-afv-1.0.0.tgz",
"build:backend-fast": "cd backend && npm install && npm run build-fast && cd .. && npm install ./backend/trackaudio-afv-1.0.0.tgz"
},
Expand All @@ -31,9 +32,11 @@
"bootstrap-typeahead": "^2.3.2",
"clsx": "^2.1.1",
"electron-store": "^8.2.0",
"electron-updater": "^6.3.9",
"react": "^18.3.1",
"react-bootstrap-icons": "^1.11.4",
"react-dom": "^18.3.1",
"react-responsive": "^10.0.0",
"scss": "^0.2.4",
"trackaudio-afv": "file:backend/trackaudio-afv-1.0.0.tgz",
"use-debounce": "^10.0.1",
Expand All @@ -50,7 +53,7 @@
"@types/react": "^18.3.3",
"@vitejs/plugin-react": "^4.0.0",
"electron": "^32.0.2",
"electron-builder": "24.13.3",
"electron-builder": "^24.13.3",
"electron-vite": "^2.0.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.2",
Expand Down
Loading
Loading