Attached is a one line patch (actually just one word, which is just as
well since this is the first patch I've ever created, so I may have
messed it up), to fix a problem with the calibre app's manual_page
value that breaks calibre's "Learn more..." link.  Manual page names
start with a capital letter, but the current manual_page value for
calibre is "calibre" rather than "Calibre".
  
From cae8acda04031f468b3040b1ea2595bb5ddce0ef Mon Sep 17 00:00:00 2001
From: spectral <[email protected]>
Date: Sat, 26 Dec 2020 08:49:57 -0800
Subject: [PATCH] calibre: Fix manual page name

---
 plinth/modules/calibre/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plinth/modules/calibre/__init__.py b/plinth/modules/calibre/__init__.py
index a166bb1f..70b6d713 100644
--- a/plinth/modules/calibre/__init__.py
+++ b/plinth/modules/calibre/__init__.py
@@ -59,7 +59,7 @@ class CalibreApp(app_module.App):
         info = app_module.Info(app_id=self.app_id, version=version,
                                name=_('calibre'), icon_filename='calibre',
                                short_description=_('E-book Library'),
-                               description=_description, manual_page='calibre',
+                               description=_description, manual_page='Calibre',
                                clients=clients,
                                donation_url='https://calibre-ebook.com/donate')
         self.add(info)
-- 
2.20.1

_______________________________________________
Freedombox-discuss mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/freedombox-discuss

Reply via email to