Skip to content

Commit 1f18744

Browse files
committed
Merge branch 'dev' into 10-feature-request-change-font
2 parents 7c550ed + 95d7db8 commit 1f18744

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.github/workflows/ci.yml

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
branches:
77
- dev
88
- master
9+
- extended
910
paths-ignore:
1011
- 'README.md'
1112
- 'doc/**'
@@ -49,6 +50,11 @@ jobs:
4950
- name: Build debug APK and run jvm tests
5051
run: ./gradlew assembleDebug lintDebug testDebugUnitTest --stacktrace -DskipFormatKtlint
5152

53+
- name: Generate checksum
54+
run: |
55+
sha256sum app/build/outputs/apk/debug/*.apk > app/build/outputs/apk/debug/checksums.txt
56+
echo "::notice::$(cat app/build/outputs/apk/debug/checksums.txt)"
57+
5258
- name: Upload APK
5359
uses: actions/upload-artifact@v4
5460
with:

README.md

+23
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,29 @@ This is the SHA fingerprint of LastPipeBender's signing key to verify downloaded
3434
1B:00:8D:64:BB:95:AB:47:74:D6:8B:87:F2:2B:8B:E9:A2:72:F4:92:4D:F5:20:29:D7:E6:18:38:35:D9:18:CC
3535
```
3636

37+
### Project Management
38+
39+
```mermaid
40+
---
41+
title: Project Management
42+
---
43+
graph TD
44+
A[master_newpipe] --> D[dev]
45+
B[master_tubular] --> D
46+
C[dev_brave] --> D
47+
D --> | Test & Mini Changes | E[master]
48+
D --> X[A-feature]
49+
D --> Y[B-feature]
50+
X --> | REVIEW | F[extended]
51+
Y --> | REVIEW | F
52+
53+
F --> | Pre-Release | G(v0.xx.x-extended)
54+
55+
F --> | Ensure Long-Term Compatibility | E
56+
E --> | Stable Release | K(v0.xx.x)
57+
```
58+
-to be updated-
59+
3760
## License
3861
[![GNU GPLv3](https://www.gnu.org/graphics/gplv3-127x51.png)](https://www.gnu.org/licenses/gpl-3.0.en.html)
3962

0 commit comments

Comments
 (0)