Skip to content

Commit

Permalink
Version 2.4.10 release
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianoFerrari committed May 13, 2020
1 parent 9b54437 commit a0fe5c1
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
"Unreleased" changes are implemented but haven't been released yet.

## [2.4.10] - 2020-05-13
- Use new payment page with Stripe Checkout (AliPay support)

## [2.4.9] - 2020-02-14
- Code Signing Certificate renewal (Windows)

Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gingko-client",
"productName": "Gingko",
"version": "2.4.9",
"version": "2.4.10",
"description": "Gingko client rewritten in Elm, packaged with Electron.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gingko-client",
"productName": "Gingko",
"version": "2.4.9",
"version": "2.4.10",
"description": "Gingko client rewritten in Elm, packaged with Electron.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/electron/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ function helpMenu(handlers, isMac, lang, isHelpVisible) {
}
, { type: "separator" }
, { label: tr.buyLicense[lang]
, click : () => shell.openExternal("https://gingkoapp.com/desktop-upgrade")
, click : () => shell.openExternal("https://gingko.io/upgrade")
}
, { label: tr.enterLicense[lang]
, id: "enterLicense"
Expand Down
2 changes: 1 addition & 1 deletion src/static/license.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
}

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

cancel = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/static/trial.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
})

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

0 comments on commit a0fe5c1

Please sign in to comment.