Skip to content

Commit

Permalink
wip: parsing using nom
Browse files Browse the repository at this point in the history
  • Loading branch information
gmallios committed Oct 15, 2023
1 parent bda6adc commit cae5007
Show file tree
Hide file tree
Showing 68 changed files with 2,829 additions and 461 deletions.
95 changes: 80 additions & 15 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,86 @@ logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local
# smoke-tests repo
/smoke-tests

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional yarn cache directory
.yarn

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

/.vs
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
.Thumbs.db
*.sublime*
.idea
debug.log
package-lock.json
.vscode/settings.json
*/.vscode/
proptest-regressions/
TODO.md

# rust compiled folders
target

# lock for libs
/Cargo.lock
/tooling/bench/tests/Cargo.lock
/yarn.lock

# ignore frida handlers
__handlers__/

# benches
gh-pages
test_video.mp4

# old cli directories
/tooling/cli.js
/tooling/cli.rs
9 changes: 9 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[workspace]
resolver = "2"
members = [
"src-tauri/",
"soundcore-lib"
]

[profile.release]
lto = true
9 changes: 5 additions & 4 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<img src=".github/splash.png" alt="Tauri" />

<h3 align="center">
A desktop companion app for your Soundcore devices
A desktop companion app for your Soundcore devices
</h3>
<br>
<h5 align="center">
![Github Actions](https://github.com/gmallios/SoundcoreManager/actions/workflows/push.yml/badge.svg)

![Github Actions](https://github.com/gmallios/SoundcoreManager/actions/workflows/push.yml/badge.svg)
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/donate/?hosted_button_id=58VZ5TZFZXACJ)

<h5>

# Downloads
Expand Down Expand Up @@ -40,6 +40,7 @@
| A3033 | Live 2 Neo |
| A3931 | Life Dot 2 |
| A3992 | Soundcore A3i |
| A3993 | Soundcore P3i |

# Build Instructions

Expand Down
1 change: 0 additions & 1 deletion bluetooth-lib/src/winrt/rfcomm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ use windows::{
BluetoothCacheMode,
Rfcomm::{RfcommDeviceService, RfcommServiceId},
},
Enumeration::DeviceInformation,
},
Networking::Sockets::StreamSocket,
Storage::Streams::{DataReader, DataWriter, InputStreamOptions},
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@mui/material": "^5.12.0",
"@tanstack/react-query": "^4.20.4",
"@tanstack/react-query-devtools": "^4.20.4",
"@tauri-apps/api": "^1.2.0",
"@tauri-apps/api": "^1.5.0",
"chart.js": "~3.9.1",
"chartjs-plugin-dragdata": "^2.2.4",
"react": "^18.2.0",
Expand All @@ -31,7 +31,7 @@
"zustand": "^4.1.3"
},
"devDependencies": {
"@tauri-apps/cli": "^1.2.0",
"@tauri-apps/cli": "^1.5.1",
"@types/node": "^18.7.10",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.0.6",
Expand Down
Loading

0 comments on commit cae5007

Please sign in to comment.