mirror of
https://github.com/aclist/dztui.git
synced 2024-12-28 21:32:36 +01:00
Backend preparation
This commit is contained in:
parent
1b4310ec87
commit
1aef112b9f
2 changed files with 18 additions and 1 deletions
|
@ -5,6 +5,14 @@
|
||||||
- Custom query API
|
- Custom query API
|
||||||
- Standardize dialogs
|
- Standardize dialogs
|
||||||
|
|
||||||
|
## [2.8.0-rc.2] 2022-10-07
|
||||||
|
### Added
|
||||||
|
- Backend preparation for automods
|
||||||
|
|
||||||
|
## [2.8.0-rc.1] 2022-10-06
|
||||||
|
### Fixed
|
||||||
|
- Bug with normal mode not launching after closing progress bar
|
||||||
|
|
||||||
## [2.7.0-rc.26] 2022-10-04
|
## [2.7.0-rc.26] 2022-10-04
|
||||||
### Fixed
|
### Fixed
|
||||||
- Delete server list array not being emptied when going back to main menu
|
- Delete server list array not being emptied when going back to main menu
|
||||||
|
|
11
dzgui.sh
11
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=2.8.0-rc.1
|
version=2.8.0-rc.2
|
||||||
|
|
||||||
aid=221100
|
aid=221100
|
||||||
game="dayz"
|
game="dayz"
|
||||||
|
@ -170,6 +170,15 @@ seen_news="$seen_news"
|
||||||
|
|
||||||
#Steam API key
|
#Steam API key
|
||||||
steam_api="$steam_api"
|
steam_api="$steam_api"
|
||||||
|
|
||||||
|
#Terminal emulator
|
||||||
|
term="$term"
|
||||||
|
|
||||||
|
#Auto-install mods
|
||||||
|
auto_install="$auto_install"
|
||||||
|
|
||||||
|
#Automod staging directory
|
||||||
|
staging_dir="/tmp"
|
||||||
END
|
END
|
||||||
}
|
}
|
||||||
write_desktop_file(){
|
write_desktop_file(){
|
||||||
|
|
Loading…
Reference in a new issue