Increase free file expiry to 90 days

This commit is contained in:
2023-10-24 11:27:29 +02:00
parent 7fdfaa91b8
commit a1d946c6d0
4 changed files with 11 additions and 11 deletions

View File

@@ -2,7 +2,7 @@
## For how long will my files be stored? ## For how long will my files be stored?
Files will be removed if they have not been viewed for 60 days. A view is Files will be removed if they have not been viewed for 90 days. A view is
counted when someone visits the file's download page (pixeldrain.com/u/somefile) counted when someone visits the file's download page (pixeldrain.com/u/somefile)
or views the file through a list the file is included in or views the file through a list the file is included in
(pixeldrain.com/l/somelist). (pixeldrain.com/l/somelist).

View File

@@ -17,7 +17,7 @@
</p> </p>
<ul> <ul>
<li> <li>
The file has not been viewed for 60 days and has expired The file has not been viewed for 90 days and has expired
</li> </li>
<li> <li>
The person who uploaded the file has deleted it The person who uploaded the file has deleted it
@@ -52,7 +52,7 @@
</p> </p>
<ul> <ul>
<li> <li>
All files in this list have not been viewed for 60 days and All files in this list have not been viewed for 90 days and
have expired have expired
</li> </li>
<li> <li>

View File

@@ -62,11 +62,11 @@ onMount(() => {
<div class="feature_cell free_feat"> <div class="feature_cell free_feat">
<span class="bold">5 GB per day</span><br/> <span class="bold">5 GB per day</span><br/>
Download speed is reduced to 1 MiB/s when exceeded. Max 3 concurrent Download speed is reduced to 1 MiB/s when exceeded. Max 5 concurrent
downloads downloads
</div> </div>
<div class="feature_cell pro_feat"> <div class="feature_cell pro_feat">
<span class="bold">2 TB per month</span><br/> <span class="bold">2 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
@@ -112,7 +112,7 @@ onMount(() => {
</button> </button>
</div> </div>
<div class="feature_cell free_feat"> <div class="feature_cell free_feat">
<span class="bold">60 days</span> (2 months)<br/> <span class="bold">90 days</span> (3 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">
@@ -254,12 +254,12 @@ onMount(() => {
</p> </p>
<p> <p>
Unlike most other sharing sites pixeldrain uses a postponing system for Unlike most other sharing sites pixeldrain uses a postponing system for
expiring files. When a file is freshly uploaded it gets 60 days by expiring files. When a file is freshly uploaded it gets 90 days by
default (240 days if you have the pro plan). After these 60 days we will default (240 days if you have the pro plan). After these 90 days we will
check when the file was last viewed. Files which are regularly viewed check when the file was last viewed. Files which are regularly viewed
could still bring new users to the platform, it would be rude to show could still bring new users to the platform, it would be rude to show
these people a File Not Found page. So if the file was viewed in the these people a File Not Found page. So if the file was viewed in the
last 60 days we will simply postpone the next check a month. If the file last 90 days we will simply postpone the next check a month. If the file
was not viewed however it will immediately be removed. was not viewed however it will immediately be removed.
</p> </p>
<p> <p>

View File

@@ -180,8 +180,8 @@ onMount(() => {
</div> </div>
<div class="feat_normal round_br" class:feat_highlight={subscription === ""}> <div class="feat_normal round_br" class:feat_highlight={subscription === ""}>
<ul> <ul>
<li>Standard free plan, files expire after 60 days.</li> <li>Standard free plan, files expire after 90 days.</li>
<li>Download limit of 10 GB per day</li> <li>Download limit of 5 GB per day</li>
</ul> </ul>
</div> </div>
</div> </div>