diff --git a/.gitignore b/.gitignore index 833ecdb..3a2a336 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,4 @@ Cargo.lock /pkg /tmp -/assets.tar.zst \ No newline at end of file +/assets.tar.zst diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..3f7a96d --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "files.insertFinalNewline": true, + "editor.formatOnSave": true, + "files.trimTrailingWhitespace": true +} diff --git a/TODO.md b/TODO.md index 17f5dfc..7183eb7 100644 --- a/TODO.md +++ b/TODO.md @@ -18,4 +18,4 @@ 10. rewrite FunctionEntry to move more information and handling to egui_app (such as config changes) 11. Threading 12. fix integral display -13. Improve loading indicator \ No newline at end of file +13. Improve loading indicator diff --git a/build.sh b/build.sh index f414746..747f2fa 100755 --- a/build.sh +++ b/build.sh @@ -30,4 +30,4 @@ cp -r pkg/ytbn_graphing_software_bg.wasm pkg/ytbn_graphing_software.js tmp/ cp www/index.html www/style.css tmp/ echo "Total size: $(du -sb tmp)" -echo "Binary size: $(du -sb tmp/ytbn_graphing_software_bg.wasm)" \ No newline at end of file +echo "Binary size: $(du -sb tmp/ytbn_graphing_software_bg.wasm)" diff --git a/pack_assets.sh b/pack_assets.sh index 16b1307..1054e48 100755 --- a/pack_assets.sh +++ b/pack_assets.sh @@ -1,4 +1,4 @@ #!/bin/bash rm -fr assets.tar.zst | true cd assets -tar -I 'zstd --ultra -22' -cf ../assets.tar.zst *.* \ No newline at end of file +tar -I 'zstd --ultra -22' -cf ../assets.tar.zst *.* diff --git a/start-server.sh b/start-server.sh index 3005b2f..7888d44 100755 --- a/start-server.sh +++ b/start-server.sh @@ -3,4 +3,4 @@ set -e bash build.sh "$1" -basic-http-server tmp/ \ No newline at end of file +basic-http-server tmp/