Merge branch 'release/1.0.1'

This commit is contained in:
ntr 2019-09-02 19:09:11 +10:00
commit 5d4d78c390
8 changed files with 12 additions and 13 deletions

View File

@ -1 +1 @@
1.0.0 1.0.1

View File

@ -1,6 +1,6 @@
{ {
"name": "mnml-client", "name": "mnml-client",
"version": "1.0.0", "version": "1.0.1",
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {

View File

@ -1,6 +1,6 @@
{ {
"name": "mnml-client", "name": "mnml-client",
"version": "1.0.0", "version": "1.0.1",
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {

View File

@ -30,7 +30,7 @@ document.fonts.load('16pt "Jura"').then(() => {
const App = () => ( const App = () => (
<Provider store={store}> <Provider store={store}>
<StripeProvider apiKey="pk_test_Cb49tTqTXpzk7nEmlGzRrNJg00AU0aNZDj"> <StripeProvider apiKey="pk_live_fQGrL1uWww2ot8W1G7vTySAv004ygmnMXq">
<Mnml /> <Mnml />
</StripeProvider> </StripeProvider>
</Provider> </Provider>

View File

@ -8,18 +8,18 @@ function BitsBtn(args) {
} = args; } = args;
function subscribeClick() { function subscribeClick() {
stripe.redirectToCheckout({ stripe.redirectToCheckout({
items: [{ plan: 'plan_Fhl9r7UdMadjGi', quantity: 1 }], items: [{ plan: 'plan_Fjdtsd4i7aVLe1', quantity: 1 }],
successUrl: 'http://localhost', successUrl: 'https://mnml.gg',
cancelUrl: 'http://localhost', cancelUrl: 'https://mnml.gg',
clientReferenceId: account.id, clientReferenceId: account.id,
}); });
} }
function bitsClick() { function bitsClick() {
stripe.redirectToCheckout({ stripe.redirectToCheckout({
items: [{ sku: 'sku_FHUfNEhWQaVDaT', quantity: 1 }], items: [{ sku: 'sku_Fjdu7zOy3sLGc5', quantity: 1 }],
successUrl: 'http://localhost', successUrl: 'https://mnml.gg',
cancelUrl: 'http://localhost', cancelUrl: 'https://mnml.gg',
clientReferenceId: account.id, clientReferenceId: account.id,
}); });
} }

View File

@ -6,7 +6,6 @@ upstream mnml_ws {
server 127.0.0.1:40055; server 127.0.0.1:40055;
} }
map $http_upgrade $connection_upgrade { map $http_upgrade $connection_upgrade {
default upgrade; default upgrade;
'' close; '' close;

View File

@ -1,6 +1,6 @@
{ {
"name": "mnml-ops", "name": "mnml-ops",
"version": "1.0.0", "version": "1.0.1",
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {

View File

@ -1,6 +1,6 @@
[package] [package]
name = "mnml" name = "mnml"
version = "1.0.0" version = "1.0.1"
authors = ["ntr <ntr@smokestack.io>"] authors = ["ntr <ntr@smokestack.io>"]
[dependencies] [dependencies]