Skip to content

Commit

Permalink
Bug Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
EscapedShadows committed Oct 22, 2024
1 parent d4a69d7 commit 711dceb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 10 deletions.
4 changes: 0 additions & 4 deletions LGBTQuify.py
Original file line number Diff line number Diff line change
@@ -1,4 +0,0 @@
import os

if not os.path.isfile("index.json"):
print("Oopsies")
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# LGBTQuify V1.3.1
# LGBTQuify V1.3.2

### LGBTQUify is a project designed to bring pride to Linux by allowing users to customize their systems with pride-themed elements. From the Plymouth boot splash to icon themes, LGBTQUify lets you proudly display your identity on your desktop.

Expand Down
3 changes: 1 addition & 2 deletions index.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"flags/non_binary.svg",
"flags/pansexual.svg",
"flags/rainbow_flag.svg",
"flags/transgender.svg",
"flags/"
"flags/transgender.svg"
]
}
5 changes: 3 additions & 2 deletions modules/updater.py → modules/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import requests
from packaging.version import Version

def updater(local):
def version(local):
local_version = Version(local)
github_version = Version(requests.get("https://raw.githubusercontent.com/EscapedShadows/LGBTQuify/refs/heads/main/version.txt").text)

Expand All @@ -12,4 +12,5 @@ def updater(local):
install = input("Would you like to install the update? (y/n): ")
install = True if install.lower() == "y" else False

return install
return install
return None
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.1
1.3.2

0 comments on commit 711dceb

Please sign in to comment.