Skip to content

Commit

Permalink
Merge 0.7.0 into QWebEngineView
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisCris committed Apr 17, 2024
2 parents 2595063 + 0b9e865 commit 2be2b14
Show file tree
Hide file tree
Showing 8 changed files with 232 additions and 168 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ keywords = ["palworld", "editor", "pal"]
license = {file = "LICENSE"}
requires-python = ">=3.11"
readme = "README.md"
version = "0.6.0"
version = "0.7.0"
dependencies = [
"setuptools==69.1.0",
"palworld_save_tools==0.22.0",
Expand Down
3 changes: 2 additions & 1 deletion src/palworld_pal_editor/api/save.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import platform
import traceback
from flask import Blueprint, jsonify, request
from flask_jwt_extended import jwt_required
Expand All @@ -13,7 +14,7 @@
@save_blueprint.route("/fetch_config", methods=["GET"])
def fetch_config():
tk_status = False
if Config.mode == "gui":
if Config.mode == "gui" and platform.system() != "Darwin":
try:
import tkinter as tk
tk_status = True
Expand Down
2 changes: 1 addition & 1 deletion src/palworld_pal_editor/assets/data/pal_xp_thresholds.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
4007, 5021, 6253, 7747, 9555, 11740, 14378, 17559, 21392, 26007, 31561, 38241,
46272, 55925, 67524, 81458, 98195, 118294, 142429, 171406, 206194, 247955,
298134, 358305, 430525, 517205, 621236, 746089, 895928, 1075751, 1291554,
1550533, 1861323, 2234286, 2681857
1550533, 1861323, 2234286, 2681807
]
2 changes: 1 addition & 1 deletion src/palworld_pal_editor/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

CONFIG_PATH = PROGRAM_PATH / 'config.json'

VERSION = "0.6.0"
VERSION = "0.7.0"

class Config:
i18n: str = "en"
Expand Down
Loading

0 comments on commit 2be2b14

Please sign in to comment.