Skip to content

Commit

Permalink
Rename to quokka
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeDoctorDE committed May 23, 2024
1 parent 8309afb commit 5398283
Show file tree
Hide file tree
Showing 126 changed files with 654 additions and 10,173 deletions.
180 changes: 90 additions & 90 deletions .github/workflows/build.yml

Large diffs are not rendered by default.

114 changes: 57 additions & 57 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,22 @@ jobs:
- name: Setup git
id: setup
run: |
QECK_VERSION_REGEX="version:\s(.+)\+(.+)"
[[ $(grep -E "${QECK_VERSION_REGEX}" app/pubspec.yaml) =~ ${QECK_VERSION_REGEX} ]]
QECK_VERSION="${BASH_REMATCH[1]}"
echo "QECK_VERSION=${QECK_VERSION}" >> $GITHUB_ENV
QECK_BUILD_NUMBER="${BASH_REMATCH[2]}"
echo "QECK_BUILD_NUMBER=${QECK_BUILD_NUMBER}" >> $GITHUB_ENV
QUOKKA_VERSION_REGEX="version:\s(.+)\+(.+)"
[[ $(grep -E "${QUOKKA_VERSION_REGEX}" app/pubspec.yaml) =~ ${QUOKKA_VERSION_REGEX} ]]
QUOKKA_VERSION="${BASH_REMATCH[1]}"
echo "QUOKKA_VERSION=${QUOKKA_VERSION}" >> $GITHUB_ENV
QUOKKA_BUILD_NUMBER="${BASH_REMATCH[2]}"
echo "QUOKKA_BUILD_NUMBER=${QUOKKA_BUILD_NUMBER}" >> $GITHUB_ENV
git config --global user.email "[email protected]"
git config --global user.name "Linwood CI"
- name: Update changelog
run: |
git fetch
git pull origin
dart pub get -C tools
dart run tools/set_version.dart --build-number keep ${{ env.QECK_VERSION }} --changelog
dart run tools/set_version.dart --build-number keep ${{ env.QUOKKA_VERSION }} --changelog
git add .
git commit -m "Add changelog of v${{ env.QECK_VERSION }}"
git commit -m "Add changelog of v${{ env.QUOKKA_VERSION }}"
git push origin
- name: Merge in develop
if: ${{ github.ref == 'refs/heads/main' }}
Expand All @@ -62,8 +62,8 @@ jobs:
needs:
- update-changelog
outputs:
version: ${{ steps.setup.outputs.QECK_VERSION }}
build_number: ${{ steps.setup.outputs.QECK_BUILD_NUMBER }}
version: ${{ steps.setup.outputs.QUOKKA_VERSION }}
build_number: ${{ steps.setup.outputs.QUOKKA_BUILD_NUMBER }}
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -82,21 +82,21 @@ jobs:
id: setup
shell: bash
run: |
QECK_VERSION_REGEX="version:\s(.+)\+(.+)"
[[ $(grep -E "${QECK_VERSION_REGEX}" app/pubspec.yaml) =~ ${QECK_VERSION_REGEX} ]]
QECK_VERSION="${BASH_REMATCH[1]}"
echo "QECK_VERSION=${QECK_VERSION}" >> $GITHUB_ENV
echo "QECK_VERSION=${QECK_VERSION}" >> $GITHUB_OUTPUT
QECK_BUILD_NUMBER="${BASH_REMATCH[2]}"
echo "QECK_BUILD_NUMBER=${QECK_BUILD_NUMBER}" >> $GITHUB_ENV
echo "QECK_BUILD_NUMBER=${QECK_BUILD_NUMBER}" >> $GITHUB_OUTPUT
QUOKKA_VERSION_REGEX="version:\s(.+)\+(.+)"
[[ $(grep -E "${QUOKKA_VERSION_REGEX}" app/pubspec.yaml) =~ ${QUOKKA_VERSION_REGEX} ]]
QUOKKA_VERSION="${BASH_REMATCH[1]}"
echo "QUOKKA_VERSION=${QUOKKA_VERSION}" >> $GITHUB_ENV
echo "QUOKKA_VERSION=${QUOKKA_VERSION}" >> $GITHUB_OUTPUT
QUOKKA_BUILD_NUMBER="${BASH_REMATCH[2]}"
echo "QUOKKA_BUILD_NUMBER=${QUOKKA_BUILD_NUMBER}" >> $GITHUB_ENV
echo "QUOKKA_BUILD_NUMBER=${QUOKKA_BUILD_NUMBER}" >> $GITHUB_OUTPUT
git config --global user.email "[email protected]"
git config --global user.name "Linwood CI"
- name: Create tag
run: |
QECK_VERSION="${{ env.QECK_VERSION }}"
git tag -fa v${{ env.QECK_VERSION }} -m "Release ${QECK_VERSION}"
git push origin v${QECK_VERSION} -f
QUOKKA_VERSION="${{ env.QUOKKA_VERSION }}"
git tag -fa v${{ env.QUOKKA_VERSION }} -m "Release ${QUOKKA_VERSION}"
git push origin v${QUOKKA_VERSION} -f
- uses: actions/checkout@v4
with:
token: ${{ secrets.CI_PAT }}
Expand All @@ -105,10 +105,10 @@ jobs:
uses: softprops/action-gh-release@v2
with:
prerelease: ${{ github.event.inputs.stable != 'true' }}
tag_name: v${{ env.QECK_VERSION }}
name: v${{ env.QECK_VERSION }}
tag_name: v${{ env.QUOKKA_VERSION }}
name: v${{ env.QUOKKA_VERSION }}
token: ${{ secrets.CI_PAT }}
body_path: fastlane/metadata/android/en-US/changelogs/${{ env.QECK_BUILD_NUMBER }}.txt
body_path: fastlane/metadata/android/en-US/changelogs/${{ env.QUOKKA_BUILD_NUMBER }}.txt
- name: Retag stable
if: ${{ github.event.inputs.stable == 'true' || github.ref == 'refs/heads/main' }}
run: |
Expand Down Expand Up @@ -148,12 +148,12 @@ jobs:
- name: Setup git
id: setup
run: |
QECK_VERSION_REGEX="version:\s(.+)\+(.+)"
[[ $(grep -E "${QECK_VERSION_REGEX}" app/pubspec.yaml) =~ ${QECK_VERSION_REGEX} ]]
QECK_VERSION="${BASH_REMATCH[1]}"
echo "QECK_VERSION=${QECK_VERSION}" >> $GITHUB_ENV
QECK_BUILD_NUMBER="${BASH_REMATCH[2]}"
echo "QECK_BUILD_NUMBER=${QECK_BUILD_NUMBER}" >> $GITHUB_ENV
QUOKKA_VERSION_REGEX="version:\s(.+)\+(.+)"
[[ $(grep -E "${QUOKKA_VERSION_REGEX}" app/pubspec.yaml) =~ ${QUOKKA_VERSION_REGEX} ]]
QUOKKA_VERSION="${BASH_REMATCH[1]}"
echo "QUOKKA_VERSION=${QUOKKA_VERSION}" >> $GITHUB_ENV
QUOKKA_BUILD_NUMBER="${BASH_REMATCH[2]}"
echo "QUOKKA_BUILD_NUMBER=${QUOKKA_BUILD_NUMBER}" >> $GITHUB_ENV
git config --global user.email "[email protected]"
git config --global user.name "Linwood CI"
- name: Set next version
Expand Down Expand Up @@ -197,12 +197,12 @@ jobs:
- name: Setup git
id: setup
run: |
QECK_VERSION_REGEX="version:\s(.+)\+(.+)"
[[ $(grep -E "${QECK_VERSION_REGEX}" app/pubspec.yaml) =~ ${QECK_VERSION_REGEX} ]]
QECK_VERSION="${BASH_REMATCH[1]}"
echo "QECK_VERSION=${QECK_VERSION}" >> $GITHUB_ENV
QECK_BUILD_NUMBER="${BASH_REMATCH[2]}"
echo "QECK_BUILD_NUMBER=${QECK_BUILD_NUMBER}" >> $GITHUB_ENV
QUOKKA_VERSION_REGEX="version:\s(.+)\+(.+)"
[[ $(grep -E "${QUOKKA_VERSION_REGEX}" app/pubspec.yaml) =~ ${QUOKKA_VERSION_REGEX} ]]
QUOKKA_VERSION="${BASH_REMATCH[1]}"
echo "QUOKKA_VERSION=${QUOKKA_VERSION}" >> $GITHUB_ENV
QUOKKA_BUILD_NUMBER="${BASH_REMATCH[2]}"
echo "QUOKKA_BUILD_NUMBER=${QUOKKA_BUILD_NUMBER}" >> $GITHUB_ENV
git config --global user.email "[email protected]"
git config --global user.name "Linwood CI"
- name: Get flutter version
Expand All @@ -224,7 +224,7 @@ jobs:
git fetch
git pull origin
dart pub get -C tools
dart run tools/set_version.dart --build-number increment ${{ env.QECK_VERSION }} --no-changelog
dart run tools/set_version.dart --build-number increment ${{ env.QUOKKA_VERSION }} --no-changelog
git add .
git commit -m "Bump version"
git push origin
Expand All @@ -246,38 +246,38 @@ jobs:
- name: Get information
shell: bash
run: |
QECK_VERSION_REGEX="version:\s(.+)\+(.+)"
[[ $(grep -E "${QECK_VERSION_REGEX}" app/pubspec.yaml) =~ ${QECK_VERSION_REGEX} ]]
QECK_VERSION="${BASH_REMATCH[1]}"
echo "QECK_VERSION=${QECK_VERSION}" >> $GITHUB_ENV
QECK_BUILD_NUMBER="${BASH_REMATCH[2]}"
echo "QECK_BUILD_NUMBER=${QECK_BUILD_NUMBER}" >> $GITHUB_ENV
echo 'QECK_CHANGELOG<<EOF' >> $GITHUB_ENV
cat fastlane/metadata/android/en-US/changelogs/${QECK_BUILD_NUMBER}.txt >> $GITHUB_ENV
QUOKKA_VERSION_REGEX="version:\s(.+)\+(.+)"
[[ $(grep -E "${QUOKKA_VERSION_REGEX}" app/pubspec.yaml) =~ ${QUOKKA_VERSION_REGEX} ]]
QUOKKA_VERSION="${BASH_REMATCH[1]}"
echo "QUOKKA_VERSION=${QUOKKA_VERSION}" >> $GITHUB_ENV
QUOKKA_BUILD_NUMBER="${BASH_REMATCH[2]}"
echo "QUOKKA_BUILD_NUMBER=${QUOKKA_BUILD_NUMBER}" >> $GITHUB_ENV
echo 'QUOKKA_CHANGELOG<<EOF' >> $GITHUB_ENV
cat fastlane/metadata/android/en-US/changelogs/${QUOKKA_BUILD_NUMBER}.txt >> $GITHUB_ENV
echo '' >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- name: Discord Webhook Action
uses: tsickert/[email protected]
if: ${{ github.event.inputs.stable == 'true' || github.ref == 'refs/heads/main' }}
with:
webhook-url: ${{ secrets.WEBHOOK_URL }}
embed-title: ${{ env.QECK_VERSION }}
embed-description: ${{ env.QECK_CHANGELOG }}
embed-url: https://github.com/LinwoodDev/qeck/releases/tag/v${{ env.QECK_VERSION }}
embed-title: ${{ env.QUOKKA_VERSION }}
embed-description: ${{ env.QUOKKA_CHANGELOG }}
embed-url: https://github.com/LinwoodDev/quokka/releases/tag/v${{ env.QUOKKA_VERSION }}
content: |
Version ${{ env.QECK_VERSION }} released!
Download it here: https://qeck.linwood.dev/downloads
https://github.com/LinwoodDev/qeck/releases/tag/v${{ env.QECK_VERSION }}
Version ${{ env.QUOKKA_VERSION }} released!
Download it here: https://quokka.linwood.dev/downloads
https://github.com/LinwoodDev/quokka/releases/tag/v${{ env.QUOKKA_VERSION }}
- name: Discord Webhook Action
uses: tsickert/[email protected]
if: ${{ github.event.inputs.stable == 'false' && github.ref == 'refs/heads/develop' }}
with:
webhook-url: ${{ secrets.WEBHOOK_URL }}
embed-title: ${{ env.QECK_VERSION }}
embed-description: ${{ env.QECK_CHANGELOG }}
embed-url: https://github.com/LinwoodDev/qeck/releases/tag/v${{ env.QECK_VERSION }}
embed-title: ${{ env.QUOKKA_VERSION }}
embed-description: ${{ env.QUOKKA_CHANGELOG }}
embed-url: https://github.com/LinwoodDev/quokka/releases/tag/v${{ env.QUOKKA_VERSION }}
content: |
Pre-release version ${{ env.QECK_VERSION }} released!
Download it here: https://qeck.linwood.dev/downloads
Pre-release version ${{ env.QUOKKA_VERSION }} released!
Download it here: https://quokka.linwood.dev/downloads
Please note that this is a pre-release version and is not intended for production use.
Read more about it here: https://qeck.linwood.dev/nightly
Read more about it here: https://quokka.linwood.dev/nightly
2 changes: 1 addition & 1 deletion FLUTTER_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.19.6
3.22.1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<img src="https://www.linwood.dev/logos/logo.png" width="350px" />

