File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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'
Original file line number Diff line number Diff line change 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 ." ,
Original file line number Diff line number Diff line change 11@ echo off
2- REM Release script for Screen Recorder (Windows)
2+ REM Release script for Meeting Video Transrecorder (Windows)
33REM Usage: scripts\release.bat < version>
44REM Example: scripts\release.bat 1.0.1
55
@@ -40,7 +40,7 @@ echo 2. Create a GitHub release
4040echo 3. Upload all artifacts to the release
4141echo .
4242echo 📋 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
4444echo .
4545echo 📦 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
Original file line number Diff line number Diff line change 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"
4040echo " 3. Upload all artifacts to the release"
4141echo " "
4242echo " 📋 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"
4444echo " "
4545echo " 📦 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"
You can’t perform that action at this time.
0 commit comments