Skip to content

Commit a0fe5c1

Browse files
Version 2.4.10 release
1 parent 9b54437 commit a0fe5c1

6 files changed

Lines changed: 8 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
All notable changes to this project will be documented in this file.
33
"Unreleased" changes are implemented but haven't been released yet.
44

5+
## [2.4.10] - 2020-05-13
6+
- Use new payment page with Stripe Checkout (AliPay support)
7+
58
## [2.4.9] - 2020-02-14
69
- Code Signing Certificate renewal (Windows)
710

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "gingko-client",
33
"productName": "Gingko",
4-
"version": "2.4.9",
4+
"version": "2.4.10",
55
"description": "Gingko client rewritten in Elm, packaged with Electron.",
66
"repository": {
77
"type": "git",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "gingko-client",
33
"productName": "Gingko",
4-
"version": "2.4.9",
4+
"version": "2.4.10",
55
"description": "Gingko client rewritten in Elm, packaged with Electron.",
66
"repository": {
77
"type": "git",

src/electron/menu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ function helpMenu(handlers, isMac, lang, isHelpVisible) {
311311
}
312312
, { type: "separator" }
313313
, { label: tr.buyLicense[lang]
314-
, click : () => shell.openExternal("https://gingkoapp.com/desktop-upgrade")
314+
, click : () => shell.openExternal("https://gingko.io/upgrade")
315315
}
316316
, { label: tr.enterLicense[lang]
317317
, id: "enterLicense"

src/static/license.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
}
2626

2727
buyLicense = () => {
28-
shell.openExternal('https://gingkoapp.com/desktop-upgrade')
28+
shell.openExternal('https://gingko.io/upgrade/')
2929
}
3030

3131
cancel = () => {

src/static/trial.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
})
4141

4242
clickBuy = () => {
43-
shell.openExternal('https://gingkoapp.com/desktop-upgrade')
43+
shell.openExternal('https://gingko.io/upgrade/')
4444
ipc.send('trial:open-serial-window', (daysLeft <= 0))
4545
window.onbeforeunload = undefined
4646
this.close()

0 commit comments

Comments
 (0)