update 1GB -> 10GB references I missed

This commit is contained in:
Andrew Brown 2017-10-18 02:54:42 +03:00
parent 2d5fb83665
commit df27905a5c
6 changed files with 12 additions and 13 deletions

View File

@ -31,7 +31,7 @@
You can upload images to any content from the "Gallery" tab while editing it.
</p>
<p>
Free users have 50MB of space, and premium users have a whopping 1GB.
Free users have 50MB of space, and premium users have a whopping 10GB.
<% if current_user && current_user.selected_billing_plan_id == BillingPlan.find_by(stripe_plan_id: 'free-for-life').id %>
Because you were here at Notebook.ai's launch, <strong>we've quintupled your space from 50MB to 250MB. Thank you!</strong>
<% end %>

View File

@ -220,7 +220,7 @@ body {
</p>
<p class="light">
Free users start with 50MB of storage space that can be used to upload any size of image. Premium users are boosted an additional
1GB of storage space. You can delete any image at any time to reclaim and reuse its space.
10GB of storage space. You can delete any image at any time to reclaim and reuse its space.
</p>
<div class="tip card-panel blue lighten-5 light">
Tip: Uploading images is a great way to save the maps of your world. They're highlighted at the top of their Location page,
@ -368,7 +368,7 @@ body {
</p>
<p class="light">
<strong>Premium memberships are $9.00, billed monthly, and allow you to create unlimited amounts of any type of content.</strong>
Additionally, a Premium subscription also increases your image upload storage from 50MB to 1GB.
Additionally, a Premium subscription also increases your image upload storage from 50MB to 10GB.
</p>
</div>
<div class="col s3">
@ -643,4 +643,3 @@ body {
</div>
</div>
</div>

View File

@ -125,7 +125,7 @@
A huge thank you to everyone that participated in the community drive!
</p>
<p style="padding-top: 20px;">
Our raffle winner has been notified (check your email!) and we've added 1GB of storage space to all Premium user accounts
Our raffle winner has been notified (check your email!) and we've added 10GB of storage space to all Premium user accounts
from now until forever as a thank you.
</p>
<p style="padding-top: 20px;">

View File

@ -217,7 +217,7 @@ body {
</p>
<p class="light">
Free users start with 50MB of storage space that can be used to upload any size of image. Premium users are boosted an additional
1GB of storage space. You can delete any image at any time to reclaim and reuse its space.
10GB of storage space. You can delete any image at any time to reclaim and reuse its space.
</p>
<div class="tip card-panel blue lighten-5 light">
Tip: Uploading images is a great way to save the maps of your world. They're highlighted at the top of their Location page,
@ -373,7 +373,7 @@ body {
</p>
<p class="light">
<strong>Premium memberships are $9.00, billed monthly, and allow you to create unlimited amounts of any type of content.</strong>
Additionally, a Premium subscription also increases your image upload storage from 50MB to 1GB.
Additionally, a Premium subscription also increases your image upload storage from 50MB to 10GB.
</p>
</div>
<div class="col s3">

View File

@ -213,7 +213,7 @@ body {
</p>
<p class="light">
Free users start with 50MB of storage space that can be used to upload any size of image. Premium users are boosted an additional
1GB of storage space. You can delete any image at any time to reclaim and reuse its space.
10GB of storage space. You can delete any image at any time to reclaim and reuse its space.
</p>
<div class="tip card-panel blue lighten-5 light">
Tip: Uploading images is a great way to save the maps of your world. They're highlighted at the top of their Location page,
@ -371,7 +371,7 @@ body {
</p>
<p class="light">
<strong>Premium memberships are $9.00, billed monthly, and allow you to create unlimited amounts of any type of content.</strong>
Additionally, a Premium subscription also increases your image upload storage from 50MB to 1GB.
Additionally, a Premium subscription also increases your image upload storage from 50MB to 10GB.
</p>
</div>
<div class="col s3">
@ -481,7 +481,7 @@ body {
<th>Upload images</th>
<td>Up to 50MB</td>
<td>-</td>
<td>Up to 1GB</td>
<td>Up to 10GB</td>
</tr>
<tr>
<th>Price</th>

View File

@ -56,8 +56,8 @@ namespace :data_migrations do
]
# Premium
puts "Setting premium users to 1GB"
puts User.where(selected_billing_plan_id: premium_ids).update_all(upload_bandwidth_kb: 1_000_000) # 1GB
puts "Setting premium users to 10GB"
puts User.where(selected_billing_plan_id: premium_ids).update_all(upload_bandwidth_kb: 10_000_000) # 10GB
# Starter
puts "Setting starter users to 50MB"
@ -68,4 +68,4 @@ namespace :data_migrations do
puts "Setting beta users to 250MB"
puts User.where(selected_billing_plan_id: beta_id).update_all(upload_bandwidth_kb: 250_000) # 250MB
end
end
end