Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: lucascompython/particles
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.1
Choose a base ref
...
head repository: lucascompython/particles
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 13 commits
  • 10 files changed
  • 2 contributors

Commits on Jan 8, 2024

  1. Copy the full SHA
    ca5da13 View commit details
  2. Fix multipler lavel

    lucascompython committed Jan 8, 2024
    Copy the full SHA
    b8ceae2 View commit details

Commits on Jan 10, 2024

  1. Copy the full SHA
    049a400 View commit details
  2. Bump version

    lucascompython committed Jan 10, 2024
    Copy the full SHA
    bedb41e View commit details
  3. Copy the full SHA
    46ea79b View commit details
  4. Improve text display

    lucascompython committed Jan 10, 2024
    Copy the full SHA
    8fd3d96 View commit details

Commits on Feb 21, 2024

  1. Copy the full SHA
    b1855d7 View commit details

Commits on Mar 22, 2024

  1. Create LICENSE

    lucascompython authored Mar 22, 2024
    Copy the full SHA
    7e71028 View commit details
  2. Delete showcase.mov

    lucascompython authored Mar 22, 2024
    Copy the full SHA
    b5ba3af View commit details
  3. Delete showcase.mp4.1

    lucascompython authored Mar 22, 2024
    Copy the full SHA
    383a02d View commit details
  4. Copy the full SHA
    0126fc3 View commit details
  5. Add demo in readme

    lucascompython authored Mar 22, 2024
    Copy the full SHA
    872839b View commit details

Commits on Mar 31, 2025

  1. Copy the full SHA
    54c1aea View commit details
Showing with 864 additions and 88 deletions.
  1. +75 −54 Cargo.lock
  2. +3 −3 Cargo.toml
  3. +674 −0 LICENSE
  4. +6 −0 README.md
  5. BIN showcase.mov
  6. BIN showcase.mp4.1
  7. BIN showcase_multiplier10.mov
  8. +89 −19 src/main.rs
  9. +3 −4 src/particle.rs
  10. +14 −8 src/raylib.rs
129 changes: 75 additions & 54 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "particles"
version = "1.1.0"
edition = "2021"
version = "1.3.2"
edition = "2024"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.4.13", features = ["derive"] }
clap = { version = "4.5.34", features = ["derive"] }


[profile.release]
Loading