Separated table tiles into 4K and normal resolution.
BIN
data/tiles/Fade_White.gif
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
data/tiles/Fade_White.png
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
data/tiles/Floral.gif
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
data/tiles/Floral.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
data/tiles/Gold.gif
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
data/tiles/Gold.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
data/tiles/save-aspect-4k/4K_Green_Felt.jpg
Normal file
After Width: | Height: | Size: 4.6 MiB |
BIN
data/tiles/save-aspect-4k/4K_Red_Felt.jpg
Normal file
After Width: | Height: | Size: 5.5 MiB |
BIN
data/tiles/save-aspect-4k/Golden_Ratio.jpg
Normal file
After Width: | Height: | Size: 5.2 MiB |
BIN
data/tiles/save-aspect-4k/Wood_Gloss.jpg
Normal file
After Width: | Height: | Size: 5.3 MiB |
Before Width: | Height: | Size: 3.1 MiB |
Before Width: | Height: | Size: 4 MiB |
BIN
data/tiles/save-aspect/Taj_Mahal.jpg
Normal file
After Width: | Height: | Size: 395 KiB |
Before Width: | Height: | Size: 5.5 MiB |
|
@ -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()
|
||||
|
|
|
@ -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"),
|
||||
):
|
||||
|
|
|
@ -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(
|
||||
|
|