mirror of
https://github.com/aclist/dztui.git
synced 2024-12-28 05:12: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
|
||||
- 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
|
||||
### Fixed
|
||||
- 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
|
||||
|
||||
set -o pipefail
|
||||
version=2.8.0-rc.1
|
||||
version=2.8.0-rc.2
|
||||
|
||||
aid=221100
|
||||
game="dayz"
|
||||
|
@ -170,6 +170,15 @@ seen_news="$seen_news"
|
|||
|
||||
#Steam API key
|
||||
steam_api="$steam_api"
|
||||
|
||||
#Terminal emulator
|
||||
term="$term"
|
||||
|
||||
#Auto-install mods
|
||||
auto_install="$auto_install"
|
||||
|
||||
#Automod staging directory
|
||||
staging_dir="/tmp"
|
||||
END
|
||||
}
|
||||
write_desktop_file(){
|
||||
|
|
Loading…
Reference in a new issue