Skip to content

Commit

Permalink
Merge branch 'develop' into QWebEngineView
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisCris committed Apr 17, 2024
2 parents 2595063 + 23d5c36 commit ecde9fb
Show file tree
Hide file tree
Showing 11 changed files with 1,035 additions and 183 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
Loading

0 comments on commit ecde9fb

Please sign in to comment.