Skip to content

Commit

Permalink
Release v1.4.7 (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
KirillTregubov authored Dec 17, 2024
1 parent 0f89a28 commit 05bc855
Show file tree
Hide file tree
Showing 8 changed files with 186 additions and 179 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
OverBuddy has been updated! Steam compatibility is coming soon.
- Added Season 14 backgrounds, removed broken ones.
- Faster app startup time, more consistent loading animations.
Other changes in this update:
- Faster app startup time, more consistent loading animations.
- Updated "Check for Updates" in Settings and startup update check.
- Fixed various issues and made improvements.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img width="128px" height="128px" src="src-tauri/icons/[email protected]">
<h1>OverBuddy</h1>
<p>Customize your Overwatch™ 2 in-game main menu background.</p>
<p>Current Version: 1.4.6</p>
<p>Current Version: 1.4.7</p>
<div>
<a href="https://github.com/KirillTregubov/OverBuddy/releases/latest">Download</a>
·
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "Kirill Tregubov",
"repository": "https://github.com/KirillTregubov/OverBuddy",
"private": true,
"version": "1.4.6",
"version": "1.4.7",
"type": "module",
"scripts": {
"tauri": "tauri",
Expand All @@ -15,11 +15,11 @@
"sync": "tsx scripts/sync.ts"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.3",
"@radix-ui/react-alert-dialog": "^1.1.4",
"@radix-ui/react-progress": "^1.1.1",
"@tanstack/react-query": "^5.62.7",
"@tanstack/react-query-devtools": "^5.62.7",
"@tanstack/react-router": "^1.90.0",
"@tanstack/react-query": "^5.62.8",
"@tanstack/react-query-devtools": "^5.62.8",
"@tanstack/react-router": "^1.91.2",
"@tauri-apps/api": "^2.1.1",
"@tauri-apps/plugin-dialog": "~2.2.0",
"@tauri-apps/plugin-process": "~2.2.0",
Expand All @@ -38,7 +38,7 @@
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.17.0",
"@tanstack/router-vite-plugin": "^1.87.13",
"@tanstack/router-vite-plugin": "^1.91.1",
"@tauri-apps/cli": "^2.1.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/eslint__js": "^8.42.3",
Expand All @@ -58,11 +58,11 @@
"prettier-plugin-tailwindcss": "^0.6.9",
"readline-sync": "^1.4.10",
"semver": "^7.6.3",
"tailwindcss": "^3.4.16",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.3"
}
}
333 changes: 167 additions & 166 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Binary file added public/backgrounds/avatar_the_last_airbender.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src-tauri/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 src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "overbuddy"
version = "1.4.6"
version = "1.4.7"
description = "Elevate your Overwatch™ 2 experience by customizing your in-game menu background with ease."
authors = ["Kirill Tregubov"]
license = "../LICENSE"
Expand Down
8 changes: 7 additions & 1 deletion src-tauri/src/backgrounds.rs
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,13 @@ const BACKGROUNDS: &[Background] = &[
description: "China Re-release with NetEase",
tags: &["Art"],
},
// 欢迎回家
Background {
id: "0x08000000000012CA",
image: "avatar_the_last_airbender.jpg",
name: "Avatar: The Last Airbender",
description: "Avatar: The Last Airbender Event (Season 14)",
tags: &["Collaboration", "Animated Art"],
},
];

pub fn get_backgrounds() -> &'static [Background] {
Expand Down

0 comments on commit 05bc855

Please sign in to comment.