Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = ["crates/rompatch-core", "crates/rompatch", "crates/rompatch-gui"]
exclude = ["fuzz"]

[workspace.package]
version = "0.2.0"
version = "0.2.1"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/GregTheGreek/rompatch-rs"
Expand Down
2 changes: 1 addition & 1 deletion crates/rompatch-gui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ crate-type = ["rlib"]
tauri-build = { version = "=2.6.1", features = [] }

[dependencies]
rompatch-core = { version = "=0.2.0", path = "../rompatch-core", features = ["serde"] }
rompatch-core = { version = "=0.2.1", path = "../rompatch-core", features = ["serde"] }
serde = { version = "=1.0.228", features = ["derive"] }
serde_json = "=1.0.149"
sha2 = "=0.10.9"
Expand Down
2 changes: 1 addition & 1 deletion crates/rompatch-gui/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"app": {
"windows": [
{
"title": "rompatch",
"title": "Rom Library",
"width": 900,
"height": 680,
"minWidth": 720,
Expand Down
2 changes: 1 addition & 1 deletion crates/rompatch-gui/ui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>rompatch</title>
<title>Rom Library</title>
</head>
<body class="bg-bg text-fg antialiased">
<div id="root"></div>
Expand Down
2 changes: 1 addition & 1 deletion crates/rompatch-gui/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rompatch-ui",
"version": "0.2.0",
"version": "0.2.1",
"description": "React frontend for the rompatch native GUI",
"private": true,
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion crates/rompatch-gui/ui/src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function Sidebar({ open, currentPage, onPageChange }: SidebarProps) {
data-tauri-drag-region
className="text-sm font-semibold text-fg tracking-tight"
>
rompatch
Rom Library
</div>
<div
data-tauri-drag-region
Expand Down
2 changes: 1 addition & 1 deletion crates/rompatch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name = "rompatch"
path = "src/main.rs"

[dependencies]
rompatch-core = { path = "../rompatch-core", version = "0.2.0" }
rompatch-core = { path = "../rompatch-core", version = "0.2.1" }
lexopt = "0.3"

[lints]
Expand Down
Loading