This commit is contained in:
djmil 2024-08-31 19:55:05 +02:00
parent 505135b4d5
commit 7ef3ef775f
3 changed files with 7 additions and 7 deletions

2
Cargo.lock generated
View File

@ -504,7 +504,7 @@ dependencies = [
[[package]]
name = "egui_circles"
version = "0.2.1"
version = "0.2.2"
dependencies = [
"eframe",
"egui",

View File

@ -1,6 +1,6 @@
[package]
name = "egui_circles"
version = "0.2.1"
version = "0.2.2"
authors = ["Andriy Djmil <andriy@djmil.dev>"]
edition = "2021"
include = ["LICENSE", "**/*.rs", "Cargo.toml"]

View File

@ -15,16 +15,16 @@ has_docker_container() {
if ! has_docker_image $BUILDER; then
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
y|Y )
y|Y|yes|Yes|YES )
docker build \
--file wasm32/Dockerfile \
--tag $BUILDER \
.
;;
* )
exit 1 ;;
n|N|no|No|NO ) ;;
* ) exit 0 ;;
esac
fi
@ -46,7 +46,7 @@ y|Y )
git init
git checkout -b main
git add .
git commit --message «v0.2.1»
git commit --message «v0.2.2»
# solution for "send-pack: unexpected disconnect while reading sideband packet"
git config http.postBuffer 157286400