Skip to content

Commit 7af6845

Browse files
committed
Rename project from quokka to setonix
1 parent 06c3dc1 commit 7af6845

File tree

154 files changed

+1084
-934
lines changed

Some content is hidden

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

154 files changed

+1084
-934
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ body:
4747
id: terms
4848
attributes:
4949
label: Code of Conduct
50-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/LinwoodDev/Quokka/blob/develop/CODE_OF_CONDUCT.md)
50+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/LinwoodDev/Setonix/blob/develop/CODE_OF_CONDUCT.md)
5151
options:
5252
- label: I agree to follow this project's Code of Conduct
5353
required: true

.github/ISSUE_TEMPLATE/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ body:
2727
id: terms
2828
attributes:
2929
label: Code of Conduct
30-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/LinwoodDev/Quokka/blob/develop/CODE_OF_CONDUCT.md)
30+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/LinwoodDev/Setonix/blob/develop/CODE_OF_CONDUCT.md)
3131
options:
3232
- label: I agree to follow this project's Code of Conduct
3333
required: true

.github/ISSUE_TEMPLATE/enhancement.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ body:
2727
id: terms
2828
attributes:
2929
label: Code of Conduct
30-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/LinwoodDev/Quokka/blob/develop/CODE_OF_CONDUCT.md)
30+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/LinwoodDev/Setonix/blob/develop/CODE_OF_CONDUCT.md)
3131
options:
3232
- label: I agree to follow this project's Code of Conduct
3333
required: true

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ body:
2727
id: terms
2828
attributes:
2929
label: Code of Conduct
30-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/LinwoodDev/Quokka/blob/develop/CODE_OF_CONDUCT.md)
30+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/LinwoodDev/Setonix/blob/develop/CODE_OF_CONDUCT.md)
3131
options:
3232
- label: I agree to follow this project's Code of Conduct
3333
required: true

.github/workflows/build.yml

Lines changed: 104 additions & 104 deletions
Large diffs are not rendered by default.

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,15 @@ jobs:
9595
- name: Set flavor
9696
if: github.ref != 'refs/heads/main'
9797
run: |
98-
echo "QUOKKA_FLAVOR=nightly" >> $GITHUB_ENV
98+
echo "SETONIX_FLAVOR=nightly" >> $GITHUB_ENV
9999
echo "WEB_DIR=preview" >> $GITHUB_ENV
100100
- name: Set flavor
101101
if: github.ref == 'refs/heads/main'
102102
run: |
103-
echo "QUOKKA_FLAVOR=stable" >> $GITHUB_ENV
103+
echo "SETONIX_FLAVOR=stable" >> $GITHUB_ENV
104104
echo "WEB_DIR=www" >> $GITHUB_ENV
105105
- name: Build
106-
run: flutter build web --wasm --release --no-web-resources-cdn --dart-define=flavor=$QUOKKA_FLAVOR
106+
run: flutter build web --wasm --release --no-web-resources-cdn --dart-define=flavor=$SETONIX_FLAVOR
107107
- name: Deploy to SFTP
108108
if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/main'
109109
env:

.github/workflows/release.yml

