mirror of
https://github.com/aclist/dztui.git
synced 2024-12-28 21:32:36 +01:00
Hotfix for #40
This commit is contained in:
parent
c160d321cb
commit
5824f971bb
2 changed files with 6 additions and 2 deletions
|
@ -5,6 +5,10 @@
|
||||||
- Custom query API
|
- Custom query API
|
||||||
- Standardize dialogs
|
- Standardize dialogs
|
||||||
|
|
||||||
|
## [3.1.0-rc.16] 2022-11-25
|
||||||
|
### Fixed
|
||||||
|
- Hotfix for server modlists returning multiples of same mod
|
||||||
|
|
||||||
## [3.1.0-rc.15] 2022-11-24
|
## [3.1.0-rc.15] 2022-11-24
|
||||||
### Fixed
|
### Fixed
|
||||||
- Faster path discovery on initial setup
|
- Faster path discovery on initial setup
|
||||||
|
|
4
dzgui.sh
4
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=3.1.0-rc.15
|
version=3.1.0-rc.16
|
||||||
|
|
||||||
aid=221100
|
aid=221100
|
||||||
game="dayz"
|
game="dayz"
|
||||||
|
@ -814,7 +814,7 @@ server_modlist(){
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
compare(){
|
compare(){
|
||||||
diff=$(comm -23 <(server_modlist | sort) <(installed_mods | sort))
|
diff=$(comm -23 <(server_modlist | sort -u) <(installed_mods | sort))
|
||||||
}
|
}
|
||||||
|
|
||||||
installed_mods(){
|
installed_mods(){
|
||||||
|
|
Loading…
Reference in a new issue