Skip to content

Commit

Permalink
refactor/ui->qt5
Browse files Browse the repository at this point in the history
drop the old "ui" folder to avoid warning logs
  • Loading branch information
JarbasAl committed Apr 9, 2024
1 parent ea7995d commit 275ca88
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def display_wolfie(self):
if image:
self.gui["wolfram_image"] = image
# scrollable full result page
self.gui.show_page(join(self.root_dir, "ui", "wolf"), override_idle=45)
self.gui.show_page(join(self.root_dir, "qt5", "wolf"), override_idle=45)

def stop_session(self, sess):
if sess.session_id in self.session_results:
Expand Down
File renamed without changes
File renamed without changes.
2 changes: 1 addition & 1 deletion scripts/prepare_skillstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

base_dir = dirname(dirname(__file__))
desktop_dir = join(base_dir, "res", "desktop")
android_ui = join(base_dir, "ui", "+android")
android_ui = join(base_dir, "qt5", "+android")
makedirs(desktop_dir, exist_ok=True)

readme = join(base_dir, "README.md")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def get_requirements(requirements_filename: str):


def find_resource_files():
resource_base_dirs = ("locale", "ui", "vocab", "dialog", "regex", "skill")
resource_base_dirs = ("locale", "qt5")
base_dir = path.dirname(__file__)
package_data = ["*.json"]
for res in resource_base_dirs:
Expand Down

0 comments on commit 275ca88

Please sign in to comment.