Skip to content

Commit

Permalink
Release 1.2.0 (#5)
Browse files Browse the repository at this point in the history
* updates

* upgrade error handling

* error handling fixes and style updates

* upgrades

* fix prettier

* error handling improvements and restore $key

* added easing to gradients

* update to 1.2.0
  • Loading branch information
KirillTregubov authored May 31, 2024
1 parent 5d2878a commit a8304f6
Show file tree
Hide file tree
Showing 37 changed files with 1,643 additions and 1,033 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ src-tauri/target
dist
pnpm-lock.yaml
src/routeTree.gen.ts
*.ts.timestamp*
6 changes: 5 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"plugins": ["prettier-plugin-tailwindcss", "prettier-plugin-organize-imports"]
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-tailwindcss"
],
"tailwindFunctions": ["clsx"]
}
9 changes: 5 additions & 4 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
OverBuddy has been updated to the latest Overwatch patch.
- Added the Porsche crossover event background.
- Fixed an issue during setup.
- Currently applied background now reflects configuration changes.
OverBuddy has been updated!
- Added a new error screen and updated setup error resolution steps.
- Improved error handling and reliability with backups to Battle.net configuration.
- Enhanced styling and animation quality.
- 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>Elevate your Overwatch™ 2 experience by customizing your in-game menu background with ease.</p>
<p>Current Version: 1.1.2</p>
<p>Current Version: 1.2.0</p>
<div>
<a href="https://github.com/KirillTregubov/OverBuddy/releases/latest">Download</a>
·
Expand Down
32 changes: 19 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,42 +2,48 @@
"name": "overbuddy",
"author": "Kirill Tregubov",
"private": true,
"version": "1.1.2",
"version": "1.2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"format": "prettier . --write"
"format": "prettier . --write",
"update": "tsx scripts/update.ts"
},
"dependencies": {
"@tanstack/react-query": "^5.36.0",
"@tanstack/react-router": "^1.32.5",
"@tauri-apps/api": "^1.5.5",
"@tanstack/react-query": "^5.40.0",
"@tanstack/react-router": "^1.34.7",
"@tauri-apps/api": "^1.5.6",
"clsx": "^2.1.1",
"framer-motion": "^11.2.0",
"lucide-react": "^0.378.0",
"framer-motion": "^11.2.9",
"lucide-react": "^0.381.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sonner": "^1.4.41",
"tailwind-easing-gradients": "^1.0.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@tanstack/router-vite-plugin": "^1.32.2",
"@tanstack/router-vite-plugin": "^1.34.8",
"@tauri-apps/cli": "^1.5.14",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^20.12.13",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.14",
"prettier-plugin-tailwindcss": "^0.6.0",
"readline-sync": "^1.4.10",
"semver": "^7.6.2",
"tailwindcss": "^3.4.3",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite": "^5.2.12",
"vite-plugin-package-version": "^1.1.0"
}
}
Loading

0 comments on commit a8304f6

Please sign in to comment.