v1.9.1 release & Github issue template update

This commit is contained in:
Adnan Hodzic 2022-01-09 14:03:35 +01:00
parent 5e503f89c2
commit 8fb5469ace
3 changed files with 11 additions and 5 deletions

View File

@ -1,11 +1,17 @@
### Error output: ### Error output:
```text ```text
Paste here error output Add/paste error output
``` ```
--- ---
### System information: ### System information:
```text
Paste here output of the auto-cpufreq --debug Add/paste output of:
``` ```
auto-cpufreq --debug
```
#### Without providing requested information your issue might be ignored!
--- ---

View File

@ -116,7 +116,7 @@ def app_version():
# snap package # snap package
if os.getenv("PKG_MARKER") == "SNAP": if os.getenv("PKG_MARKER") == "SNAP":
print(getoutput("echo Snap version: $SNAP_VERSION")) print(getoutput("echo \(Snap\) $SNAP_VERSION"))
# aur package # aur package
elif dist_name in ["arch", "manjaro", "garuda"]: elif dist_name in ["arch", "manjaro", "garuda"]:
aur_pkg_check = call("pacman -Qs auto-cpufreq > /dev/null", shell=True) aur_pkg_check = call("pacman -Qs auto-cpufreq > /dev/null", shell=True)

View File

@ -13,7 +13,7 @@ def read(name):
return f.read() return f.read()
# Used for the tar.gz/snap releases # Used for the tar.gz/snap releases
VERSION = "1.9.0" VERSION = "1.9.1"
setup( setup(
name="auto-cpufreq", name="auto-cpufreq",