From d1430ff99ab02885de1551f1395047f4c2db6893 Mon Sep 17 00:00:00 2001 From: Sara Tavares <29093946+stavares843@users.noreply.github.com> Date: Sat, 9 Nov 2024 19:39:50 +0000 Subject: [PATCH 1/3] Update build-release-android.yml --- .github/workflows/build-release-android.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/build-release-android.yml b/.github/workflows/build-release-android.yml index 7107743d4..cac611845 100644 --- a/.github/workflows/build-release-android.yml +++ b/.github/workflows/build-release-android.yml @@ -33,9 +33,6 @@ jobs: - name: Install Frontend Dependencies run: npm install - - name: Update Download Links with New Version - run: node updateVersion.js - - name: Build Web Assets 🔨 run: npm run build From 9b9ed5b4d2818e411079ff1bd92785b8e9d7f344 Mon Sep 17 00:00:00 2001 From: Sara Tavares <29093946+stavares843@users.noreply.github.com> Date: Sat, 9 Nov 2024 19:40:21 +0000 Subject: [PATCH 2/3] Delete updateVersion.js --- updateVersion.js | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 updateVersion.js diff --git a/updateVersion.js b/updateVersion.js deleted file mode 100644 index 8f2a09794..000000000 --- a/updateVersion.js +++ /dev/null @@ -1,25 +0,0 @@ -import fs from 'fs' -import path from 'path' - -// Retrieve the directory name from the current file path -const __dirname = path.dirname(new URL(import.meta.url).pathname) - -const VERSION = process.env.RELEASE_VERSION - -if (!VERSION) { - console.error("RELEASE_VERSION environment variable is not set.") - process.exit(1) -} - -// Path to the file where `DOWNLOAD_LINKS` is defined -const filePath = path.join(__dirname, './src/lib/config.ts') - -// Read file content -let content = fs.readFileSync(filePath, 'utf-8') - -// Update URLs in DOWNLOAD_LINKS -content = content.replace(/\/v\d+\.\d+\.\d+\//g, `/v${VERSION}/`) - -fs.writeFileSync(filePath, content) - -console.log(`Updated DOWNLOAD_LINKS version to v${VERSION}`) From bc39eb166c63aafdd0bf50adabefddce98ad5ca0 Mon Sep 17 00:00:00 2001 From: Sara Tavares <29093946+stavares843@users.noreply.github.com> Date: Sat, 9 Nov 2024 19:41:29 +0000 Subject: [PATCH 3/3] Update TODO.md --- TODO.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/TODO.md b/TODO.md index 0ebe471e7..a3345893e 100644 --- a/TODO.md +++ b/TODO.md @@ -27,7 +27,7 @@ - [x] Chat Preview - [x] Color Swatch - [ ] Verification Code -- [ ] Volume Slider (Horizontal & Vertical) +- [x] Volume Slider (Horizontal & Vertical) - [x] Wallet - [x] Payment - [ ] Payment Receipt @@ -55,11 +55,11 @@ ## Other -- [ ] Group Chat UI - - [ ] Edit Group +- [x] Group Chat UI + - [x] Edit Group - [ ] Edit Users - - [ ] Permissions Modal + - [x] Permissions Modal - [x] Group Chat Profile Picture - - [ ] Create Group Modal + - [x] Create Group Modal - [x] Chat Preview -- [ ] Emoji Picker +- [x] Emoji Picker