Beta #30

Merged
didirus merged 990 commits from beta into release 2026-06-20 05:06:18 +00:00
2 changed files with 13 additions and 1 deletions
Showing only changes of commit 803c17de31 - Show all commits
+5
View File
@@ -336,6 +336,11 @@ pub struct VersionFile {
pub enum FileType {
RequiredResourcePack,
OptionalResourcePack,
SourcesJar,
DevJar,
JavadocJar,
Signature,
#[serde(other)]
Unknown,
}
+8 -1
View File
@@ -125,7 +125,14 @@ export const TEXT_EXTENSIONS: readonly string[] = [
'ini',
'sk',
] as const
export const IMAGE_EXTENSIONS: readonly string[] = ['png', 'jpg', 'jpeg', 'gif', 'svg', 'webp'] as const
export const IMAGE_EXTENSIONS: readonly string[] = [
'png',
'jpg',
'jpeg',
'gif',
'svg',
'webp',
] as const
const ARCHIVE_EXTENSIONS: string[] = ['zip', 'jar', 'tar', 'gz', 'rar', '7z'] as const
export function getProjectTypeIcon(projectType: ProjectType): Component {