Moved graphics and themes folders to assets
@@ -1,4 +1,2 @@
|
||||
include LICENSE.md
|
||||
recursive-include nw/assets *
|
||||
recursive-include nw/graphics *
|
||||
recursive-include nw/themes *
|
||||
|
||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 142 KiB After Width: | Height: | Size: 142 KiB |
|
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 45 KiB |
|
Before Width: | Height: | Size: 225 B After Width: | Height: | Size: 225 B |
|
Before Width: | Height: | Size: 296 B After Width: | Height: | Size: 296 B |
|
Before Width: | Height: | Size: 256 B After Width: | Height: | Size: 256 B |
|
Before Width: | Height: | Size: 280 B After Width: | Height: | Size: 280 B |
|
Before Width: | Height: | Size: 552 B After Width: | Height: | Size: 552 B |
|
Before Width: | Height: | Size: 204 B After Width: | Height: | Size: 204 B |
|
Before Width: | Height: | Size: 338 B After Width: | Height: | Size: 338 B |
|
Before Width: | Height: | Size: 375 B After Width: | Height: | Size: 375 B |
|
Before Width: | Height: | Size: 295 B After Width: | Height: | Size: 295 B |
|
Before Width: | Height: | Size: 563 B After Width: | Height: | Size: 563 B |
|
Before Width: | Height: | Size: 487 B After Width: | Height: | Size: 487 B |
@@ -172,8 +172,8 @@ class Config:
|
||||
self.appPath = getattr(sys, "_MEIPASS", path.abspath(path.dirname(__file__)))
|
||||
self.appRoot = path.join(self.appPath,path.pardir)
|
||||
self.assetPath = path.join(self.appPath,"assets")
|
||||
self.themeRoot = path.join(self.appPath,"themes")
|
||||
self.graphPath = path.join(self.appPath,"graphics")
|
||||
self.themeRoot = path.join(self.assetPath,"themes")
|
||||
self.graphPath = path.join(self.assetPath,"graphics")
|
||||
self.dictPath = path.join(self.assetPath,"dict")
|
||||
self.appIcon = path.join(self.graphPath, nwFiles.APP_ICON)
|
||||
|
||||
|
||||