Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove 0.1-rc4 files for users #222

Merged
merged 1 commit into from
Oct 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 15 additions & 8 deletions umu/umu_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from pathlib import Path
from re import Pattern
from re import compile as re_compile
from shutil import which
from shutil import rmtree, which
from ssl import SSLContext, create_default_context
from subprocess import PIPE, STDOUT, Popen, TimeoutExpired

Expand Down Expand Up @@ -183,26 +183,33 @@ def find_obsolete() -> None:
"umu_version.json",
"sniper_platform_0.20231211.70175",
}
launcher: Path

# Obsoleted files in $HOME/.local/share/umu from RC4 and below
for file in UMU_LOCAL.glob("*"):
is_umu_file: bool = file.name.endswith(".py") and (
file.name.startswith(("umu", "ulwgl"))
)
if is_umu_file or file.name in obsoleted:
log.warning("'%s' is obsolete", file)
if file.is_file():
file.unlink()
if file.is_dir():
rmtree(str(file))

# $HOME/.local/share/Steam/compatibilitytool.d
if (launcher := STEAM_COMPAT.joinpath("ULWGL-Launcher")).is_dir():
log.warning("'%s' is obsolete", launcher)
launcher = STEAM_COMPAT.joinpath("ULWGL-Launcher")
if launcher.is_dir():
rmtree(str(launcher))

# $HOME/.cache
if (cache := home.joinpath(".cache", "ULWGL")).is_dir():
log.warning("'%s' is obsolete", cache)
launcher = home.joinpath(".cache", "ULWGL")
if launcher.is_dir():
rmtree(str(launcher))

# $HOME/.local/share
if (ulwgl := home.joinpath(".local", "share", "ULWGL")).is_dir():
log.warning("'%s' is obsolete", ulwgl)
launcher = home.joinpath(".local", "share", "ULWGL")
if launcher.is_dir():
rmtree(str(launcher))


@contextmanager
Expand Down
Loading