bible270 1.7.1 → 1.7.2
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/app/helpers/bible270/plan_helper.rb +4 -2
- data/app/views/bible270/admin/index.html.erb +5 -1
- data/lib/bible270/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: 7e566c5e5c2097bfcb768ef08108d115814096e552c768636b67f009a6c31532
|
|
4
|
+
data.tar.gz: d11ec18971a487ef039492849da05543062b88841b80f79f3d2fa545ff674cbb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 067e9c103eb5688c04c4e2c352a225768d9d9d98e04a4b046c16a285b736adf313c9687e825a781f615199bac580a94104107b3f273947b2faeb378712a53b87
|
|
7
|
+
data.tar.gz: f9c658c9e118f25c880ece18f7128b931fef51ddd6cc7d83042c3b18ede120f84398a09c1d34b028ec913ab6a19ad683f8824b28ed9174fecc61e9ac6bdc950e
|
data/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,10 @@ All notable changes to bible270. Format follows [Keep a Changelog](https://keepa
|
|
|
9
9
|
- show Blue Letter Bible Scripture popups when readers hover over references in rendered reflections, replies, and Markdown previews; popups follow each reader's selected translation, handle original-language choices by testament, and rescan content added by Turbo without forcing a page reload
|
|
10
10
|
- let administrators sort the reader list and Reader Stats report by most or least recent reading activity, while keeping readers with no activity at the end
|
|
11
11
|
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- link reader email addresses directly to email composition and link recent-activity day labels to their Day pages with passage tooltips in Admin
|
|
15
|
+
|
|
12
16
|
**[Full Changelog](https://github.com/avonderluft/bible270/compare/v1.6.2...main)**
|
|
13
17
|
|
|
14
18
|
## [1.6.2] - 2026-09-14
|
|
@@ -182,12 +182,14 @@ module Bible270
|
|
|
182
182
|
end
|
|
183
183
|
|
|
184
184
|
def b270_reader_activity_description(activity)
|
|
185
|
+
day_link = link_to "Day #{activity.day}", day_path(activity.day), title: b270_day_readings(activity.day)
|
|
186
|
+
|
|
185
187
|
if activity.day_completed?
|
|
186
188
|
readings = Plan.readings_for(activity.day).values.compact.join(', ')
|
|
187
|
-
|
|
189
|
+
safe_join(['completed ', day_link, " (#{readings})"])
|
|
188
190
|
else
|
|
189
191
|
reference = Plan.parts_for(activity.day, activity.track).fetch(activity.part)
|
|
190
|
-
"checked off “#{reference}” for
|
|
192
|
+
safe_join(["checked off “#{reference}” for ", day_link])
|
|
191
193
|
end
|
|
192
194
|
end
|
|
193
195
|
|
|
@@ -85,7 +85,11 @@
|
|
|
85
85
|
<% if Bible270.config.admin?(reader) %> <span class="sub"><strong>[admin]</strong></span> <% end %>
|
|
86
86
|
</div>
|
|
87
87
|
<div class="sub">
|
|
88
|
-
|
|
88
|
+
<% if reader.email.present? %>
|
|
89
|
+
<%= mail_to reader.email %>
|
|
90
|
+
<% else %>
|
|
91
|
+
<%= reader.provider %>
|
|
92
|
+
<% end %>
|
|
89
93
|
· <%= @days_completed[reader.id] %>/<%= Bible270::Plan::DAYS %> days
|
|
90
94
|
<% if reader.dated? %>· started <%= reader.effective_start_date.strftime('%b %-d, %Y') %><% end %>
|
|
91
95
|
</div>
|
data/lib/bible270/version.rb
CHANGED