Skip to content

Commit

Permalink
Release 4.12.1 (#64)
Browse files Browse the repository at this point in the history
* Update CHANGELOG

* Bump version to 4.12.1

* Fix a bug in SettingsManager where we reset settings after load
  • Loading branch information
tvhong authored Jan 13, 2025
1 parent 0a4ed7c commit b8a1268
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [4.12.1] - 2025-01-13

### Fixed
- Fix LinkedIn import issue where some images don't have a src attribute (#56).
- Major refactoring of the import process (#43).
- (Try to) fix an issue with epub import on Windows where tempfile returns a relative temp path (#37).

## [4.12.0] - 2024-12-30

Expand Down
2 changes: 1 addition & 1 deletion ir/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.12.0"
__version__ = "4.12.1"
2 changes: 1 addition & 1 deletion ir/manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"package": "999215520",
"name": "Incremental Reading v4.12.0"
"name": "Incremental Reading v4.12.1"
}
3 changes: 2 additions & 1 deletion ir/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,10 @@ class SettingsManager:
}

def __init__(self):
self.settings = None

addHook("unloadProfile", self._unload)
self.load()
self.settings = None

def __setitem__(self, key, value):
if self.settings[key] != value and key not in self.settings["modified"]:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
package-mode = false
name = "incremental-reading-anki"
version = "4.12.0"
version = "4.12.1"
description = "Incremental Reading for Anki"
authors = [
"Tiago Barroso",
Expand Down

0 comments on commit b8a1268

Please sign in to comment.