Remove useless package & update subscription descriptions

This commit is contained in:
Florian Rival
2018-02-25 17:34:55 +01:00
parent 49aa9469bb
commit 741770924b
5 changed files with 4 additions and 9 deletions

View File

@@ -190,8 +190,8 @@ export default class SubscriptionDialog extends Component<Props, State> {
}
subtitle={plan.smallDescription}
/>
{plan.descriptionBullets.map(bulletText => (
<Line noMargin alignItems="center">
{plan.descriptionBullets.map((bulletText, index) => (
<Line noMargin alignItems="center" key={index}>
<CheckCircle style={styles.bulletIcon} />
<p style={styles.bulletText}>{bulletText}</p>
</Line>

View File

@@ -47,6 +47,7 @@ export const getSubscriptionPlans = (): Array<PlanDetails> => [
descriptionBullets: [
'Allow to package your game for Android up to 70 times a day.',
'Use Live Preview over Wifi to quickly test your game on mobiles and tablets',
'Immerse your players by removing GDevelop logo when the game loads',
],
extraDescription:
"You'll also have access to online packaging for Windows, macOS and Linux when it's ready.",
@@ -59,6 +60,7 @@ export const getSubscriptionPlans = (): Array<PlanDetails> => [
descriptionBullets: [
'Allow to package your game for Android up to 10 times a day.',
'Use Live Preview over Wifi to quickly test your game on mobiles and tablets',
'Immerse your players by removing GDevelop logo when the game loads',
],
extraDescription:
"You'll also have access to online packaging for Windows, macOS and Linux when it's ready.",

View File

@@ -1,5 +1,4 @@
const liveServer = require('live-server');
const ip = require('ip');
const os = require('os');
const net = require('net');

View File

@@ -1758,11 +1758,6 @@
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
"integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
},
"ip": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz",
"integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo="
},
"ip-regex": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-1.0.3.tgz",

View File

@@ -17,7 +17,6 @@
"electron-log": "^2.2.14",
"electron-updater": "^2.18.2",
"fs-extra": "^3.0.1",
"ip": "^1.1.5",
"jimp": "^0.2.28",
"live-server": "^1.2.0",
"lodash.throttle": "^4.1.1",