Compare commits

..

21 Commits

Author SHA1 Message Date
Savanni D'Gerinel 728393972a run tests on release builds 2023-10-05 12:48:51 -04:00
Savanni D'Gerinel cd8c411d09 Disable the komi test
The SGF parser doesn't currently parse komi
2023-10-05 12:47:37 -04:00
Savanni D'Gerinel d76a824987 Resolve tests which call the GameState constructor
I changed the constructor from new() to default(), but didn't catch all of the tests.
2023-10-05 12:31:27 -04:00
Savanni D'Gerinel 436b0c3a0d Run release build before building running the dist scripts 2023-10-05 12:30:18 -04:00
Savanni D'Gerinel 672e5aeaa1 Make sure the distribution scripts compress files and include version numbers 2023-10-05 12:29:19 -04:00
Savanni D'Gerinel 79219793cf Remove orizentic from the environment
This needs a total overhaul and so isn't worth fixing right now.
2023-10-05 12:21:40 -04:00
Savanni D'Gerinel e30bd1e77b Resolve warnings in the kifu app 2023-10-05 12:19:57 -04:00
Savanni D'Gerinel 88510e489e Resolve warnings in the SGF library 2023-10-05 11:41:00 -04:00
Savanni D'Gerinel 021fea819a Resolve warnings in the hex-grid app 2023-10-05 11:28:40 -04:00
Savanni D'Gerinel b07e55f126 Resolve warnings in gm-control-panel 2023-10-05 11:25:01 -04:00
Savanni D'Gerinel e87589705d Resolve linter warnings in emseries 2023-10-05 11:19:55 -04:00
Savanni D'Gerinel 2fbbb4cf15 Resolve warnings in memorycache and dashboard 2023-10-04 17:28:55 -04:00
Savanni D'Gerinel 0a219aebd5 Resolve linting problems with flow 2023-10-04 16:35:07 -04:00
Savanni D'Gerinel 8766692781 Resolving linting problems in geo-types 2023-10-04 16:34:04 -04:00
Savanni D'Gerinel d7a810c50b Resolve warnings in the IFC library 2023-10-04 16:30:50 -04:00
Savanni D'Gerinel 598e9a01f8 Resolve warnings in fluent-ergonomics 2023-10-04 16:25:29 -04:00
Savanni D'Gerinel f1204faa5e Resolve warnings in cyberpunk-splash 2023-10-04 16:20:28 -04:00
Savanni D'Gerinel f1f4afc65a Resolve warnings in coordinates 2023-10-04 16:09:41 -04:00
Savanni D'Gerinel b373f1ea59 Resolve warnings in changeset 2023-10-04 16:03:21 -04:00
Savanni D'Gerinel 2a3611dd46 Thoroughly lint the file-service 2023-10-04 15:57:18 -04:00
Savanni D'Gerinel 94e74abd1d Set up strict clippy linting in the build scripts 2023-10-04 15:57:10 -04:00
1 changed files with 1 additions and 3 deletions

View File

@ -16,8 +16,6 @@ mod handlers;
mod html;
mod pages;
const MAX_UPLOAD: u64 = 15 * 1024 * 1024;
pub use file_service::{
AuthDB, AuthError, AuthToken, FileHandle, FileId, FileInfo, ReadFileError, SessionToken, Store,
Username, WriteFileError,
@ -129,7 +127,7 @@ pub async fn main() {
.and(warp::post())
.and(with_app(app.clone()))
.and(with_session())
.and(warp::multipart::form().max_length(MAX_UPLOAD))
.and(warp::multipart::form())
.then(handle_upload);
let thumbnail = warp::path!(String / "tn")