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: rusty-bits/octool
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.5.0
Choose a base ref
...
head repository: rusty-bits/octool
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 16 commits
  • 15 files changed
  • 2 contributors

Commits on Jan 20, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    0735481 View commit details

Commits on Jan 23, 2023

  1. move parse to it's own mod

    rusty-bits committed Jan 23, 2023
    Copy the full SHA
    19b0368 View commit details

Commits on Feb 14, 2023

  1. rust -> 1.67.1

    rusty-bits committed Feb 14, 2023
    Copy the full SHA
    703d8d8 View commit details
  2. refresh zip

    rusty-bits committed Feb 14, 2023
    Copy the full SHA
    a86cd69 View commit details

Commits on Feb 20, 2023

  1. Copy the full SHA
    639467e View commit details

Commits on Feb 25, 2023

  1. Copy the full SHA
    0937997 View commit details

Commits on Mar 29, 2023

  1. add 0.9.1 difference

    rusty-bits committed Mar 29, 2023
    Copy the full SHA
    041c219 View commit details
  2. Copy the full SHA
    271dffc View commit details

Commits on May 28, 2023

  1. 0.9.2 diff

    rusty-bits committed May 28, 2023
    Copy the full SHA
    61e0d63 View commit details
  2. zip list

    rusty-bits committed May 28, 2023
    Copy the full SHA
    f7cfd2e View commit details
  3. zip list

    rusty-bits committed May 28, 2023
    Copy the full SHA
    c77692f View commit details

Commits on Jul 16, 2023

  1. 0.9.3 + 0.9.4 def

    rusty-bits committed Jul 16, 2023
    Copy the full SHA
    88cb0eb View commit details

Commits on Aug 1, 2023

  1. Copy the full SHA
    5186f08 View commit details

Commits on Sep 13, 2023

  1. Copy the full SHA
    4a9b4b7 View commit details

Commits on Dec 30, 2023

  1. Update README.md

    describe method for multiple INPUT folders
    rusty-bits authored Dec 30, 2023
    Copy the full SHA
    702e37b View commit details
  2. Copy the full SHA
    b5faac7 View commit details
Showing with 840 additions and 513 deletions.
  1. +2 −0 .gitignore
  2. +309 −178 Cargo.lock
  3. +2 −2 Cargo.toml
  4. +4 −4 README.md
  5. +21 −6 src/build.rs
  6. +159 −9 src/draw.rs
  7. +5 −1 src/edit.rs
  8. +2 −1 src/init.rs
  9. +60 −33 src/main.rs
  10. +92 −201 src/parse_tex.rs
  11. +74 −34 src/res.rs
  12. +43 −1 tool_config_files/config_differences.json
  13. BIN tool_config_files/dyn_res_list.zip
  14. +55 −43 tool_config_files/octool_config.json
  15. +12 −0 tool_config_files/resource_list.json
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -6,3 +6,5 @@ INPUT/*
!INPUT/README.md
OUTPUT/
octool
*INPUT*/
scripts/
Loading