From e4bbaef37ac687ac5f67caae9a786e14425c9dfc Mon Sep 17 00:00:00 2001 From: Jake Mileham <104788496+SharkmanZA@users.noreply.github.com> Date: Tue, 1 Aug 2023 12:07:58 +0200 Subject: [PATCH 1/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f0f25929..df5dd2f6 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- +
(AKA. AI Photo Editor)

From d5bf2ac653a558458e6b3ca5efc31f5c38e6f976 Mon Sep 17 00:00:00 2001 From: Jake Mileham <104788496+SharkmanZA@users.noreply.github.com> Date: Tue, 1 Aug 2023 12:10:32 +0200 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df5dd2f6..f0f25929 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- +
(AKA. AI Photo Editor)

From d01c94a6f4c7c05cab0c03c406a232cbec30b6df Mon Sep 17 00:00:00 2001 From: Jake Mileham Date: Tue, 1 Aug 2023 12:24:20 +0200 Subject: [PATCH 3/4] Fix lint issue --- src/frontend/lib/stores/MediaStore.ts | 7 +++++-- src/frontend/types/index.ts | 1 + src/frontend/types/{index.d.ts => temp.ts} | 0 3 files changed, 6 insertions(+), 2 deletions(-) rename src/frontend/types/{index.d.ts => temp.ts} (100%) diff --git a/src/frontend/lib/stores/MediaStore.ts b/src/frontend/lib/stores/MediaStore.ts index 35024eff..406421af 100644 --- a/src/frontend/lib/stores/MediaStore.ts +++ b/src/frontend/lib/stores/MediaStore.ts @@ -49,8 +49,11 @@ class MediaStore { }); } - public async exportMedia(output: MediaOutput){ - return await commandStore.runCommand("blix.exportMedia", {type: output.dataType, data: output.content}); + public async exportMedia(output: MediaOutput) { + return await commandStore.runCommand("blix.exportMedia", { + type: output.dataType, + data: output.content as string, + }); } public get subscribe() { diff --git a/src/frontend/types/index.ts b/src/frontend/types/index.ts index 7fdf07f2..72b5e4bd 100644 --- a/src/frontend/types/index.ts +++ b/src/frontend/types/index.ts @@ -1 +1,2 @@ +export * from "./temp"; export * from "./selection-box"; diff --git a/src/frontend/types/index.d.ts b/src/frontend/types/temp.ts similarity index 100% rename from src/frontend/types/index.d.ts rename to src/frontend/types/temp.ts From 943efec87e06d65ff99568e5c389e85411cf5d75 Mon Sep 17 00:00:00 2001 From: Jake Mileham Date: Tue, 1 Aug 2023 12:33:49 +0200 Subject: [PATCH 4/4] Remove e2e testing --- .github/workflows/coverage.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index b87def6c..7bce330e 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -51,12 +51,6 @@ jobs: with: files: coverage/lcov.info token: ${{ secrets.CODECOV_TOKEN }} - - name: Build app - run: npm run build - - run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- npm run playwright - if: matrix.os == 'ubuntu-latest' - - run: npm run playwright - if: matrix.os != 'ubuntu-latest' end: name: End State ✅✅✅