Skip to content

Commit

Permalink
chore: Atualiza versão para 1.0.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
josejefferson committed Dec 28, 2024
1 parent 0cb8e29 commit 2a997f5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 747 deletions.
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions dist/js/joystick/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mobystk",
"version": "0.0.0",
"version": "1.0.0-beta",
"repository": "https://github.com/josejefferson/mobystk",
"author": "Jefferson Dantas <jeffersonn.jjdaj@gmail.com>",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions server/src/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ def createShortcuts():
# Obtém a versão do aplicativo
def getVersion():
try:
packageJson1 = os.abspath(os.path.join(os.path.dirname(__file__), "../../package.json")) # Python
packageJson2 = os.abspath(os.path.join(os.path.dirname(__file__), "../package.json")) # PyInstaller
packageJson1 = os.path.abspath(os.path.join(os.path.dirname(__file__), "../../package.json")) # Python
packageJson2 = os.path.abspath(os.path.join(os.path.dirname(__file__), "../package.json")) # PyInstaller
packageJson = packageJson1 if os.path.isfile(packageJson1) else packageJson2

with open(packageJson, "r") as f:
Expand Down
Loading

0 comments on commit 2a997f5

Please sign in to comment.