bible270 0.18.2 → 0.18.3
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 +15 -1
- data/Rakefile +10 -0
- 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: 1717282682f9d19a378cd4416b50e5e3f3b63d110e855196042a6e090ed4bd92
|
|
4
|
+
data.tar.gz: '0812f617706046de930ba84e4cfb6747fc73195b79818a05db11ae0e29484f6b'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d1fa7576be664152a2a64e5af1749e39d77fb6b7cd26ca5198a5017727c160e4a413a6337b4c222e7bf727a037fbcb56ea21972034712cf4da087e93e0a8636
|
|
7
|
+
data.tar.gz: 89223b4dd7dbed64af6b4e4d90cbd3bb0e6b74c85b9b0b56baf64c9d8aa833710325965d43067a89dac67b754ad87bf192cc49a7996e2066daf0e3b82b164b36
|
data/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,20 @@ 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.18.
|
|
9
|
+
**[Full Changelog](https://github.com/avonderluft/bible270/compare/v0.18.2...main)**
|
|
10
|
+
|
|
11
|
+
## [0.18.2] - 2026-08-15
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Young's Literal Translation (`YLT`) as a Bible Gateway and Blue Letter Bible reading option
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- summarize reflection likes with one heart and a count, with all liker names displayed in a one-name-per-row tooltip
|
|
20
|
+
- keep the reflection heart red while at least one like remains
|
|
21
|
+
|
|
22
|
+
**[Full Changelog](https://github.com/avonderluft/bible270/compare/v0.18.1...v0.18.2)**
|
|
10
23
|
|
|
11
24
|
## [0.18.1] - 2026-08-12
|
|
12
25
|
|
|
@@ -413,6 +426,7 @@ This is the initial public release.
|
|
|
413
426
|
|
|
414
427
|
* 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.
|
|
415
428
|
|
|
429
|
+
[0.18.2]: https://github.com/avonderluft/bible270/releases/tag/v0.18.2
|
|
416
430
|
[0.18.1]: https://github.com/avonderluft/bible270/releases/tag/v0.18.1
|
|
417
431
|
[0.18.0]: https://github.com/avonderluft/bible270/releases/tag/v0.18.0
|
|
418
432
|
[0.17.2]: https://github.com/avonderluft/bible270/releases/tag/v0.17.2
|
data/Rakefile
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
require 'bundler/gem_tasks' # provides build / install / release
|
|
4
4
|
require 'rake/testtask'
|
|
5
5
|
|
|
6
|
+
desc 'Normalize permissions for files included in the gem'
|
|
7
|
+
task :normalize_gem_permissions do
|
|
8
|
+
spec = Gem::Specification.load('bible270.gemspec')
|
|
9
|
+
spec.files.each do |path|
|
|
10
|
+
File.chmod(0o644, path) if File.file?(path)
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
Rake::Task[:build].enhance([:normalize_gem_permissions])
|
|
15
|
+
|
|
6
16
|
Rake::TestTask.new(:test) do |t|
|
|
7
17
|
t.libs << 'test' << 'lib'
|
|
8
18
|
t.pattern = 'test/**/*_test.rb'
|
data/lib/bible270/version.rb
CHANGED