-
Notifications
You must be signed in to change notification settings - Fork 78
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
963 changed files
with
214,927 additions
and
143,943 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,56 @@ | ||
name: CI - macOS | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
tags: | ||
- '*' | ||
pull_request: | ||
|
||
jobs: | ||
ci: | ||
name: Build | ||
runs-on: macos-12 | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
|
||
- name: Install Qt | ||
uses: jurplel/install-qt-action@v4 | ||
with: | ||
version: "6.7.1" | ||
archives: qtbase qtsvg qttools | ||
cache: true | ||
|
||
- name: Configure CMake | ||
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" -DTEST=ON | ||
|
||
- name: Build PokeFinder | ||
run: cmake --build ${{github.workspace}}/build --config RELEASE | ||
|
||
- name: Test PokeFinder | ||
run: ctest --test-dir ${{github.workspace}}/build -V | ||
|
||
- name: Package PokeFinder | ||
run: | | ||
mkdir upload | ||
mv build/Source/PokeFinder.app . | ||
macdeployqt PokeFinder.app -verbose=3 | ||
tar czf PokeFinder-macOS.tar.gz PokeFinder.app | ||
mv PokeFinder-macOS.tar.gz upload | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: PokeFinder-macOS | ||
path: upload | ||
|
||
- name: Publish Release | ||
uses: softprops/action-gh-release@v2 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: PokeFinder-macOS.tar.gz |
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,55 @@ | ||
name: CI - Ubuntu | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
tags: | ||
- '*' | ||
pull_request: | ||
|
||
jobs: | ||
ci: | ||
name: Build | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
|
||
- name: Install Qt | ||
uses: jurplel/install-qt-action@v4 | ||
with: | ||
version: "6.7.1" | ||
archives: icu qtbase qtsvg qttools | ||
cache: true | ||
|
||
- name: Configure CMake | ||
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=RELEASE -DTEST=ON | ||
|
||
- name: Build PokeFinder | ||
run: cmake --build ${{github.workspace}}/build --config RELEASE | ||
|
||
- name: Test PokeFinder | ||
run: ctest --test-dir ${{github.workspace}}/build -V | ||
|
||
- name: Package PokeFinder | ||
run: | | ||
mkdir upload | ||
mv build/Source/PokeFinder . | ||
tar czf PokeFinder-linux.tar.gz PokeFinder | ||
mv PokeFinder upload | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: PokeFinder-linux | ||
path: upload | ||
|
||
- name: Publish Release | ||
uses: softprops/action-gh-release@v2 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: PokeFinder-linux.tar.gz |
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,64 @@ | ||
name: CI - Windows | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
tags: | ||
- '*' | ||
pull_request: | ||
|
||
jobs: | ||
ci: | ||
name: Build | ||
runs-on: windows-2022 | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
|
||
- name: Install Qt | ||
uses: jurplel/install-qt-action@v4 | ||
with: | ||
version: "6.7.1" | ||
archives: qtbase qtsvg qttools | ||
tools: tools_opensslv3_x64 | ||
cache: true | ||
|
||
- name: Configure CMake | ||
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=RELEASE -DTEST=ON | ||
|
||
- name: Build PokeFinder | ||
run: cmake --build ${{github.workspace}}/build --config RELEASE | ||
|
||
- name: Test PokeFinder | ||
run: ctest --test-dir ${{github.workspace}}/build -C RELEASE -V | ||
|
||
- name: Package PokeFinder | ||
run: | | ||
mkdir upload | ||
mkdir PokeFinder | ||
mkdir PokeFinder/platforms | ||
mkdir PokeFinder/styles | ||
mv build/Source/Release/PokeFinder.exe PokeFinder | ||
windeployqt --no-translations --no-plugins --no-opengl-sw --no-system-d3d-compiler PokeFinder/PokeFinder.exe | ||
rm PokeFinder/vc_redist*.exe | ||
cp "${{ env.QT_ROOT_DIR }}/plugins/platforms/qwindows.dll" PokeFinder/platforms/ | ||
cp "${{ env.QT_ROOT_DIR }}/plugins/styles/qmodernwindowsstyle.dll" PokeFinder/styles/ | ||
cp "${{ env.QT_ROOT_DIR }}/../../Tools/OpenSSLv3/Win_x64/bin/lib*.dll" PokeFinder | ||
7z a PokeFinder-win.zip PokeFinder | ||
mv PokeFinder upload | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: PokeFinder-windows | ||
path: upload | ||
|
||
- name: Publish Release | ||
uses: softprops/action-gh-release@v2 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: PokeFinder-win.zip |
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,3 +1,9 @@ | ||
[submodule "QDarkStyleSheet"] | ||
path = Externals/QDarkStyleSheet | ||
[submodule "External/bzip2"] | ||
path = Source/Core/External/bzip2 | ||
url = https://gitlab.com/bzip2/bzip2 | ||
[submodule "External/QDarkStyleSheet"] | ||
path = Source/Form/External/QDarkStyleSheet | ||
url = https://github.com/ColinDuquesnoy/QDarkStyleSheet | ||
[submodule "Source/Core/Resources/EncounterTables"] | ||
path = Source/Core/Resources/EncounterTables | ||
url = https://github.com/Admiral-Fish/EncounterTableGenerator |
File renamed without changes.
File renamed without changes.
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 QDarkStyleSheet
deleted from
cbc93c
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.