2022.01.25.2

This commit is contained in:
ульба 2022-01-25 16:27:41 +05:00
parent 67059346c9
commit 54bf799855
14 changed files with 93 additions and 6 deletions

View File

@ -0,0 +1,26 @@
from dataclasses import dataclass
from MockupEngineer.templates import Template
@dataclass
class Device(Template):
def __device_init__(self):
self.manufacturer = 'Apple'
self.name = 'iMac 21"'
self.type = 'pc'
self.year = 2015
self.resolution = '{width} x {height}'.format(width=4096, height=2304)
self.__template_path__ = 'imac212015'
self.__colors__ = {"Silver": 'silver'}
self.__portrait_width__ = 1693
self.__portrait_height__ = 954
self.__portrait_x__ = 173
self.__portrait_y__ = 178
self.__landscape_width__ = 1693
self.__landscape_height__ = 954
self.__landscape_x__ = 173
self.__landscape_y__ = 178

Binary file not shown.

After

Width:  |  Height:  |  Size: 560 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 508 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 508 KiB

View File

@ -0,0 +1,26 @@
from dataclasses import dataclass
from MockupEngineer.templates import Template
@dataclass
class Device(Template):
def __device_init__(self):
self.manufacturer = 'Apple'
self.name = 'MacBook Pro 13"'
self.type = 'pc'
self.year = 2015
self.resolution = '{width} x {height}'.format(width=2560, height=1600)
self.__template_path__ = 'macbookpro132015'
self.__colors__ = {"Silver": 'silver'}
self.__portrait_width__ = 1424
self.__portrait_height__ = 890
self.__portrait_x__ = 388
self.__portrait_y__ = 176
self.__landscape_width__ = 1424
self.__landscape_height__ = 890
self.__landscape_x__ = 388
self.__landscape_y__ = 176

Binary file not shown.

After

Width:  |  Height:  |  Size: 374 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 KiB

View File

@ -0,0 +1,26 @@
from dataclasses import dataclass
from MockupEngineer.templates import Template
@dataclass
class Device(Template):
def __device_init__(self):
self.manufacturer = 'Apple'
self.name = 'MacBook Pro 15"'
self.type = 'pc'
self.year = 2015
self.resolution = '{width} x {height}'.format(width=2880, height=1800)
self.__template_path__ = 'macbookpro152015'
self.__colors__ = {"Silver": 'silver'}
self.__portrait_width__ = 1450
self.__portrait_height__ = 906
self.__portrait_x__ = 328
self.__portrait_y__ = 167
self.__landscape_width__ = 1450
self.__landscape_height__ = 906
self.__landscape_x__ = 328
self.__landscape_y__ = 167

Binary file not shown.

After

Width:  |  Height:  |  Size: 347 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 263 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 263 KiB

View File

@ -137,6 +137,20 @@ Full list of all currently supported mockups
* Just Black
* Sorta Sage
### Computers
* [Apple iMac 21"](https://raw.githubusercontent.com/ulbwazhine/MockupEngineer/main/MockupEngineer/templates/imac212015/example.png) [4096 x 2304] (2015)
* Silver
* [Apple MacBook 12"](https://raw.githubusercontent.com/ulbwazhine/MockupEngineer/main/MockupEngineer/templates/macbook122016/example.png) [2304 x 1440] (2016)
* Gold
* Space Gray
* [Apple MacBook Pro 13"](https://raw.githubusercontent.com/ulbwazhine/MockupEngineer/main/MockupEngineer/templates/macbookpro132015/example.png) [2560 x 1600] (2015)
* Silver
* [Apple MacBook Pro 15"](https://raw.githubusercontent.com/ulbwazhine/MockupEngineer/main/MockupEngineer/templates/macbookpro152015/example.png) [2880 x 1800] (2015)
* Silver
### Tablets
* [Apple iPad 9](https://raw.githubusercontent.com/ulbwazhine/MockupEngineer/main/MockupEngineer/templates/ipad9/example.png) [2160 x 1620] (2021)
* Gold
@ -163,11 +177,6 @@ Full list of all currently supported mockups
* Silver
* Space Gray
### Computers
* [Apple MacBook 12"](https://raw.githubusercontent.com/ulbwazhine/MockupEngineer/main/MockupEngineer/templates/macbook122016/example.png) [2304 x 1440] (2016)
* Gold
* Space Gray
### Wearable devices
* [Apple Watch Series 6 44mm](https://raw.githubusercontent.com/ulbwazhine/MockupEngineer/main/MockupEngineer/templates/watchseries644mm/example.png) [368 x 448] (2020)
* Aluminum Case - Blue

View File

@ -3,7 +3,7 @@ from setuptools import setup, find_packages
setup(
name='MockupEngineer',
version='2022.01.25.1',
version='2022.01.25.2',
packages=find_packages(),
url='https://github.com/ulbwazhine/MockupEngineer',
license='MIT',