Skip to content

Commit

Permalink
Add aspectj files to repo
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanBlob committed Aug 15, 2023
1 parent f4436a7 commit 849bdc4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
Binary file added aspectj-1.9.19.jar
Binary file not shown.
Binary file added aspectjweaver-1.9.19.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"packages": ["six", "pkg_resources._vendor"],
"includes": ["vdf"],
"excludes": [],
'include_files' : ['textures_annotations.xml', ],
'include_files' : ['textures_annotations.xml', 'aspectj-1.9.19.jar', 'aspectjweaver-1.9.19.jar'],
}

# GUI applications require a different base on Windows (the default is for a
Expand Down
6 changes: 6 additions & 0 deletions ui/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

import ui.gameinfo
import ui.log
import shutil


import tkinter as tk

Expand All @@ -27,6 +29,7 @@ def __init__(self, path_list, gameInfo):
ModDatabase.__lastInstance = self

def locateMods(self):

self.mods = []
ModDatabase.Prefixes = {}

Expand Down Expand Up @@ -364,6 +367,9 @@ def enable(self):
except:
pass

shutil.copyfile("aspectj-1.9.19.jar", self.path + "/../../aspectj-1.9.19.jar")
shutil.copyfile("aspectjweaver-1.9.19.jar", self.path + "/../../aspectjweaver-1.9.19.jar")

try:
f = open(self.path + "/../../config.json","r", encoding='utf-8')
jsonObj = json.load(f)
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

version = "0.11.4"
version = "0.11.5"

0 comments on commit 849bdc4

Please sign in to comment.