Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

@neyunse
Copy link
Collaborator

@neyunse neyunse commented Aug 4, 2025

No description provided.

Copilot AI review requested due to automatic review settings August 4, 2025 01:08
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR adds multiplatform support to the Visual Novel Engine build system, enabling builds for Windows, Linux, and macOS through GitHub Actions CI/CD.

  • Adds GitHub Actions workflow for multiplatform builds and automated releases
  • Updates build scripts to handle platform-specific executables and archives
  • Removes the setup.py file, indicating a shift away from traditional Python packaging
  • Increments version from v1.0.0-alpha.12 to v1.0.0-alpha.13

Reviewed Changes

Copilot reviewed 8 out of 10 changed files in this pull request and generated 5 comments.

Show a summary per file
File Description
vne/_version.py Bumps version to alpha.13
setup.py Completely removes traditional Python packaging setup
main.py Adds platform detection for bootstrapper executable paths
engine.spec Disables UPX compression and removes extra blank line
build.py Adds platform-specific build outputs and zip naming
bootstrapper.spec Disables UPX compression and adds env.py hook
.github/workflows/docs.yml Adds release trigger for documentation workflow
.github/workflows/build-multiplatform.yml New multiplatform CI/CD workflow with artifact handling

exe_source = None

if platform.system() == "Windows":
exe_source = os.path.join(os.path.dirname(sys.executable), "lib", "win", "bootstrapper.exe")
Copy link

Copilot AI Aug 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Windows-specific exe_source assignment is now unreachable code because it appears after the platform check but outside any conditional block. This line should be moved inside the Windows condition block.

Copilot uses AI. Check for mistakes.
@neyunse neyunse merged commit 810729d into gh/neyunse/dev Aug 4, 2025
1 check passed
@neyunse neyunse deleted the gh/neyunse/test branch August 4, 2025 01:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants