-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,11 +10,15 @@ jobs: | |
with: | ||
submodules: true | ||
fetch-tags: true | ||
- name: Get Latest Tag | ||
uses: WyriHaximus/[email protected] | ||
with: | ||
prefix: "4000" | ||
- name: Checkout submodule to v4000 | ||
run: | | ||
cd kaplay | ||
git fetch --tags | ||
git checkout 4000.0.0-alpha.13 | ||
git checkout ${{ steps.previoustag.outputs.tag }} | ||
- name: Setup PNPM | ||
uses: pnpm/action-setup@v4 | ||
- name: Deploy app | ||
|
@@ -33,11 +37,15 @@ jobs: | |
with: | ||
submodules: true | ||
fetch-tags: true | ||
- name: Get Latest Tag | ||
uses: WyriHaximus/[email protected] | ||
with: | ||
prefix: "3000" | ||
- name: Checkout submodule to v3001 | ||
run: | | ||
cd kaplay | ||
git fetch --tags | ||
git checkout 3001.0.5 | ||
git checkout ${{ steps.previoustag.outputs.tag }} | ||
- name: Setup PNPM | ||
uses: pnpm/action-setup@v4 | ||
- name: Deploy app | ||
|
Submodule kaplay
updated
18 files
+1 β1 | .vscode/snippets.code-snippets | |
+47 β0 | CHANGELOG.md | |
+2 β28 | src/app/app.ts | |
+6 β0 | src/components/draw/text.ts | |
+52 β44 | src/events/eventMap.ts | |
+0 β1 | src/events/events.ts | |
+22 β11 | src/events/globalEvents.ts | |
+2 β0 | src/events/index.ts | |
+0 β2 | src/game/events/index.ts | |
+2 β2 | src/game/game.ts | |
+1 β1 | src/game/index.ts | |
+12 β0 | src/gfx/draw/drawText.ts | |
+10 β1 | src/gfx/formatText.ts | |
+3 β1 | src/kaplay.ts | |
+27 β3 | src/types.ts | |
+1 β1 | src/utils/index.ts | |
+43 β0 | tests/playtests/styleOverride.js | |
+24 β0 | tests/playtests/textwrap.js |