Skip to content

Commit 0549848

Browse files
committed
initial release
1 parent f1f8957 commit 0549848

File tree

12 files changed

+28
-28
lines changed

12 files changed

+28
-28
lines changed

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 FitGirl Updater
3+
Copyright (c) 2025 FitGirl Downloader
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# FitGirl Updater
1+
# FitGirl Downloader
22

33
A self hosted web application to track and manage FitGirl game releases with automatic scrapping from 1337x.
44

5-
![FitGirl Updater](docs/fitgirl-downloader.webp)
5+
![FitGirl Downloader](docs/fitgirl-downloader.webp)
66

77
## Why?
88

@@ -255,4 +255,4 @@ This application is for video game preservation purposes. Please respect copyrig
255255

256256
---
257257

258-
**Made with ❤️ for the gaming community**
258+
**Made with ❤️ for the gaming community**

backend/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33
"""
4-
Backend module for FitGirl Updater
4+
Backend module for FitGirl Downloader
55
Contains all the core functionality for the application
66
"""
77

backend/settings_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33
"""
4-
Configuration manager for FitGirl Updater
4+
Configuration manager for FitGirl Downloader
55
Handles loading, saving, and validating configurations
66
"""
77

docker/entrypoint.sh

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

3-
# FitGirl Updater Docker Entrypoint Script
3+
# FitGirl Downloader Docker Entrypoint Script
44

5-
echo "🐳 Starting FitGirl Updater Docker Container..."
5+
echo "🐳 Starting FitGirl Downloader Docker Container..."
66

77
# Set display for headless Chrome
88
export DISPLAY=:99
@@ -25,7 +25,7 @@ trap cleanup SIGTERM SIGINT
2525
sleep 2
2626

2727
echo "✅ Virtual display started"
28-
echo "🚀 Starting FitGirl Updater Web Application..."
28+
echo "🚀 Starting FitGirl Downloader Web Application..."
2929
echo "📱 Application will be available at: http://localhost:2121"
3030
echo "⏹️ Use Ctrl+C or docker stop to shutdown"
3131
echo ""

docs/API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# API Documentation
22

3-
This document describes the REST API endpoints provided by the FitGirl Updater application.
3+
This document describes the REST API endpoints provided by the FitGirl Downloader application.
44

55
## Base URL
66

docs/DOCKER_INSTRUCTIONS.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FITGIRL UPDATER - DOCKER SETUP INSTRUCTIONS
1+
FITGIRL DOWNLOADER - DOCKER SETUP INSTRUCTIONS
22
===============================================
33

44
FILES CREATED:

docs/INSTALLATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Installation Guide
22

3-
This guide provides detailed instructions for installing and setting up the FitGirl Updater application.
3+
This guide provides detailed instructions for installing and setting up the FitGirl Downloader application.
44

55
## Prerequisites
66

scripts/docker-scripts.ps1

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# FitGirl Updater Docker Management Script for Windows PowerShell
1+
# FitGirl Downloader Docker Management Script for Windows PowerShell
22

33
param(
44
[Parameter(Mandatory=$false)]
@@ -28,7 +28,7 @@ function Write-Error-Custom {
2828

2929
# Function to build the Docker image
3030
function Build-Image {
31-
Write-Status "Building FitGirl Updater Docker image..."
31+
Write-Status "Building FitGirl Downloader Docker image..."
3232
docker-compose build
3333
if ($LASTEXITCODE -eq 0) {
3434
Write-Success "Docker image built successfully!"
@@ -40,7 +40,7 @@ function Build-Image {
4040

4141
# Function to start the container
4242
function Start-Container {
43-
Write-Status "Starting FitGirl Updater container..."
43+
Write-Status "Starting FitGirl Downloader container..."
4444
docker-compose up -d
4545
if ($LASTEXITCODE -eq 0) {
4646
Write-Success "Container started successfully!"
@@ -53,7 +53,7 @@ function Start-Container {
5353

5454
# Function to stop the container
5555
function Stop-Container {
56-
Write-Status "Stopping FitGirl Updater container..."
56+
Write-Status "Stopping FitGirl Downloader container..."
5757
docker-compose down
5858
if ($LASTEXITCODE -eq 0) {
5959
Write-Success "Container stopped successfully!"
@@ -65,7 +65,7 @@ function Stop-Container {
6565

6666
# Function to restart the container
6767
function Restart-Container {
68-
Write-Status "Restarting FitGirl Updater container..."
68+
Write-Status "Restarting FitGirl Downloader container..."
6969
Stop-Container
7070
Start-Container
7171
}
@@ -109,7 +109,7 @@ function Rebuild-All {
109109

110110
# Help function
111111
function Show-Help {
112-
Write-Host "FitGirl Updater Docker Management Script for Windows" -ForegroundColor Cyan
112+
Write-Host "FitGirl Downloader Docker Management Script for Windows" -ForegroundColor Cyan
113113
Write-Host ""
114114
Write-Host "Usage: .\docker-scripts.ps1 [COMMAND]" -ForegroundColor White
115115
Write-Host ""

scripts/docker-scripts.sh

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

3-
# FitGirl Updater Docker Management Script
3+
# FitGirl Downloader Docker Management Script
44

55
# Colors for output
66
RED='\033[0;31m'
@@ -28,7 +28,7 @@ print_error() {
2828

2929
# Function to build the Docker image
3030
build() {
31-
print_status "Building FitGirl Updater Docker image..."
31+
print_status "Building FitGirl Downloader Docker image..."
3232
docker-compose build
3333
if [ $? -eq 0 ]; then
3434
print_success "Docker image built successfully!"
@@ -40,7 +40,7 @@ build() {
4040

4141
# Function to start the container
4242
start() {
43-
print_status "Starting FitGirl Updater container..."
43+
print_status "Starting FitGirl Downloader container..."
4444
docker-compose up -d
4545
if [ $? -eq 0 ]; then
4646
print_success "Container started successfully!"
@@ -53,7 +53,7 @@ start() {
5353

5454
# Function to stop the container
5555
stop() {
56-
print_status "Stopping FitGirl Updater container..."
56+
print_status "Stopping FitGirl Downloader container..."
5757
docker-compose down
5858
if [ $? -eq 0 ]; then
5959
print_success "Container stopped successfully!"
@@ -65,7 +65,7 @@ stop() {
6565

6666
# Function to restart the container
6767
restart() {
68-
print_status "Restarting FitGirl Updater container..."
68+
print_status "Restarting FitGirl Downloader container..."
6969
stop
7070
start
7171
}
@@ -109,7 +109,7 @@ rebuild() {
109109

110110
# Help function
111111
show_help() {
112-
echo "FitGirl Updater Docker Management Script"
112+
echo "FitGirl Downloader Docker Management Script"
113113
echo ""
114114
echo "Usage: $0 [COMMAND]"
115115
echo ""

0 commit comments

Comments
 (0)