bible270 0.18.0 → 0.18.1
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 +17 -1
- data/app/helpers/bible270/plan_helper.rb +1 -1
- data/app/views/bible270/admin/index.html.erb +2 -2
- data/app/views/bible270/admin/show.html.erb +1 -1
- data/app/views/bible270/comments/_comment.html.erb +1 -1
- data/app/views/bible270/profiles/edit.html.erb +1 -1
- data/app/views/bible270/readers/index.html.erb +1 -1
- data/app/views/bible270/readers/show.html.erb +1 -2
- 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: 267adcf001d1af00e789992fdec3bbd27bd6094408863e6b66e4a6b33eb7fd25
|
|
4
|
+
data.tar.gz: 1b99bedad8348dda8bc1af3f7e57def64f4097884074079898bf2d8f449609a1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73a9a0d0f506ed7a64598c2c0b11104a0f6d0877e82ce6c2ee040211342bce0c95e289c41dba1f555d352fecf259cf5f586bf250e2f26d970145cc66b5d1e87b
|
|
7
|
+
data.tar.gz: e393b0f5843224d5390d8f5e90a0022b55710c47d89791eea0dfee462815a75625c55682e2cbfa526233cd0b3fe24364e78d7dbffdd98d0b2c00655a9b60ae84
|
data/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,22 @@ All notable changes to bible270. Format follows [Keep a Changelog](https://keepa
|
|
|
6
6
|
|
|
7
7
|
See the changes since the last release:
|
|
8
8
|
|
|
9
|
-
**[Full Changelog](https://github.com/avonderluft/bible270/compare/v0.
|
|
9
|
+
**[Full Changelog](https://github.com/avonderluft/bible270/compare/v0.18.0...main)**
|
|
10
|
+
|
|
11
|
+
## [0.18.0] - 2026-08-10
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- `HEB/GRK` reading option with WLC links for the Old Testament, Psalms, and Proverbs, and mGNT links for the New Testament
|
|
16
|
+
- per-reader Bible Gateway or Blue Letter Bible source selection in Profile, with the same control available to admins
|
|
17
|
+
- `bible270:migrations:reconcile` task to safely align copied Bible270 and Active Storage schemas with local migration versions
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- original-language reading labels now display `Hebrew` or `Greek` for the relevant passage
|
|
22
|
+
- passage-source preferences use an extensible string value, defaulting to Bible Gateway and preserving earlier Blue Letter Bible selections during migration
|
|
23
|
+
|
|
24
|
+
**[Full Changelog](https://github.com/avonderluft/bible270/compare/v0.17.2...v0.18.0)**
|
|
10
25
|
|
|
11
26
|
## [0.17.2] - 2026-08-08
|
|
12
27
|
|
|
@@ -390,6 +405,7 @@ This is the initial public release.
|
|
|
390
405
|
|
|
391
406
|
* Email sign-in requires working Action Mailer delivery in the host application. Set `config.mailer_from`; delivery is inline by default, or set `email_sign_in_deliver_later` when a queue backend is available.
|
|
392
407
|
|
|
408
|
+
[0.18.0]: https://github.com/avonderluft/bible270/releases/tag/v0.18.0
|
|
393
409
|
[0.17.2]: https://github.com/avonderluft/bible270/releases/tag/v0.17.2
|
|
394
410
|
[0.17.1]: https://github.com/avonderluft/bible270/releases/tag/v0.17.1
|
|
395
411
|
[0.17.0]: https://github.com/avonderluft/bible270/releases/tag/v0.17.0
|
|
@@ -138,7 +138,7 @@ module Bible270
|
|
|
138
138
|
reader.avatar_url.presence
|
|
139
139
|
end
|
|
140
140
|
|
|
141
|
-
def b270_avatar(reader, size:
|
|
141
|
+
def b270_avatar(reader, size: 72)
|
|
142
142
|
src = b270_avatar_src(reader)
|
|
143
143
|
if src
|
|
144
144
|
image_tag src, class: 'b270-avatar', width: size, height: size, alt: reader.display_name
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<%= link_to 'Moderate reflections →', admin_comments_path %></p>
|
|
6
6
|
|
|
7
7
|
<div class="b270-panel">
|
|
8
|
-
<h2 class="b270-subhead">This run of the plan is <%= @enrollment_closed ? 'closed' : 'open' %> to new readers.</h2>
|
|
8
|
+
<h2 class="b270-subhead">This run of the plan is <%= @enrollment_closed ? 'closed' : 'open' %> to new readers.</h2>
|
|
9
9
|
<% if @enrollment_closed %>
|
|
10
10
|
<% if @enrollment_closed_at %>
|
|
11
11
|
<p class="b270-startline">Enrollment closed
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
<div class="b270-list">
|
|
27
27
|
<% @readers.each do |reader| %>
|
|
28
28
|
<div class="b270-li">
|
|
29
|
-
<%= b270_avatar(reader, size:
|
|
29
|
+
<%= b270_avatar(reader, size: 72) %>
|
|
30
30
|
<div>
|
|
31
31
|
<div class="name"><%= link_to reader.display_name, admin_reader_path(reader), style: 'text-decoration:none' %>
|
|
32
32
|
<% if Bible270.config.admin?(reader) %> <span class="sub"><strong>[admin]</strong></span> <% end %>
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
<%= form_with url: admin_reader_profile_path(@reader), method: :patch, class: "b270-emailform",
|
|
17
17
|
html: { multipart: true } do %>
|
|
18
18
|
<div class="b270-avatarrow">
|
|
19
|
-
<%= b270_avatar(@reader, size:
|
|
19
|
+
<%= b270_avatar(@reader, size: 72) %>
|
|
20
20
|
<% if Bible270::Reader.avatar_uploads? %>
|
|
21
21
|
<label class="b270-field" style="flex:1">
|
|
22
22
|
<span>Picture</span>
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
%>
|
|
8
8
|
<% editing = @editing_comment_id.present? && @editing_comment_id == comment.id %>
|
|
9
9
|
<div class="b270-comment <%= 'b270-reply' if reply %>" id="comment-<%= comment.id %>">
|
|
10
|
-
<%= b270_avatar(comment.reader, size: reply ?
|
|
10
|
+
<%= b270_avatar(comment.reader, size: reply ? 36 : 48) %>
|
|
11
11
|
<div style="flex:1">
|
|
12
12
|
<div class="b270-cmeta">
|
|
13
13
|
<strong><%= link_to comment.reader.display_name, reader_path(comment.reader), style: "text-decoration:none" %></strong>
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<%= form_with url: profile_path, method: :patch, class: "b270-emailform",
|
|
8
8
|
html: { multipart: true } do %>
|
|
9
9
|
<div class="b270-avatarrow">
|
|
10
|
-
<%= b270_avatar(current_reader, size:
|
|
10
|
+
<%= b270_avatar(current_reader, size: 72) %>
|
|
11
11
|
<% if Bible270::Reader.avatar_uploads? %>
|
|
12
12
|
<label class="b270-field" style="flex:1">
|
|
13
13
|
<span>Picture</span>
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<% @readers.each_with_index do |r, i| %>
|
|
9
9
|
<div class="b270-li">
|
|
10
10
|
<span class="rank"><%= i + 1 %></span>
|
|
11
|
-
<%= b270_avatar(r, size:
|
|
11
|
+
<%= b270_avatar(r, size: 72) %>
|
|
12
12
|
<div>
|
|
13
13
|
<div class="name"><%= link_to r.display_name, reader_path(r), style: "text-decoration:none" %></div>
|
|
14
14
|
<div class="sub"><%= @days_completed[r.id] %> of <%= Bible270::Plan::DAYS %> days · joined <%= Bible270.local_time(r.created_at).strftime("%b %Y") %></div>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<% content_for :title, "#{@reader.display_name} — #{Bible270.config.app_name}" %>
|
|
2
2
|
<% content_for :hide_day_index, true %><%# this page has its own grid %>
|
|
3
3
|
<div style="display:flex;align-items:center;gap:16px;margin-bottom:8px">
|
|
4
|
-
<%= b270_avatar(@reader, size:
|
|
4
|
+
<%= b270_avatar(@reader, size: 72) %>
|
|
5
5
|
<div>
|
|
6
6
|
<h1 style="margin:0"><%= @reader.display_name %></h1>
|
|
7
7
|
<% if signed_in? && current_reader.id == @reader.id %>
|
|
@@ -26,4 +26,3 @@
|
|
|
26
26
|
<% end %>
|
|
27
27
|
</div>
|
|
28
28
|
<p class="b270-gridnote">Dot indicates days with reflections.</p>
|
|
29
|
-
|
data/lib/bible270/version.rb
CHANGED