Skip to content

Commit 3dbfc84

Browse files
authored
Merge pull request #423 from kernvalley/relase
Version bump
2 parents 8e3ae63 + 2db9e99 commit 3dbfc84

File tree

6 files changed

+32
-6
lines changed

6 files changed

+32
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [v2.3.0] - 2023-01-09
11+
1012
### Changed
13+
- Update to node v18.13.0
1114
- Updated theme and various design details
1215
- Add `"webapp"` platform to manifest
1316
- Use `<app-stores>` to dynamically generate list of apps (not installed?)
@@ -19,7 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1922
### Fixed
2023
- Correctly set event status
2124

22-
##[v2.1.0]
25+
## [v2.1.0]
2326

2427
### Added
2528
- Notice that Whiskey Flat Days 2021 has been cancelled

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ author: Chris Zuber
22
title: Whiskey Flat Days
33
url: 'https://whiskeyflatdays.com'
44
markdown: kramdown
5-
version: 2.2.2
5+
version: 2.3.0
66
timezone: America/Los_Angeles
77
lang: en
88
dir: ltr

_data/app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Whiskey Flat Days
33
shortName: WFD App
44
id: WhiskeyFlatDays
5-
version: 2.2.2-2022-12-24T13:40
5+
version: 2.3.0
66
start_url: /?utm_source=homescreen&utm_medium=pwa
77
display: standalone
88
description: "Map, events, store, and news app for Whiskey Flat Days"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "whiskey-flat-days",
3-
"version": "2.2.2",
3+
"version": "2.3.0",
44
"private": true,
55
"description": "Map, events, store, and news app for Whiskey Flat Days",
66
"config": {

store/checkout.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Checkout
3+
permalink: /store/checkout
4+
layout: default
5+
robots: no-follow, no-index
6+
description: Checkout Page for WhiskeyFlatDays Store
7+
scripts:
8+
- src: https://js.stripe.com/v3/
9+
defer: true
10+
crossOrigin: anonymous
11+
referrerPolicy: no-referrer
12+
- src: /js/store.js
13+
type: module
14+
---
15+
<form id="payment-form">
16+
<!-- https://stripe.com/docs/payments/card-element -->
17+
<!-- https://stripe.com/docs/payments/quickstart -->
18+
<div id="card-element" data-stripe-element="linkAuthentication"><!--Stripe.js injects the Card Element--></div>
19+
<button type="submit" class="btn btn-accept">
20+
<span id="button-text">Pay now</span>
21+
</button>
22+
<p id="card-error" role="alert"></p>
23+
</form>

0 commit comments

Comments
 (0)