From c799269e3e3cbb0f46cf423466d37d2c6f27a7c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 18:01:34 +0000 Subject: [PATCH 1/2] chore(deps): bump pyglossary from 5.2.0 to 5.2.1 Bumps [pyglossary](https://github.com/ilius/pyglossary) from 5.2.0 to 5.2.1. - [Release notes](https://github.com/ilius/pyglossary/releases) - [Commits](https://github.com/ilius/pyglossary/compare/5.2.0...5.2.1) --- updated-dependencies: - dependency-name: pyglossary dependency-version: 5.2.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 030e13fe9..5736e6166 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,7 +3,7 @@ Jinja2==3.1.6 marisa-trie==1.3.1 mediawiki-langcodes==0.2.18 # for up-to-date langs data, required by wikitextprocessor mistune==3.1.4 # for DictFile reading -pyglossary==5.2.0 +pyglossary==5.2.1 python-idzip==0.3.10 requests==2.32.5 rich==14.2.0 From b5c5f05c61abb3c97fcb34d4a35f37b4ceb721e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Mon, 8 Dec 2025 20:49:24 +0100 Subject: [PATCH 2/2] Remove compression setting for .syn file in StarDictFormat Removed the option to not compress the `.syn` file for StarDictFormat. --- wikidict/convert.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/wikidict/convert.py b/wikidict/convert.py index 7af534a14..957e14f7a 100644 --- a/wikidict/convert.py +++ b/wikidict/convert.py @@ -519,9 +519,6 @@ def _convert(self) -> None: if isinstance(self, StarDictFormat): writer_cls = glos.plugins["Stardict"].writerClass - # We do not want to compress the `.syn` file as it does not work everywhere (see issue #2407) - writer_cls.dictzipSynFile = False - # Do not append extra data to the book name def get_bookname(cls) -> str: # type: ignore[no-untyped-def] bookname = str(cls._glos.getInfo("name"))