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: webui-dev/zig-webui
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: webui-dev/zig-webui
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: embed_fold
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 10 commits
  • 1 file changed
  • 1 contributor

Commits on Nov 21, 2025

  1. refactor(build): reorganize imports and aliases

    - Move type alias declarations earlier in file
    - Reorder const declarations for better structure
    - Group related imports and constants together
    jinzhongjia committed Nov 21, 2025
    Configuration menu
    Copy the full SHA
    39ec7ec View commit details
    Browse the repository at this point in the history
  2. refactor(build): rename functions to camelCase

    - Rename `generate_docs` to `generateDocs`
    - Rename `build_examples` to `buildExamples`
    - Update all function calls to use new names
    jinzhongjia committed Nov 21, 2025
    Configuration menu
    Copy the full SHA
    5673495 View commit details
    Browse the repository at this point in the history
  3. refactor(build): remove verbose comments

    - Remove lengthy comment blocks throughout build functions
    - Clean up unnecessary blank lines between code sections
    - Preserve core documentation in comments where needed
    jinzhongjia committed Nov 21, 2025
    Configuration menu
    Copy the full SHA
    87270de View commit details
    Browse the repository at this point in the history
  4. chore(build): bump minimum Zig version to 0.14.0

    - Update minimum required version from 0.12.0 to 0.14.0
    - Enforce Zig 0.14.0+ as minimum build requirement
    jinzhongjia committed Nov 21, 2025
    Configuration menu
    Copy the full SHA
    499f5cb View commit details
    Browse the repository at this point in the history
  5. refactor(build): extract version error message

    - Extract error message into `err_msg` variable
    - Separate formatting logic from error handling
    - Improve code readability in version check
    jinzhongjia committed Nov 21, 2025
    Configuration menu
    Copy the full SHA
    9c57695 View commit details
    Browse the repository at this point in the history
  6. fix(build): correct option handling and TLS validation

    - Fix enableWebUILog default value from enableTLS
    - Correct enableWebUILog option description text
    - Refactor TLS cross-compilation validation logic
    - Improve TLS error message and use error log level
    - Reorganize option initialization order
    jinzhongjia committed Nov 21, 2025
    Configuration menu
    Copy the full SHA
    6982287 View commit details
    Browse the repository at this point in the history
  7. refactor(build): format code and reorder build steps

    - Consolidate multi-line if statements to single lines
    - Remove extra whitespace in module imports structure
    - Move generateDocs call to end of build sequence
    jinzhongjia committed Nov 21, 2025
    Configuration menu
    Copy the full SHA
    faba2c4 View commit details
    Browse the repository at this point in the history
  8. refactor(build): remove webui_lib parameter

    - Remove unused webui_lib parameter from buildExamples
    - Remove exe.linkLibrary call from function body
    - Reformat function signature for readability
    jinzhongjia committed Nov 21, 2025
    Configuration menu
    Copy the full SHA
    1ce4054 View commit details
    Browse the repository at this point in the history
  9. refactor(build): extract buildExamples options

    - Create BuildExamplesOptions struct to hold parameters
    - Update buildExamples function to accept options struct
    - Replace direct parameter references with options fields
    jinzhongjia committed Nov 21, 2025
    Configuration menu
    Copy the full SHA
    508e55e View commit details
    Browse the repository at this point in the history
  10. refactor(build): extract helpers and improve organization

    - Extract createObject and createExecutable helper functions
    - Refactor function signatures to use option structs
    - Extract buildExample function from buildExamples loop
    - Improve variable naming for code clarity
    - Add organizational section comments
    jinzhongjia committed Nov 21, 2025
    Configuration menu
    Copy the full SHA
    ac331ef View commit details
    Browse the repository at this point in the history
Loading