From d8dc401eff3771de5a97cc4664a41c82e946c1a9 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Sat, 6 Aug 2022 23:12:27 +0300 Subject: [PATCH] 0.27 --- Cargo.toml | 10 +++++----- editor-standalone/Cargo.toml | 6 +++--- editor-standalone/README.md | 4 ++++ editor/Cargo.toml | 4 ++-- fyrox-core-derive/Cargo.toml | 2 +- fyrox-core/Cargo.toml | 4 ++-- fyrox-resource/Cargo.toml | 4 ++-- fyrox-sound/Cargo.toml | 6 +++--- fyrox-ui/Cargo.toml | 4 ++-- 9 files changed, 24 insertions(+), 20 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e4a541328..b2b98884a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fyrox" -version = "0.26.0" +version = "0.27.0" authors = ["Dmitry Stepanov "] edition = "2021" license = "MIT" @@ -37,10 +37,10 @@ opt-level = 3 debug = true [dependencies] -fyrox-core = { path = "fyrox-core", version = "0.20.0", features = ["serde"] } -fyrox-sound = { path = "fyrox-sound", version = "0.27.0" } -fyrox-ui = { path = "fyrox-ui", version = "0.17.0" } -fyrox-resource = { path = "fyrox-resource", version = "0.4.0" } +fyrox-core = { path = "fyrox-core", version = "0.21.0", features = ["serde"] } +fyrox-sound = { path = "fyrox-sound", version = "0.28.0" } +fyrox-ui = { path = "fyrox-ui", version = "0.18.0" } +fyrox-resource = { path = "fyrox-resource", version = "0.5.0" } rapier2d = { version = "0.14", features = ["debug-render"] } rapier3d = { version = "0.14", features = ["debug-render"] } image = { version = "0.24.1", default-features = false, features = ["gif", "jpeg", "png", "tga", "tiff", "bmp"] } diff --git a/editor-standalone/Cargo.toml b/editor-standalone/Cargo.toml index 95cbb07b2..e76417374 100644 --- a/editor-standalone/Cargo.toml +++ b/editor-standalone/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fyroxed" -version = "0.13.0" +version = "0.14.0" license = "MIT" authors = ["Dmitry Stepanov "] edition = "2021" @@ -13,5 +13,5 @@ readme = "README.md" include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"] [dependencies] -fyrox = { version = "0.26", path = "../" } -fyroxed_base = { version = "0.13.0", path = "../editor" } \ No newline at end of file +fyrox = { version = "0.27", path = "../" } +fyroxed_base = { version = "0.14.0", path = "../editor" } \ No newline at end of file diff --git a/editor-standalone/README.md b/editor-standalone/README.md index 06a576ac2..a644ca4b9 100644 --- a/editor-standalone/README.md +++ b/editor-standalone/README.md @@ -1,5 +1,9 @@ # FyroxEd (standalone) +**WARNING:** Standalone version of the editor is not supported, use +[project template generator](https://fyrox-book.github.io/fyrox/beginning/scripting.html) to utilize the full power +of the editor. Standalone version does not support plugins and scripts, it won't be update in next releases! + A standalone version of FyroxEd - native editor of [Fyrox engine](https://github.com/FyroxEngine/Fyrox). The standalone version allows you only to create and edit scenes, but **not run your game in the editor**. Please see [the book](https://fyrox-book.github.io/) to learn how to use the editor in different ways. diff --git a/editor/Cargo.toml b/editor/Cargo.toml index db7b96ee2..10fc19c6b 100644 --- a/editor/Cargo.toml +++ b/editor/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fyroxed_base" license = "MIT" -version = "0.13.0" +version = "0.14.0" authors = ["Dmitry Stepanov "] edition = "2021" rust-version = "1.56" @@ -13,7 +13,7 @@ readme = "README.md" include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md", "/resources/**/*"] [dependencies] -fyrox = { version = "0.26", path = ".." } +fyrox = { version = "0.27", path = ".." } lazy_static = "1.4.0" ron = "0.7.0" serde = "^1.0.0" diff --git a/fyrox-core-derive/Cargo.toml b/fyrox-core-derive/Cargo.toml index ab708e122..cf364805f 100644 --- a/fyrox-core-derive/Cargo.toml +++ b/fyrox-core-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fyrox-core-derive" -version = "0.15.0" +version = "0.16.0" authors = ["toyboot4e , Dmitry Stepanov "] edition = "2021" license = "MIT" diff --git a/fyrox-core/Cargo.toml b/fyrox-core/Cargo.toml index 7e700826a..bf87725b4 100644 --- a/fyrox-core/Cargo.toml +++ b/fyrox-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fyrox-core" -version = "0.20.0" +version = "0.21.0" authors = ["Dmitry Stepanov "] edition = "2021" license = "MIT" @@ -16,7 +16,7 @@ resolver = "2" rust-version = "1.56" [dependencies] -fyrox-core-derive = { path = "../fyrox-core-derive", version = "0.15.0" } +fyrox-core-derive = { path = "../fyrox-core-derive", version = "0.16.0" } base64 = "0.13.0" byteorder = "1.4.3" diff --git a/fyrox-resource/Cargo.toml b/fyrox-resource/Cargo.toml index b39948e27..f4bb12426 100644 --- a/fyrox-resource/Cargo.toml +++ b/fyrox-resource/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fyrox-resource" -version = "0.4.0" +version = "0.5.0" authors = ["Dmitry Stepanov "] edition = "2021" license = "MIT" @@ -15,4 +15,4 @@ resolver = "2" rust-version = "1.56" [dependencies] -fyrox-core = { path = "../fyrox-core", version = "0.20.0" } +fyrox-core = { path = "../fyrox-core", version = "0.21.0" } diff --git a/fyrox-sound/Cargo.toml b/fyrox-sound/Cargo.toml index 3d8a4b771..ff364311c 100644 --- a/fyrox-sound/Cargo.toml +++ b/fyrox-sound/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fyrox-sound" -version = "0.27.0" +version = "0.28.0" authors = ["Dmitry Stepanov "] edition = "2021" license = "MIT" @@ -16,8 +16,8 @@ resolver = "2" rust-version = "1.56" [dependencies] -fyrox-core = { path = "../fyrox-core", version = "0.20.0" } -fyrox-resource = { path = "../fyrox-resource", version = "0.4.0" } +fyrox-core = { path = "../fyrox-core", version = "0.21.0" } +fyrox-resource = { path = "../fyrox-resource", version = "0.5.0" } lewton = "0.10.2" hrtf = "0.8.0" hound = "3.4.0" diff --git a/fyrox-ui/Cargo.toml b/fyrox-ui/Cargo.toml index c71c3192c..dbb5f981a 100644 --- a/fyrox-ui/Cargo.toml +++ b/fyrox-ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fyrox-ui" -version = "0.17.0" +version = "0.18.0" authors = ["Dmitry Stepanov "] edition = "2021" license = "MIT" @@ -16,7 +16,7 @@ resolver = "2" rust-version = "1.56" [dependencies] -fyrox-core = { path = "../fyrox-core", version = "0.20.0" } +fyrox-core = { path = "../fyrox-core", version = "0.21.0" } lazy_static = "1.4.0" copypasta = "0.8.1" fontdue = "0.7.2"