v0.2.0:1 — drop FOUNDERS50 placeholder from buy-page discount input
Per operator feedback: the discount-code field on /buy/<slug> was showing 'FOUNDERS50' as a placeholder, which confused buyers (some tried it as a real code, some assumed Keysat shipped a default discount). Empty placeholder now; buyers paste their actual code. No semantic change. Wrapper-only revision; daemon binary unchanged beyond the embedded HTML template.
This commit is contained in:
@@ -476,7 +476,7 @@ footer.kfooter a:hover {{ color:var(--navy-900); }}
|
|||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="code">Discount code (optional)</label>
|
<label for="code">Discount code (optional)</label>
|
||||||
<div class="code-row">
|
<div class="code-row">
|
||||||
<input type="text" id="code" name="code" placeholder="FOUNDERS50" autocomplete="off">
|
<input type="text" id="code" name="code" placeholder="" autocomplete="off">
|
||||||
<button type="button" class="btn-apply" id="btn-apply">Apply</button>
|
<button type="button" class="btn-apply" id="btn-apply">Apply</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="code-status" id="code-status" role="status" aria-live="polite"></div>
|
<div class="code-status" id="code-status" role="status" aria-live="polite"></div>
|
||||||
|
|||||||
@@ -53,9 +53,19 @@ const RELEASE_NOTES = [
|
|||||||
'**What\'s next (v0.3).** Zaprite payment provider for card payments. Recurring subscriptions. In-place tier upgrades for end customers. Multi-currency pricing (USD + sats with auto-conversion at invoice creation).',
|
'**What\'s next (v0.3).** Zaprite payment provider for card payments. Recurring subscriptions. In-place tier upgrades for end customers. Multi-currency pricing (USD + sats with auto-conversion at invoice creation).',
|
||||||
].join('\n')
|
].join('\n')
|
||||||
|
|
||||||
|
// Routine wrapper-revision changelog. Newest first; each entry is
|
||||||
|
// what changed since the previous downstream-:N. The `:0` notes are
|
||||||
|
// in RELEASE_NOTES above (the milestone). Subsequent revisions
|
||||||
|
// append here.
|
||||||
|
const ROUTINE_NOTES = [
|
||||||
|
'0.2.0:1 — Buy-page discount-code box no longer shows a "FOUNDERS50" placeholder. Empty placeholder now; buyers paste their actual code without a misleading hint.',
|
||||||
|
'',
|
||||||
|
RELEASE_NOTES,
|
||||||
|
].join('\n\n')
|
||||||
|
|
||||||
export const v0_2_0 = VersionInfo.of({
|
export const v0_2_0 = VersionInfo.of({
|
||||||
version: '0.2.0:0',
|
version: '0.2.0:1',
|
||||||
releaseNotes: { en_US: RELEASE_NOTES },
|
releaseNotes: { en_US: ROUTINE_NOTES },
|
||||||
// No on-disk transformation needed — v0.2.0:0 is a label change.
|
// No on-disk transformation needed — v0.2.0:0 is a label change.
|
||||||
// SQLite-level migrations live separately under
|
// SQLite-level migrations live separately under
|
||||||
// licensing-service/migrations/ and run at daemon boot regardless
|
// licensing-service/migrations/ and run at daemon boot regardless
|
||||||
|
|||||||
Reference in New Issue
Block a user