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: c419936bf15b299264f23527fa0d74f57860c031e279ada4cb04608a7d55e9d9
4
- data.tar.gz: a6f877818f76baf0c43ad806109b981ba63e896ab53dcd01c6b855baf708f439
3
+ metadata.gz: ce5032a9127763374a274c46752c7160010d2427ea1c4bf079db43e02b85950c
4
+ data.tar.gz: 1d2956bd2a10b75a9b3b1a1c35226fdf43430f05bc63b970aa3c833039edc88b
5
5
  SHA512:
6
- metadata.gz: 4d4cd43c0e4b6945eac1bc77b9009b949e3b42bfcb3e9d241f1dc1fad99e5a623a9c0947525e6216ba5edf1d952fb0560405397b56600dc11748da1c89eb701b
7
- data.tar.gz: 3c7794fb4b5f9ca228a12c8f78cb526c5e8d5a580beaeb6f7316cdc22fb464b46907dff569bb5b799419a5b1c9ff2e91b79db9040b134de29cb88e1a2f707596
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
- <%= stylesheet_link_tag "venus_media_library/application", "venus_media_library/picker" %>
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
 
@@ -1,3 +1,3 @@
1
1
  module VenusMediaLibrary
2
- VERSION = "1.1.2"
2
+ VERSION = "1.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: venus_media_library
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Good Works On Earth