From c56191e3f7eb6a9949a4ebf47d2559e5480de1d7 Mon Sep 17 00:00:00 2001 From: zombkit Date: Mon, 29 Apr 2024 10:46:11 -0700 Subject: [PATCH 1/8] Update Cargo.toml --- Cargo.toml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b94783c..1947d21 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui-macroquad" -version = "0.16.0" +version = "0.16.1" authors = ["Ilya Sheprut "] edition = "2021" license = "MIT/Apache-2.0" @@ -18,17 +18,18 @@ include = [ ] [dependencies] -egui = "0.25.0" +egui = "0.27.0" # use a fork of egui-miniquad that's been updated to support egui 0.25.0 until https://github.com/not-fl3/egui-miniquad/pull/65 is merged -egui-miniquad = { git = 'https://github.com/caspark/egui-miniquad.git', rev="4fb6d4c4f3c1ed2114c5cf80f8ce967f5301e318" } +egui-miniquad = { git = 'https://github.com/not-fl3/egui-miniquad.git', branch="master" } macroquad = { version="0.4.4", default-features=false } + [features] default = ["audio"] audio = ["macroquad/audio"] [dev-dependencies] -egui_demo_lib = "0.25.0" +egui_demo_lib = "0.27.0" [profile.release] opt-level = 2 From b19ef3a92b06a1c3b659cf5553c87db688a643fa Mon Sep 17 00:00:00 2001 From: zombkit Date: Mon, 29 Apr 2024 10:48:42 -0700 Subject: [PATCH 2/8] Update Cargo.toml --- Cargo.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1947d21..437a453 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,8 +18,7 @@ include = [ ] [dependencies] -egui = "0.27.0" -# use a fork of egui-miniquad that's been updated to support egui 0.25.0 until https://github.com/not-fl3/egui-miniquad/pull/65 is merged +egui = "0.27.2" egui-miniquad = { git = 'https://github.com/not-fl3/egui-miniquad.git', branch="master" } macroquad = { version="0.4.4", default-features=false } @@ -29,7 +28,7 @@ default = ["audio"] audio = ["macroquad/audio"] [dev-dependencies] -egui_demo_lib = "0.27.0" +egui_demo_lib = "0.27.2" [profile.release] opt-level = 2 From 33707da092264a12ee96cf6129e2fcb96c874c2e Mon Sep 17 00:00:00 2001 From: zombkit Date: Mon, 29 Apr 2024 11:09:43 -0700 Subject: [PATCH 3/8] changed to use revision instead of master for stability --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 437a453..fe0ac94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ include = [ [dependencies] egui = "0.27.2" -egui-miniquad = { git = 'https://github.com/not-fl3/egui-miniquad.git', branch="master" } +egui-miniquad = { git = 'https://github.com/not-fl3/egui-miniquad.git', rev="5df57233a60f75faadfa14a3ad9d4cddde637605" } macroquad = { version="0.4.4", default-features=false } From 89e3c99562e16770ddd36bebbf72c910beea1976 Mon Sep 17 00:00:00 2001 From: zombkit Date: Mon, 29 Apr 2024 11:11:54 -0700 Subject: [PATCH 4/8] Update Cargo.toml --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fe0ac94..61f8eb7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ include = [ ] [dependencies] -egui = "0.27.2" +egui = "0.27.0" egui-miniquad = { git = 'https://github.com/not-fl3/egui-miniquad.git', rev="5df57233a60f75faadfa14a3ad9d4cddde637605" } macroquad = { version="0.4.4", default-features=false } @@ -28,7 +28,7 @@ default = ["audio"] audio = ["macroquad/audio"] [dev-dependencies] -egui_demo_lib = "0.27.2" +egui_demo_lib = "0.27.0" [profile.release] opt-level = 2 From 6f9e966cceec9a639fc235d6844af1e69d20e791 Mon Sep 17 00:00:00 2001 From: gold_silver_copper <157451540+gold-silver-copper@users.noreply.github.com> Date: Sat, 27 Jul 2024 23:41:52 -0700 Subject: [PATCH 5/8] Update Cargo.toml --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 61f8eb7..4154d9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,9 +18,9 @@ include = [ ] [dependencies] -egui = "0.27.0" +egui = "0.28.1" egui-miniquad = { git = 'https://github.com/not-fl3/egui-miniquad.git', rev="5df57233a60f75faadfa14a3ad9d4cddde637605" } -macroquad = { version="0.4.4", default-features=false } +macroquad = { version="0.4.5", default-features=false } [features] @@ -28,7 +28,7 @@ default = ["audio"] audio = ["macroquad/audio"] [dev-dependencies] -egui_demo_lib = "0.27.0" +egui_demo_lib = "0.28.1" [profile.release] opt-level = 2 From bd51f90ebefc863cd11067410c59758b4a920be2 Mon Sep 17 00:00:00 2001 From: gold_silver_copper <157451540+gold-silver-copper@users.noreply.github.com> Date: Sat, 27 Jul 2024 23:44:29 -0700 Subject: [PATCH 6/8] Update Cargo.toml --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4154d9c..47d0972 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ include = [ [dependencies] egui = "0.28.1" -egui-miniquad = { git = 'https://github.com/not-fl3/egui-miniquad.git', rev="5df57233a60f75faadfa14a3ad9d4cddde637605" } +egui-miniquad = { git = 'https://github.com/not-fl3/egui-miniquad.git', branch="master" } macroquad = { version="0.4.5", default-features=false } From 9b4ce4f60c861e87a786dce0195a63be200c9ff3 Mon Sep 17 00:00:00 2001 From: gold_silver_copper <157451540+gold-silver-copper@users.noreply.github.com> Date: Sat, 28 Sep 2024 01:59:15 -0700 Subject: [PATCH 7/8] Update Cargo.toml --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 47d0972..a313c24 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ include = [ ] [dependencies] -egui = "0.28.1" +egui = "0.29.0" egui-miniquad = { git = 'https://github.com/not-fl3/egui-miniquad.git', branch="master" } macroquad = { version="0.4.5", default-features=false } From 2564e249ceb757d5b3364df902155ab0afcade21 Mon Sep 17 00:00:00 2001 From: gold_silver_copper <157451540+gold-silver-copper@users.noreply.github.com> Date: Sat, 28 Sep 2024 01:59:41 -0700 Subject: [PATCH 8/8] Update Cargo.toml --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a313c24..2c32356 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ default = ["audio"] audio = ["macroquad/audio"] [dev-dependencies] -egui_demo_lib = "0.28.1" +egui_demo_lib = "0.29.0" [profile.release] opt-level = 2