openclacky 1.5.0 → 1.5.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 +6 -0
- data/lib/clacky/server/http_server.rb +8 -4
- data/lib/clacky/version.rb +1 -1
- data/scripts/build/src/uninstall.sh.cc +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: b195de6fb8b38aed47ef40aa59fa0e33aa3b993f52cc584d5c12bd27bd15b55c
|
|
4
|
+
data.tar.gz: 25b4a406f7f4985e4bdad2cd63c28c2af8875bed7ddf59baae33a94d9ebbe46b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15a21c8d7aa23bbccc4a8255cb2caa14a937ff92ec90cbf20fac58a71675acfdd1f64be47723151841f860ed069add58e43abdccb48b31233cde8351ab9fad23
|
|
7
|
+
data.tar.gz: 3fbaadab5fcf374369ece22818f2739839ebf974d91a0ecf1dba9aa9e0530e27a801e4366ab2f6403c222501601e4e76f736d73d81eb667ee275e150364d21a1
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
|
|
7
|
+
## [1.5.1] - 2026-07-24
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- Extension marketplace detail page now opens correctly for brand users when clicking public extensions
|
|
11
|
+
- Uninstall script now properly removes all installed openclacky gem versions
|
|
12
|
+
|
|
7
13
|
## [1.5.0] - 2026-07-23
|
|
8
14
|
|
|
9
15
|
### Added
|
|
@@ -2553,10 +2553,14 @@ module Clacky
|
|
|
2553
2553
|
end
|
|
2554
2554
|
|
|
2555
2555
|
brand = Clacky::BrandConfig.load
|
|
2556
|
-
#
|
|
2557
|
-
#
|
|
2558
|
-
# license-gated
|
|
2559
|
-
|
|
2556
|
+
# Always try the public endpoint first — it covers all marketplace
|
|
2557
|
+
# extensions regardless of brand status. Only fall back to the
|
|
2558
|
+
# license-gated brand endpoint when the public lookup fails (e.g. for
|
|
2559
|
+
# origin=self brand-private extensions not exposed on the public API).
|
|
2560
|
+
result = brand.extension_detail!(id)
|
|
2561
|
+
if !result[:success] && brand.activated?
|
|
2562
|
+
result = brand.brand_extension_detail!(id)
|
|
2563
|
+
end
|
|
2560
2564
|
|
|
2561
2565
|
if result[:success] && result[:extension]
|
|
2562
2566
|
ext = result[:extension]
|
data/lib/clacky/version.rb
CHANGED
|
@@ -34,7 +34,7 @@ uninstall_gem() {
|
|
|
34
34
|
command_exists gem || return 1
|
|
35
35
|
if gem list -i openclacky >/dev/null 2>&1; then
|
|
36
36
|
print_step "Uninstalling via RubyGems..."
|
|
37
|
-
gem uninstall openclacky -x
|
|
37
|
+
gem uninstall openclacky -a -x
|
|
38
38
|
else
|
|
39
39
|
print_info "Gem 'openclacky' not found (already removed)"
|
|
40
40
|
fi
|