From 69be1a03e0e42361461a9f696ba08c564dc98453 Mon Sep 17 00:00:00 2001 From: Taylor Whatley <32211852+1whatleytay@users.noreply.github.com> Date: Mon, 17 Jul 2023 22:52:47 -0700 Subject: [PATCH 01/31] Bump version to 0.1.7 --- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index f8de244..1175902 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2825,7 +2825,7 @@ dependencies = [ [[package]] name = "saturn" -version = "0.1.6" +version = "0.1.7" dependencies = [ "async-trait", "futures", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 060a9fe..72f9e1e 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "saturn" -version = "0.1.6" +version = "0.1.7" description = "A modern MIPS IDE." authors = ["desgroup"] license = "" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index cd9863e..60c5056 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "Saturn", - "version": "0.1.6" + "version": "0.1.7" }, "tauri": { "allowlist": { From 376c6e01baec13dd5c9ccc432eeeeb1ca1dab138 Mon Sep 17 00:00:00 2001 From: Taylor Whatley <32211852+1whatleytay@users.noreply.github.com> Date: Tue, 18 Jul 2023 21:41:28 -0700 Subject: [PATCH 02/31] Remember memory settings after switching tabs --- src/components/console/MemoryTab.vue | 107 +++++++++++++++------------ src/utils/settings.ts | 18 ++++- 2 files changed, 78 insertions(+), 47 deletions(-) diff --git a/src/components/console/MemoryTab.vue b/src/components/console/MemoryTab.vue index e8880e9..9580c60 100644 --- a/src/components/console/MemoryTab.vue +++ b/src/components/console/MemoryTab.vue @@ -8,7 +8,7 @@ id="address" type="text" class="text-xs font-mono bg-neutral-800 text-neutral-300 px-2 py-1 w-40 rounded" - v-model="memory.address" + v-model="settings.memory.address" />
@@ -31,7 +31,7 @@