Skip to content

Commit

Permalink
Merge pull request #59 from cohstats/fix-volume-slider
Browse files Browse the repository at this point in the history
Fix the slider and update all the packages
  • Loading branch information
petrvecera committed Jan 1, 2024
2 parents c8378bd + b1cb1fc commit 0d79040
Show file tree
Hide file tree
Showing 10 changed files with 2,473 additions and 1,350 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: "publish"
on:
push:
branches:
- release
push:
tags:
- v*

jobs:
publish-tauri:
Expand All @@ -12,7 +12,7 @@ jobs:
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: Cache node modules
uses: actions/cache@v3
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: 18

- name: Cache node modules
uses: actions/cache@v3
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: Cache node modules
uses: actions/cache@v3
Expand Down Expand Up @@ -76,3 +76,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
- name: Upload Tauri app artifacts
uses: actions/upload-artifact@v3
with:
name: coh3-stats-desktop-app
path: src-tauri/target/release/bundle/*
6 changes: 2 additions & 4 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# COH3 Stats Desktop App

View stats of players in the current game of Company of Heroes 3.
View stats of players in the current game of Company of Heroes 3.
**Download from https://coh3stats.com/desktop-app**

## Setup OBS Streamer Overlay

Expand Down Expand Up @@ -167,9 +168,6 @@ Don't forget to run prettier with `yarn fix`.
- `src-tauri/Cargo.toml`
- Commit the updated version
- Make a new tag on master
- Merge master into release branch (TODO: Why we have separate release branch?)



## Project Architecture

Expand Down
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "coh3-stats-desktop-app",
"private": true,
"version": "1.2.3",
"version": "1.2.4",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -12,30 +12,30 @@
"tauri": "tauri"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@mantine/core": "^6.0.15",
"@mantine/hooks": "^6.0.15",
"@tabler/icons-react": "^2.23.0",
"@tauri-apps/api": "^1.2.0",
"axios": "^1.4.0",
"@emotion/react": "11.11.3",
"@mantine/core": "6.0.21",
"@mantine/hooks": "6.0.21",
"@tabler/icons-react": "2.44.0",
"@tauri-apps/api": "1.5.3",
"axios": "1.6.3",
"coh-stats-components": "github:cohstats/coh-stats-components#0.0.7",
"coh3-data-types-library": "github:cohstats/coh3-data-types-library#0.0.2",
"mixpanel-browser": "^2.47.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.0",
"mixpanel-browser": "2.48.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.21.1",
"tauri-plugin-fs-watch-api": "https://github.com/tauri-apps/tauri-plugin-fs-watch",
"tauri-plugin-log-api": "https://github.com/tauri-apps/tauri-plugin-log",
"tauri-plugin-store-api": "https://github.com/tauri-apps/tauri-plugin-store"
},
"devDependencies": {
"@tauri-apps/cli": "^1.2.2",
"@types/mixpanel-browser": "^2.38.1",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@vitejs/plugin-react": "^3.0.0",
"prettier": "^2.8.8",
"typescript": "^5.1.6",
"vite": "^4.3.9"
"@tauri-apps/cli": "1.5.9",
"@types/mixpanel-browser": "2.48.1",
"@types/react": "18.2.46",
"@types/react-dom": "18.2.18",
"@vitejs/plugin-react": "3.1.0",
"prettier": "2.8.8",
"typescript": "5.1.6",
"vite": "4.5.1"
}
}
Loading

0 comments on commit 0d79040

Please sign in to comment.