diff --git a/CHANGELOG.md b/CHANGELOG.md index e063834..e396843 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # CHANGELOG -* 2023.10.18 Current +* 2023.10.25 Current + * `gui-warp.app`: Staring with `sudo` fix * `xedec.c`: Hex hash conversion fix * 2023.10.10 ts-warp-1.4.0, gui-warp-1.0.11 (gui-warp-v1.0.18-mac), ns-warp-1.0.7 diff --git a/gui/ports/macOS/gui-warp.py b/gui/ports/macOS/gui-warp.py index 2a7bfa1..ae7dc2e 100644 --- a/gui/ports/macOS/gui-warp.py +++ b/gui/ports/macOS/gui-warp.py @@ -53,7 +53,7 @@ def __init__(self, width=800, height=560, self.password = '' - self.version = 'v1.0.18-mac' + self.version = 'v1.0.19-mac' self.width = width self.height = height @@ -278,7 +278,7 @@ def run_script(self, command): stdin=subprocess.PIPE) sout, serr = gwp.communicate(self.password) else: - gwp = subprocess.Popen([runcmd, command, prefix + '/etc', '-v', self.cmb_lvl.get(), self.tsw_opts.get()]) + gwp = subprocess.Popen([runcmd, command, prefix, '-v', self.cmb_lvl.get(), self.tsw_opts.get()]) def ask_password(self): padx = 10