# Qeck
# Quokka

> WIP: 🃏 Play games everywhere you like 🃏
Expand Down
30 changes: 15 additions & 15 deletions app/.metadata
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# This file should be version controlled and should not be manually edited.

version:
revision: "300451adae589accbece3490f4396f10bdf15e6e"
revision: "5dcb86f68f239346676ceb1ed1ea385bd215fba1"
channel: "stable"

project_type: app
Expand All @@ -13,26 +13,26 @@ project_type: app
migration:
platforms:
- platform: root
create_revision: 300451adae589accbece3490f4396f10bdf15e6e
base_revision: 300451adae589accbece3490f4396f10bdf15e6e
create_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
base_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
- platform: android
create_revision: 300451adae589accbece3490f4396f10bdf15e6e
base_revision: 300451adae589accbece3490f4396f10bdf15e6e
create_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
base_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
- platform: ios
create_revision: 300451adae589accbece3490f4396f10bdf15e6e
base_revision: 300451adae589accbece3490f4396f10bdf15e6e
create_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
base_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
- platform: linux
create_revision: 300451adae589accbece3490f4396f10bdf15e6e
base_revision: 300451adae589accbece3490f4396f10bdf15e6e
create_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
base_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
- platform: macos
create_revision: 300451adae589accbece3490f4396f10bdf15e6e
base_revision: 300451adae589accbece3490f4396f10bdf15e6e
create_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
base_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
- platform: web
create_revision: 300451adae589accbece3490f4396f10bdf15e6e
base_revision: 300451adae589accbece3490f4396f10bdf15e6e
create_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
base_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
- platform: windows
create_revision: 300451adae589accbece3490f4396f10bdf15e6e
base_revision: 300451adae589accbece3490f4396f10bdf15e6e
create_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
base_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1