Lines changed: 57 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,22 @@ jobs:
2727
- name: Setup git
2828
id: setup
2929
run: |
30-
QUOKKA_VERSION_REGEX="version:\s(.+)\+(.+)"
31-
[[ $(grep -E "${QUOKKA_VERSION_REGEX}" app/pubspec.yaml) =~ ${QUOKKA_VERSION_REGEX} ]]
32-
QUOKKA_VERSION="${BASH_REMATCH[1]}"
33-
echo "QUOKKA_VERSION=${QUOKKA_VERSION}" >> $GITHUB_ENV
34-
QUOKKA_BUILD_NUMBER="${BASH_REMATCH[2]}"
35-
echo "QUOKKA_BUILD_NUMBER=${QUOKKA_BUILD_NUMBER}" >> $GITHUB_ENV
30+
SETONIX_VERSION_REGEX="version:\s(.+)\+(.+)"
31+
[[ $(grep -E "${SETONIX_VERSION_REGEX}" app/pubspec.yaml) =~ ${SETONIX_VERSION_REGEX} ]]
32+
SETONIX_VERSION="${BASH_REMATCH[1]}"
33+
echo "SETONIX_VERSION=${SETONIX_VERSION}" >> $GITHUB_ENV
34+
SETONIX_BUILD_NUMBER="${BASH_REMATCH[2]}"
35+
echo "SETONIX_BUILD_NUMBER=${SETONIX_BUILD_NUMBER}" >> $GITHUB_ENV
3636
git config --global user.email "[email protected]"
3737
git config --global user.name "Linwood CI"
3838
- name: Update changelog
3939
run: |
4040
git fetch
4141
git pull origin
4242
dart pub get -C tools
43-
dart run tools/set_version.dart --build-number keep ${{ env.QUOKKA_VERSION }} --changelog
43+
dart run tools/set_version.dart --build-number keep ${{ env.SETONIX_VERSION }} --changelog
4444
git add .
45-
git commit -m "Add changelog of v${{ env.QUOKKA_VERSION }}"
45+
git commit -m "Add changelog of v${{ env.SETONIX_VERSION }}"
4646
git push origin
4747
- name: Merge in develop
4848
if: ${{ github.ref == 'refs/heads/main' }}
@@ -57,8 +57,8 @@ jobs:
5757
needs:
5858
- update-changelog
5959
outputs:
60-
version: ${{ steps.setup.outputs.QUOKKA_VERSION }}
61-
build_number: ${{ steps.setup.outputs.QUOKKA_BUILD_NUMBER }}
60+
version: ${{ steps.setup.outputs.SETONIX_VERSION }}
61+
build_number: ${{ steps.setup.outputs.SETONIX_BUILD_NUMBER }}
6262
steps:
6363
- uses: actions/checkout@v4
6464
with:
@@ -72,21 +72,21 @@ jobs:
7272
id: setup
7373
shell: bash
7474
run: |
75-
QUOKKA_VERSION_REGEX="version:\s(.+)\+(.+)"
76-
[[ $(grep -E "${QUOKKA_VERSION_REGEX}" app/pubspec.yaml) =~ ${QUOKKA_VERSION_REGEX} ]]
77-
QUOKKA_VERSION="${BASH_REMATCH[1]}"
78-
echo "QUOKKA_VERSION=${QUOKKA_VERSION}" >> $GITHUB_ENV
79-
echo "QUOKKA_VERSION=${QUOKKA_VERSION}" >> $GITHUB_OUTPUT
80-
QUOKKA_BUILD_NUMBER="${BASH_REMATCH[2]}"
81-
echo "QUOKKA_BUILD_NUMBER=${QUOKKA_BUILD_NUMBER}" >> $GITHUB_ENV
82-
echo "QUOKKA_BUILD_NUMBER=${QUOKKA_BUILD_NUMBER}" >> $GITHUB_OUTPUT
75+
SETONIX_VERSION_REGEX="version:\s(.+)\+(.+)"
76+
[[ $(grep -E "${SETONIX_VERSION_REGEX}" app/pubspec.yaml) =~ ${SETONIX_VERSION_REGEX} ]]
77+
SETONIX_VERSION="${BASH_REMATCH[1]}"
78+
echo "SETONIX_VERSION=${SETONIX_VERSION}" >> $GITHUB_ENV
79+
echo "SETONIX_VERSION=${SETONIX_VERSION}" >> $GITHUB_OUTPUT
80+
SETONIX_BUILD_NUMBER="${BASH_REMATCH[2]}"
81+
echo "SETONIX_BUILD_NUMBER=${SETONIX_BUILD_NUMBER}" >> $GITHUB_ENV
82+
echo "SETONIX_BUILD_NUMBER=${SETONIX_BUILD_NUMBER}" >> $GITHUB_OUTPUT
8383
git config --global user.email "[email protected]"
8484
git config --global user.name "Linwood CI"
8585
- name: Create tag
8686
run: |
87-
QUOKKA_VERSION="${{ env.QUOKKA_VERSION }}"
88-
git tag -fa v${{ env.QUOKKA_VERSION }} -m "Release ${QUOKKA_VERSION}"
89-
git push origin v${QUOKKA_VERSION} -f
87+
SETONIX_VERSION="${{ env.SETONIX_VERSION }}"
88+
git tag -fa v${{ env.SETONIX_VERSION }} -m "Release ${SETONIX_VERSION}"
89+
git push origin v${SETONIX_VERSION} -f
9090
- uses: actions/checkout@v4
9191
with:
9292
token: ${{ secrets.CI_PAT }}
@@ -95,10 +95,10 @@ jobs:
9595
uses: softprops/action-gh-release@v2
9696
with:
9797
prerelease: ${{ github.event.inputs.stable != 'true' }}
98-
tag_name: v${{ env.QUOKKA_VERSION }}
99-
name: v${{ env.QUOKKA_VERSION }}
98+
tag_name: v${{ env.SETONIX_VERSION }}
99+
name: v${{ env.SETONIX_VERSION }}
100100
token: ${{ secrets.CI_PAT }}
101-
body_path: metadata/en-US/changelogs/${{ env.QUOKKA_BUILD_NUMBER }}.txt
101+
body_path: metadata/en-US/changelogs/${{ env.SETONIX_BUILD_NUMBER }}.txt
102102
- name: Retag stable
103103
if: ${{ github.event.inputs.stable == 'true' || github.ref == 'refs/heads/main' }}
104104
run: |
@@ -133,12 +133,12 @@ jobs:
133133
- name: Setup git
134134
id: setup
135135
run: |
136-
QUOKKA_VERSION_REGEX="version:\s(.+)\+(.+)"
137-
[[ $(grep -E "${QUOKKA_VERSION_REGEX}" app/pubspec.yaml) =~ ${QUOKKA_VERSION_REGEX} ]]
138-
QUOKKA_VERSION="${BASH_REMATCH[1]}"
139-
echo "QUOKKA_VERSION=${QUOKKA_VERSION}" >> $GITHUB_ENV
140-
QUOKKA_BUILD_NUMBER="${BASH_REMATCH[2]}"
141-
echo "QUOKKA_BUILD_NUMBER=${QUOKKA_BUILD_NUMBER}" >> $GITHUB_ENV
136+
SETONIX_VERSION_REGEX="version:\s(.+)\+(.+)"
137+
[[ $(grep -E "${SETONIX_VERSION_REGEX}" app/pubspec.yaml) =~ ${SETONIX_VERSION_REGEX} ]]
138+
SETONIX_VERSION="${BASH_REMATCH[1]}"
139+
echo "SETONIX_VERSION=${SETONIX_VERSION}" >> $GITHUB_ENV
140+
SETONIX_BUILD_NUMBER="${BASH_REMATCH[2]}"
141+
echo "SETONIX_BUILD_NUMBER=${SETONIX_BUILD_NUMBER}" >> $GITHUB_ENV
142142
git config --global user.email "[email protected]"
143143
git config --global user.name "Linwood CI"
144144
- name: Set next version
@@ -182,12 +182,12 @@ jobs:
182182
- name: Setup git
183183
id: setup
184184
run: |
185-
QUOKKA_VERSION_REGEX="version:\s(.+)\+(.+)"
186-
[[ $(grep -E "${QUOKKA_VERSION_REGEX}" app/pubspec.yaml) =~ ${QUOKKA_VERSION_REGEX} ]]
187-
QUOKKA_VERSION="${BASH_REMATCH[1]}"
188-
echo "QUOKKA_VERSION=${QUOKKA_VERSION}" >> $GITHUB_ENV
189-
QUOKKA_BUILD_NUMBER="${BASH_REMATCH[2]}"
190-
echo "QUOKKA_BUILD_NUMBER=${QUOKKA_BUILD_NUMBER}" >> $GITHUB_ENV
185+
SETONIX_VERSION_REGEX="version:\s(.+)\+(.+)"
186+
[[ $(grep -E "${SETONIX_VERSION_REGEX}" app/pubspec.yaml) =~ ${SETONIX_VERSION_REGEX} ]]
187+
SETONIX_VERSION="${BASH_REMATCH[1]}"
188+
echo "SETONIX_VERSION=${SETONIX_VERSION}" >> $GITHUB_ENV
189+
SETONIX_BUILD_NUMBER="${BASH_REMATCH[2]}"
190+
echo "SETONIX_BUILD_NUMBER=${SETONIX_BUILD_NUMBER}" >> $GITHUB_ENV
191191
git config --global user.email "[email protected]"
192192
git config --global user.name "Linwood CI"
193193
- uses: subosito/[email protected]
@@ -198,7 +198,7 @@ jobs:
198198
git fetch
199199
git pull origin
200200
dart pub get -C tools
201-
dart run tools/set_version.dart --build-number increment ${{ env.QUOKKA_VERSION }} --no-changelog
201+
dart run tools/set_version.dart --build-number increment ${{ env.SETONIX_VERSION }} --no-changelog
202202
git add .
203203
git commit -m "Bump version"
204204
git push origin
@@ -220,38 +220,38 @@ jobs:
220220
- name: Get information
221221
shell: bash
222222
run: |
223-
QUOKKA_VERSION_REGEX="version:\s(.+)\+(.+)"
224-
[[ $(grep -E "${QUOKKA_VERSION_REGEX}" app/pubspec.yaml) =~ ${QUOKKA_VERSION_REGEX} ]]
225-
QUOKKA_VERSION="${BASH_REMATCH[1]}"
226-
echo "QUOKKA_VERSION=${QUOKKA_VERSION}" >> $GITHUB_ENV
227-
QUOKKA_BUILD_NUMBER="${BASH_REMATCH[2]}"
228-
echo "QUOKKA_BUILD_NUMBER=${QUOKKA_BUILD_NUMBER}" >> $GITHUB_ENV
229-
echo 'QUOKKA_CHANGELOG<<EOF' >> $GITHUB_ENV
230-
cat metadata/en-US/changelogs/${QUOKKA_BUILD_NUMBER}.txt >> $GITHUB_ENV
223+
SETONIX_VERSION_REGEX="version:\s(.+)\+(.+)"
224+
[[ $(grep -E "${SETONIX_VERSION_REGEX}" app/pubspec.yaml) =~ ${SETONIX_VERSION_REGEX} ]]
225+
SETONIX_VERSION="${BASH_REMATCH[1]}"
226+
echo "SETONIX_VERSION=${SETONIX_VERSION}" >> $GITHUB_ENV
227+
SETONIX_BUILD_NUMBER="${BASH_REMATCH[2]}"
228+
echo "SETONIX_BUILD_NUMBER=${SETONIX_BUILD_NUMBER}" >> $GITHUB_ENV
229+
echo 'SETONIX_CHANGELOG<<EOF' >> $GITHUB_ENV
230+
cat metadata/en-US/changelogs/${SETONIX_BUILD_NUMBER}.txt >> $GITHUB_ENV
231231
echo '' >> $GITHUB_ENV
232232
echo 'EOF' >> $GITHUB_ENV
233233
- name: Discord Webhook Action
234234
uses: tsickert/[email protected]
235235
if: ${{ github.event.inputs.stable == 'true' || github.ref == 'refs/heads/main' }}
236236
with:
237237
webhook-url: ${{ secrets.WEBHOOK_URL }}
238-
embed-title: ${{ env.QUOKKA_VERSION }}
239-
embed-description: ${{ env.QUOKKA_CHANGELOG }}
240-
embed-url: https://github.com/LinwoodDev/quokka/releases/tag/v${{ env.QUOKKA_VERSION }}
238+
embed-title: ${{ env.SETONIX_VERSION }}
239+
embed-description: ${{ env.SETONIX_CHANGELOG }}
240+
embed-url: https://github.com/LinwoodDev/Setonix/releases/tag/v${{ env.SETONIX_VERSION }}
241241
content: |
242-
Version ${{ env.QUOKKA_VERSION }} released!
243-
Download it here: https://quokka.linwood.dev/downloads
244-
https://github.com/LinwoodDev/quokka/releases/tag/v${{ env.QUOKKA_VERSION }}
242+
Version ${{ env.SETONIX_VERSION }} released!
243+
Download it here: https://setonix.world/downloads
244+
https://github.com/LinwoodDev/Setonix/releases/tag/v${{ env.SETONIX_VERSION }}
245245
- name: Discord Webhook Action
246246
uses: tsickert/[email protected]
247247
if: ${{ github.event.inputs.stable == 'false' && github.ref == 'refs/heads/develop' }}
248248
with:
249249
webhook-url: ${{ secrets.WEBHOOK_URL }}
250-
embed-title: ${{ env.QUOKKA_VERSION }}
251-
embed-description: ${{ env.QUOKKA_CHANGELOG }}
252-
embed-url: https://github.com/LinwoodDev/quokka/releases/tag/v${{ env.QUOKKA_VERSION }}
250+
embed-title: ${{ env.SETONIX_VERSION }}
251+
embed-description: ${{ env.SETONIX_CHANGELOG }}
252+
embed-url: https://github.com/LinwoodDev/Setonix/releases/tag/v${{ env.SETONIX_VERSION }}
253253
content: |
254-
Pre-release version ${{ env.QUOKKA_VERSION }} released!
255-
Download it here: https://quokka.linwood.dev/downloads
254+
Pre-release version ${{ env.SETONIX_VERSION }} released!
255+
Download it here: https://setonix.world/downloads
256256
Please note that this is a pre-release version and is not intended for production use.
257-
Read more about it here: https://quokka.linwood.dev/nightly
257+
Read more about it here: https://setonix.world/nightly

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@ If you have any questions, please contact me at [[email protected]](mailto:con
66

77
There is a matrix server for this project [here](https://linwood.dev/matrix) and a discord server [here](https://discord.linwood.dev).
88

9-
Please follow the [Code of Conduct](https://quokka.linwood.dev/code-of-conduct).
9+
Please follow the [Code of Conduct](https://setonix.world/code-of-conduct).
1010

1111
## Give feedback
1212

1313
The best way to give feedback is to open an issue on GitHub.
1414
Please report any bug you find [here](https://github.com/LinwoodDev/Qeck/issues/new?assignees=CodeDoctorDE&labels=bug%2Ctriage&template=bug_report.yml&title=%5BBug%5D%3A+).
1515

16-
If you have a feature that you would like to see added, please open an issue [here](https://github.com/LinwoodDev/Quokka/issues/new?assignees=CodeDoctorDE&labels=enhancement%2Ctriage&template=feature_request.yml&title=%5BFeature+request%5D%3A+).
16+
If you have a feature that you would like to see added, please open an issue [here](https://github.com/LinwoodDev/Setonix/issues/new?assignees=CodeDoctorDE&labels=enhancement%2Ctriage&template=feature_request.yml&title=%5BFeature+request%5D%3A+).
1717

1818
## Test nightly builds
1919

2020
Nightly builds are not production ready and need to be tested.
2121
Please report any bugs in the github issues section.
2222

23-
Read more about it [here](https://quokka.linwood.dev/nightly).
23+
Read more about it [here](https://setonix.world/nightly).
2424

2525
## Write documentation
2626

0 commit comments

Comments
 (0)