mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 12:03:00 +02:00
feat: add icon
This commit is contained in:
parent
8cc1afd5fa
commit
5d81a1a87e
4 changed files with 14 additions and 6 deletions
|
@ -1,5 +1,12 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [5.2.2] 2024-04-18
|
||||||
|
### Added
|
||||||
|
- Cover artwork/icons for Steam "Recent Games" and tree view
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Updated documentation to the v5.0.0 spec
|
||||||
|
|
||||||
## [5.2.1] 2024-04-01
|
## [5.2.1] 2024-04-01
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fixed a regression where where the first-time setup dialog would not trigger auto-path discovery
|
- Fixed a regression where where the first-time setup dialog would not trigger auto-path discovery
|
||||||
|
|
9
dzgui.sh
9
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
version=5.2.1
|
version=5.2.2
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
|
@ -269,7 +269,7 @@ freedesktop_dirs(){
|
||||||
local img_url="$stable_url/images"
|
local img_url="$stable_url/images"
|
||||||
curl -s "$version_url" > "$script_path"
|
curl -s "$version_url" > "$script_path"
|
||||||
chmod +x "$script_path"
|
chmod +x "$script_path"
|
||||||
for i in dzgui grid.png hero.png logo.png; do
|
for i in dzgui grid.png hero.png logo.png icon.png; do
|
||||||
curl -s "$img_url/$i" > "$share_path/$i"
|
curl -s "$img_url/$i" > "$share_path/$i"
|
||||||
done
|
done
|
||||||
write_desktop_file > "$freedesktop_path/$app_name.desktop"
|
write_desktop_file > "$freedesktop_path/$app_name.desktop"
|
||||||
|
@ -537,10 +537,10 @@ fetch_helpers_by_sum(){
|
||||||
source "$config_file"
|
source "$config_file"
|
||||||
declare -A sums
|
declare -A sums
|
||||||
sums=(
|
sums=(
|
||||||
["ui.py"]="9bfa6de9a648c7c8aa24bdec66a38eae"
|
["ui.py"]="7b9dc3cd70c9d388536c03d18d3ba0b5"
|
||||||
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
||||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||||
["funcs"]="48ed212978d20bc24a1adda38389e1b1"
|
["funcs"]="35db0238f3bb8691107aefd2aee51d0f"
|
||||||
)
|
)
|
||||||
local author="aclist"
|
local author="aclist"
|
||||||
local repo="dztui"
|
local repo="dztui"
|
||||||
|
@ -601,6 +601,7 @@ fetch_helpers(){
|
||||||
fetch_dzq
|
fetch_dzq
|
||||||
fetch_geo_file
|
fetch_geo_file
|
||||||
fetch_helpers_by_sum
|
fetch_helpers_by_sum
|
||||||
|
[[ ! -f $share_path/icon.png ]] && freedesktop_dirs
|
||||||
}
|
}
|
||||||
raise_error_and_quit(){
|
raise_error_and_quit(){
|
||||||
local msg="$1"
|
local msg="$1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=5.2.1
|
version=5.2.2
|
||||||
|
|
||||||
#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.1
|
# 5.2.2
|
||||||
app_name = "DZGUI"
|
app_name = "DZGUI"
|
||||||
|
|
||||||
start_time = 0
|
start_time = 0
|
||||||
|
|
Loading…
Reference in a new issue