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 02:50
@neyunse neyunse merged commit 63b08dc into dev Aug 4, 2025
1 check was pending
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 updates the build configuration and PyInstaller specifications to include pygame dependencies and enable console output for debugging purposes.

  • Added pygame and pygame-ce to hidden imports for PyInstaller packaging
  • Enabled console output for both engine and bootstrapper executables
  • Modified GitHub workflow to trigger only on closed pull requests, removing push triggers

Reviewed Changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.

File Description
engine.spec Added pygame dependencies and enabled console output
bootstrapper.spec Added pygame dependencies and enabled console output
.github/workflows/build-multiplatform.yml Removed push trigger, keeping only closed PR trigger

binaries=[],
datas=[],
hiddenimports=["pyzipper", "cryptography"],
hiddenimports=["pyzipper", "cryptography", "pygame", "pygame-ce"],
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.

Including both 'pygame' and 'pygame-ce' in hiddenimports may cause conflicts since pygame-ce is a community edition fork of pygame. Consider using only one of these libraries to avoid potential import conflicts.

Suggested change
hiddenimports=["pyzipper", "cryptography", "pygame", "pygame-ce"],
hiddenimports=["pyzipper", "cryptography", "pygame-ce"],

Copilot uses AI. Check for mistakes.
binaries=[],
datas=[],
hiddenimports=["pyzipper", "cryptography"],
hiddenimports=["pyzipper", "cryptography", "pygame", "pygame-ce"],
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.

Including both 'pygame' and 'pygame-ce' in hiddenimports may cause conflicts since pygame-ce is a community edition fork of pygame. Consider using only one of these libraries to avoid potential import conflicts.

Suggested change
hiddenimports=["pyzipper", "cryptography", "pygame", "pygame-ce"],
hiddenimports=["pyzipper", "cryptography", "pygame-ce"],

Copilot uses AI. Check for mistakes.
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