From ed885a79b214d8265a5009aed21aab5eec6b8d0a Mon Sep 17 00:00:00 2001 From: ElimGarak1 <84080014+ElimGarak1@users.noreply.github.com> Date: Mon, 25 Sep 2023 22:41:09 +0200 Subject: [PATCH] [PocketBook] Add PB-Verse_(PB629) and PB-Verse Pro_(PB634) (#10938) Closes #10913. --- frontend/device/pocketbook/device.lua | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/frontend/device/pocketbook/device.lua b/frontend/device/pocketbook/device.lua index 0d8064b73..479d0792f 100644 --- a/frontend/device/pocketbook/device.lua +++ b/frontend/device/pocketbook/device.lua @@ -555,6 +555,14 @@ local PocketBook628 = PocketBook:extend{ hasNaturalLight = yes, } +-- PocketBook Verse (629) +local PocketBook629 = PocketBook:extend{ + model = "PB629", + display_dpi = 212, + isAlwaysPortrait = yes, + hasNaturalLight = yes, +} + -- PocketBook Sense / Sense 2 (630) local PocketBook630 = PocketBook:extend{ model = "PBSense", @@ -590,6 +598,14 @@ local PocketBook633 = PocketBook:extend{ usingForcedRotation = landscape_ccw, } +-- PocketBook Verse Pro (634) +local PocketBook634 = PocketBook:extend{ + model = "PB634", + display_dpi = 300, + isAlwaysPortrait = yes, + hasNaturalLight = yes, +} + -- PocketBook Aqua (640) local PocketBook640 = PocketBook:extend{ model = "PBAqua", @@ -768,6 +784,8 @@ elseif codename == "PB627" then return PocketBook627 elseif codename == "PB628" then return PocketBook628 +elseif codename == "PB629" then + return PocketBook629 elseif codename == "PocketBook 630" then return PocketBook630 elseif codename == "PB631" or codename == "PocketBook 631" then @@ -776,6 +794,8 @@ elseif codename == "PB632" then return PocketBook632 elseif codename == "PB633" then return PocketBook633 +elseif codename == "PB634" then + return PocketBook634 elseif codename == "PB640" or codename == "PocketBook 640" then return PocketBook640 elseif codename == "PB641" then