Skip to content

Commit 2cfb411

Browse files
committed
chore: rename repository to transrecorder-screen-recorder-local-ai-transcripts
1 parent 19d76e8 commit 2cfb411

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

dev-app-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
provider: generic
22
url: https://example.com/auto-updates
3-
updaterCacheDirName: meetingvideo-transrecorder-updater
3+
updaterCacheDirName: transrecorder-screen-recorder-local-ai-transcripts-updater

electron-builder.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
appId: com.linuxdevil.meetingvideo-transrecorder
2-
productName: meetingvideo-transrecorder
1+
appId: com.linuxdevil.transrecorder-screen-recorder-local-ai-transcripts
2+
productName: transrecorder-screen-recorder-local-ai-transcripts
33
directories:
44
buildResources: build
55
icon: resources/icon.png
@@ -28,7 +28,7 @@ extraResources:
2828
asarUnpack:
2929
- resources/**
3030
win:
31-
executableName: meetingvideo-transrecorder
31+
executableName: transrecorder-screen-recorder-local-ai-transcripts
3232
icon: resources/icon.png
3333
extraResources:
3434
- from: 'ffmpeg-bin-windows'

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 Meeting Video Transrecorder (Windows)
2+
REM Release script for ScreenRec AI – Local Screen Recorder with Transcription & Summarization (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/LinuxDevil/MeetingVideo-Transrecorder/actions
43+
echo https://github.com/LinuxDevil/transrecorder-screen-recorder-local-ai-transcripts/actions
4444
echo.
4545
echo 📦 Once complete, users can download from:
46-
echo https://github.com/LinuxDevil/MeetingVideo-Transrecorder/releases
46+
echo https://github.com/LinuxDevil/transrecorder-screen-recorder-local-ai-transcripts/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 Meeting Video Transrecorder
3+
# Release script for ScreenRec AI – Local Screen Recorder with Transcription & Summarization
44
# Usage: ./scripts/release.sh <version>
55
# Example: ./scripts/release.sh 1.0.1
66

@@ -37,7 +37,7 @@ echo " 2. Create a GitHub release"
3737
echo " 3. Upload all artifacts to the release"
3838
echo ""
3939
echo "📋 You can monitor the progress at:"
40-
echo " https://github.com/LinuxDevil/MeetingVideo-Transrecorder/actions"
40+
echo " https://github.com/LinuxDevil/transrecorder-screen-recorder-local-ai-transcripts/actions"
4141
echo ""
4242
echo "📦 Once complete, users can download from:"
43-
echo " https://github.com/LinuxDevil/MeetingVideo-Transrecorder/releases"
43+
echo " https://github.com/LinuxDevil/transrecorder-screen-recorder-local-ai-transcripts/releases"

setup-binaries.sh

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

3-
# Setup script for MeetingVideo-Transrecorder
3+
# Setup script for transrecorder-screen-recorder-local-ai-transcripts
44
# Downloads and configures Python runtime and FFmpeg for macOS and Windows
55

66
set -e # Exit on any error
77

8-
echo "🚀 Setting up MeetingVideo-Transrecorder binaries..."
8+
echo "🚀 Setting up transrecorder-screen-recorder-local-ai-transcripts binaries..."
99
echo "================================================="
1010

1111
# Colors for output
@@ -45,7 +45,7 @@ print_status "Detected platform: $PLATFORM"
4545

4646
setup_macos() {
4747
print_status "Setting up macOS binaries..."
48-
48+
4949
if [ ! -d "python-runtime" ]; then
5050
print_status "Creating Python virtual environment for macOS..."
5151
python3 -m venv python-runtime
@@ -57,7 +57,7 @@ setup_macos() {
5757
else
5858
print_warning "macOS Python runtime already exists, skipping..."
5959
fi
60-
60+
6161
if [ ! -d "ffmpeg-bin" ]; then
6262
print_status "Downloading FFmpeg for macOS..."
6363
mkdir -p ffmpeg-bin
@@ -74,10 +74,10 @@ setup_macos() {
7474

7575
setup_windows() {
7676
print_status "Setting up Windows binaries..."
77-
77+
7878
# For Windows, we only need FFmpeg - Python will be provided by the system/CI
7979
print_status "Windows builds use system Python - only setting up FFmpeg..."
80-
80+
8181
if [ ! -d "ffmpeg-bin-windows" ]; then
8282
print_status "Downloading FFmpeg for Windows..."
8383
mkdir -p ffmpeg-bin-windows
@@ -89,14 +89,14 @@ setup_windows() {
8989
else
9090
print_warning "Windows FFmpeg already exists, skipping..."
9191
fi
92-
92+
9393
print_success "Windows setup complete - uses system Python + bundled FFmpeg"
9494
print_warning "Note: Windows builds rely on system Python and pip install requirements.txt"
9595
}
9696

9797
setup_linux() {
9898
print_status "Setting up Linux binaries..."
99-
99+
100100
if [ ! -d "python-runtime" ]; then
101101
print_status "Creating Python virtual environment for Linux..."
102102
python3 -m venv python-runtime
@@ -108,7 +108,7 @@ setup_linux() {
108108
else
109109
print_warning "Linux Python runtime already exists, skipping..."
110110
fi
111-
111+
112112
if [ ! -d "ffmpeg-bin" ]; then
113113
print_status "Downloading static FFmpeg for Linux..."
114114
mkdir -p ffmpeg-bin

0 commit comments

Comments
 (0)