Drop data transfer price to €1 per TB
This commit is contained in:
@@ -120,7 +120,7 @@ const update_example = () => {
|
||||
The hotlink embed option only works for single files uploaded with a
|
||||
Pro account. You can use this to directly embed a video player,
|
||||
audio player, photo element or a download button in your site. Make
|
||||
sure you have bandwidth sharing enabled on your
|
||||
sure you have hotlinking enabled on your
|
||||
<a href="/user/sharing/bandwidth">sharing settings page</a> or the
|
||||
embed will not work.
|
||||
</p>
|
||||
|
@@ -53,9 +53,9 @@ let file = {
|
||||
premium account
|
||||
</a>
|
||||
or when the uploader of the file enables
|
||||
<a href="/user/subscription">bandwidth sharing</a> on their Pro account
|
||||
(and their data cap has not been used up). Using a download manager with
|
||||
a Pro account is allowed, it will not trigger this warning for other
|
||||
<a href="/user/subscription">hotlinking</a> on their Pro account (and
|
||||
their data cap has not been used up). Using a download manager with a
|
||||
Pro account is allowed, it will not trigger this warning for other
|
||||
files.
|
||||
</p>
|
||||
<h2>
|
||||
|
@@ -48,7 +48,8 @@ onMount(() => {
|
||||
Charged through Patreon
|
||||
</div>
|
||||
<div class="feature_cell prepaid_feat">
|
||||
<span class="bold">No monthly fee</span>
|
||||
<span class="bold">€1 / month minimum</span><br/>
|
||||
Only charged when total usage is below €1
|
||||
</div>
|
||||
|
||||
<div class="left_col">
|
||||
@@ -67,7 +68,7 @@ onMount(() => {
|
||||
connection limit
|
||||
</div>
|
||||
<div class="feature_cell prepaid_feat">
|
||||
<span class="bold">€2 per TB transferred</span><br/>
|
||||
<span class="bold">€1 per TB transferred</span><br/>
|
||||
|
||||
Used for downloading, sharing and hotlinking. You only pay for what
|
||||
you use. No connection limit
|
||||
@@ -268,7 +269,7 @@ onMount(() => {
|
||||
When you have a Pro subscription you will get a monthly data transfer
|
||||
limit for all the files on your account combined. Files you download
|
||||
from pixeldrain are subtracted from the data cap. If you have <a
|
||||
href="/user/subscription">Bandwidth sharing</a>
|
||||
href="/user/subscription">hotlinking</a>
|
||||
enabled your data cap is also used when other people download
|
||||
your files.
|
||||
</p>
|
||||
@@ -283,8 +284,8 @@ onMount(() => {
|
||||
</li>
|
||||
<li>
|
||||
If the person who uploaded the file has a Pro subscription and
|
||||
Bandwidth sharing is enabled on their account, then the uploader's
|
||||
data cap is used.
|
||||
hotlinking is enabled on their account, then the uploader's data cap
|
||||
is used.
|
||||
</li>
|
||||
<li>
|
||||
If neither the uploader nor the downloader has a Pro subscription
|
||||
|
@@ -21,7 +21,7 @@ import Euro from "../util/Euro.svelte";
|
||||
<h2>Simple and affordable pricing</h2>
|
||||
<ul>
|
||||
<li><span class="keyword">€4.00 per TB per month</span> for storage</li>
|
||||
<li><span class="keyword">€2.00 per TB</span> for downloading and sharing files</li>
|
||||
<li><span class="keyword">€1.00 per TB</span> for downloading and sharing files</li>
|
||||
</ul>
|
||||
|
||||
<br style="clear: right;"/>
|
||||
|
@@ -80,7 +80,7 @@ let upload_widget
|
||||
</div>
|
||||
<div>
|
||||
<div>Egress pricing</div>
|
||||
<div>€ 2 / TB</div>
|
||||
<div>€ 1 / TB</div>
|
||||
</div>
|
||||
<div>
|
||||
<div>That's it!</div>
|
||||
|
@@ -95,9 +95,9 @@ onMount(() => {
|
||||
When hotlinking is enabled all the bandwidth that your files use will be
|
||||
subtracted from your data cap. Advertisements will be disabled on the
|
||||
download pages for your files and download speed will be unlimited. The
|
||||
rate limiting captcha for files is also disabled when bandwidth sharing
|
||||
is on. You can directly embed your file's download link anywhere, you
|
||||
don't need to use the file viewer page.
|
||||
rate limiting captcha for files is also disabled when hotlinking is on.
|
||||
You can directly embed your file's download link anywhere, you don't
|
||||
need to use the file viewer page.
|
||||
</p>
|
||||
|
||||
<h2><Pro/>Bill shock limit</h2>
|
||||
|
@@ -83,7 +83,7 @@ onMount(() => {
|
||||
<p>
|
||||
Pixeldrain credit can be used for our prepaid plans, which are different
|
||||
from the Patreon plans. With prepaid you only pay for what you use, at a
|
||||
rate of €4 per TB per month for storage and €2 per TB for data transfer.
|
||||
rate of €4 per TB per month for storage and €1 per TB for data transfer.
|
||||
See the Subscriptions tab for more information about the perks.
|
||||
</p>
|
||||
<p>
|
||||
|
@@ -52,9 +52,9 @@ onMount(() => {
|
||||
</div>
|
||||
{:else if !window.user.hotlinking_enabled}
|
||||
<div class="highlight_yellow">
|
||||
To use embedding restrictions bandwidth sharing needs to be enabled.
|
||||
Enable bandwidth sharing on the
|
||||
<a href="/user/sharing/bandwidth">bandwidth sharing page</a>.
|
||||
To use embedding restrictions hotlinking needs to be enabled.
|
||||
Enable hotlinking on the
|
||||
<a href="/user/sharing/bandwidth">sharing settings page</a>.
|
||||
</div>
|
||||
{/if}
|
||||
<p>
|
||||
|
@@ -107,9 +107,9 @@ onMount(() => {
|
||||
</div>
|
||||
{:else if !window.user.hotlinking_enabled}
|
||||
<div class="highlight_yellow">
|
||||
To use custom file viewer branding bandwidth sharing needs to be
|
||||
enabled. Enable bandwidth sharing on the
|
||||
<a href="/user/sharing/bandwidth">bandwidth sharing page</a>.
|
||||
To use custom file viewer branding hotlinking needs to be
|
||||
enabled. Enable hotlinking on the
|
||||
<a href="/user/sharing/bandwidth">sharing settings page</a>.
|
||||
</div>
|
||||
{/if}
|
||||
<SuccessMessage bind:this={success_message}></SuccessMessage>
|
||||
|
@@ -53,7 +53,7 @@ let pages = [
|
||||
subpages: [
|
||||
{
|
||||
path: "/user/sharing/bandwidth",
|
||||
title: "Bandwidth Sharing",
|
||||
title: "Sharing settings",
|
||||
icon: "share",
|
||||
component: BandwidthSharing,
|
||||
}, {
|
||||
|
@@ -162,8 +162,8 @@ onMount(() => {
|
||||
<ul>
|
||||
<li>€4 per TB per month for storage</li>
|
||||
<li>
|
||||
€2 per TB for data transfer (with <a
|
||||
href="/user/sharing/bandwidth">bandwidth sharing</a>
|
||||
€1 per TB for data transfer (with <a
|
||||
href="/user/sharing/bandwidth">hotlinking</a>
|
||||
enabled)
|
||||
</li>
|
||||
<li>Access to the <a href="/filesystem">filesystem</a></li>
|
||||
|
Reference in New Issue
Block a user