recourse 4.6.4 → 4.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/recourse/limits.rb +4 -4
- data/lib/recourse/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cde158b6a70e0ab5fcabba26ecf536b2ec53965727b1a1534bd31ff71c581feb
|
|
4
|
+
data.tar.gz: f0e4917f3d7a165fc8754a92b148d541e7496e043fbf155f73a2ea29c5f1cc3d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 433bd7b0bb4f43bb6427b215be3a7585bba1c2256132f99a2b8f3bddb492689a64d30ff2b451c7fd55c563e5b3b3fc38867cb294a20752838b67e6be69cc043c
|
|
7
|
+
data.tar.gz: 6854c771a18f8b0b48d7157bb1d3fd1d4247d1d890112c02217640c3182eaca7d276d1de27e68a4153e7813b577c3099ff60fd0711fae5bb244295318f0958c4
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
For more information about changelogs, check [Keep a Changelog](http://keepachangelog.com) and
|
|
6
6
|
[Vandamme](http://tech-angels.github.io/vandamme).
|
|
7
7
|
|
|
8
|
+
## 4.6.5 - 2026-09-09
|
|
9
|
+
|
|
10
|
+
* [Fix] A table opens at 15 rows a page rather than 20; the 100-row page stays
|
|
11
|
+
|
|
8
12
|
## 4.6.4 - 2026-09-08
|
|
9
13
|
|
|
10
14
|
* [Fix] On a phone the arrows that put the words back reload the page outright: the visit 4.6.1 made to the same address was morphed in place under an index's refresh metas, and Safari drew the sidebar's entries one over the next all the same
|
data/lib/recourse/limits.rb
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# Reopened for how much of a table a page shows at once.
|
|
2
2
|
module Recourse
|
|
3
|
-
# Rows to a page, in the order the menu offers them:
|
|
4
|
-
# step up for a reader scanning
|
|
5
|
-
#
|
|
6
|
-
LIMITS = [
|
|
3
|
+
# Rows to a page, in the order the menu offers them: a screenful for a reader reading
|
|
4
|
+
# a table, and the one step up for a reader scanning it. Named once — the controller
|
|
5
|
+
# checks a cookie against this list, and the menu is drawn from it.
|
|
6
|
+
LIMITS = [15, 100].freeze
|
|
7
7
|
|
|
8
8
|
# Where a reader's chosen page size is kept in their browser. A cookie rather than
|
|
9
9
|
# local storage, which the scheme is kept in: pagy runs on the server, and a cookie
|
data/lib/recourse/version.rb
CHANGED