1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Separated table tiles into 4K and normal resolution.

This commit is contained in:
Joe R 2023-10-29 11:20:09 -04:00
parent c867b2b6d5
commit 7e43859ad6
17 changed files with 12 additions and 5 deletions

BIN
data/tiles/Fade_White.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

BIN
data/tiles/Fade_White.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

BIN
data/tiles/Floral.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
data/tiles/Floral.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
data/tiles/Gold.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
data/tiles/Gold.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 395 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 MiB

View file

@ -1210,9 +1210,10 @@ class Application:
tile = Tile()
tile.filename = f
n = image_ext_re.sub("", name)
if os.path.split(dirname)[-1] == 'stretch':
subdir = os.path.split(dirname)[-1]
if subdir == 'stretch' or subdir == 'stretch-4k':
tile.stretch = 1
if os.path.split(dirname)[-1] == 'save-aspect':
if subdir == 'save-aspect' or subdir == 'save-aspect-4k':
tile.stretch = 1
tile.save_aspect = 1
# n = re.sub("[-_]", " ", n)
@ -1230,7 +1231,9 @@ class Application:
self,
("tiles-*",
os.path.join("tiles", "stretch"),
os.path.join("tiles", "save-aspect")),
os.path.join("tiles", "stretch-4k"),
os.path.join("tiles", "save-aspect"),
os.path.join("tiles", "save-aspect-4k")),
"PYSOL_TILES")
# print dirs
found, t = [], set()

View file

@ -184,6 +184,8 @@ def pysol_init(app, args):
os.path.join(app.dn.config, "tiles"),
os.path.join(app.dn.config, "tiles", "stretch"),
os.path.join(app.dn.config, "tiles", "save-aspect"),
os.path.join(app.dn.config, "tiles", "stretch-4k"),
os.path.join(app.dn.config, "tiles", "save-aspect-4k"),
os.path.join(app.dn.config, "cardsets"),
os.path.join(app.dn.config, "plugins"),
):

View file

@ -84,7 +84,8 @@ class SelectTileData(SelectDialogTreeData):
None, _("Images"),
lambda tile: (os.path.basename(
os.path.dirname(tile.filename)) in
('stretch', 'save-aspect')), expanded=0),
('stretch', 'save-aspect', 'stretch-4k',
'save-aspect-4k')), expanded=0),
SelectTileNode(None, _("Solid Colors"), (
SelectTileLeaf(None, None, _("Azure"), key="#0082df"),
SelectTileLeaf(None, None, _("Black"), key="#000000"),
@ -320,7 +321,8 @@ class SelectTileDialogWithPreview(MfxDialog):
if (self.criteria.type == "Images" and os.path.basename(
os.path.dirname(tile.filename)) not in
('stretch', 'save-aspect')):
('stretch', 'save-aspect', 'stretch-4k',
'save-aspect-4k')):
continue
if (self.criteria.type == "Tiles" and os.path.basename(