Open
Conversation
* init * fix: remove .DS_Store and update .gitignore - oopsie :) * chore: exclude emacs backups * chore: add animated gif to readme (#2) * chore: add entry bitmap + tip (#3) * chore: docs: not a tutorial, it's more a template (#4) * Feat: add WASM module worker (#5) * chore: move tests into source file * feat: add WASM unoptimized worker - currently with inline calculation, not calling calculate * feat: add worker structs * chore: rename worker path to WORKER_LOADER_URL * feat: define two WASM binaries: app and worker * chore: move leptos components into own file * feat: include worker and move components out * feat: add needed dependencies like wasm-bindgen * feat: put progress bar into calc modal * feat: handle on message callback in app component * chore: comment on optimization settings * fix: unnest progress bar, remove div wrapper * chore: refactor, remove unneeded lib, add types * feat: measure duration of wasm worker execution * feat: use option for command match, refactor * fix: calc modal: center all, use flex col, cursor * chore: update README.md with wasm worker details * fix: upgrade dependencies * fix: upgrade TW to 4.1.3 * chore: bump own version to 0.2.0 * fix: not needed anymore, calculation is in lib.rs * fix: need no delayed execution as UI doesn't block * chore: refactor comment * fix: now "calculating" will be vertically centered * chore: comments, tests, include log on debug only * chore: update comments, remove unneeded imports * chore: update readme with new screen cast GIF (#6) * chore: add dist directory content example (#7) * Chore: Refactor and set Debug Options (#8) * fix: use TApproximation type instead of f64 * chore: set console_error_panic_hook in debug only * chore: dead code in WorkerState for demonstration * init (#9) * fix: use relative trunk command (#10) * chore: include tailwind (#11) in CI/CD * chore: include tailwind * fix: use stable rust, latest node * chore: add tailwind@v4, fix issues with trunk and using tailwind v4 in CI/CD * chore: envs, rust stable, trunk with public-url (#12) - use envs for a better overview of what my needs to be updated - use rust stable toolchain - use trunk with public-url to deploy to gh-pages * chore: put in GitHub Pages URL for showing off (#13) + add badge * chore: change title to better suit (#14) * chore: zero edit to trigger update of badge (#15) * chore: update comment on CalcModal() (#16) * chore: remove TW npm install, no PR trigger (#17) * chore: include thoughts about PWA (#18) * chore: no node needed (#19) * chore: what could come next, cons, e2e (#20) * chore: forbid unsafe code (#21) * fix: follow best practices (#22) * fix: removing unnecessary reference, which would be dereferenced by the compiler * fix: variable already as correct type, no cast * feat: add security audit workflow (#23) * chore: add badges (#24) - security audit via github workflow badge - unsafe forbidden via shields.io - license via shields.io * chore: add workflow_dispatch (#25) * chore: fix permission issue (#26) - Action tries to access a resource in a context that doesn't have the required permissions — especially on pull requests from forks. - When a pull request originates from a fork, GitHub does not allow access to repository secrets (like secrets.GITHUB_TOKEN) for security reasons. - Workaround: remove PR - Also remove v* constraint * chore: set permissions for contents and sec (#27) - contents: read - security-events: write * chore: don't do a SARIF upload, just cargo audit (#28) - plain cargo audit should be working out of the box * chore: bump version to 0.2.1 (#29) * chore: let user choose Tailwind install method (#30) - add a prompt to ask the user if they want to install Tailwind via npm or from direct download - make binary default for CI/CD * chore: init issue/feat templates (#31) * chore: CoC (#32) * chore: rename to rusty_pi_cake (#33) - from leptos_demo * chore(deps): bump bytes from 1.10.1 to 1.11.1 (#34) Bumps [bytes](https://github.com/tokio-rs/bytes) from 1.10.1 to 1.11.1. - [Release notes](https://github.com/tokio-rs/bytes/releases) - [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md) - [Commits](tokio-rs/bytes@v1.10.1...v1.11.1) --- updated-dependencies: - dependency-name: bytes dependency-version: 1.11.1 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
init
fix: remove .DS_Store and update .gitignore
chore: exclude emacs backups
chore: add animated gif to readme (chore: add animated gif to readme #2)
chore: add entry bitmap + tip (chore: add entry bitmap + tip #3)
chore: docs: not a tutorial, it's more a template (chore: docs: not a tutorial, it's more a template #4)
Feat: add WASM module worker (Feat: add WASM module worker #5)
chore: move tests into source file
feat: add WASM unoptimized worker
feat: add worker structs
chore: rename worker path to WORKER_LOADER_URL
feat: define two WASM binaries: app and worker
chore: move leptos components into own file
feat: include worker and move components out
feat: add needed dependencies like wasm-bindgen
feat: put progress bar into calc modal
feat: handle on message callback in app component
chore: comment on optimization settings
fix: unnest progress bar, remove div wrapper
chore: refactor, remove unneeded lib, add types
feat: measure duration of wasm worker execution
feat: use option for command match, refactor
fix: calc modal: center all, use flex col, cursor
chore: update README.md with wasm worker details
fix: upgrade dependencies
fix: upgrade TW to 4.1.3
chore: bump own version to 0.2.0
fix: not needed anymore, calculation is in lib.rs
fix: need no delayed execution as UI doesn't block
chore: refactor comment
fix: now "calculating" will be vertically centered
chore: comments, tests, include log on debug only
chore: update comments, remove unneeded imports
chore: update readme with new screen cast GIF (chore: update readme with new screen cast GIF #6)
chore: add dist directory content example (chore: add dist directory content example #7)
Chore: Refactor and set Debug Options (Chore: Refactor and set Debug Options #8)
fix: use TApproximation type instead of f64
chore: set console_error_panic_hook in debug only
chore: dead code in WorkerState for demonstration
init (Feat: use GH actions for deployment to GH pages #9)
fix: use relative trunk command (fix: use relative trunk command #10)
chore: include tailwind (chore: include tailwind #11) in CI/CD
chore: include tailwind
fix: use stable rust, latest node
chore: add tailwind@v4, fix issues with trunk and using tailwind v4 in CI/CD
chore: envs, rust stable, trunk with public-url (chore: envs, rust stable, trunk with public-url #12)
chore: change title to better suit (chore: change title to better suit #14)
chore: zero edit to trigger update of badge (chore: zero edit to trigger update of badge #15)
chore: update comment on CalcModal() (chore: update comment on CalcModal() #16)
chore: remove TW npm install, no PR trigger (chore: remove TW npm install, no PR trigger #17)
chore: include thoughts about PWA (chore: include thoughts about PWA #18)
chore: no node needed (chore: no node needed #19)
chore: what could come next, cons, e2e (chore: what could come next, cons, e2e #20)
chore: forbid unsafe code (chore: forbid unsafe code #21)
fix: follow best practices (fix: follow best practices #22)
fix: removing unnecessary reference, which would be dereferenced by the compiler
fix: variable already as correct type, no cast
feat: add security audit workflow (feat: add security audit workflow #23)
chore: add badges (chore: add badges #24)
chore: add workflow_dispatch (chore: add workflow_dispatch #25)
chore: fix permission issue (chore: fix permission issue #26)
chore: bump version to 0.2.1 (chore: bump version to 0.2.1 #29)
chore: let user choose Tailwind install method (chore: let user choose Tailwind install method #30)
chore: init issue/feat templates (chore: init issue/feat templates #31)
chore: CoC (chore: CoC #32)
chore: rename to rusty_pi_cake (chore: rename to rusty_pi_cake #33)
Bumps bytes from 1.10.1 to 1.11.1.
updated-dependencies: