version: dtmt v0.3.0, dtmm v0.1.0

This commit is contained in:
Lucas Schwiderski 2023-03-01 22:28:50 +01:00
parent 3ed47e236b
commit 638b081cb7
Signed by: lucas
GPG key ID: AA12679AAA6DF4D8
5 changed files with 15 additions and 9 deletions

View file

@ -2,11 +2,17 @@
== [Unreleased]
== 2023-03-01
=== Added
- show status after adding dictionary entries
- implement building mod bundles
- implement command to create mod project from template
- dtmm: build MVP mod manager GUI and mod loading facilities
- dtmt: show status after adding dictionary entries
- dtmt: implement building mod bundles
- dtmt: implement command to create mod project from template
- sdk: statically link Oodle
- sdk: implement bundle database handling
- sdk: statically link LuaJIT
== [v0.2.0] - 2022-12-28

4
Cargo.lock generated
View file

@ -731,7 +731,7 @@ dependencies = [
[[package]]
name = "dtmt"
version = "0.2.0"
version = "0.3.0"
dependencies = [
"clap",
"cli-table",
@ -2090,7 +2090,7 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "sdk"
version = "0.2.0"
version = "0.3.0"
dependencies = [
"async-recursion",
"bitflags",

View file

@ -14,7 +14,7 @@ druid = { git = "https://github.com/linebender/druid.git", features = ["im", "se
dtmt-shared = { path = "../../lib/dtmt-shared", version = "*" }
futures = "0.3.25"
oodle = { path = "../../lib/oodle", version = "*" }
sdk = { path = "../../lib/sdk", version = "0.2.0" }
sdk = { path = "../../lib/sdk", version = "*" }
serde_sjson = { path = "../../lib/serde_sjson", version = "*" }
serde = { version = "1.0.152", features = ["derive", "rc"] }
tokio = { version = "1.23.0", features = ["rt", "fs", "tracing", "sync"] }

View file

@ -1,6 +1,6 @@
[package]
name = "dtmt"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
[dependencies]
@ -18,7 +18,7 @@ nanorand = "0.7.0"
oodle = { path = "../../lib/oodle", version = "*" }
pin-project-lite = "0.2.9"
promptly = "0.3.1"
sdk = { path = "../../lib/sdk", version = "0.2.0" }
sdk = { path = "../../lib/sdk", version = "*" }
serde_sjson = { path = "../../lib/serde_sjson", version = "*" }
serde = { version = "1.0.147", features = ["derive"] }
string_template = "0.2.1"

View file

@ -1,6 +1,6 @@
[package]
name = "sdk"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
[dependencies]