diff options
author | metamuffin <metamuffin@disroot.org> | 2024-11-27 16:00:04 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-11-27 16:00:10 +0100 |
commit | 897ed6e3df0727f838da034a3dae298a9162fc42 (patch) | |
tree | 0d2860a9958585df1e71a4e5beda868149730f70 | |
parent | 3138918e4fb556a9f45ace7d194a5d91e8427323 (diff) | |
download | hurrycurry-897ed6e3df0727f838da034a3dae298a9162fc42.tar hurrycurry-897ed6e3df0727f838da034a3dae298a9162fc42.tar.bz2 hurrycurry-897ed6e3df0727f838da034a3dae298a9162fc42.tar.zst |
set game version numbers
-rw-r--r-- | Cargo.lock | 10 | ||||
-rw-r--r-- | book/GNUmakefile | 6 | ||||
-rw-r--r-- | client/global.gd | 2 | ||||
-rw-r--r-- | server/Cargo.toml | 2 | ||||
-rw-r--r-- | server/bot/Cargo.toml | 2 | ||||
-rw-r--r-- | server/client-lib/Cargo.toml | 2 | ||||
-rw-r--r-- | server/discover/Cargo.toml | 2 | ||||
-rw-r--r-- | server/registry/Cargo.toml | 2 |
8 files changed, 15 insertions, 13 deletions
@@ -1149,7 +1149,7 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "hurrycurry-bot" -version = "0.1.0" +version = "2.2.1" dependencies = [ "anyhow", "clap", @@ -1163,7 +1163,7 @@ dependencies = [ [[package]] name = "hurrycurry-client-lib" -version = "0.1.0" +version = "2.2.1" dependencies = [ "anyhow", "bincode", @@ -1178,7 +1178,7 @@ dependencies = [ [[package]] name = "hurrycurry-discover" -version = "2.2.0" +version = "2.2.1" dependencies = [ "anyhow", "env_logger", @@ -1203,7 +1203,7 @@ dependencies = [ [[package]] name = "hurrycurry-registry" -version = "2.2.0" +version = "2.2.1" dependencies = [ "anyhow", "env_logger", @@ -1240,7 +1240,7 @@ dependencies = [ [[package]] name = "hurrycurry-server" -version = "2.2.0" +version = "2.2.1" dependencies = [ "anyhow", "bincode", diff --git a/book/GNUmakefile b/book/GNUmakefile index c80844ee..09dcdcec 100644 --- a/book/GNUmakefile +++ b/book/GNUmakefile @@ -11,13 +11,15 @@ svg_pages = $(shell echo out/book_{$(s_pages)}.{$(s_langs)}.svg) webp_pages = $(shell echo out/book_{$(s_pages)}.{$(s_langs)}.webp) pdfs = $(shell echo out/book.{$(s_langs)}.pdf) -MOST = $(pdfs) -ALL = out/book.webp.tar.zst out/book.svg.tar.zst \ +MINIMAL = book.json +MOST = book.json $(pdfs) +ALL = book.json out/book.webp.tar.zst out/book.svg.tar.zst \ $(pdfs) $(png_pages) $(webp_pages) $(svg_pages) JSR = deno run .PHONY: all +minimal: $(MINIMAL) most: $(MOST) all: $(ALL) diff --git a/client/global.gd b/client/global.gd index a3f0630c..374f0e44 100644 --- a/client/global.gd +++ b/client/global.gd @@ -22,7 +22,7 @@ extends Node signal using_joypad_change(using: bool) signal using_touch_change(using: bool) -const VERSION := "2.2.0" +const VERSION := "2.2.1" var default_profile := { "username": "Giovanni", diff --git a/server/Cargo.toml b/server/Cargo.toml index 326a08b6..4f4ccc6e 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurrycurry-server" -version = "2.2.0" +version = "2.2.1" edition = "2021" default-run = "hurrycurry-server" diff --git a/server/bot/Cargo.toml b/server/bot/Cargo.toml index c8d60270..019edcaa 100644 --- a/server/bot/Cargo.toml +++ b/server/bot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurrycurry-bot" -version = "0.1.0" +version = "2.2.1" edition = "2021" [dependencies] diff --git a/server/client-lib/Cargo.toml b/server/client-lib/Cargo.toml index 517dbba0..f1ac5ddf 100644 --- a/server/client-lib/Cargo.toml +++ b/server/client-lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurrycurry-client-lib" -version = "0.1.0" +version = "2.2.1" edition = "2021" [dependencies] diff --git a/server/discover/Cargo.toml b/server/discover/Cargo.toml index 2f121dc9..da241cc1 100644 --- a/server/discover/Cargo.toml +++ b/server/discover/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurrycurry-discover" -version = "2.2.0" +version = "2.2.1" edition = "2021" [dependencies] diff --git a/server/registry/Cargo.toml b/server/registry/Cargo.toml index 7876044d..b7778a7a 100644 --- a/server/registry/Cargo.toml +++ b/server/registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurrycurry-registry" -version = "2.2.0" +version = "2.2.1" edition = "2021" [dependencies] |