Skip to content

Commit

Permalink
Upped the version changelog character limit to 16000
Browse files Browse the repository at this point in the history
THANK YOU NEKO FOR THE AMAZING SIX THOUSAND SEVEN HUNDRED AND SIXTY-FOUR CHARACTER LONG ENEMY EXPANSION BETA 1.9 CHANGELOG
also release 1.3.4 for website
  • Loading branch information
SwanX1 committed Jan 3, 2023
1 parent 92a6b6a commit 509cd44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "infernalstudios.org",
"version": "1.3.3",
"version": "1.3.4",
"private": true,
"description": "Source code for <https://infernalstudios.org>!",
"bugs": "https://github.com/infernalexp/infernalstudios.org/issues",
Expand Down
2 changes: 1 addition & 1 deletion src/api/ModAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export function getModAPI(database: Database): Router {
url: z.string().max(255),
minecraft: z.string().max(255),
recommended: z.boolean(),
changelog: z.string().max(4095),
changelog: z.string().max(16000),
loader: zodLiterals("forge", "fabric", "rift", "liteloader", "quilt"),
dependencies: z.array(
z
Expand Down
2 changes: 1 addition & 1 deletion src/database/Database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export class Database {
table.string("url", 511).notNullable();
table.string("minecraft", 255).notNullable().index();
table.boolean("recommended").notNullable().defaultTo(false);
table.string("changelog", 4095).notNullable();
table.string("changelog", 16000).notNullable();
table.string("loader", 255).notNullable().index();
table.string("mod", 255).notNullable();
table.jsonb("dependencies").notNullable();
Expand Down

0 comments on commit 509cd44

Please sign in to comment.