Skip to content

Commit

Permalink
gui-warp.app: Staring with sudo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mezantrop committed Oct 25, 2023
1 parent b86abe0 commit f89f7bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions gui/ports/macOS/gui-warp.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit f89f7bc

Please sign in to comment.