diff options
| author | Roman / Linnea Gräf <nea@nea.moe> | 2023-03-09 17:35:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-09 17:35:18 +0100 |
| commit | 4d3e68e8777ac174b938ad63c3367a20e99e06ac (patch) | |
| tree | b4e5567694eda82519462e21728edc0b17954957 | |
| parent | 64f9b6b44426b907f3f2cb916f778fb92b441389 (diff) | |
| parent | 90b184ecfccfcada882ce8cd89286b0ffa4cdef3 (diff) | |
| download | SkyHanni-4d3e68e8777ac174b938ad63c3367a20e99e06ac.tar.gz SkyHanni-4d3e68e8777ac174b938ad63c3367a20e99e06ac.tar.bz2 SkyHanni-4d3e68e8777ac174b938ad63c3367a20e99e06ac.zip | |
Merge branch 'dev_3' into yaw_snapping
99 files changed, 2860 insertions, 2028 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f7266f909..81274d993 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,12 +18,14 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up JDK 17 - uses: actions/setup-java@v1 + uses: actions/setup-java@v3 with: java-version: 17 - - uses: actions/cache@v2 + distribution: temurin + cache: gradle + - uses: actions/cache@v3 with: path: | ~/.gradle/caches @@ -33,7 +35,7 @@ jobs: ${{ runner.os }}-gradle- - name: Build with Gradle run: ./gradlew build - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: path: build/libs/*.jar - name: Stop gradle daemons diff --git a/CHANGELOG.md b/CHANGELOG.md index 31f067203..bf339d140 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,33 @@ # SkyHanni - Change Log -## Version 0.17.UNRELEASED +## Version 0.17.BETA ### Features + Added **Time to Kill** - Show the time it takes to kill the Slayer boss. ++ Added skill and collection level as item stack. ++ Added **Auction Highlighter** - Highlight own items that are sold in green and that are expired in red. ++ Added support for tier 1 minions and title send for the minion craft helper. ++ Added Chicken head Timer. ++ Added **rancher boots** speed display. ++ Added **Optimal Speed** - Show the optimal speed for your current tool in the hand. (Ty MelonKingDE for the values) ### Garden Features + Added **Copper Price** - Show copper to coin prices inside the Sky Mart inventory. + Added **Visitor Display** - Show all items needed for the visitors. -+ Added **Highlight Ready** - Highlight the visitor when the required items are in the inventory. ++ Added **Visitor Highlight** - Highlight visitor when the required items are in the inventory or the visitor is new and needs to checked what items it needs. + Added **Show Price** - Show the bazaar price of the items required for the visitors. + Added **Crop Milestone** Number - Show the number of the crop milestone in the inventory. + Added **Crop Upgrades** Number - Show the number of upgrades in the crop upgrades inventory. + Added **Yaw Snapping** - Make it harder to overshoot certain yaw angles. (contrib nea89) + Added **Visitor Timer** - Timer when the next visitor will appear, and a number how many visitors are already waiting. ++ Added **Visitor Notification** - Show as title and in chat when a new visitor is visiting your island. ++ Added **Plot Price** - Show the price of the plot in coins when inside the Configure Plots inventory. ++ Added **Garden Crop Milestone Display** - Shows the progress and ETA until the next crop milestone is reached and the current crops/minute value. (Requires a tool with ei |
