Skip to content

Commit f32ee2d

Browse files
committed
chore: update project metadata and improve build workflow for Meeting Video Transrecorder
1 parent 023d105 commit f32ee2d

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ jobs:
4646
brew install ffmpeg
4747
echo "FFmpeg installed successfully"
4848
49-
- name: Build application
50-
run: |
51-
if [ "${{ matrix.os }}" = "windows-latest" ]; then
52-
npm run build:win
53-
else
54-
npm run build:mac
55-
fi
49+
- name: Build Windows application
50+
if: matrix.os == 'windows-latest'
51+
run: npm run build:win
52+
53+
- name: Build macOS application
54+
if: matrix.os == 'macos-latest'
55+
run: npm run build:mac
5656

5757
- name: Upload Windows artifacts
5858
if: matrix.os == 'windows-latest'

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "meetingvideo-transrecorder",
33
"version": "1.0.0",
4-
"description": "An Electron application with React and TypeScript",
4+
"description": "A powerful desktop screen recording application with AI-powered transcript generation",
55
"main": "./out/main/index.js",
6-
"author": "example.com",
7-
"homepage": "https://electron-vite.org",
6+
"author": "LinuxDevil",
7+
"homepage": "https://github.com/LinuxDevil/MeetingVideo-Transrecorder",
88
"scripts": {
99
"format": "prettier --write .",
1010
"lint": "eslint --cache .",

scripts/release.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@echo off
2-
REM Release script for Screen Recorder (Windows)
2+
REM Release script for Meeting Video Transrecorder (Windows)
33
REM Usage: scripts\release.bat <version>
44
REM Example: scripts\release.bat 1.0.1
55

@@ -40,7 +40,7 @@ echo 2. Create a GitHub release
4040
echo 3. Upload all artifacts to the release
4141
echo.
4242
echo 📋 You can monitor the progress at:
43-
echo https://github.com/your-username/meetingvideo-transrecorder/actions
43+
echo https://github.com/LinuxDevil/MeetingVideo-Transrecorder/actions
4444
echo.
4545
echo 📦 Once complete, users can download from:
46-
echo https://github.com/your-username/meetingvideo-transrecorder/releases
46+
echo https://github.com/LinuxDevil/MeetingVideo-Transrecorder/releases

scripts/release.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Release script for Screen Recorder
3+
# Release script for Meeting Video Transrecorder
44
# Usage: ./scripts/release.sh <version>
55
# Example: ./scripts/release.sh 1.0.1
66

@@ -40,7 +40,7 @@ echo " 2. Create a GitHub release"
4040
echo " 3. Upload all artifacts to the release"
4141
echo ""
4242
echo "📋 You can monitor the progress at:"
43-
echo " https://github.com/your-username/meetingvideo-transrecorder/actions"
43+
echo " https://github.com/LinuxDevil/MeetingVideo-Transrecorder/actions"
4444
echo ""
4545
echo "📦 Once complete, users can download from:"
46-
echo " https://github.com/your-username/meetingvideo-transrecorder/releases"
46+
echo " https://github.com/LinuxDevil/MeetingVideo-Transrecorder/releases"

0 commit comments

Comments
 (0)