Skip to content

Commit ae943d4

Browse files
author
fwmone
committed
## [0.1.7] - 2026-04-25
### Changed - changing max length of file list from 50 to 250 to have better randomization
1 parent 1604615 commit ae943d4

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/).
77

8+
## [0.1.7] - 2026-04-25
9+
10+
### Changed
11+
- changing max length of file list from 50 to 250 to have better randomization
12+
813
## [0.1.6] - 2026-03-15
914

1015
### Changed

custom_components/paperlesspaper_push/helper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717

1818
def calc_recent_max(n_files: int) -> int:
19-
# 50% of files, minimum 5, maximum 50
20-
return max(5, min(50, int(round(n_files * 0.5))))
19+
# 50% of files, minimum 5, maximum 250
20+
return max(5, min(250, int(round(n_files * 0.5))))
2121

2222

2323
def guess_mime_type(path: str) -> str:

custom_components/paperlesspaper_push/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"domain": "paperlesspaper_push",
33
"name": "paperlesspaper Push",
4-
"version": "0.1.6",
4+
"version": "0.1.7",
55
"documentation": "https://github.com/fwmone/paperlesspaper_push",
66
"issue_tracker": "https://github.com/fwmone/paperlesspaper_push/issues",
77
"requirements": [],

0 commit comments

Comments
 (0)