updated version from tag "v0.10.2"
This commit is contained in:
parent
0f16779e78
commit
ef0af76dab
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
- Upgrade to Rust 1.80
|
- Upgrade to Rust 1.80
|
||||||
|
|
||||||
|
# v0.10.2
|
||||||
|
|
||||||
|
- Build with Ubuntu20.04 + Docker, so releases run on older systems
|
||||||
|
|
||||||
# v0.10.1
|
# v0.10.1
|
||||||
|
|
||||||
- Add character "Luna" near starting area
|
- Add character "Luna" near starting area
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -3056,7 +3056,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "outfly"
|
name = "outfly"
|
||||||
version = "0.10.1"
|
version = "0.10.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bevy",
|
"bevy",
|
||||||
"bevy_embedded_assets",
|
"bevy_embedded_assets",
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "outfly"
|
name = "outfly"
|
||||||
version = "0.10.1"
|
version = "0.10.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
homepage = "https://codeberg.org/outfly/outfly"
|
homepage = "https://codeberg.org/outfly/outfly"
|
||||||
repository = "https://codeberg.org/outfly/outfly"
|
repository = "https://codeberg.org/outfly/outfly"
|
||||||
|
|
|
@ -3,5 +3,5 @@ FROM docker.io/ubuntu:20.04
|
||||||
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
|
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
|
||||||
RUN apt update && apt install -y -q git vim build-essential alsa-source alsa-tools libasound2-dev pkg-config libwayland-dev gcc-mingw-w64 zip
|
RUN apt update && apt install -y -q git vim build-essential alsa-source alsa-tools libasound2-dev pkg-config libwayland-dev gcc-mingw-w64 zip
|
||||||
RUN curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y
|
RUN curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y
|
||||||
RUN rustup target add x86_64-pc-windows-gnu
|
RUN /root/.cargo/bin/rustup target add x86_64-pc-windows-gnu
|
||||||
ENV PATH "$PATH:/root/.cargo/bin"
|
ENV PATH "$PATH:/root/.cargo/bin"
|
||||||
|
|
Loading…
Reference in a new issue