Skip to content

Commit

Permalink
Add possibility to subscribe to a startup plan from the profile (#5472)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreSi authored Jul 11, 2023
1 parent 0c03659 commit 9b6de5a
Showing 1 changed file with 18 additions and 20 deletions.
38 changes: 18 additions & 20 deletions newIDE/app/src/Utils/GDevelopServices/Usage.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,43 +157,41 @@ export const getSubscriptionPlans = (): Array<PlanDetails> => [
],
},
{
planId: 'gdevelop_education',
name: 'GDevelop Education',
monthlyPriceInEuros: 2.99,
yearlyPriceInEuros: 29.99,
isPerUser: true,
smallDescription: t`Schools and universities.`,
planId: 'gdevelop_startup',
name: 'GDevelop Startup',
monthlyPriceInEuros: 30,
smallDescription: t`Small game studios and startups.`,
descriptionBullets: [
{
message: t`Students anonymity.`,
message: t`500 cloud projects with 5GB of resources per project.`,
},
{
message: t`Organize students per classroom.`,
message: t`Unlimited packagings per day for Android, web and desktop.`,
},
{
message: t`You and your students receive a Gold subscription.`,
message: t`Unlimited leaderboards and unlimited player feedback responses.`,
},
{
message: t`Immerse your players by removing the GDevelop watermark or the GDevelop logo when the game loads.`,
},
],
},
{
planId: 'gdevelop_startup',
name: 'GDevelop Startup',
monthlyPriceInEuros: 30,
planId: 'gdevelop_education',
name: 'GDevelop Education',
monthlyPriceInEuros: 2.99,
yearlyPriceInEuros: 29.99,
isPerUser: true,
smallDescription: t`Small game studios and startups.`,
hideInSubscriptionDialog: true,
smallDescription: t`Schools and universities.`,
descriptionBullets: [
{
message: t`500 cloud projects with 5GB of resources per project.`,
},
{
message: t`Unlimited packagings per day for Android, web and desktop.`,
message: t`Students anonymity.`,
},
{
message: t`Unlimited leaderboards and unlimited player feedback responses.`,
message: t`Organize students per classroom.`,
},
{
message: t`Immerse your players by removing the GDevelop watermark or the GDevelop logo when the game loads.`,
message: t`You and your students receive a Gold subscription.`,
},
],
},
Expand Down

0 comments on commit 9b6de5a

Please sign in to comment.