File tree Expand file tree Collapse file tree
custom_components/paperlesspaper_push Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and 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
Original file line number Diff line number Diff line change 1616
1717
1818def 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
2323def guess_mime_type (path : str ) -> str :
Original file line number Diff line number Diff line change 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" : [],
You can’t perform that action at this time.
0 commit comments