v0.2.2
This commit is contained in:
parent
505135b4d5
commit
7ef3ef775f
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -504,7 +504,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "egui_circles"
|
name = "egui_circles"
|
||||||
version = "0.2.1"
|
version = "0.2.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"eframe",
|
"eframe",
|
||||||
"egui",
|
"egui",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "egui_circles"
|
name = "egui_circles"
|
||||||
version = "0.2.1"
|
version = "0.2.2"
|
||||||
authors = ["Andriy Djmil <andriy@djmil.dev>"]
|
authors = ["Andriy Djmil <andriy@djmil.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
include = ["LICENSE", "**/*.rs", "Cargo.toml"]
|
include = ["LICENSE", "**/*.rs", "Cargo.toml"]
|
||||||
|
@ -15,16 +15,16 @@ has_docker_container() {
|
|||||||
if ! has_docker_image $BUILDER; then
|
if ! has_docker_image $BUILDER; then
|
||||||
echo "Docker $BUILDER was not found"
|
echo "Docker $BUILDER was not found"
|
||||||
|
|
||||||
read -p "Would you like to create builder image (y/N)? "
|
read -p "Would you like to create builder image (Yes/No/Cancel)? "
|
||||||
case "$REPLY" in
|
case "$REPLY" in
|
||||||
y|Y )
|
y|Y|yes|Yes|YES )
|
||||||
docker build \
|
docker build \
|
||||||
--file wasm32/Dockerfile \
|
--file wasm32/Dockerfile \
|
||||||
--tag $BUILDER \
|
--tag $BUILDER \
|
||||||
.
|
.
|
||||||
;;
|
;;
|
||||||
* )
|
n|N|no|No|NO ) ;;
|
||||||
exit 1 ;;
|
* ) exit 0 ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -46,7 +46,7 @@ y|Y )
|
|||||||
git init
|
git init
|
||||||
git checkout -b main
|
git checkout -b main
|
||||||
git add .
|
git add .
|
||||||
git commit --message «v0.2.1»
|
git commit --message «v0.2.2»
|
||||||
|
|
||||||
# solution for "send-pack: unexpected disconnect while reading sideband packet"
|
# solution for "send-pack: unexpected disconnect while reading sideband packet"
|
||||||
git config http.postBuffer 157286400
|
git config http.postBuffer 157286400
|
||||||
|
Loading…
Reference in New Issue
Block a user