-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1338 from etternagame/develop
0.74.1 merge
- Loading branch information
Showing
15 changed files
with
110 additions
and
59 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,14 @@ | ||
# Release Changelog | ||
|
||
|
||
## [0.74.1] - 2024-12-26 - Hotfix | ||
|
||
|
||
### Changes | ||
- Rate pitch algorithm crashes have more informative messages - [45dab2e](../../../commit/45dab2ef0aa972e6661315c09d8a7b9786d19b6a) | ||
- Til' Death (C++ Wheel) search behavior should always try to keep you on the hovered song unless you have a result - [292e458](../../../commit/292e4580df401f0600caf6f456509ac8f4c93471) | ||
|
||
### Fixed | ||
- Rare crashes due to etar parallelization - [012ebbf](../../../commit/012ebbf9406e638e47ed1dfa624ac2c1cb0de12d) | ||
- Random crashes due to DelFileSet - [5e4031e](../../../commit/5e4031efbd8d062b23000696675be0165357a7eb) [805992e](../../../commit/805992e2673991d7a19bb108a40c3bb5aa265a29) | ||
- Til' Death rate changes in PlayerOptions not affecting WifeTwirl - [7419c3f](../../../commit/7419c3f956aa73f957be2250a48d40666814f9d8) [a97aaf6](../../../commit/a97aaf67c2460cdc3bd1d219d223d90b7839b973) |
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 |
---|---|---|
|
@@ -52,7 +52,7 @@ jobs: | |
|
||
- name: Upload Binary | ||
if: ${{matrix.cfg.dist}} | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: "Etterna - Linux x64" | ||
path: '${{github.workspace}}/main/build/*.tar.gz' | ||
|
@@ -78,9 +78,9 @@ jobs: | |
|
||
- name: Upload Symbols to action artifacts | ||
if: ${{matrix.cfg.dist}} | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Etterna Symbols - ${{github.sha}} | ||
name: Etterna Symbols Linux x64 - ${{github.sha}} | ||
path: '${{github.workspace}}/sym/EtternaSymbolsUploadDir' | ||
|
||
- name: Get version for CrashServer Upload | ||
|
@@ -129,6 +129,11 @@ jobs: | |
with: | ||
python-version: '3.12' | ||
|
||
- name: Update CPack Environment | ||
if: ${{matrix.cfg.dist}} | ||
run: | | ||
echo "ETT_MAC_SYS_NAME=M1" >> $GITHUB_ENV | ||
- name: Generate CMake | ||
run: mkdir main/build && cd main/build && cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DWITH_CRASHPAD=OFF -G Ninja .. | ||
|
||
|
@@ -141,7 +146,7 @@ jobs: | |
|
||
- name: Upload Binary | ||
if: ${{matrix.cfg.dist}} | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: "Etterna - macOS aarch64" | ||
path: '${{github.workspace}}/main/build/*.dmg' | ||
|
@@ -168,9 +173,9 @@ jobs: | |
|
||
- name: Upload Symbols to action artifacts | ||
if: ${{matrix.cfg.dist}} | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Etterna Symbols - ${{github.sha}} | ||
name: Etterna Symbols Mac aarch64 - ${{github.sha}} | ||
path: '${{github.workspace}}/main/EtternaSymbolsUploadDir' | ||
|
||
- name: Get version for CrashServer Upload | ||
|
@@ -226,6 +231,11 @@ jobs: | |
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.8' | ||
|
||
- name: Update CPack Environment | ||
if: ${{matrix.cfg.dist}} | ||
run: | | ||
echo "ETT_MAC_SYS_NAME=Darwin-x64" >> $GITHUB_ENV | ||
- name: Generate CMake | ||
run: mkdir main/build && cd main/build && cmake -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DCMAKE_BUILD_TYPE=RelWithDebInfo -G Ninja .. | ||
|
@@ -239,7 +249,7 @@ jobs: | |
|
||
- name: Upload Binary | ||
if: ${{matrix.cfg.dist}} | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: "Etterna - macOS x64" | ||
path: '${{github.workspace}}/main/build/*.dmg' | ||
|
@@ -266,9 +276,9 @@ jobs: | |
|
||
- name: Upload Symbols to action artifacts | ||
if: ${{matrix.cfg.dist}} | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Etterna Symbols - ${{github.sha}} | ||
name: Etterna Symbols Mac x64 - ${{github.sha}} | ||
path: '${{github.workspace}}/main/EtternaSymbolsUploadDir' | ||
|
||
- name: Get version for CrashServer Upload | ||
|
@@ -314,6 +324,11 @@ jobs: | |
- name: Install homebrew packages | ||
run: brew install cmake nasm ninja && brew tap etternagame/etterna && brew update && HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install etternagame/etterna/[email protected]_osx_high_sierra | ||
|
||
- name: Update CPack Environment | ||
if: ${{matrix.cfg.dist}} | ||
run: | | ||
echo "ETT_MAC_SYS_NAME=High-Sierra" >> $GITHUB_ENV | ||
- name: Generate CMake | ||
run: mkdir main/build && cd main/build && cmake -DOPENSSL_ROOT_DIR=/usr/local/opt/[email protected]_osx_high_sierra -DWITH_CRASHPAD=OFF -DCMAKE_BUILD_TYPE=RelWithDebInfo -G Ninja .. | ||
|
||
|
@@ -326,7 +341,7 @@ jobs: | |
|
||
- name: Upload Binary | ||
if: ${{matrix.cfg.dist}} | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: "Etterna - OSX High Sierra (Legacy)" | ||
path: '${{github.workspace}}/main/build/*.dmg' | ||
|
@@ -353,9 +368,9 @@ jobs: | |
|
||
- name: Upload Symbols to action artifacts | ||
if: ${{matrix.cfg.dist}} | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Etterna Symbols - ${{github.sha}} | ||
name: Etterna Symbols Mac HighSierra - ${{github.sha}} | ||
path: '${{github.workspace}}/main/EtternaSymbolsUploadDir' | ||
|
||
- name: Get version for CrashServer Upload | ||
|
@@ -449,7 +464,7 @@ jobs: | |
run: cd main/build && cpack | ||
|
||
- name: Upload Binary | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: "Etterna - Windows ${{matrix.cfg.name}}" | ||
path: '${{github.workspace}}/main/build/*.exe' | ||
|
@@ -468,9 +483,9 @@ jobs: | |
run: cd main && python ${{github.workspace}}/main/.ci/prepare_symbols.py | ||
|
||
- name: Upload Symbols to action artifacts | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Etterna Symbols - ${{github.sha}} | ||
name: Etterna Symbols win${{matrix.cfg.name}} - ${{github.sha}} | ||
path: '${{github.workspace}}/main/EtternaSymbolsUploadDir' | ||
|
||
- name: Get version for CrashServer Upload | ||
|
@@ -486,5 +501,4 @@ jobs: | |
uses: softprops/action-gh-release@v1 | ||
if: ${{ github.event_name == 'release' && github.event.action == 'published' }} | ||
with: | ||
files: | | ||
${{github.workspace}}/main/build/*.exe | ||
files: ${{github.workspace}}\main\build\*.exe |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
Oops, something went wrong.