forked from Chatterino/chatterino2
-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into chatterino7
- Loading branch information
Showing
65 changed files
with
882 additions
and
528 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
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 |
---|---|---|
|
@@ -107,22 +107,22 @@ jobs: | |
include: | ||
# Windows | ||
- os: windows-latest | ||
qt-version: 6.5.0 | ||
qt-version: 6.7.1 | ||
force-lto: false | ||
plugins: true | ||
skip-artifact: false | ||
skip-crashpad: false | ||
# macOS (ARM) | ||
- os: macos-latest | ||
qt-version: 6.5.0 | ||
qt-version: 6.7.1 | ||
arch: arm64 | ||
force-lto: false | ||
plugins: true | ||
skip-artifact: false | ||
skip-crashpad: false | ||
# macOS (x86) | ||
- os: macos-13 | ||
qt-version: 6.5.0 | ||
qt-version: 6.7.1 | ||
arch: x86_64 | ||
force-lto: false | ||
plugins: true | ||
|
@@ -146,35 +146,15 @@ jobs: | |
|
||
- name: Install Qt5 | ||
if: startsWith(matrix.qt-version, '5.') | ||
uses: jurplel/install-qt-action@v3.3.0 | ||
uses: jurplel/install-qt-action@v4.0.0 | ||
with: | ||
cache: true | ||
cache-key-prefix: ${{ runner.os }}-QtCache-${{ matrix.qt-version }}-v2 | ||
version: ${{ matrix.qt-version }} | ||
|
||
- name: Install Qt 6.5.3 imageformats | ||
if: startsWith(matrix.qt-version, '6.') | ||
uses: jurplel/[email protected] | ||
with: | ||
cache: false | ||
modules: qtimageformats | ||
set-env: false | ||
version: 6.5.3 | ||
extra: --noarchives | ||
|
||
- name: Find Qt 6.5.3 Path | ||
if: startsWith(matrix.qt-version, '6.') && startsWith(matrix.os, 'windows') | ||
shell: pwsh | ||
id: find-good-imageformats | ||
run: | | ||
cd "$Env:RUNNER_WORKSPACE/Qt/6.5.3" | ||
cd (Get-ChildItem)[0].Name | ||
cd plugins/imageformats | ||
echo "PLUGIN_PATH=$(pwd)" | Out-File -Path "$Env:GITHUB_OUTPUT" -Encoding ASCII | ||
- name: Install Qt6 | ||
if: startsWith(matrix.qt-version, '6.') | ||
uses: jurplel/install-qt-action@v3.3.0 | ||
uses: jurplel/install-qt-action@v4.0.0 | ||
with: | ||
cache: true | ||
cache-key-prefix: ${{ runner.os }}-QtCache-${{ matrix.qt-version }}-v2 | ||
|
@@ -269,12 +249,6 @@ jobs: | |
cp bin/chatterino.exe Chatterino2/ | ||
echo nightly > Chatterino2/modes | ||
- name: Fix Qt6 (windows) | ||
if: startsWith(matrix.qt-version, '6.') && startsWith(matrix.os, 'windows') | ||
working-directory: build | ||
run: | | ||
cp ${{ steps.find-good-imageformats.outputs.PLUGIN_PATH }}/qwebp.dll Chatterino2/imageformats/qwebp.dll | ||
- name: Package (windows) | ||
if: startsWith(matrix.os, 'windows') | ||
working-directory: build | ||
|
@@ -363,15 +337,15 @@ jobs: | |
|
||
# Windows | ||
- uses: actions/download-artifact@v4 | ||
name: Windows Qt6.5.0 | ||
name: Windows Qt6.7.1 | ||
with: | ||
name: chatterino-windows-x86-64-Qt-6.5.0.zip | ||
name: chatterino-windows-x86-64-Qt-6.7.1.zip | ||
path: release-artifacts/ | ||
|
||
- uses: actions/download-artifact@v4 | ||
name: Windows Qt6.5.0 symbols | ||
name: Windows Qt6.7.1 symbols | ||
with: | ||
name: chatterino-windows-x86-64-Qt-6.5.0-symbols.pdb.7z | ||
name: chatterino-windows-x86-64-Qt-6.7.1-symbols.pdb.7z | ||
path: release-artifacts/ | ||
|
||
# Linux | ||
|
@@ -389,23 +363,23 @@ jobs: | |
|
||
# macOS | ||
- uses: actions/download-artifact@v4 | ||
name: macOS x86_64 Qt6.5.0 x86 dmg | ||
name: macOS x86_64 Qt6.7.1 x86 dmg | ||
with: | ||
name: chatterino-macos-Qt-6.5.0-x86_64.dmg | ||
name: chatterino-macos-Qt-6.7.1-x86_64.dmg | ||
path: release-artifacts/ | ||
|
||
- uses: actions/download-artifact@v4 | ||
name: macOS x86_64 Qt6.5.0 ARM dmg | ||
name: macOS x86_64 Qt6.7.1 ARM dmg | ||
with: | ||
name: chatterino-macos-Qt-6.5.0-arm64.dmg | ||
name: chatterino-macos-Qt-6.7.1-arm64.dmg | ||
path: release-artifacts/ | ||
|
||
- name: Rename artifacts | ||
run: | | ||
ls -l | ||
# Rename the macos build to indicate that it's for macOS 12.0 users | ||
mv chatterino-macos-Qt-6.5.0-x86_64.dmg Chatterino-macOS-12.0-x86_64.dmg | ||
mv chatterino-macos-Qt-6.5.0-arm64.dmg Chatterino-macOS-12.0-arm64.dmg | ||
mv chatterino-macos-Qt-6.7.1-x86_64.dmg Chatterino-macOS-12.0-x86_64.dmg | ||
mv chatterino-macos-Qt-6.7.1-arm64.dmg Chatterino-macOS-12.0-arm64.dmg | ||
working-directory: release-artifacts | ||
shell: bash | ||
|
||
|
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
Submodule settings
updated
2 files
+1 −1 | .github/workflows/build-linux.yml | |
+1 −1 | .github/workflows/check-formatting.yml |
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.