Update file expiry time

This commit is contained in:
2024-02-22 14:18:22 +01:00
parent bed57a926c
commit 5c9c66746a
5 changed files with 12 additions and 12 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 90 days. A view is Files will be removed if they have not been viewed for 120 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 90 days and has expired The file has not been viewed for 120 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 90 days and All files in this list have not been viewed for 120 days and
have expired have expired
</li> </li>
<li> <li>

View File

@@ -77,7 +77,7 @@ const toggle_example = () => {
<div class="center"> <div class="center">
<textarea bind:value={embed_html} style="width: 100%; height: 4em;"></textarea> <textarea bind:value={embed_html} style="width: 100%; height: 4em;"></textarea>
<br/> <br/>
<CopyButton text={embed_html} label="Copy HTML"/> <CopyButton text={embed_html}>Copy HTML</CopyButton>
<button on:click={toggle_example} class:button_highlight={example} disabled={!is_shared}> <button on:click={toggle_example} class:button_highlight={example} disabled={!is_shared}>
<i class="icon">visibility</i> Show example <i class="icon">visibility</i> Show example
</button> </button>

View File

@@ -237,13 +237,13 @@ 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 90 days by expiring files. When a file is freshly uploaded it gets 120 days by
default (240 days if you have the pro plan). After these 90 days we will default (240 days if you have the pro plan). After these 120 days we
check when the file was last viewed. Files which are regularly viewed will check when the file was last viewed. Files which are regularly
could still bring new users to the platform, it would be rude to show viewed could still bring new users to the platform, it would be rude to
these people a File Not Found page. So if the file was viewed in the show these people a File Not Found page. So if the file was viewed in
last 90 days we will simply postpone the next check a month. If the file the last 120 days we will simply postpone the next check a month. If the
was not viewed however it will immediately be removed. file was not viewed however it will immediately be removed.
</p> </p>
<p> <p>
Views are only counted when someone visits the download page in a web Views are only counted when someone visits the download page in a web

View File

@@ -180,7 +180,7 @@ 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 90 days.</li> <li>Standard free plan, files expire after 120 days.</li>
<li>Download limit of 5 GB per day</li> <li>Download limit of 5 GB per day</li>
</ul> </ul>
</div> </div>