Merge beta into release #21

Merged
didirus merged 276 commits from beta into release 2025-11-01 13:04:25 +00:00
3 changed files with 6 additions and 6 deletions
Showing only changes of commit 5fd27bcb65 - Show all commits

View File

@@ -15,7 +15,7 @@
class="iconified-button raised-button"
prompt="Replace"
:accept="acceptFileTypes"
:max-size="524288000"
:max-size="5242880"
should-always-reset
aria-label="Replace image"
@change="
@@ -197,7 +197,7 @@
</div>
<div v-if="currentMember" class="card header-buttons">
<FileInput
:max-size="524288000"
:max-size="5242880"
:accept="acceptFileTypes"
prompt="Upload an image"
aria-label="Upload an image"

View File

@@ -503,8 +503,8 @@ async fn project_create_inner(
if let Some(item) = gallery_items.iter().find(|x| x.item == name) {
let data = read_from_field(
&mut field,
2 * (1 << 20),
"Gallery image exceeds the maximum of 2MiB.",
5 * (1 << 20),
"Gallery image exceeds the maximum of 5MiB.",
)
.await?;

View File

@@ -1739,8 +1739,8 @@ pub async fn add_gallery_item(
let bytes = read_limited_from_payload(
&mut payload,
2 * (1 << 20),
"Gallery image exceeds the maximum of 2MiB.",
5 * (1 << 20),
"Gallery image exceeds the maximum of 5MiB.",
)
.await?;