Skip to content
This repository has been archived by the owner on Jan 19, 2023. It is now read-only.

Commit

Permalink
refactor: 💥 v2.0.0 Beta.
Browse files Browse the repository at this point in the history
BREAKING CHANGE: ⚠ Please avoid using v1 and v2 simultaneously.

This version is stable enough to be released but is still under heavy development,
**You may encounter bugs, if you encounter any, you can uninstall this version and go back to v1.**

For users:
- Users can now share presets and vote for them.
- New installer/uninstaller with customizable installation path
- #66 Add multi-language: English, Français, 简体中文, Deutsch, Türkçe.
- Presets triggers are now in preset tabs with more options
- Added splash screen
- Better night mode
- Release tab now open browser
- Notifications are now handled within the app/system accordingly to the app's minimized state

For developers:
- Now using React and TypeScript
- Switched from npm to yarn: electron-userland/electron-builder#1147 (comment)
- Updated Continuous Delivery

Contributors: @rikoopa @Jamiexhz @Silvaburn#3669
  • Loading branch information
storm1er committed Mar 14, 2020
1 parent 04b5569 commit 7a829f1
Show file tree
Hide file tree
Showing 98 changed files with 17,187 additions and 5,325 deletions.
3 changes: 3 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
BROWSER=none
REACT_APP_VERSION=${npm_package_version}-dev
REACT_APP_SERVER_ENDPOINT=https://api.ryzencontroller.localhost
2 changes: 2 additions & 0 deletions .env.production
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
REACT_APP_VERSION=$npm_package_version
REACT_APP_SERVER_ENDPOINT=https://api.ryzencontroller.com
27 changes: 24 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
node_modules
release-builds
installer-builds
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build
/dist

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
Loading

0 comments on commit 7a829f1

Please sign in to comment.