Skip to content

Commit d1d496f

Browse files
committed
Version Prep
1 parent bf7fc5f commit d1d496f

3 files changed

Lines changed: 32 additions & 30 deletions

File tree

.github/workflows/cmake.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
runs-on: ubuntu-latest
2121
timeout-minutes: 20
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
submodules: recursive
2626
- name: Cache ccache
27-
uses: actions/cache@v4
27+
uses: actions/cache@v5
2828
with:
2929
path: ${{ github.workspace }}/.ccache/linux
3030
key: linux-ccache-${{ runner.os }}-${{ env.BUILD_TYPE }}-${{ hashFiles('**/CMakeLists.txt') }}
@@ -52,7 +52,7 @@ jobs:
5252
run: ctest -C ${{env.BUILD_TYPE}} --output-on-failure
5353
- name: Upload logs on failure
5454
if: failure()
55-
uses: actions/upload-artifact@v4
55+
uses: actions/upload-artifact@v6
5656
with:
5757
name: logs-${{ github.job }}
5858
path: |
@@ -63,7 +63,7 @@ jobs:
6363
retention-days: ${{ github.event_name == 'pull_request' && 7 || 30 }}
6464
- name: Upload artifact
6565
if: always()
66-
uses: actions/upload-artifact@v4
66+
uses: actions/upload-artifact@v6
6767
with:
6868
name: DingusPPC-LINUX
6969
path: ${{github.workspace}}/build/bin
@@ -83,11 +83,11 @@ jobs:
8383
brew_prefix: /usr/local
8484
runs-on: ${{ matrix.runner }}
8585
steps:
86-
- uses: actions/checkout@v4
86+
- uses: actions/checkout@v5
8787
with:
8888
submodules: recursive
8989
- name: Cache ccache
90-
uses: actions/cache@v4
90+
uses: actions/cache@v5
9191
with:
9292
path: ${{ github.workspace }}/.ccache/${{ matrix.arch }}
9393
key: macos-${{ matrix.runner }}-${{ matrix.arch }}-ccache-${{ env.BUILD_TYPE }}-${{ hashFiles('**/CMakeLists.txt') }}
@@ -113,7 +113,7 @@ jobs:
113113
run: ctest -C ${{env.BUILD_TYPE}} --output-on-failure
114114
- name: Upload logs on failure
115115
if: failure()
116-
uses: actions/upload-artifact@v4
116+
uses: actions/upload-artifact@v6
117117
with:
118118
name: logs-${{ github.job }}-${{ matrix.arch }}
119119
path: |
@@ -124,7 +124,7 @@ jobs:
124124
retention-days: ${{ github.event_name == 'pull_request' && 7 || 30 }}
125125
- name: Upload artifact
126126
if: always()
127-
uses: actions/upload-artifact@v4
127+
uses: actions/upload-artifact@v6
128128
with:
129129
name: DingusPPC-macOS-${{ matrix.arch }}
130130
path: ${{github.workspace}}/build/bin
@@ -137,11 +137,11 @@ jobs:
137137
MSYSTEM: MINGW64
138138
steps:
139139
- name: Checkout repository
140-
uses: actions/checkout@v4
140+
uses: actions/checkout@v5
141141
with:
142142
submodules: recursive
143143
- name: Cache ccache
144-
uses: actions/cache@v4
144+
uses: actions/cache@v5
145145
with:
146146
path: ${{ github.workspace }}/.ccache/msys
147147
key: windows-msys-ccache-${{ env.BUILD_TYPE }}-${{ hashFiles('**/CMakeLists.txt') }}
@@ -183,7 +183,7 @@ jobs:
183183
ctest --output-on-failure --parallel
184184
- name: Upload logs on failure
185185
if: failure()
186-
uses: actions/upload-artifact@v4
186+
uses: actions/upload-artifact@v6
187187
with:
188188
name: logs-${{ github.job }}
189189
path: |
@@ -194,7 +194,7 @@ jobs:
194194
retention-days: ${{ github.event_name == 'pull_request' && 7 || 30 }}
195195
- name: Upload artifact
196196
if: always()
197-
uses: actions/upload-artifact@v4
197+
uses: actions/upload-artifact@v6
198198
with:
199199
name: DingusPPC-MSYS
200200
path: ${{github.workspace}}/build/bin
@@ -225,11 +225,11 @@ jobs:
225225
ccache_args: ""
226226
upload_suffix: MSBUILD
227227
steps:
228-
- uses: actions/checkout@v4
228+
- uses: actions/checkout@v5
229229
with:
230230
submodules: recursive
231231
- name: Setup msbuild
232-
uses: microsoft/setup-msbuild@v1
232+
uses: microsoft/setup-msbuild@v3
233233
- name: Install vcpkg packages
234234
shell: cmd
235235
run: '"%VCPKG_INSTALLATION_ROOT%\vcpkg.exe" install --triplet x64-windows'
@@ -238,7 +238,7 @@ jobs:
238238
run: choco install ninja -y
239239
- name: Cache ccache
240240
if: matrix.generator == 'Ninja'
241-
uses: actions/cache@v4
241+
uses: actions/cache@v5
242242
with:
243243
path: ${{ github.workspace }}/.ccache/vsbuild-${{ matrix.name }}
244244
key: vsbuild-${{ matrix.name }}-ccache-${{ env.BUILD_TYPE }}-${{ hashFiles('**/CMakeLists.txt') }}
@@ -267,7 +267,7 @@ jobs:
267267
run: ctest -C ${{env.BUILD_TYPE}} --output-on-failure
268268
- name: Upload logs on failure
269269
if: failure()
270-
uses: actions/upload-artifact@v4
270+
uses: actions/upload-artifact@v6
271271
with:
272272
name: logs-${{ github.job }}-${{ matrix.name }}
273273
path: |
@@ -278,7 +278,7 @@ jobs:
278278
retention-days: ${{ github.event_name == 'pull_request' && 7 || 30 }}
279279
- name: Upload artifact
280280
if: always()
281-
uses: actions/upload-artifact@v4
281+
uses: actions/upload-artifact@v6
282282
with:
283283
name: DingusPPC-${{ matrix.upload_suffix }}
284284
path: ${{github.workspace}}/build/bin

