Compare commits
No commits in common. "1bd64e6bc50820978bc39d279a791d93cbf24513" and "b82363d06578c65150550d743acbf25e4ee644b8" have entirely different histories.
1bd64e6bc5
...
b82363d065
@ -1,12 +1,15 @@
|
|||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = [
|
||||||
"crates/console/prometeu-bytecode",
|
"crates/console/prometeu-bytecode",
|
||||||
|
|
||||||
"crates/console/prometeu-drivers",
|
"crates/console/prometeu-drivers",
|
||||||
"crates/console/prometeu-firmware",
|
"crates/console/prometeu-firmware",
|
||||||
"crates/console/prometeu-hal",
|
"crates/console/prometeu-hal",
|
||||||
"crates/console/prometeu-system",
|
"crates/console/prometeu-system",
|
||||||
"crates/console/prometeu-vm",
|
"crates/console/prometeu-vm",
|
||||||
|
|
||||||
"crates/host/prometeu-host-desktop-winit",
|
"crates/host/prometeu-host-desktop-winit",
|
||||||
|
|
||||||
"crates/tools/prometeu-cli",
|
"crates/tools/prometeu-cli",
|
||||||
"crates/tools/pbxgen-stress",
|
"crates/tools/pbxgen-stress",
|
||||||
"crates/dev/prometeu-test-support",
|
"crates/dev/prometeu-test-support",
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
0.1.0
|
|
||||||
|
|||||||
@ -366,7 +366,11 @@ fn build_scene_bank() -> SceneBank {
|
|||||||
2 => ParallaxFactor { x: 0.5, y: 0.5 },
|
2 => ParallaxFactor { x: 0.5, y: 0.5 },
|
||||||
_ => ParallaxFactor { x: 0.25, y: 0.25 },
|
_ => ParallaxFactor { x: 0.25, y: 0.25 },
|
||||||
},
|
},
|
||||||
tilemap: TileMap { width: STRESS_SCENE_TILE_W, height: STRESS_SCENE_TILE_H, tiles },
|
tilemap: TileMap {
|
||||||
|
width: STRESS_SCENE_TILE_W,
|
||||||
|
height: STRESS_SCENE_TILE_H,
|
||||||
|
tiles,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Get version from git tag or fallback to Cargo.toml version
|
# Get version from git tag or fallback to Cargo.toml version
|
||||||
VERSION=$(git describe --tags --abbrev=0 2>/dev/null || grep -m 1 '^version =' crates/tools/prometeu-cli/Cargo.toml | cut -d '"' -f 2 || echo "0.1.0")
|
VERSION=$(git describe --tags --abbrev=0 2>/dev/null || grep -m 1 '^version =' crates/prometeu/Cargo.toml | cut -d '"' -f 2 || echo "0.1.0")
|
||||||
echo "$VERSION" > VERSION.txt
|
echo "$VERSION" > VERSION.txt
|
||||||
echo "Generated VERSION.txt with version $VERSION"
|
echo "Generated VERSION.txt with version $VERSION"
|
||||||
Loading…
x
Reference in New Issue
Block a user