From c1b3340d371928bc3101e70132dc2fa3c3bda158 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 17 Jan 2025 07:46:33 +0530 Subject: [PATCH] Bump version for beta release string changes --- manual/gui.rst | 4 ++-- src/calibre/constants.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manual/gui.rst b/manual/gui.rst index ffd5420f41..420f3f695e 100644 --- a/manual/gui.rst +++ b/manual/gui.rst @@ -733,9 +733,9 @@ To choose icons for values in categories, right-click on a value then choose `Ma * `Choose an icon for this value but not its children`. A dialog will open where you choose an icon for the value. Children of that value will not inherit that icon. * `Choose an icon for this value and its children`. A dialog will open where you choose an icon for the value. Any children that don't have their own specified icon will inherit this icon. * `Choose an existing icon for this value but not its children`. This option is offered if the value already has an icon that is inherited by the value's children. Selecting it will make the icon apply to the value but not its children. -* `Choose and existing icon for this value and its children`. This option is offered if the value already has an icon that is not inherited by the value's children. Selecting it will make the icon apply to the value and its children. +* `Choose an existing icon for this value and its children`. This option is offered if the value already has an icon that is not inherited by the value's children. Selecting it will make the icon apply to the value and its children. * `Use the default icon for this value`. This option is offered if the item has an icon. It removes the icon from the value and any children inheriting the icon. The default icon is what is specified below. -* `Use/edit a template to choose the default value icon`. This option permits you to provide a calibre template that returns the name of an icon file to be uses as a default icon. The template can use two variables: +* `Use/edit a template to choose the default value icon`. This option permits you to provide a calibre template that returns the name of an icon file to be used as a default icon. The template can use two variables: * ``category``: the lookup name of the category, for example ``authors``, ``series``, ``#mycolumn``. * ``value``: the value of the item within the category. diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 99a448a911..d485a59ab6 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -11,7 +11,7 @@ from functools import lru_cache from polyglot.builtins import environ_item, hasenv __appname__ = 'calibre' -numeric_version = (7, 24, 0) +numeric_version = (7, 24, 100) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "