mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 20:13:00 +02:00
chore: normalize version
This commit is contained in:
parent
ecfc2c490e
commit
4cb00d6fe9
4 changed files with 15 additions and 5 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,5 +1,15 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [5.2.3] 2024-04-19
|
||||||
|
### Added
|
||||||
|
- Added Debug Mode button to main menu
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Reworded debug mode notification dialog
|
||||||
|
|
||||||
|
### Dropped
|
||||||
|
- Dropped seen_news key from configs
|
||||||
|
|
||||||
## [5.2.2] 2024-04-18
|
## [5.2.2] 2024-04-18
|
||||||
### Added
|
### Added
|
||||||
- Cover artwork/icons for Steam "Recent Games" and tree view
|
- Cover artwork/icons for Steam "Recent Games" and tree view
|
||||||
|
|
6
dzgui.sh
6
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
version=5.2.2-rc.4
|
version=5.2.3-rc.1
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
|
@ -533,10 +533,10 @@ fetch_helpers_by_sum(){
|
||||||
source "$config_file"
|
source "$config_file"
|
||||||
declare -A sums
|
declare -A sums
|
||||||
sums=(
|
sums=(
|
||||||
["ui.py"]="4202c2235f99e6812b33ccd131988014"
|
["ui.py"]="9eeff067994b1e8010eb37f1db1b34bc"
|
||||||
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
||||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||||
["funcs"]="074f58d60c53c3bcd5073f2d28ecc425"
|
["funcs"]="6fe6e3ff99237c77ef855a51420c51f0"
|
||||||
)
|
)
|
||||||
local author="aclist"
|
local author="aclist"
|
||||||
local repo="dztui"
|
local repo="dztui"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=5.2.2.rc-4
|
version=5.2.3.rc-1
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
|
|
|
@ -18,7 +18,7 @@ locale.setlocale(locale.LC_ALL, '')
|
||||||
gi.require_version("Gtk", "3.0")
|
gi.require_version("Gtk", "3.0")
|
||||||
from gi.repository import Gtk, GLib, Gdk, GObject, Pango
|
from gi.repository import Gtk, GLib, Gdk, GObject, Pango
|
||||||
|
|
||||||
# 5.2.2.rc-4
|
# 5.2.3.rc-1
|
||||||
app_name = "DZGUI"
|
app_name = "DZGUI"
|
||||||
|
|
||||||
start_time = 0
|
start_time = 0
|
||||||
|
|
Loading…
Reference in a new issue