mirror of
https://github.com/aclist/dztui.git
synced 2026-08-30 11:47:17 +02:00
Compare commits
No commits in common. "80c58be3be64141f68a78fd61f2cedc1ca443cf5" and "4f722c4655bc886a9978a3d15894981b61481d48" have entirely different histories.
80c58be3be
...
4f722c4655
@ -48,7 +48,6 @@
|
|||||||
- Packaging structure
|
- Packaging structure
|
||||||
- Suppress log messages from imported modules
|
- Suppress log messages from imported modules
|
||||||
- Embed Workshop link in Options menu
|
- Embed Workshop link in Options menu
|
||||||
- Disable overlay scrollbars on server tables
|
|
||||||
|
|
||||||
## Dropped
|
## Dropped
|
||||||
- Debug mode
|
- Debug mode
|
||||||
|
|||||||
@ -48,7 +48,6 @@
|
|||||||
- Packaging structure
|
- Packaging structure
|
||||||
- Suppress log messages from imported modules
|
- Suppress log messages from imported modules
|
||||||
- Embed Workshop link in Options menu
|
- Embed Workshop link in Options menu
|
||||||
- Disable overlay scrollbars on server tables
|
|
||||||
|
|
||||||
## Dropped
|
## Dropped
|
||||||
- Debug mode
|
- Debug mode
|
||||||
|
|||||||
@ -21,7 +21,7 @@ if TYPE_CHECKING:
|
|||||||
|
|
||||||
class ScrollableTree(Gtk.ScrolledWindow):
|
class ScrollableTree(Gtk.ScrolledWindow):
|
||||||
def __init__(self, tree: "ServerTreeView") -> None:
|
def __init__(self, tree: "ServerTreeView") -> None:
|
||||||
super().__init__(overlay_scrolling=False)
|
super().__init__()
|
||||||
|
|
||||||
self.tree = tree
|
self.tree = tree
|
||||||
self.add(tree)
|
self.add(tree)
|
||||||
|
|||||||
@ -1,7 +1,6 @@
|
|||||||
import build
|
import build
|
||||||
import os
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
import tarfile
|
|
||||||
|
|
||||||
from importlib import metadata
|
from importlib import metadata
|
||||||
from pathlib import Path
|
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)
|
proc = subprocess.run(["cargo", "build", "--release"], env=env, cwd=pyapp_dir)
|
||||||
if proc.returncode == 0:
|
if proc.returncode == 0:
|
||||||
output_exe = root.joinpath("pyapp-latest/target/release/pyapp")
|
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)
|
output_exe.rename(release_exe)
|
||||||
tarname = APP_NAME_LOWER + ".tar.gz"
|
print(f"Wrote output to '{release_exe}'")
|
||||||
tarpath = output.joinpath(tarname)
|
|
||||||
with tarfile.open(tarpath, "w:gz") as tar:
|
|
||||||
tar.add(release_exe)
|
|
||||||
print(f"Wrote tarfile to '{tarpath}'")
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user