Update subscription perks

This commit is contained in:
2024-02-21 14:26:21 +01:00
parent eb30b9fcc3
commit bed57a926c
4 changed files with 16 additions and 15 deletions

View File

@@ -53,8 +53,8 @@ onMount(() => {
Charged through Patreon Charged through Patreon
</div> </div>
<div class="feature_cell prepaid_feat"> <div class="feature_cell prepaid_feat">
<span class="bold">2 / month</span><br/> <span class="bold">1 / month</span><br/>
From account credit Base fee from account credit
</div> </div>
<div class="left_col"> <div class="left_col">
@@ -67,7 +67,7 @@ onMount(() => {
downloads downloads
</div> </div>
<div class="feature_cell pro_feat"> <div class="feature_cell pro_feat">
<span class="bold">2 TB per 30 days</span><br/> <span class="bold">4 TB per 30 days</span><br/>
Transfer limit is used for downloading, sharing and hotlinking. No Transfer limit is used for downloading, sharing and hotlinking. No
connection limit connection limit
@@ -86,11 +86,11 @@ onMount(() => {
</button> </button>
</div> </div>
<div class="feature_cell free_feat"> <div class="feature_cell free_feat">
Only <span class="bold">image files</span> below <span <span class="bold">Hotlinking not supported</span><br/>
class="bold">1 MB</span> in size can be hotlinked Hotlinked files get blocked
</div> </div>
<div class="feature_cell span2 pro_feat"> <div class="feature_cell span2 pro_feat">
<span class="bold">Any file type</span><br/> <span class="bold">Hotlinking supported</span><br/>
Hotlinking uses your transfer limit Hotlinking uses your transfer limit
</div> </div>
@@ -113,7 +113,7 @@ onMount(() => {
</button> </button>
</div> </div>
<div class="feature_cell free_feat"> <div class="feature_cell free_feat">
<span class="bold">90 days</span> (3 months)<br/> <span class="bold">120 days</span> (4 months)<br/>
After last download or view After last download or view
</div> </div>
<div class="feature_cell pro_feat"> <div class="feature_cell pro_feat">
@@ -147,7 +147,7 @@ onMount(() => {
Payment processors Payment processors
</div> </div>
<div class="feature_cell free_feat"> <div class="feature_cell free_feat">
None <span class="bold">None</span>
</div> </div>
<div class="feature_cell pro_feat"> <div class="feature_cell pro_feat">
<span class="bold">PayPal</span>, <span class="bold">Credit card</span> <span class="bold">PayPal</span>, <span class="bold">Credit card</span>

View File

@@ -15,7 +15,7 @@
<div class="feat_pro features_cell round_tr"> <div class="feat_pro features_cell round_tr">
<div><span class="text_highlight">100 GB</span> max file size</div> <div><span class="text_highlight">100 GB</span> max file size</div>
<div><span class="text_highlight">Files never expire</span></div> <div><span class="text_highlight">Files never expire</span></div>
<div><span class="text_highlight">4 TB</span> transfer limit</div> <div><span class="text_highlight">8 TB</span> transfer limit</div>
<div><span class="text_highlight">4 TB</span> storage space</div> <div><span class="text_highlight">4 TB</span> storage space</div>
<div> <div>
<span class="text_highlight">File viewer <span class="text_highlight">File viewer
@@ -41,7 +41,7 @@
<div class="feat_pro features_cell"> <div class="feat_pro features_cell">
<div><span class="text_highlight">100 GB</span> max file size</div> <div><span class="text_highlight">100 GB</span> max file size</div>
<div><span class="text_highlight">Files never expire</span></div> <div><span class="text_highlight">Files never expire</span></div>
<div><span class="text_highlight">8 TB</span> transfer limit</div> <div><span class="text_highlight">16 TB</span> transfer limit</div>
<div><span class="text_highlight">8 TB</span> storage space</div> <div><span class="text_highlight">8 TB</span> storage space</div>
<div><span class="text_highlight">File viewer branding</span></div> <div><span class="text_highlight">File viewer branding</span></div>
</div> </div>
@@ -62,7 +62,7 @@
<div class="feat_pro features_cell"> <div class="feat_pro features_cell">
<div><span class="text_highlight">100 GB</span> max file size</div> <div><span class="text_highlight">100 GB</span> max file size</div>
<div><span class="text_highlight">Files never expire</span></div> <div><span class="text_highlight">Files never expire</span></div>
<div><span class="text_highlight">16 TB</span> transfer limit</div> <div><span class="text_highlight">32 TB</span> transfer limit</div>
<div><span class="text_highlight">16 TB</span> storage space</div> <div><span class="text_highlight">16 TB</span> storage space</div>
<div><span class="text_highlight">File viewer branding</span></div> <div><span class="text_highlight">File viewer branding</span></div>
</div> </div>
@@ -83,7 +83,7 @@
<div class="feat_pro features_cell round_br"> <div class="feat_pro features_cell round_br">
<div><span class="text_highlight">100 GB</span> max file size</div> <div><span class="text_highlight">100 GB</span> max file size</div>
<div><span class="text_highlight">Files never expire</span></div> <div><span class="text_highlight">Files never expire</span></div>
<div><span class="text_highlight">32 TB</span> transfer limit</div> <div><span class="text_highlight">64 TB</span> transfer limit</div>
<div><span class="text_highlight">32 TB</span> storage space</div> <div><span class="text_highlight">32 TB</span> storage space</div>
<div><span class="text_highlight">File viewer branding</span></div> <div><span class="text_highlight">File viewer branding</span></div>
</div> </div>

View File

@@ -259,10 +259,10 @@ onDestroy(() => {
{/if} {/if}
{#if transfer_cap === -1} {#if transfer_cap === -1}
Premium transfers in the last 30 days: {formatDataVolume(transfer_used, 3)}. Premium transfer used in the last 30 days: {formatDataVolume(transfer_used, 3)}.
<a href="/user/sharing/bandwidth">Configure limit</a> <a href="/user/sharing/bandwidth">Configure limit</a>
{:else} {:else}
Premium transfers: Transfer cap:
{formatDataVolume(transfer_used, 3)} {formatDataVolume(transfer_used, 3)}
out of out of
{formatDataVolume(transfer_cap, 3)} {formatDataVolume(transfer_cap, 3)}

View File

@@ -110,13 +110,14 @@ onMount(() => {
</div> </div>
<div class="feat_normal round_tr" class:feat_highlight={subscription === "prepaid"}> <div class="feat_normal round_tr" class:feat_highlight={subscription === "prepaid"}>
<ul> <ul>
<li>Base price of €2 per month</li> <li>Base price of €1 per month</li>
<li>€4 per TB per month for storage</li> <li>€4 per TB per month for storage</li>
<li> <li>
€2 per TB for data transfer (with <a €2 per TB for data transfer (with <a
href="user/sharing/bandwidth">bandwidth sharing</a> href="user/sharing/bandwidth">bandwidth sharing</a>
enabled) enabled)
</li> </li>
<li>Access to the <a href="/filesystem">filesystem</a></li>
<li>Files never expire as long as subscription is active</li> <li>Files never expire as long as subscription is active</li>
<li> <li>
Download page <a href="/user/sharing/branding">branding Download page <a href="/user/sharing/branding">branding