From 95c907f5385927894b8b705ed73fc183626ddc26 Mon Sep 17 00:00:00 2001 From: Utku Bakir <74243531+utkubakir@users.noreply.github.com> Date: Wed, 17 Apr 2024 10:49:48 -0400 Subject: [PATCH 1/2] replace appimage with deb --- apps/landing/src/app/Downloads/Platform.tsx | 2 +- .../app/api/releases/desktop/[version]/[target]/[arch]/route.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/landing/src/app/Downloads/Platform.tsx b/apps/landing/src/app/Downloads/Platform.tsx index 127d63caac4f..3f76223ca16f 100644 --- a/apps/landing/src/app/Downloads/Platform.tsx +++ b/apps/landing/src/app/Downloads/Platform.tsx @@ -36,7 +36,7 @@ export const platforms = { name: 'Linux', os: 'linux', icon: LinuxLogo, - version: 'AppImage', + version: 'deb', links: [{ name: 'x86_64', arch: 'x86_64' }] }, docker: { name: 'Docker', icon: Docker }, diff --git a/apps/landing/src/app/api/releases/desktop/[version]/[target]/[arch]/route.ts b/apps/landing/src/app/api/releases/desktop/[version]/[target]/[arch]/route.ts index 60fbc61d014d..dbe8a07a7cad 100644 --- a/apps/landing/src/app/api/releases/desktop/[version]/[target]/[arch]/route.ts +++ b/apps/landing/src/app/api/releases/desktop/[version]/[target]/[arch]/route.ts @@ -7,7 +7,7 @@ const tauriTarget = z.union([z.literal('linux'), z.literal('windows'), z.literal const tauriArch = z.union([z.literal('x86_64'), z.literal('aarch64')]); const extensions = { - linux: 'AppImage', + linux: 'deb', windows: 'msi', darwin: 'dmg' } as const satisfies Record, string>; From 8b1e9693cbe05fc14916aa17f743427cc7915d17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADtor=20Vasconcellos?= Date: Wed, 17 Apr 2024 17:48:56 -0300 Subject: [PATCH 2/2] Update pnpm to 9.0.2 and lock CI version --- .github/actions/setup-pnpm/action.yml | 2 +- CONTRIBUTING.md | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup-pnpm/action.yml b/.github/actions/setup-pnpm/action.yml index eea0964e22da..48eabd7678aa 100644 --- a/.github/actions/setup-pnpm/action.yml +++ b/.github/actions/setup-pnpm/action.yml @@ -11,7 +11,7 @@ runs: - name: Install pnpm uses: pnpm/action-setup@v3 with: - version: 9.x.x + version: 9.0.2 - name: Install Node.js uses: actions/setup-node@v4 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e33ce80e992e..23a27b2da97a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -91,7 +91,7 @@ If you encounter any issues, ensure that you are using the following versions of - Rust version: **1.75** - Node version: **18.18** -- Pnpm version: **9.0.1** +- Pnpm version: **9.0.2** After cleaning out your build artifacts using `pnpm clean`, `git clean`, or `cargo clean`, it is necessary to re-run the `setup-system` script. diff --git a/package.json b/package.json index 3405ef2f9852..90a6c5ecb9cf 100644 --- a/package.json +++ b/package.json @@ -67,5 +67,5 @@ "eslintConfig": { "root": true }, - "packageManager": "pnpm@9.0.1" + "packageManager": "pnpm@9.0.2" }