Skip to content

Commit 5200ec4

Browse files
committed
extension/*, CHANGELOG.md, default.nix: bump version
1 parent c2489da commit 5200ec4

File tree

4 files changed

+60
-3
lines changed

4 files changed

+60
-3
lines changed

CHANGELOG.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,62 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
66

77
Also, at the bottom of this file there is a [TODO list](#todo) with planned future changes.
88

9+
## [extension-v1.20.0] - 2024-12-24: Annoyance and bug fixes
10+
11+
### Added
12+
13+
- Core + Popup UI:
14+
15+
- Implemented `config.limboNotifyInterval` option and its popup UI.
16+
17+
It prevents "Too much stuff in limbo" notifications from being generated more frequently than given number of seconds, which makes them much less annoying.
18+
19+
### Changed
20+
21+
- Core:
22+
23+
- From now on, `retryUnarchived` scheduled action can be canceled (until a new reqres gets captured) with the `cancelActions` (red square) button.
24+
25+
- Unavailable and non-archiving servers produce different notification error messages and are handled differently now.
26+
27+
- Archivals to broken servers and `localStorage` produce nicer notification errors now.
28+
29+
- Unrecoverable archival failures now get a hint about using the `retryFailed` popup UI button in their notification messages.
30+
31+
- From now on, pressing keyboard shortcuts and popup UI buttons will force immediate updates to displayed notifications.
32+
33+
I.e. no longer relevant notifications will disappear immediately.
34+
35+
(Thanks to @douglasg14b on GitHub for pointing out three out of five of the above.)
36+
37+
- The [`Help` page](./extension/page/help.org):
38+
39+
- Added "Table of Contents" section.
40+
41+
- Moved and adapted a bunch move stuff from top-level [`README.md`](./README.md).
42+
43+
- Improved some pieces of it.
44+
45+
- Other documentation pages:
46+
47+
- Improved rendering of various references, added more of them.
48+
49+
- Improved in many random places.
50+
51+
### Fixed
52+
53+
- All documentation pages:
54+
55+
- Clicking on internal links will now replace history states that point to other links.
56+
57+
This makes the use of "Back" browser button more intuitive.
58+
59+
- Core:
60+
61+
- On Firefox, fixed an issue when, with a popup UI open, opening "Internal State" page would make the popup show the wrong tab stats until a tab switch.
62+
63+
- On Firefox, fixed popup UI's tab stats flickering between inconsistent states when, with a popup UI open, a new tab gets opened, starts loading, and then gets redirected, with all of it happening really fast.
64+
965
## [tool-v0.23.0] - 2025-01-22: Incremental improvements
1066

1167
### Fixed
@@ -2170,6 +2226,7 @@ All planned features are complete now.
21702226
21712227
- Initial public release.
21722228
2229+
[extension-v1.20.0]: https://github.com/Own-Data-Privateer/hoardy-web/compare/extension-v1.19.0...extension-v1.20.0
21732230
[tool-v0.23.0]: https://github.com/Own-Data-Privateer/hoardy-web/compare/tool-v0.22.0...tool-v0.23.0
21742231
[tool-v0.22.0]: https://github.com/Own-Data-Privateer/hoardy-web/compare/tool-v0.21.0...tool-v0.22.0
21752232
[simple_server-v1.9.0]: https://github.com/Own-Data-Privateer/hoardy-web/compare/simple_server-v1.8.0...simple_server-v1.9.0

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
let packages = import ./packages.nix { inherit pkgs developer; }; in
66

77
pkgs.buildEnv {
8-
name = "hoardy-web-env-20241109";
8+
name = "hoardy-web-env-20250124";
99
paths = with packages; [
1010
simple_server
1111
extension

extension/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ with pkgs;
88

99
stdenv.mkDerivation rec {
1010
pname = "hoardy-web-extension";
11-
version = "1.19.0";
11+
version = "1.20.0";
1212

1313
inherit (source) src unpackPhase;
1414
sourceRoot = "${src.name}/extension";

extension/manifest-common.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33

44
"name": "Hoardy-Web",
5-
"version": "1.19.0",
5+
"version": "1.20.0",
66
"description": "Passively capture, archive, and hoard your web browsing history, including the contents of the pages you visit, for later offline viewing, replay, mirroring, data scraping, and/or indexing. Low memory footprint, lots of configuration options.",
77

88
"author": "Jan Malakhovski",

0 commit comments

Comments
 (0)