-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e448cd
commit 117d64d
Showing
32 changed files
with
210,497 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# -*- mode: python ; coding: utf-8 -*- | ||
|
||
|
||
a = Analysis( | ||
['../../main.py'], # The main Python script | ||
pathex=[], # Additional paths if needed | ||
binaries=[], # Include binaries if needed | ||
datas=[], # Include any additional data files | ||
hiddenimports=[], # Hidden imports, if any | ||
hookspath=[], # Hook paths, if any | ||
hooksconfig={}, # Hook configuration, if any | ||
runtime_hooks=[], # Runtime hooks, if any | ||
excludes=[], # Exclude modules you don't want to bundle | ||
noarchive=False, # Don't bundle into a single archive | ||
optimize=0, # Level of optimization (0: no optimization) | ||
) | ||
|
||
pyz = PYZ(a.pure) | ||
|
||
exe = EXE( | ||
pyz, | ||
a.scripts, | ||
a.binaries, | ||
a.datas, | ||
[], | ||
name='GameSaveVault', # output executable name | ||
debug=False, # Set to True if you want debugging symbols | ||
bootloader_ignore_signals=False, # Ignore signals from bootloader | ||
strip=False, # Don't strip symbols (helps in debugging) | ||
upx=True, # Compress executable with UPX | ||
upx_exclude=[], # Exclude files from UPX compression | ||
runtime_tmpdir=None, # Runtime temp directory (optional) | ||
console=False, # Set to False to hide console window (for GUI apps) | ||
disable_windowed_traceback=False, # Set to True to disable traceback in windowed mode | ||
argv_emulation=False, # Set to True to emulate command-line arguments | ||
target_arch=None, # Architecture (optional, for cross-compilation) | ||
codesign_identity=None, # Optional: for signing executables on macOS | ||
entitlements_file=None, # Optional: for entitlements (macOS) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: 'Bug: Need attention immediately' | ||
labels: bug | ||
assignees: JulianStiebler | ||
|
||
--- | ||
|
||
**What Operating System are you on** - Windows, Ubuntu, Mac, ... | ||
- ... | ||
|
||
**Describe the bug** - A clear and concise description of what the bug is. | ||
- ... | ||
|
||
**To Reproduce** - Describe the steps needed to reproduce the bug. | ||
- ... | ||
|
||
**Expected behavior** A clear and concise description of what you expected to happen. | ||
- ... | ||
|
||
**Screenshots** - If applicable, add screenshots to help explain your problem. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: 'Feature: Requested' | ||
labels: feature | ||
assignees: JulianStiebler | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
- ... | ||
|
||
**Describe the solution you'd like to see implemented** | ||
- ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
name: Question | ||
about: If you have a question propose it here. | ||
title: 'Question: Attention needed' | ||
labels: question | ||
assignees: JulianStiebler | ||
|
||
--- | ||
|
||
**A clear and concise description of what the question is.** | ||
- ... |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
**/__pycache__/ | ||
.venv/ | ||
data/installedGames.json | ||
data/savegames/ | ||
build/ | ||
dist/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2025 Julian Stiebler (stblr) | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
## Splash Screen | ||
 | ||
|
||
## Main Window | ||
 | ||
|
||
## Dialogs | ||
|
||
### Add Missing Game | ||
 | ||
|
||
### Named Backup | ||
 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Security Policy | ||
|
||
## Supported Versions | ||
|
||
| Version | Supported | | ||
| ---------------------- | ------------------ | | ||
| v1.0.0 | :white_check_mark: | | ||
| lesser than v1.0.0 | :x: | | ||
|
||
|
||
## How we determine installed games | ||
|
||
First, we are checking for 2 Registry Keys. They are used to recognize the platform a game was installed with. | ||
- Registry Key for Steam (r"SOFTWARE\Valve\Steam") | ||
- Registry Key for Epic Games (r"SOFTWARE\WOW6432Node\Epic Games\EpicGamesLauncher") | ||
|
||
After determining your Epic & Steam Library, we check for existence of Files in any given SavePath we know. This way we avoid scanning & analyzing unrelated files and also remove a lot of overhead. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pyinstaller .github/CIBuildFiles/buildWindows.spec |
Empty file.
Oops, something went wrong.