Skip to content

Commit

Permalink
Release v1.4.0 (#13)
Browse files Browse the repository at this point in the history
* Initial migration

* Finish migration

* Version bump

* Finish upgrade

* Update .gitignore
  • Loading branch information
KirillTregubov authored Oct 3, 2024
1 parent f43153a commit 5ea2440
Show file tree
Hide file tree
Showing 23 changed files with 2,991 additions and 1,708 deletions.
8 changes: 2 additions & 6 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
OverBuddy has been updated! Steam support is coming soon.
- Added Ana Midnight Sun mythic weapon background
- Added World of Warcraft collaboration background.
- Updated "Check for Updates" in Settings.
Other changes in this update:
- Added Settings page.
- Added Keybinds for important actions.
- Added new backgrounds and removed backgrounds no longer available.
- Updated the error screen with new actions.
- Added new backgrounds and removed ones no longer available.
- 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.3.4</p>
<p>Current Version: 1.4.0</p>
<div>
<a href="https://github.com/KirillTregubov/OverBuddy/releases/latest">Download</a>
·
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'contextmenu',
(event) => {
event.preventDefault()
return false
return
},
{ capture: true }
)
Expand Down
39 changes: 22 additions & 17 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.3.4",
"version": "1.4.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -15,14 +15,19 @@
"update": "tsx scripts/update.ts"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.1",
"@tanstack/react-query": "^5.56.2",
"@tanstack/react-query-devtools": "^5.56.2",
"@tanstack/react-router": "^1.58.9",
"@tauri-apps/api": "^1.6.0",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-progress": "^1.1.0",
"@tanstack/react-query": "^5.59.0",
"@tanstack/react-query-devtools": "^5.59.0",
"@tanstack/react-router": "^1.58.16",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-dialog": "~2",
"@tauri-apps/plugin-process": "~2",
"@tauri-apps/plugin-shell": "~2",
"@tauri-apps/plugin-updater": "~2",
"clsx": "^2.1.1",
"framer-motion": "^11.5.6",
"lucide-react": "^0.445.0",
"framer-motion": "^11.9.0",
"lucide-react": "^0.447.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sonner": "^1.5.0",
Expand All @@ -33,20 +38,20 @@
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.11.1",
"@tanstack/router-vite-plugin": "^1.58.4",
"@tauri-apps/cli": "^1.6.2",
"@tanstack/router-vite-plugin": "^1.58.12",
"@tauri-apps/cli": "^2.0.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.6.1",
"@types/react": "^18.3.9",
"@types/node": "^22.7.4",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.11.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.12",
"globals": "^15.9.0",
"globals": "^15.10.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
Expand All @@ -57,7 +62,7 @@
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"vite": "^5.4.7"
"typescript-eslint": "^8.8.0",
"vite": "^5.4.8"
}
}
Loading

0 comments on commit 5ea2440

Please sign in to comment.