Compare commits

..

No commits in common. "80c58be3be64141f68a78fd61f2cedc1ca443cf5" and "4f722c4655bc886a9978a3d15894981b61481d48" have entirely different histories.

4 changed files with 3 additions and 10 deletions

View File

@ -48,7 +48,6 @@
- Packaging structure
- Suppress log messages from imported modules
- Embed Workshop link in Options menu
- Disable overlay scrollbars on server tables
## Dropped
- Debug mode

View File

@ -48,7 +48,6 @@
- Packaging structure
- Suppress log messages from imported modules
- Embed Workshop link in Options menu
- Disable overlay scrollbars on server tables
## Dropped
- Debug mode

View File

@ -21,7 +21,7 @@ if TYPE_CHECKING:
class ScrollableTree(Gtk.ScrolledWindow):
def __init__(self, tree: "ServerTreeView") -> None:
super().__init__(overlay_scrolling=False)
super().__init__()
self.tree = tree
self.add(tree)

View File

@ -1,7 +1,6 @@
import build
import os
import subprocess
import tarfile
from importlib import metadata
from pathlib import Path
@ -36,10 +35,6 @@ env["PYAPP_PYTHON_VERSION"] = "3.13"
proc = subprocess.run(["cargo", "build", "--release"], env=env, cwd=pyapp_dir)
if proc.returncode == 0:
output_exe = root.joinpath("pyapp-latest/target/release/pyapp")
release_exe = output.joinpath(APP_NAME_LOWER)
release_exe = output.joinpath("dzgui")
output_exe.rename(release_exe)
tarname = APP_NAME_LOWER + ".tar.gz"
tarpath = output.joinpath(tarname)
with tarfile.open(tarpath, "w:gz") as tar:
tar.add(release_exe)
print(f"Wrote tarfile to '{tarpath}'")
print(f"Wrote output to '{release_exe}'")