add standard resolution 1920x1200

This commit is contained in:
Celogeek 2023-05-18 18:15:25 +02:00
parent 7de6ad1508
commit f3eab7503a
Signed by: celogeek
SSH Key Fingerprint: SHA256:njNJLzoLQdbV9PC6ehcruRb0QnEgxABoCYZ+0+aUIYc

View File

@ -20,6 +20,10 @@ type Profiles []Profile
// Initialize list of all supported profiles.
func New() Profiles {
return []Profile{
// High Resolution for Tablette
{"HR", "High Resolution", 2400, 3840},
{"SR", "Standard Resolution", 1200, 1920},
//Kindle
{"K1", "Kindle 1", 600, 670},
{"K11", "Kindle 11", 1072, 1448},
{"K2", "Kindle 2", 600, 670},
@ -45,8 +49,6 @@ func New() Profiles {
{"KoF", "Kobo Forma", 1440, 1920},
{"KoS", "Kobo Sage", 1440, 1920},
{"KoE", "Kobo Elipsa", 1404, 1872},
// High Resolution for Tablette
{"HR", "High Resolution", 2400, 3840},
}
}