2022-06-26 00:15:29 +02:00
|
|
|
// Version number used for the archive name
|
2022-07-24 13:12:23 +02:00
|
|
|
pub const version = "1.2.0";
|
2022-06-26 00:15:29 +02:00
|
|
|
pub const build_dir = "build";
|
2022-07-01 13:34:20 +02:00
|
|
|
pub const minecraft_version = "1.18.2";
|
|
|
|
pub const fabric_loader_version = "0.14.8";
|
2022-06-26 00:15:29 +02:00
|
|
|
// zip compression level. 9 is max. ask libarchive why this is a string.
|
|
|
|
pub const compression_level = "9";
|
2022-07-01 13:34:20 +02:00
|
|
|
|