Skip to content

Commit 35bdb8b

Browse files
authored
Merge pull request #80 from bitfunk/feature/change-project
Change project for 2.0.0
2 parents 6540155 + 628c934 commit 35bdb8b

File tree

178 files changed

+2830
-1014
lines changed

Some content is hidden

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

178 files changed

+2830
-1014
lines changed

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33
#
44
# These are explicitly windows files and should use crlf
55
*.bat text eol=crlf
6-

.github/CODEOWNERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
# Global ownership
21
* @wmontwe

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@
55

66
<!--- Describe your changes in detail -->
77

8-
## 📄 Motivation and Context
8+
## 📄 Motivation and context
99

1010
<!--- Why is this change required? What problem does it solve? -->
1111
<!--- If it fixes an open issue, please link to the issue here. -->
1212
<!--- If it is related to an open pull request, please link to the pull request here. -->
13-
14-
* **Issue:** #1245
15-
* **Related:** #1, #2 (pull-request)
13+
<!-- - **Issue:** #1245 -->
14+
<!-- - **Related:** #1, #2 (pull-request) -->
1615

1716
## 📷 Screenshots (if appropriate):
1817

@@ -24,9 +23,9 @@
2423

2524
### ✅ Checklist
2625

27-
- [ ] My code follows the code style and naming conventions of this project.
28-
- [ ] I have updated the documentation (if appropriate).
29-
- [ ] I have updated the changelog accordingly.
30-
- [ ] I have read the **CONTRIBUTING** document.
31-
- [ ] I have added tests to cover my changes.
32-
- [ ] All new and existing tests passed.
26+
- [x] My code follows the code style and naming conventions of this project.
27+
- [x] I have updated the documentation (if appropriate).
28+
- [x] I have updated the changelog accordingly.
29+
- [x] I have read the **CONTRIBUTING** document.
30+
- [x] I have added tests to cover my changes.
31+
- [x] All new and existing tests passed.

.github/labeler.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ dependencies:
1010

1111
documentation:
1212
- docs/**/*
13-
- README.adoc
13+
- CHANGELOG.md
14+
- CODE_OF_CONDUCT.md
15+
- CONTRIBUTING.md
1416
- LICENSE
15-
- CHANGELOG.adoc
16-
- CONTRIBUTION.adoc
17+
- README.md
18+
- SECURITY.md
1719

1820
# App
1921
app-android:

.github/labels.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -58,27 +58,27 @@
5858
# App
5959
- name: app-android
6060
description: App Android
61-
color: 1664c0
61+
color: 0f46a1
6262
- name: app-ios
6363
description: App iOS
64-
color: 1664c0
64+
color: 0f46a1
6565
- name: app-desktop
6666
description: App Desktop
67-
color: 1664c0
67+
color: 0f46a1
6868
- name: app-web
6969
description: App Web
70-
color: 1664c0
71-
72-
# Common
73-
- name: common
74-
description: Common feature changes
75-
color: a7983d
70+
color: 0f46a1
7671

7772
# Feature
7873
- name: feature
7974
description: Feature changes
8075
color: 26A763
8176

77+
# Common
78+
- name: common
79+
description: Common feature changes
80+
color: a7983d
81+
8282
# Library
8383
- name: library
8484
description: Library changes

renovate.json renamed to .github/renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
"dependencies"
1414
],
1515
"branchNameStrict": true,
16-
"separateMinorPatch": true
16+
"separateMinorPatch": true
1717
}

.github/workflows/ci-build-latest-version.yml renamed to .github/workflows/ci-build-snapshot-version.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI - Build Latest Version
1+
name: CI - Build Snapshot Version
22

33
on:
44
push:
@@ -8,7 +8,7 @@ on:
88
workflow_dispatch:
99

1010
jobs:
11-
build-latest-version:
11+
build-snapshot-version:
1212

1313
runs-on: macos-latest
1414

@@ -30,7 +30,7 @@ jobs:
3030
- name: Setup Java
3131
uses: actions/setup-java@v3
3232
with:
33-
distribution: 'adopt'
33+
distribution: 'temurin'
3434
java-version: '11'
3535

3636
- name: Setup Android SDK
@@ -60,5 +60,17 @@ jobs:
6060
disable-animations: true
6161
script: ./gradlew --no-daemon --stacktrace connectedCheck
6262

63-
- name: Publish Lastest Version
63+
- name: Analyze
64+
env:
65+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
66+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
67+
run: ./gradlew --no-daemon --stacktrace testCodeCoverageReport sonarqube
68+
69+
- name: Publish documentation
70+
env:
71+
GRGIT_USER: ${{ github.actor }}
72+
GRGIT_PASS: ${{ secrets.GITHUB_TOKEN }}
73+
run: ./gradlew --no-daemon --stacktrace mkdocsPublish
74+
75+
- name: Publish Snapshot Version
6476
run: echo "TODO"

.github/workflows/ci-publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup Java
3030
uses: actions/setup-java@v3
3131
with:
32-
distribution: 'adopt'
32+
distribution: 'temurin'
3333
java-version: '11'
3434

3535
- name: Setup Android SDK

.github/workflows/ci-pull-request-validation.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Setup Java
3939
uses: actions/setup-java@v3
4040
with:
41-
distribution: 'adopt'
41+
distribution: 'temurin'
4242
java-version: '11'
4343

4444
- name: Setup Android SDK
@@ -68,5 +68,11 @@ jobs:
6868
disable-animations: true
6969
script: ./gradlew --no-daemon --stacktrace connectedCheck
7070

71+
# - name: Analyze
72+
# env:
73+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
74+
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
75+
# run: ./gradlew --no-daemon --stacktrace testCodeCoverageReport sonar
76+
7177
- name: Publish Development Version
7278
run: echo "TODO"

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,5 @@ build-cache/
2929
captures/
3030
kotlin-js-store
3131

32-
## Asciidoctor
33-
.asciidoctor/
34-
3532
## OS X Finder
3633
.DS_Store

0 commit comments

Comments
 (0)