Skip to content
This repository has been archived by the owner on Oct 27, 2024. It is now read-only.

Commit

Permalink
Version 0.5.2 build fix
Browse files Browse the repository at this point in the history
- Workaround for race condition while deleting folder (#44)
- More progress bars now show percentages rather than infinite loading states
- Added a cache system for extracted archives, helpful for big mods like Liveries Mega Pack
- Better documentation on running/building the program yourself
  • Loading branch information
NathanVaughn committed Nov 13, 2020
1 parent dc6ce2c commit 30b70e5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
PIPENV_VENV_IN_PROJECT: "1"

- name: Build
run: ./build.ps1 --installer
run: ./build.ps1 -installer

- name: Zip Build
run: Compress-Archive -Path "./target/MSFS Mod Manager" -DestinationPath "./target/MSFSModManagerPortable"
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ pythonenv*/*

*.pyc

config.ini
config.ini
src/main/resources/base/base.json
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,13 @@ To build a portable version of the program, run
./build.ps1
```

If you want a debug version of an `.exe`, add the `--debug` flag.
If you want a debug version of an `.exe`, add the `-debug` flag.

To build an installer version of the program, you first need to install
[NSIS](https://nsis.sourceforge.io/Main_Page).
Now, run the same build script with the `--installer` flag:
Now, run the same build script with the `-installer` flag:
```bash
./build.ps1 --installer
./build.ps1 -installer
```

## Disclaimer
Expand Down

0 comments on commit 30b70e5

Please sign in to comment.