-
Notifications
You must be signed in to change notification settings - Fork 250
feat(ui): responsive ui updates EVERYONE ELSE = DONT CREATE UI PRs #971
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
Open
danditomaso
wants to merge
46
commits into
meshtastic:main
Choose a base branch
from
danditomaso:feat/responsive-updates
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
d090116
feat(ui): responsive updates
danditomaso b00c187
feat(ui): ui wip
danditomaso 3a83b35
wip
danditomaso c654a3c
updating settings
danditomaso bbb9a97
wip
danditomaso ca49a80
wip
danditomaso 7735f0a
wip
danditomaso e8862eb
wip
danditomaso 99cf54e
wip
danditomaso c944bb4
wip
danditomaso be228ad
ui refactor, move to feature based folder system
danditomaso 81dbea2
ui refactor phase 1 complete
danditomaso 437a0a8
data refactor completed.
danditomaso 6d816ff
completed state store refactor
danditomaso 4977dfd
starting buildout of feature based directory structure
danditomaso 5d145e7
feature focused directory completed
danditomaso 1aec5f7
update settings to feature folder layout
danditomaso a8acd95
folder cleanup and migrate remaining features to feature based develo…
danditomaso bfa3eab
wip
danditomaso 9b9f318
wip
danditomaso cd77090
wip
danditomaso 4b3f45f
add reactive switch to sql
danditomaso e3115de
added remote admin functionality
danditomaso 5f24217
wip
danditomaso cd8d74a
wip
danditomaso a6d9550
wip
danditomaso 32702e2
wip
danditomaso 127341e
chore: migrate from biome to oxlint/oxfmt
danditomaso ca15920
refactor: eliminate connection strategy pattern
danditomaso fbf6093
refactor: split BrowserHardware into browserSerial and browserBluetooth
danditomaso 131685f
refactor: extract ConfigSyncService from ConnectionService
danditomaso 9412a50
wip
danditomaso a415997
wip
danditomaso 32260ac
wip
danditomaso 4ff44b7
updated meshtastic protobuf package
danditomaso 7b841f0
removed protobuf submodule
danditomaso c275f1b
removed old githook
danditomaso c8d2f80
refactor: migrate from Biome to oxlint/oxfmt and fix connection recovery
danditomaso ea7a03f
fix: resolve production 404 errors for i18n and missing assets
danditomaso e3499b5
remove protobuf
danditomaso e5d05ba
fix lang
danditomaso 538a280
Update packages/core/src/utils/queue.ts
danditomaso 1b883fa
wip
danditomaso cf31f93
refactored message hooks
danditomaso 54ed37f
cleaned up codebase
danditomaso f1602f4
wip
danditomaso File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -13,6 +13,8 @@ npm/ | |
|
|
||
| packages/protobufs/packages/ts/dist | ||
| .pnpm-store/ | ||
| .claude | ||
| .gemini | ||
|
|
||
| # Local dev certs | ||
| *.pem | ||
|
|
||
This file contains hidden or 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 @@ | ||
| pnpm lint-staged | ||
This file contains hidden or 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 @@ | ||
| { | ||
| "$schema": "https://raw.githubusercontent.com/oxc-project/oxc/main/npm/oxfmt/configuration_schema.json", | ||
| "useTabs": false, | ||
| "tabWidth": 2, | ||
| "printWidth": 80, | ||
| "ignorePatterns": [ | ||
| "node_modules", | ||
| "dist", | ||
| "protobufs", | ||
| "**/locales/*-*/*.json", | ||
| "**/packages/ui/" | ||
| ] | ||
| } |
This file contains hidden or 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,26 @@ | ||
| { | ||
| "$schema": "https://raw.githubusercontent.com/oxc-project/oxc/main/npm/oxlint/configuration_schema.json", | ||
| "plugins": ["react", "react-perf", "jsx-a11y", "typescript", "import"], | ||
| "rules": { | ||
| "no-debugger": "error", | ||
| "@typescript-eslint/no-explicit-any": "error", | ||
| "@typescript-eslint/no-unused-vars": "error", | ||
| "import/no-unused-modules": "error" | ||
| }, | ||
| "ignorePatterns": [ | ||
| "node_modules", | ||
| "dist", | ||
| "protobufs", | ||
| "**/locales/*-*/*.json", | ||
| "**/packages/ui/" | ||
| ], | ||
| "overrides": [ | ||
| { | ||
| "files": ["**/*.test.ts", "**/*.test.tsx", "**/__tests__/**/*.{ts,tsx}"], | ||
| "rules": { | ||
| "@typescript-eslint/no-explicit-any": "off", | ||
| "@typescript-eslint/no-non-null-assertion": "off" | ||
| } | ||
| } | ||
| ] | ||
| } |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.