# User provided section

Expand Down
6 changes: 3 additions & 3 deletions app/AppImageBuilder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ script:
AppDir:
path: ./AppDir
app_info:
id: dev.linwood.qeck
name: Linwood Qeck
id: dev.linwood.quokka
name: Linwood Quokka
version: 1.3.0-rc.0
exec: qeck
exec: quokka
exec_args: $@
apt:
arch: amd64
Expand Down
6 changes: 3 additions & 3 deletions app/DmgSetup.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"title": "Linwood Qeck",
"icon": "build/macos/Build/Products/Release/qeck.app/Contents/Resources/AppIcon.icns",
"title": "Linwood Quokka",
"icon": "build/macos/Build/Products/Release/quokka.app/Contents/Resources/AppIcon.icns",
"background-color": "#1b1b1d",
"contents": [
{ "x": 448, "y": 344, "type": "link", "path": "/Applications" },
{ "x": 192, "y": 344, "type": "file", "path": "build/macos/Build/Products/Release/qeck.app" }
{ "x": 192, "y": 344, "type": "file", "path": "build/macos/Build/Products/Release/quokka.app" }
]
}
8 changes: 4 additions & 4 deletions app/QeckSetup.iss → app/QuokkaSetup.iss
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Qeck"
#define MyAppName "Quokka"
#ifndef MyAppVersion
#define MyAppVersion "1.0"
#endif
#define MyAppPublisher "Linwood"
#define MyAppURL "https://www.linwood.dev"
#define MyAppExeName "qeck.exe"
#define MyAppExeName "quokka.exe"
#define BaseDirRelease "build\windows\x64\runner\Release"
#define RunnerSourceDir "windows\runner"

Expand All @@ -31,7 +31,7 @@ LicenseFile=..\LICENSE
PrivilegesRequired=lowest
PrivilegesRequiredOverridesAllowed=dialog
OutputDir=build\windows\x64
OutputBaseFilename=linwood-qeck-windows-setup
OutputBaseFilename=linwood-quokka-windows-setup
SetupIconFile={#RunnerSourceDir}\resources\app_icon.ico
UninstallDisplayIcon={app}\{#MyAppExeName}
Compression=lzma
Expand All @@ -57,7 +57,7 @@ Source: "{#BaseDirRelease}\*"; DestDir: "{app}"; Flags: ignoreversion recursesub

[Icons]
Name: "{group}\Visit Website"; Filename: "https://www.linwood.dev/"
Name: "{group}\Qeck Documentation"; Filename: "https://qeck.linwood.dev/"
Name: "{group}\Quokka Documentation"; Filename: "https://quokka.linwood.dev/"
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon

Expand Down
2 changes: 1 addition & 1 deletion app/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Linwood Qeck
# Linwood Quokka

Read more about it [here](../README.md).
Loading

0 comments on commit 5398283

Please sign in to comment.