ultimate-jekyll-manager 1.1.3 → 1.1.5

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.
package/CHANGELOG.md CHANGED
@@ -14,6 +14,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
14
14
  - `Fixed` for any bug fixes.
15
15
  - `Security` in case of vulnerabilities.
16
16
 
17
+ ---
18
+ ## [1.1.5] - 2026-04-09
19
+ ### Changed
20
+ - Move pricing and feature limit values from layout frontmatter to default `_config.yml` under `web_manager.payment.products`, making the pricing page fully config-driven
21
+ - Add default `payment.products` array with 4 example plans (basic, plus, pro, max) including limits, prices, and trial config
22
+ - Handle boolean `true` config limits in feature value display (renders feature name only, check icon in comparison table)
23
+
24
+ ---
25
+ ## [1.1.4] - 2026-04-09
26
+ ### Changed
27
+ - Update web-manager from v4.1.37 to v4.1.38
28
+
17
29
  ---
18
30
  ## [1.1.3] - 2026-04-08
19
31
  ### Security
@@ -33,50 +33,37 @@ pricing:
33
33
  name: "Basic"
34
34
  tagline: "best for getting started"
35
35
  url: "/dashboard" # URL to get started
36
- pricing:
37
- monthly: 0
38
- annually: 0
39
36
  features:
40
- # Common features
37
+ # Common features (values resolve from _config.yml payment.products.limits)
41
38
  - id: "credits"
42
39
  name: "Credits"
43
- value: 10
44
40
  icon: "sparkles"
45
41
  - id: "exports"
46
42
  name: "Exports"
47
- value: "Watermarked"
48
43
  icon: "download"
49
44
  # Additional features
50
45
  - id: "storage"
51
46
  name: "Logo Storage"
52
- value: "7 days"
53
47
  icon: "clock"
54
48
 
55
49
  - id: "plus"
56
50
  name: "Plus"
57
51
  tagline: "best for individuals"
58
52
  url: null
59
- pricing:
60
- monthly: 28
61
- annually: 276 # Total annual price (~20% off monthly)
62
53
  features:
63
54
  # Common features
64
55
  - id: "credits"
65
56
  name: "Credits"
66
- value: 100
67
57
  icon: "sparkles"
68
58
  - id: "exports"
69
59
  name: "Exports"
70
- value: "Unlimited"
71
60
  icon: "download"
72
61
  # Additional features
73
62
  - id: "api_access"
74
63
  name: "API Access"
75
- value: "Full"
76
64
  icon: "code"
77
65
  - id: "priority_support"
78
66
  name: "Priority Support"
79
- value: "24/7"
80
67
  icon: "headset"
81
68
 
82
69
  - id: "pro"
@@ -84,18 +71,13 @@ pricing:
84
71
  tagline: "best for small businesses"
85
72
  url: null
86
73
  popular: true
87
- pricing:
88
- monthly: 50
89
- annually: 504 # Total annual price (~16% off monthly)
90
74
  features:
91
75
  # Common features
92
76
  - id: "credits"
93
77
  name: "Credits"
94
- value: 200
95
78
  icon: "sparkles"
96
79
  - id: "exports"
97
80
  name: "Exports"
98
- value: "Unlimited"
99
81
  icon: "download"
100
82
  # Additional features
101
83
 
@@ -103,27 +85,20 @@ pricing:
103
85
  name: "Max"
104
86
  tagline: "best for growing businesses"
105
87
  url: null
106
- pricing:
107
- monthly: 100
108
- annually: 960 # Total annual price (20% off monthly)
109
88
  features:
110
89
  # Common features
111
90
  - id: "credits"
112
91
  name: "Credits"
113
- value: 500
114
92
  icon: "sparkles"
115
93
  - id: "exports"
116
94
  name: "Exports"
117
- value: "Unlimited"
118
95
  icon: "download"
119
96
  # Additional features
120
97
  - id: "team_collaboration"
121
98
  name: "Team Collaboration"
122
- value: "Included"
123
99
  icon: "users"
124
100
  - id: "custom_branding"
125
101
  name: "Custom Branding"
126
- value: "Available"
127
102
  icon: "palette"
128
103
 
129
104
  # Feature Comparison Section
@@ -530,7 +505,7 @@ faqs:
530
505
  <span>
531
506
  {% if _feature_value == "24/7" %}
532
507
  {{ _feature_value }}
533
- {% elsif _feature_value == "Included" or _feature_value == "Available" or _feature_value == "Full" %}
508
+ {% elsif _feature_value == true or _feature_value == "Included" or _feature_value == "Available" or _feature_value == "Full" %}
534
509
  <!-- No prefix for these values -->
535
510
  {% else %}
536
511
  {{ _feature_value | uj_commaify }}
@@ -597,7 +572,7 @@ faqs:
597
572
  <span>
598
573
  {% if _feature_value == "24/7" %}
599
574
  {{ _feature_value }}
600
- {% elsif _feature_value == "Included" or _feature_value == "Available" or _feature_value == "Full" %}
575
+ {% elsif _feature_value == true or _feature_value == "Included" or _feature_value == "Available" or _feature_value == "Full" %}
601
576
  <!-- No prefix for these values -->
602
577
  {% else %}
603
578
  {{ _feature_value | uj_commaify }}
@@ -144,7 +144,47 @@ web_manager:
144
144
  site: null
145
145
  coinbase:
146
146
  enabled: false
147
- products: []
147
+ products:
148
+ - id: basic
149
+ name: Basic
150
+ type: subscription
151
+ limits:
152
+ credits: 10
153
+ exports: "Watermarked"
154
+ storage: "7 days"
155
+ - id: plus
156
+ name: Plus
157
+ type: subscription
158
+ limits:
159
+ credits: 100
160
+ exports: -1
161
+ api_access: "Full"
162
+ priority_support: "24/7"
163
+ trial:
164
+ days: 14
165
+ prices:
166
+ monthly: 28
167
+ annually: 276
168
+ - id: pro
169
+ name: Pro
170
+ type: subscription
171
+ limits:
172
+ credits: 200
173
+ exports: -1
174
+ prices:
175
+ monthly: 50
176
+ annually: 504
177
+ - id: max
178
+ name: Max
179
+ type: subscription
180
+ limits:
181
+ credits: 500
182
+ exports: -1
183
+ team_collaboration: true
184
+ custom_branding: true
185
+ prices:
186
+ monthly: 100
187
+ annually: 960
148
188
 
149
189
  # OAuth2
150
190
  oauth2:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultimate-jekyll-manager",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "description": "Ultimate Jekyll dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
@@ -105,7 +105,7 @@
105
105
  "sass": "^1.99.0",
106
106
  "spellchecker": "^3.7.1",
107
107
  "through2": "^4.0.2",
108
- "web-manager": "^4.1.37",
108
+ "web-manager": "^4.1.38",
109
109
  "webpack": "^5.106.0",
110
110
  "wonderful-fetch": "^2.0.5",
111
111
  "wonderful-version": "^1.3.2",