-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix crossbundle install --preferred problem * Add win latest check * Fix small syntax issue * Alter CI.yml * Fix CI * Fix syntax error * Change ci code * Try to build gradle-apk * Bump version * Fix yml syntax * Fix syntax * Remove unused code * Fix CI * Alter example in CI Co-authored-by: David Ackerman <[email protected]>
- Loading branch information
Showing
26 changed files
with
80 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "crossbow" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
edition = "2021" | ||
authors = ["DodoRare Team <[email protected]>"] | ||
description = "Cross-Platform build tools and toolkit for games" | ||
|
@@ -21,10 +21,10 @@ apple-bundle = { version = "0.1.4", optional = true } | |
|
||
[target.'cfg(target_os = "android")'.dependencies] | ||
ndk-glue = "0.7.0" | ||
crossbow-android = { path = "platform/android", version = "0.2.1", optional = true } | ||
crossbow-android = { path = "platform/android", version = "0.2.2", optional = true } | ||
|
||
[target.'cfg(target_os = "ios")'.dependencies] | ||
crossbow-ios = { path = "platform/ios", version = "0.2.1", optional = true } | ||
crossbow-ios = { path = "platform/ios", version = "0.2.2", optional = true } | ||
|
||
[patch.crates-io] | ||
miniquad = { git = "https://github.com/not-fl3/miniquad", rev = "d67ffe6950cf73df307e2d23aaa4726f14399985" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "crossbundle" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
edition = "2021" | ||
authors = ["DodoRare Team <[email protected]>"] | ||
description = "Build and publish apps for Android/iOS" | ||
|
@@ -18,8 +18,8 @@ name = "crossbundle" | |
path = "src/main.rs" | ||
|
||
[dependencies] | ||
crossbow = { path = "../../", version = "0.2.1", default-features = false, features = ["update-manifest"] } | ||
crossbundle-tools = { path = "../tools", version = "0.2.1", default-features = false } | ||
crossbow = { path = "../../", version = "0.2.2", default-features = false, features = ["update-manifest"] } | ||
crossbundle-tools = { path = "../tools", version = "0.2.2", default-features = false } | ||
android-tools = { version = "0.2.11", optional = true } | ||
clap = { version = "3.2", features = ["derive"] } | ||
serde = { version = "1.0", features = ["derive"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "crossbundle-tools" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
edition = "2021" | ||
authors = ["DodoRare Team <[email protected]>"] | ||
description = "Build and publish apps for Android/iOS" | ||
|
@@ -10,7 +10,7 @@ keywords = ["android", "ios"] | |
readme = "README.md" | ||
|
||
[dependencies] | ||
crossbow-android = { version = "0.2.1", path = "../../platform/android", default-features = false, features = ["embed"] } | ||
crossbow-android = { version = "0.2.2", path = "../../platform/android", default-features = false, features = ["embed"] } | ||
# Apple crates | ||
apple-bundle = { version = "0.1.4", optional = true } | ||
simctl = { version = "0.1.1", package = "creator-simctl", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ authors = ["Example <[email protected]>"] | |
edition = "2021" | ||
|
||
[dependencies] | ||
crossbow = "0.2.1" | ||
crossbow = "0.2.2" | ||
|
||
[package.metadata] | ||
app_name = "Game" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "bevy-2d" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
authors = ["DodoRare Team <[email protected]>"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
crossbow = { version = "0.2.1", path = "../../" } | ||
crossbow = { version = "0.2.2", path = "../../" } | ||
log = "0.4" | ||
anyhow = "1.0" | ||
bevy = { version = "0.8.0", default-features = false, features = ["bevy_winit", "render", "bevy_asset"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "bevy-explorer" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
authors = ["DodoRare Team <[email protected]>"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
crossbow = { version = "0.2.1", path = "../../" } | ||
crossbow = { version = "0.2.2", path = "../../" } | ||
log = "0.4" | ||
anyhow = "1.0" | ||
subxt = "0.21" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
[package] | ||
name = "crossbow-plugins" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
authors = ["DodoRare Team <[email protected]>"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
crossbow = { version = "0.2.1", path = "../../" } | ||
crossbow = { version = "0.2.2", path = "../../" } | ||
log = "0.4" | ||
anyhow = "1.0" | ||
macroquad = "=0.3.7" | ||
|
||
[target.'cfg(target_os = "android")'.dependencies] | ||
play-core = { version = "0.2.1", path = "../../plugins/play-core" } | ||
play-billing = { version = "0.2.1", path = "../../plugins/play-billing" } | ||
play-games-services = { version = "0.2.1", path = "../../plugins/play-games-services" } | ||
play-core = { version = "0.2.2", path = "../../plugins/play-core" } | ||
play-billing = { version = "0.2.2", path = "../../plugins/play-billing" } | ||
play-games-services = { version = "0.2.2", path = "../../plugins/play-games-services" } | ||
|
||
[package.metadata] | ||
app_name = "Crossbow Plugins" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "macroquad-3d" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
authors = ["DodoRare Team <[email protected]>"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
crossbow = { version = "0.2.1", path = "../../" } | ||
crossbow = { version = "0.2.2", path = "../../" } | ||
log = "0.4" | ||
anyhow = "1.0" | ||
macroquad = "=0.3.7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
[package] | ||
name = "macroquad-permissions" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
authors = ["DodoRare Team <[email protected]>"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
crossbow = { version = "0.2.1", path = "../../" } | ||
crossbow = { version = "0.2.2", path = "../../" } | ||
log = "0.4" | ||
anyhow = "1.0" | ||
macroquad = "=0.3.7" | ||
|
||
[target.'cfg(target_os = "android")'.dependencies] | ||
admob-android = { version = "0.2.1", path = "../../plugins/admob-android" } | ||
admob-android = { version = "0.2.2", path = "../../plugins/admob-android" } | ||
|
||
[package.metadata] | ||
app_name = "Permissions" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "crossbow-android" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
edition = "2021" | ||
authors = ["DodoRare Team <[email protected]>"] | ||
description = "Cross-Platform build tools and toolkit for games" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "crossbow-ios" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
edition = "2021" | ||
authors = ["DodoRare Team <[email protected]>"] | ||
description = "Cross-Platform build tools and toolkit for games" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "admob-android" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
edition = "2021" | ||
authors = ["DodoRare Team <[email protected]>"] | ||
description = "AdMob Plugin for Crossbow" | ||
|
@@ -11,4 +11,4 @@ readme = "README.md" | |
exclude = ["android/"] | ||
|
||
[dependencies] | ||
crossbow-android = { path = "../../platform/android", version = "0.2.1" } | ||
crossbow-android = { path = "../../platform/android", version = "0.2.2" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "play-billing" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
edition = "2021" | ||
authors = ["DodoRare Team <[email protected]>"] | ||
description = "Google Play Billing Plugin for Crossbow" | ||
|
@@ -11,4 +11,4 @@ readme = "README.md" | |
exclude = ["android/"] | ||
|
||
[dependencies] | ||
crossbow-android = { path = "../../platform/android", version = "0.2.1" } | ||
crossbow-android = { path = "../../platform/android", version = "0.2.2" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "play-core" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
edition = "2021" | ||
authors = ["DodoRare Team <[email protected]>"] | ||
description = "Google Play Core Plugin for Crossbow" | ||
|
@@ -11,4 +11,4 @@ readme = "README.md" | |
exclude = ["android/"] | ||
|
||
[dependencies] | ||
crossbow-android = { path = "../../platform/android", version = "0.2.1" } | ||
crossbow-android = { path = "../../platform/android", version = "0.2.2" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "play-games-services" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
edition = "2021" | ||
authors = ["DodoRare Team <[email protected]>"] | ||
description = "Google Play Games Services Plugin for Crossbow" | ||
|
@@ -11,4 +11,4 @@ readme = "README.md" | |
exclude = ["android/"] | ||
|
||
[dependencies] | ||
crossbow-android = { path = "../../platform/android", version = "0.2.1" } | ||
crossbow-android = { path = "../../platform/android", version = "0.2.2" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters