Skip to content

Commit db3f0a8

Browse files
committed
WIP idk what i doing and the git status is blotted by linux
1 parent c41aea2 commit db3f0a8

345 files changed

Lines changed: 372328 additions & 372328 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.clangd

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
CompileFlags:
2-
Add: [-std=c++20]
3-
4-
---
5-
6-
If:
7-
PathMatch: include/SDK.h
8-
Diagnostics:
9-
UnusedIncludes: None
10-
11-
---
12-
13-
If:
14-
PathMatch: .*
15-
Diagnostics:
1+
CompileFlags:
2+
Add: [-std=c++20]
3+
4+
---
5+
6+
If:
7+
PathMatch: include/SDK.h
8+
Diagnostics:
9+
UnusedIncludes: None
10+
11+
---
12+
13+
If:
14+
PathMatch: .*
15+
Diagnostics:
1616
Suppress: [-Wunused-include:include/SDK.h]
Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
1-
---
2-
name: Bug report
3-
about: Create a report to help us improve
4-
title: "[BUG REPORT] "
5-
labels: bug
6-
assignees: AmeliaCute, EltyDev
7-
8-
---
9-
10-
**Describe the bug**
11-
A clear and concise description of what the bug is.
12-
13-
**To Reproduce**
14-
Steps to reproduce the behavior:
15-
```
16-
17-
18-
19-
```
20-
21-
22-
**Expected behavior**
23-
```
24-
25-
26-
27-
```
28-
29-
**Screenshots / Videos**
30-
If applicable, add screenshots to help explain your problem.
31-
32-
FLiAPI Version: `1.10`
33-
34-
Mod list:
35-
```
36-
-
37-
-
38-
39-
```
40-
41-
42-
**Additional context**
43-
Add any other context about the problem here.
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG REPORT] "
5+
labels: bug
6+
assignees: AmeliaCute, EltyDev
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
```
16+
17+
18+
19+
```
20+
21+
22+
**Expected behavior**
23+
```
24+
25+
26+
27+
```
28+
29+
**Screenshots / Videos**
30+
If applicable, add screenshots to help explain your problem.
31+
32+
FLiAPI Version: `1.10`
33+
34+
Mod list:
35+
```
36+
-
37+
-
38+
39+
```
40+
41+
42+
**Additional context**
43+
Add any other context about the problem here.

.github/workflows/build-check.yml

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
1-
name: "Build Check"
2-
3-
on:
4-
push:
5-
branches-ignore:
6-
- master
7-
pull_request:
8-
branches:
9-
- master
10-
11-
env:
12-
BUILD_TYPE: Release
13-
14-
jobs:
15-
build-check:
16-
runs-on: windows-latest
17-
steps:
18-
- uses: actions/checkout@v4
19-
20-
- name: Cache LLVM
21-
id: cache-llvm
22-
uses: actions/cache@v4
23-
with:
24-
path: C:\Program Files\LLVM
25-
key: llvm-21.1.0-windows
26-
27-
- name: Install LLVM 21.1.0
28-
if: steps.cache-llvm.outputs.cache-hit != 'true'
29-
run: choco install llvm --version=21.1.0 -y
30-
shell: powershell
31-
32-
- name: Add LLVM to PATH
33-
run: echo "C:\Program Files\LLVM\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
34-
shell: powershell
35-
36-
- name: Pull submodule
37-
run: git submodule update --init
38-
39-
- name: Configure CMake with Clang-CL
40-
run: cmake -B ${{github.workspace}}/build -G "Ninja" -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DMLDEBUG=OFF
41-
42-
- name: Build project
1+
name: "Build Check"
2+
3+
on:
4+
push:
5+
branches-ignore:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
env:
12+
BUILD_TYPE: Release
13+
14+
jobs:
15+
build-check:
16+
runs-on: windows-latest
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- name: Cache LLVM
21+
id: cache-llvm
22+
uses: actions/cache@v4
23+
with:
24+
path: C:\Program Files\LLVM
25+
key: llvm-21.1.0-windows
26+
27+
- name: Install LLVM 21.1.0
28+
if: steps.cache-llvm.outputs.cache-hit != 'true'
29+
run: choco install llvm --version=21.1.0 -y
30+
shell: powershell
31+
32+
- name: Add LLVM to PATH
33+
run: echo "C:\Program Files\LLVM\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
34+
shell: powershell
35+
36+
- name: Pull submodule
37+
run: git submodule update --init
38+
39+
- name: Configure CMake with Clang-CL
40+
run: cmake -B ${{github.workspace}}/build -G "Ninja" -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DMLDEBUG=OFF
41+
42+
- name: Build project
4343
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

.github/workflows/cd.yml

Lines changed: 73 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -1,74 +1,74 @@
1-
name: "Build and deploy project"
2-
3-
on:
4-
push:
5-
branches: [ "master" ]
6-
7-
env:
8-
BUILD_TYPE: Release
9-
10-
jobs:
11-
build:
12-
runs-on: windows-latest
13-
steps:
14-
- uses: actions/checkout@v4
15-
16-
- name: Cache LLVM
17-
id: cache-llvm
18-
uses: actions/cache@v4
19-
with:
20-
path: C:\Program Files\LLVM
21-
key: llvm-21.1.0-windows
22-
23-
- name: Install LLVM 21.1.0
24-
if: steps.cache-llvm.outputs.cache-hit != 'true'
25-
run: choco install llvm --version=21.1.0 -y
26-
shell: powershell
27-
28-
- name: Add LLVM to PATH
29-
run: echo "C:\Program Files\LLVM\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
30-
shell: powershell
31-
32-
- name: Pull submodule
33-
run: git submodule update --init
34-
35-
- name: Configure CMake with Clang-CL
36-
run: cmake -B ${{github.workspace}}/build -G "Ninja" -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DMLDEBUG=OFF
37-
38-
- name: Build project
39-
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
40-
41-
- name: Upload Artifacts
42-
uses: actions/upload-artifact@v4
43-
with:
44-
name: fli-modloader
45-
path: |
46-
./build/ModLoader.dll
47-
./build/ModLoader.lib
48-
./build/DllProxy/version.dll
49-
50-
release:
51-
needs: build
52-
runs-on: ubuntu-latest
53-
steps:
54-
- name: Set up date-based tag
55-
run: |
56-
DATE_TAG="v$(date +'%Y%m%d.%H%M')"
57-
echo "TAG_NAME=$DATE_TAG" >> $GITHUB_ENV
58-
echo "tag=$DATE_TAG"
59-
60-
- name: Download Artifacts
61-
uses: actions/download-artifact@v4
62-
63-
- name: Create GitHub Release
64-
id: create_release
65-
uses: softprops/action-gh-release@v2
66-
with:
67-
tag_name: ${{ env.TAG_NAME }}
68-
body: "Automated release of ${{ github.ref_name }}."
69-
generate_release_notes: true
70-
token: ${{ secrets.RELEASE_CD_TOKEN }}
71-
files: |
72-
./fli-modloader/ModLoader.dll
73-
./fli-modloader/ModLoader.lib
1+
name: "Build and deploy project"
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
7+
env:
8+
BUILD_TYPE: Release
9+
10+
jobs:
11+
build:
12+
runs-on: windows-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Cache LLVM
17+
id: cache-llvm
18+
uses: actions/cache@v4
19+
with:
20+
path: C:\Program Files\LLVM
21+
key: llvm-21.1.0-windows
22+
23+
- name: Install LLVM 21.1.0
24+
if: steps.cache-llvm.outputs.cache-hit != 'true'
25+
run: choco install llvm --version=21.1.0 -y
26+
shell: powershell
27+
28+
- name: Add LLVM to PATH
29+
run: echo "C:\Program Files\LLVM\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
30+
shell: powershell
31+
32+
- name: Pull submodule
33+
run: git submodule update --init
34+
35+
- name: Configure CMake with Clang-CL
36+
run: cmake -B ${{github.workspace}}/build -G "Ninja" -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DMLDEBUG=OFF
37+
38+
- name: Build project
39+
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
40+
41+
- name: Upload Artifacts
42+
uses: actions/upload-artifact@v4
43+
with:
44+
name: fli-modloader
45+
path: |
46+
./build/ModLoader.dll
47+
./build/ModLoader.lib
48+
./build/DllProxy/version.dll
49+
50+
release:
51+
needs: build
52+
runs-on: ubuntu-latest
53+
steps:
54+
- name: Set up date-based tag
55+
run: |
56+
DATE_TAG="v$(date +'%Y%m%d.%H%M')"
57+
echo "TAG_NAME=$DATE_TAG" >> $GITHUB_ENV
58+
echo "tag=$DATE_TAG"
59+
60+
- name: Download Artifacts
61+
uses: actions/download-artifact@v4
62+
63+
- name: Create GitHub Release
64+
id: create_release
65+
uses: softprops/action-gh-release@v2
66+
with:
67+
tag_name: ${{ env.TAG_NAME }}
68+
body: "Automated release of ${{ github.ref_name }}."
69+
generate_release_notes: true
70+
token: ${{ secrets.RELEASE_CD_TOKEN }}
71+
files: |
72+
./fli-modloader/ModLoader.dll
73+
./fli-modloader/ModLoader.lib
7474
./fli-modloader/DllProxy/version.dll

0 commit comments

Comments
 (0)