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: cyberegoorg/ziglua
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: natecraddock/ziglua
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 5 commits
  • 4 files changed
  • 4 contributors

Commits on May 27, 2026

  1. fix deprecations for zig 0.17

    array multiplication is removed in 0.17
    `@splat(0)` pattern works in both 0.16 and 0.17
    bfredl authored and natecraddock committed May 27, 2026
    Configuration menu
    Copy the full SHA
    a609108 View commit details
    Browse the repository at this point in the history

Commits on May 30, 2026

  1. Fix opening bitlib and vector docs

    There was an additional pop() on the bitlib open that was causing issues
    when enabling apicheck in luajit. This is only needed in Lua 5.2
    
    Also fixed bad logic on openVector.
    
    Closes natecraddock#212
    natecraddock committed May 30, 2026
    Configuration menu
    Copy the full SHA
    1dcb9f2 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2026

  1. Improve compile errors for unsupported functions

    When attempting to use a Ziglua function that is not supported for the
    target Lua version, the error message is now much more clear.
    
    Before
    error: root source file struct 'lua_all' has no member named 'lua_cpcall'
    
    After
    error: Lua.cProtectedCall() is not supported in Lua 5.5
    
    Also cleans up documentation comments.
    
    Closes natecraddock#210
    natecraddock committed Jun 2, 2026
    Configuration menu
    Copy the full SHA
    d59103e View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2026

  1. Configuration menu
    Copy the full SHA
    2f0f668 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9a520d0 View commit details
    Browse the repository at this point in the history
Loading