Download the app - see what's new
This is a desktop app for Windows and macOS to track your competitive match history in Overwatch. I wanted to see my progress over time, more than what the game or sites like Overbuff provide. The app lets you see which heroes you're performing best on, which roles, whether you do better on weekday mornings or weekend evenings, whether joining voice chat helps your win rate, that sort of thing.
See the changelog for what has changed each version.
- Track matches across different roles, Battle.net accounts, and competitive seasons
- Log details such as your new SR, which people you played with, whether you were in a 6-stack or solo queuing, what time you played, whether you got Play of the Game, which heroes you played, and what map you played
- Export your match history as a CSV file (Comma-Separated Value)
- Import your match history for past seasons
- View charts summarizing your season
- Log your placement matches and regular season games
- See when you go on win streaks or loss streaks
- Choose between a dark and light theme, or automatic based on time of day
- Works in Windows and macOS
For version 1.9 and later, download the Windows installer from the latest release. I've tested this on Windows 7 and Windows 10. Just run the installer and a Competiwatch shortcut will be added to your desktop.
You can also download the non-installer version and unzip the folder wherever you'd like. Run the app via the Competiwatch.exe executable in that folder.
You will probably be prompted by Windows that the app is unrecognized; the message in Windows 10 reads "Windows SmartScreen prevented an unrecognized app from starting." Sorry about that, it's being worked on. You can choose to run the app anyway (hit "more info" in Windows 10) and it shouldn't prompt you again for that version.
If you installed via the installer in Windows, just use the Control Panel and Add/Remove Programs to uninstall Competiwatch. The shortcut should be removed from your desktop.
If you did not use the installer, you can just delete the folder that has Competiwatch.exe in it, wherever you unzipped that folder.
This app was built with node version 12.4.0 and npm version 6.9.0. See the contributing guidelines.
npm install
npm run dev
The app should launch and also open in your browser. You can close the browser tab.
While you run the app, Electron logs will end up in the following places:
- on macOS:
~/Library/Logs/Competiwatch/log.log
- on Windows:
%USERPROFILE%\AppData\Roaming\Competiwatch\log.log
- on Linux:
~/.config/Competiwatch/log.log
React logs will show in your terminal. You can run
tail -f ~/Library/Logs/Competiwatch/log.log
in macOS in a separate
terminal from npm run dev
to monitor Electron logs while the app is running.
npm install
npm test
npm run check-format
To see test coverage, run npm test -- --coverage
. A coverage report will
display in your terminal or you can open coverage/lcov-report/index.html in
your browser.
Please run npm run fix-format
on your files before opening a pull request.
This will format your JavaScript, TypeScript, and JSON.
For macOS, from a Mac run:
# produce a new directory in dist/ that has a distributable .app file:
npm run electron-build-macos
For Windows, from a Windows machine run:
# produce dist/Competiwatch-win32-x64/ with .exe files:
npm run electron-build-windows
# generate an installer in dist/installers/:
npm run electron-build-windows-installer