CREDITS.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,34 @@
44
## Developers
55

66
- divingkatae
7-
- maximumspatium
87
- joevt
9-
- mihaip
108
- kkaisershot
9+
- maximumspatium
10+
- mihaip
1111

1212
## NT4/PPC fork
1313

1414
- Wack0
1515

1616
## DevOps
1717

18-
- Waqar144
19-
- webspacecreations
20-
- leap0x7b
21-
- sdkmap
18+
- alicela1n
19+
- Cacodemon345
2220
- dressupgeekout
23-
- kth5
2421
- dyharlan
25-
- roytam1
26-
- mrpapersonic
27-
- Randrianasulu
22+
- erichelgeson
23+
- jarz
24+
- kth5
25+
- leap0x7b
2826
- lefp
2927
- mathstuf
28+
- mrpapersonic
29+
- Randrianasulu
30+
- roytam1
31+
- sdkmap
3032
- seanm
31-
- erichelgeson
32-
- alicela1n
33+
- Waqar144
34+
- webspacecreations
3335

3436
## Testing
3537

main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ static void sigabrt_handler(int signum) {
6262
}
6363

6464
static string appDescription = string(
65-
"\nDingusPPC - Alpha 1.04 (12/25/2025) "
65+
"\nDingusPPC - Alpha 1.04a (4/1/2026) "
6666
"\nWritten by divingkatae, maximumspatium, "
6767
"\njoevt, mihaip, kkaisershot, et. al. "
6868
"\n(c) 2018-2026 The DingusPPC Dev Team. "

0 commit comments

Comments
 (0)