alchemy_cms 7.0.12 → 7.0.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gem_release.yml +0 -1
- data/.gitignore +2 -0
- data/CHANGELOG.md +11 -0
- data/Gemfile +2 -0
- data/app/assets/stylesheets/alchemy/preview_window.scss +8 -4
- data/app/models/alchemy/ingredients/audio.rb +11 -0
- data/app/models/alchemy/ingredients/video.rb +12 -0
- data/lib/alchemy/routing_constraints.rb +1 -1
- data/lib/alchemy/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f009c36ef6be6cd2543d594e6e818b899fb03105db7afa1e043ac6eff667148
|
4
|
+
data.tar.gz: 39453909b852611f2b9610442cb596241037100965691fc6766b3f98fe6f1130
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c675c83bd57c8514dd1983051ba4dfef7af615f41001603fd25d2c556925a87e08d67307d4b610c3c9655572092cdf06e4d07bb5891dbdb3758b6cb7dccd721
|
7
|
+
data.tar.gz: 1feb5da7ff3d8bafb2aac4cc03ac52682795457d41f7a28cbd5e7eeca4816a8536149fe87a8f49470f3d6e9e7ed08eb194dc632a511639a0f259a2738ce0e06c
|
data/.gem_release.yml
CHANGED
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,16 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 7.0.14 (2024-06-04)
|
4
|
+
|
5
|
+
- [7.0-stable] fix(RoutingConstraints): Allow Turbo Stream requests [#2914](https://github.com/AlchemyCMS/alchemy_cms/pull/2914) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
6
|
+
- [7.0-stable] fix Ingredient Audio and Video boolean type casting [#2910](https://github.com/AlchemyCMS/alchemy_cms/pull/2910) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
7
|
+
|
8
|
+
## 7.0.13 (2024-05-29)
|
9
|
+
|
10
|
+
- [7.0-stable] Fix preview window width for smaller viewports [#2889](https://github.com/AlchemyCMS/alchemy_cms/pull/2889) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
11
|
+
- [7.0-stable] Fix Preview Window width [#2880](https://github.com/AlchemyCMS/alchemy_cms/pull/2880) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
12
|
+
- [7.0-stable] Fix preview window resize transition [#2871](https://github.com/AlchemyCMS/alchemy_cms/pull/2871) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
13
|
+
|
3
14
|
## 7.0.12 (2024-04-12)
|
4
15
|
|
5
16
|
- [7.0-stable] Fix Ingredient Boolean View [#2837](https://github.com/AlchemyCMS/alchemy_cms/pull/2837) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
data/Gemfile
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
border: 0 none;
|
8
8
|
background: #fff;
|
9
9
|
border-right: $default-border;
|
10
|
-
transition: $transition-duration ease-in-out;
|
10
|
+
transition: width $transition-duration ease-in-out;
|
11
11
|
|
12
12
|
.collapsed-menu & {
|
13
13
|
left: $collapsed-main-menu-width;
|
@@ -15,10 +15,14 @@
|
|
15
15
|
}
|
16
16
|
|
17
17
|
.collapsed-menu.elements-window-visible & {
|
18
|
-
width: calc(
|
18
|
+
width: calc(
|
19
|
+
100vw - #{$collapsed-main-menu-width - $default-border-width} - #{$elements-window-min-width}
|
20
|
+
);
|
19
21
|
|
20
|
-
@media screen and (min-width:
|
21
|
-
|
22
|
+
@media screen and (min-width: 1777px) {
|
23
|
+
width: calc(
|
24
|
+
100vw - #{$collapsed-main-menu-width - $default-border-width} - #{$elements-window-width}
|
25
|
+
);
|
22
26
|
}
|
23
27
|
}
|
24
28
|
}
|
@@ -26,6 +26,17 @@ module Alchemy
|
|
26
26
|
def preview_text(max_length = 30)
|
27
27
|
name.to_s[0..max_length - 1]
|
28
28
|
end
|
29
|
+
|
30
|
+
%i[
|
31
|
+
autoplay
|
32
|
+
controls
|
33
|
+
loop
|
34
|
+
muted
|
35
|
+
].each do |method|
|
36
|
+
define_method(:"#{method}=") do |value|
|
37
|
+
super(ActiveModel::Type::Boolean.new.cast(value))
|
38
|
+
end
|
39
|
+
end
|
29
40
|
end
|
30
41
|
end
|
31
42
|
end
|
@@ -31,6 +31,18 @@ module Alchemy
|
|
31
31
|
def preview_text(max_length = 30)
|
32
32
|
name.to_s[0..max_length - 1]
|
33
33
|
end
|
34
|
+
|
35
|
+
%i[
|
36
|
+
autoplay
|
37
|
+
controls
|
38
|
+
loop
|
39
|
+
muted
|
40
|
+
playsinline
|
41
|
+
].each do |method|
|
42
|
+
define_method(:"#{method}=") do |value|
|
43
|
+
super(ActiveModel::Type::Boolean.new.cast(value))
|
44
|
+
end
|
45
|
+
end
|
34
46
|
end
|
35
47
|
end
|
36
48
|
end
|
@@ -27,7 +27,7 @@ module Alchemy
|
|
27
27
|
# because it could be a legacy route that needs to be redirected.
|
28
28
|
#
|
29
29
|
def handable_format?
|
30
|
-
@request.format.symbol.nil? ||
|
30
|
+
@request.format.symbol.nil? || @request.format.html?
|
31
31
|
end
|
32
32
|
|
33
33
|
# We don't want to handle the Rails info routes.
|
data/lib/alchemy/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: alchemy_cms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.0.
|
4
|
+
version: 7.0.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thomas von Deyen
|
@@ -13,7 +13,7 @@ authors:
|
|
13
13
|
autorequire:
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
|
-
date: 2024-04
|
16
|
+
date: 2024-06-04 00:00:00.000000000 Z
|
17
17
|
dependencies:
|
18
18
|
- !ruby/object:Gem::Dependency
|
19
19
|
name: actionmailer
|
@@ -1456,7 +1456,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1456
1456
|
version: '0'
|
1457
1457
|
requirements:
|
1458
1458
|
- ImageMagick (libmagick), v6.6 or greater.
|
1459
|
-
rubygems_version: 3.
|
1459
|
+
rubygems_version: 3.5.9
|
1460
1460
|
signing_key:
|
1461
1461
|
specification_version: 4
|
1462
1462
|
summary: A powerful, userfriendly and flexible CMS for Rails
|