-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
53 additions
and
31 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,40 @@ | ||
name: Release JAR | ||
|
||
on: | ||
push: | ||
branches: [ "prerelease" ] | ||
|
||
jobs: | ||
build-and-release: | ||
|
||
permissions: write-all | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
- name: Build the JAR file | ||
run: mvn clean compile assembly:single | ||
|
||
- name: Extract app version from pom.xml | ||
run: | | ||
VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout) | ||
echo "VERSION=${VERSION}" >> $GITHUB_ENV | ||
- name: Create release | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
name: SlimTrade ${{ env.VERSION }} | ||
tag: ${{ env.VERSION }} | ||
prerelease: true | ||
bodyFile: src/main/resources/patch_notes/v${{ env.VERSION }}.txt | ||
# bodyFile: src/main/resources/patch_notes/static.txv${{ env.VERSION }}.txtt | ||
artifacts: target/SlimTrade.jar | ||
token: ${{ secrets.GITHUB_TOKEN }} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,21 @@ | ||
**This version is not well tested.** | ||
|
||
## Known Issues | ||
- Save file is not backwards compatible, backup "SlimTrade" folder if you care (Options > Information > Settings Folder) | ||
- When using game detection, bounds are not saved. Detection is rerun at launch (and can be triggered from options) | ||
- Changing client.txt file requires a restart | ||
- Currency icons & translations only use POE1 data | ||
- Theme & UI improvements incomplete | ||
|
||
## Path of Exile 2 | ||
- SlimTrade now works seamlessly with Path of Exile 1 & 2 | ||
- Added currency icons & currency translations for POE 2 (updated for POE1) | ||
|
||
## Game Window | ||
## Improvements | ||
- Updated all 30 color themes. *Hate the changes? Give it time, or try out a new theme since they all have a new look!* | ||
- Added a new window detection system for UI alignment, replacing the old stash alignment window | ||
- Unpinned windows are centered in the game window, rather than your first monitor | ||
- Unpinned windows are now centered relative to the game window on launch | ||
- Many small UI improvements & bug fixes | ||
- Possible improvements for Mac & Linux (untested) | ||
|
||
## Cloud Gaming | ||
- Added partial support for GeForce Now (other platforms upon request) | ||
- Features that require access to game files DO NOT work (trade popups, chat scanner, history) | ||
- **Features that require access to game files DO NOT work (trade popups, chat scanner, history)** | ||
- All other features should work (game macros, cheat sheets, stash/npc searching) | ||
- Things might be buggy | ||
|
||
## Additional Changes | ||
- Many small UI improvements | ||
- Adjusted the way windows are displayed on top of the game window | ||
- Fixed a crash on systems that don't support a system tray | ||
- Fixed preferred font changed the first time you saved after installing | ||
- Possible improvements for Mac & Linux (untested) | ||
- **BUG: Game macros often repeat old commands, investigating** | ||
|
||
## How to Install | ||
- Make sure you have [Java](https://www.java.com) installed | ||
- Download and run 'SlimTrade.jar' from below | ||
- Download and run 'SlimTrade.jar' from 'Assets' below | ||
|
||
*Having issues? Check the [troubleshooting guide](https://github.com/zmilla93/SlimTrade/wiki/Troubleshooting).* |
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