venus_media_library 1.1.2 → 1.1.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ce5032a9127763374a274c46752c7160010d2427ea1c4bf079db43e02b85950c
|
|
4
|
+
data.tar.gz: 1d2956bd2a10b75a9b3b1a1c35226fdf43430f05bc63b970aa3c833039edc88b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bb5c8d532bf99886edc8c2fa90c8c27c41e2bc375657c5ccaa6e615c9f684bedde843b8f288d66d149c54c63d04a640b880d08ae2aa2a1ef74703b8b40cfeb88
|
|
7
|
+
data.tar.gz: e4bcbb3d6d8bf262ce05d925106d86276b14317aeb019f969cf9f277a80d21b08c780e1c2871fce37e445ef1c75cf19b230cfb629a3721d3c3d17c12a351ee59
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ All notable changes to this project are documented here. The format is based on
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and this project adheres
|
|
5
5
|
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [1.1.3] - 2026-08-19
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- The full-page library layout now links `layout.css` (left-nav) and `picker.css`
|
|
11
|
+
directly rather than the Sprockets `application.css` manifest, which does not
|
|
12
|
+
bundle `require_tree` under Propshaft — the default asset pipeline in modern
|
|
13
|
+
Rails. On Propshaft hosts the `/media` workspace rendered unstyled.
|
|
14
|
+
|
|
7
15
|
## [1.1.2] - 2026-08-19
|
|
8
16
|
|
|
9
17
|
### Changed
|
|
@@ -4,12 +4,14 @@
|
|
|
4
4
|
<title>Media library</title>
|
|
5
5
|
<%= csrf_meta_tags %>
|
|
6
6
|
<%= csp_meta_tag %>
|
|
7
|
-
|
|
7
|
+
<%# Link each real stylesheet explicitly. application.css is a Sprockets
|
|
8
|
+
manifest (require_tree) that does NOT bundle under Propshaft — the default
|
|
9
|
+
pipeline in modern Rails — so referencing it alone leaves the layout
|
|
10
|
+
unstyled. Listing layout.css + picker.css works under both pipelines. %>
|
|
11
|
+
<%= stylesheet_link_tag "venus_media_library/layout", "venus_media_library/picker", media: "all" %>
|
|
8
12
|
<%= javascript_include_tag "venus_media_library/venus_media_library", defer: true %>
|
|
9
13
|
|
|
10
14
|
<%= yield :head %>
|
|
11
|
-
|
|
12
|
-
<%= stylesheet_link_tag "venus_media_library/application", media: "all" %>
|
|
13
15
|
</head>
|
|
14
16
|
<body class="ml-body">
|
|
15
17
|
|