Skip to content

Commit

Permalink
Remove console/'DOS' screen from binary. Reading for dev certificate.…
Browse files Browse the repository at this point in the history
… build v2.0.0-beta4-1
  • Loading branch information
freQniK committed Aug 21, 2024
1 parent 7ab9962 commit 6fcda9d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion meile_gui.spec
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ exe = EXE(
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
Expand Down
7 changes: 5 additions & 2 deletions src/typedef/konstants.py
Original file line number Diff line number Diff line change
Expand Up @@ -545,8 +545,8 @@ class IBCTokens():
#mu_coins = ["tsent", "udvpn", "uscrt", "uosmo", "uatom", "udec"]
class TextStrings():
dash = "-"
VERSION = "2.0.0-beta4"
BUILD = "1722572428692"
VERSION = "v2.0.0-beta4"
BUILD = "1724240094412"
RootTag = "SENTINEL"
PassedHealthCheck = "Passed Sentinel Health Check"
FailedHealthCheck = "Failed Sentinel Health Check"
Expand Down Expand Up @@ -593,3 +593,6 @@ class NodeKeys():






2 changes: 1 addition & 1 deletion src/ui/screens.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ def update_wallet(self, dt):
def ping(self):
UUID = Meile.app.root.get_screen(WindowNames.PRELOAD).UUID
try:
uuid_dict = {'uuid' : "%s" % UUID, 'os' : "l"}
uuid_dict = {'uuid' : "%s" % UUID, 'os' : "w"}
Request = HTTPRequests.MakeRequest(TIMEOUT=3)
http = Request.hadapter()
ping = http.post(HTTParams.SERVER_URL + HTTParams.API_PING_ENDPOINT, json=uuid_dict)
Expand Down

0 comments on commit 6fcda9d

Please sign in to comment.