This commit is contained in:
Kovid Goyal 2024-07-07 19:50:44 +05:30
parent 03c537a8dc
commit be305e596f
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
4 changed files with 5 additions and 4 deletions

View File

@ -4,6 +4,7 @@ https://ancientegyptmagazine.com
from calibre import browser
from calibre.web.feeds.news import BasicNewsRecipe
class ancientegypt(BasicNewsRecipe):
title = 'The Past: Ancient Egypt Magazine'
language = 'en'

View File

@ -4,6 +4,7 @@ https://www.military-history.org/
from calibre import browser
from calibre.web.feeds.news import BasicNewsRecipe
class milthist(BasicNewsRecipe):
title = 'The Past: Military History Matters'
language = 'en'

View File

@ -4,6 +4,7 @@ https://www.world-archaeology.com
from calibre import browser
from calibre.web.feeds.news import BasicNewsRecipe
class worldarch(BasicNewsRecipe):
title = 'The Past: Current World Archaeology'
language = 'en'

View File

@ -6,12 +6,10 @@ __docformat__ = 'restructuredtext en'
import textwrap
from qt.core import (QCheckBox, QDialog, QDialogButtonBox, QGridLayout, QHBoxLayout,
QLabel, QLineEdit, QPushButton, QVBoxLayout, QWidget)
from qt.core import QCheckBox, QDialog, QDialogButtonBox, QGridLayout, QHBoxLayout, QLabel, QLineEdit, QPushButton, QVBoxLayout, QWidget
from calibre.gui2 import error_dialog
from calibre.gui2.device_drivers.tabbed_device_config import (DeviceConfigTab,
DeviceOptionsGroupBox, TabbedDeviceConfig)
from calibre.gui2.device_drivers.tabbed_device_config import DeviceConfigTab, DeviceOptionsGroupBox, TabbedDeviceConfig
from calibre.gui2.dialogs.template_dialog import TemplateDialog
from calibre.gui2.dialogs.template_line_editor import TemplateLineEditor
from calibre.gui2.widgets2 import ColorButton