From 8c458d10a204f52534b844b97f01bf60cc296a5b Mon Sep 17 00:00:00 2001 From: Tom Zeller Date: Sun, 30 Aug 2020 10:48:55 +0200 Subject: [PATCH] update changelog --- src/web/web.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/web/web.py b/src/web/web.py index cfa3f004..d5a7cd49 100644 --- a/src/web/web.py +++ b/src/web/web.py @@ -135,7 +135,6 @@ def styles() -> str: css = css.replace("$styles.modalBorderColor$", modalBorder) css = css.replace("$styles.night.modalBorderColor$", modalBorderNight) css = css.replace("$styles.readingModalBackgroundColor$", readingModalBG) - css = css.replace("$zoom$", str(get_config_value_or_default("searchpane.zoom", 1.0))) return css @@ -243,7 +242,6 @@ def print_starting_info(editor: Editor): html += "
Index contains %s notes." % index.get_number_of_notes() html += "
Index is always rebuilt if smaller than %s notes." % config["alwaysRebuildIndexIfSmallerThan"] html += "
Search on typing delay is set to %s ms." % config["delayWhileTyping"] - html += "
Logging is turned %s. %s" % ("on" if index.logging else "off", "You should probably disable it if you don't have any problems." if index.logging else "") html += "
Results are rendered %s." % ("immediately" if config["renderImmediately"] else "with fade-in") html += "
Tag Info on hover is %s.%s" % ("shown" if config["showTagInfoOnHover"] else "not shown", (" Delay: [%s ms]" % config["tagHoverDelayInMiliSec"]) if config["showTagInfoOnHover"] else "") html += "
Image max height is %s px." % config["imageMaxHeight"] @@ -482,11 +480,11 @@ def changelog() -> List[str]: """ Returns recent add-on changes. """ return [ - "Try to auto select deck when opening PDF based on previously added notes in the PDF", - "More accurate PDF loading modals", - "Improve initial PDF loading time", - "Fix: Rare error on rendering reading heatmap", - "Fix: CTRL/Alt shortcuts pressed while in tag input triggering tag search" + "Add Tag distribution pie charts in 'Read Stats'", + "Change the 'Zoom' setting: It now zooms in the whole browser window", + "Add zoom in/out buttons in the PDF viewer", + "Added alternate PDF highlight rendering mode: pdf.highlights.use_alt_render, use if default highlights don't display correctly", + "Fix some problem with typing in fields and shortcuts", ] def known_issues() -> List[str]: