Skip to content

Commit 157ab7b

Browse files
committed
Refactor code structure for improved readability and maintainability
1 parent 57dcdbd commit 157ab7b

File tree

32 files changed

+4358
-62
lines changed

32 files changed

+4358
-62
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,7 @@ __pycache__/
2525

2626
# nodejs
2727
node_modules/
28-
dist/
28+
dist/
29+
30+
# cmake
31+
CMakeFiles/

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,6 @@
6161
"C_Cpp_Runner.useLeakSanitizer": false,
6262
"C_Cpp_Runner.showCompilationTime": false,
6363
"C_Cpp_Runner.useLinkTimeOptimization": false,
64-
"C_Cpp_Runner.msvcSecureNoWarnings": false
64+
"C_Cpp_Runner.msvcSecureNoWarnings": false,
65+
"cmake.sourceDirectory": "/home/hsiangnianian/GitProject/asynthin/rysyn/apps/juce_core"
6566
}

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ egui = "0.31"
1919
egui_extras = { version = "0.31", features = ["all_loaders"] }
2020
cpal = "0.17"
2121
symphonia = { version = "0.5", features = ["all"] }
22-
pyo3 = { version = "0.23", features = ["extension-module"] }
22+
pyo3 = { version = "0.24", features = ["extension-module"] }
2323
crossbeam-channel = "0.5"
2424
parking_lot = "0.12"
2525
log = "0.4"

README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)