forked from SnosMe/awakened-poe-trade
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix incorrect item text copy shortcut; build universal package
- Loading branch information
Showing
4 changed files
with
55 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# How this works | ||
|
||
There are 2 main parts of the app: | ||
|
||
1. renderer: this is the HTML/Javascript-based UI rendered within the Electron container. This runs Vue.js, a React-like Javascript framework for rendering front-end. | ||
2. main: includes the main app (written in Electron). Handles keyboard shortcuts, brings up the UI and overlays. | ||
|
||
Note that these 2 both depend on each other, and one cannot run without the other. | ||
|
||
# How to develop | ||
|
||
The most up-to-date instructions can always be derived from CI: | ||
|
||
[.github/workflows/main.yml](https://github.com/SnosMe/awakened-poe-trade/blob/master/.github/workflows/main.yml) | ||
|
||
Here's what that looks like as of 2023-12-03. | ||
|
||
```shell | ||
cd renderer | ||
yarn install | ||
yarn make-index-files | ||
yarn dev | ||
|
||
# In a second shell | ||
cd main | ||
yarn install | ||
yarn dev | ||
``` | ||
|
||
# How to build | ||
|
||
```shell | ||
cd renderer | ||
yarn install | ||
yarn build | ||
|
||
cd ../main | ||
yarn build | ||
# We want to sign with a distribution certificate to ensure other users can | ||
# install without errors | ||
CSC_NAME="Certificate name in Keychain" yarn package | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters