version: dtmt v0.3.0, dtmm v0.1.0
This commit is contained in:
parent
3ed47e236b
commit
638b081cb7
5 changed files with 15 additions and 9 deletions
|
@ -2,11 +2,17 @@
|
||||||
|
|
||||||
== [Unreleased]
|
== [Unreleased]
|
||||||
|
|
||||||
|
== 2023-03-01
|
||||||
|
|
||||||
=== Added
|
=== Added
|
||||||
|
|
||||||
- show status after adding dictionary entries
|
- dtmm: build MVP mod manager GUI and mod loading facilities
|
||||||
- implement building mod bundles
|
- dtmt: show status after adding dictionary entries
|
||||||
- implement command to create mod project from template
|
- 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
|
== [v0.2.0] - 2022-12-28
|
||||||
|
|
||||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -731,7 +731,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dtmt"
|
name = "dtmt"
|
||||||
version = "0.2.0"
|
version = "0.3.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
"cli-table",
|
"cli-table",
|
||||||
|
@ -2090,7 +2090,7 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sdk"
|
name = "sdk"
|
||||||
version = "0.2.0"
|
version = "0.3.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-recursion",
|
"async-recursion",
|
||||||
"bitflags",
|
"bitflags",
|
||||||
|
|
|
@ -14,7 +14,7 @@ druid = { git = "https://github.com/linebender/druid.git", features = ["im", "se
|
||||||
dtmt-shared = { path = "../../lib/dtmt-shared", version = "*" }
|
dtmt-shared = { path = "../../lib/dtmt-shared", version = "*" }
|
||||||
futures = "0.3.25"
|
futures = "0.3.25"
|
||||||
oodle = { path = "../../lib/oodle", version = "*" }
|
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_sjson = { path = "../../lib/serde_sjson", version = "*" }
|
||||||
serde = { version = "1.0.152", features = ["derive", "rc"] }
|
serde = { version = "1.0.152", features = ["derive", "rc"] }
|
||||||
tokio = { version = "1.23.0", features = ["rt", "fs", "tracing", "sync"] }
|
tokio = { version = "1.23.0", features = ["rt", "fs", "tracing", "sync"] }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "dtmt"
|
name = "dtmt"
|
||||||
version = "0.2.0"
|
version = "0.3.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
@ -18,7 +18,7 @@ nanorand = "0.7.0"
|
||||||
oodle = { path = "../../lib/oodle", version = "*" }
|
oodle = { path = "../../lib/oodle", version = "*" }
|
||||||
pin-project-lite = "0.2.9"
|
pin-project-lite = "0.2.9"
|
||||||
promptly = "0.3.1"
|
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_sjson = { path = "../../lib/serde_sjson", version = "*" }
|
||||||
serde = { version = "1.0.147", features = ["derive"] }
|
serde = { version = "1.0.147", features = ["derive"] }
|
||||||
string_template = "0.2.1"
|
string_template = "0.2.1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sdk"
|
name = "sdk"
|
||||||
version = "0.2.0"
|
version = "0.3.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
Loading…
Add table
Reference in a new issue