Skip to content

Commit

Permalink
remove splash screen for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe2824 committed Sep 29, 2024
1 parent c716ced commit f0f0f79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ jobs:
- run: pip install pyinstaller pyinstaller-versionfile
- run: pip install -r requirements.txt
- run: create-version-file metadata.yml --outfile file_version_info.txt --version ${{ steps.remove_prefix.outputs.tag_name }}
- run: pyinstaller --noconfirm --onefile --windowed --icon "images/icon.ico" --name "Wettkampftools" --add-data "images/;images/" --version-file="file_version_info.txt" --splash "images/splash.png" "app.py"
#- run: pyinstaller --noconfirm --onefile --windowed --icon "images/icon.ico" --name "Wettkampftools" --add-data "images/;images/" --version-file="file_version_info.txt" --splash "images/splash.png" "app.py"
- run: pyinstaller --noconfirm --onefile --windowed --icon "images/icon.ico" --name "Wettkampftools" --add-data "images/;images/" --version-file="file_version_info.txt" "app.py"

- uses: actions/upload-artifact@v3
with:
Expand Down
1 change: 0 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,6 @@ def headerData(self, section, orientation, role=Qt.ItemDataRole.DisplayRole):
return None

if __name__ == "__main__":
subprocess.Popen([sys.executable], env={**os.environ, "PYINSTALLER_RESET_ENVIRONMENT": "1"})
app = QApplication(sys.argv)
app.setWindowIcon(QIcon(os.path.join(basedir, 'images', 'icon.ico')))
window = MainApplication()
Expand Down

0 comments on commit f0f0f79

Please sign in to comment.