Skip to content

Commit c1f7815

Browse files
remove version numbers; correct attribution
1 parent e02eba2 commit c1f7815

29 files changed

Lines changed: 32 additions & 59 deletions

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This project provides a complete automation framework for setting up an Apple Si
3232
- **Central home server** with minimal maintenance requirements
3333
- **Stable, secure, and recoverable system**
3434

35-
## Recent Improvements (v3.0 - Major Overhaul)
35+
## Recent Improvements
3636

3737
### Transmission Setup Complete (2025-09-08)
3838

@@ -81,7 +81,7 @@ This project provides a complete automation framework for setting up an Apple Si
8181
- Migration size estimation and progress reporting
8282
- **Production-Ready Reliability**: Robust error handling and fallback mechanisms
8383

84-
### Previous Improvements (v2.0)
84+
### Previous Improvements
8585

8686
- **Keychain-Based Credential Management**: Secure credential storage and transfer via macOS Keychain Services (see [Credential Management](docs/keychain-credential-management.md))
8787
- **1Password Integration**: Automated credential retrieval from 1Password during setup preparation

app-setup/catch-setup.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
# Usage: ./catch-setup.sh [--force]
1212
# --force: Skip all confirmation prompts
1313
#
14-
# Author: Claude
15-
# Version: 1.0
14+
# Author: Andrew Rich <andrew.rich@gmail.com>
1615
# Created: 2025-09-09
1716

1817
# Exit on error

app-setup/filebot-setup.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
# --license-file: Override license file path (default: from config)
1515
# --password: Administrator password for system configuration
1616
#
17-
# Author: Claude
18-
# Version: 1.0
17+
# Author: Andrew Rich <andrew.rich@gmail.com>
1918
# Created: 2025-09-08
2019

2120
# Exit on error

app-setup/plex-setup.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@
2424
# ├── Plex Media Server/ # Main config directory from old server
2525
# └── com.plexapp.plexmediaserver.plist # macOS preferences file
2626
#
27-
# Author: Claude
28-
# Version: 3.0 (Native)
27+
# Author: Andrew Rich <andrew.rich@gmail.com>
2928
# Created: 2025-08-17
3029

3130
# Exit on error

app-setup/rclone-setup.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
# rclone.conf # rclone configuration with OAuth tokens (copied to app-setup dir by first-boot.sh)
1717
# dropbox_sync.conf # Dropbox sync configuration (copied to app-setup dir by first-boot.sh)
1818
#
19-
# Author: Claude
20-
# Version: 1.0
19+
# Author: Andrew Rich <andrew.rich@gmail.com>
2120
# Created: 2025-08-22
2221

2322
# Exit on error

app-setup/run-app-setup.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121
# 1: Configuration or environment error
2222
# 2: One or more app setup scripts failed
2323
#
24-
# Author: Claude
25-
# Version: 1.0
24+
# Author: Andrew Rich <andrew.rich@gmail.com>
2625
# Created: 2025-09-05
2726

2827
# Exit on error (but can be overridden with --continue-on-error)

app-setup/templates/start-plex.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
# This script simply launches Plex Media Server. Library path updates
66
# are handled during the migration process in plex-setup.sh.
77
#
8-
# Author: Claude
9-
# Version: 5.0 (Simplified launcher)
8+
# Author: Andrew Rich <andrew.rich@gmail.com>
109
# Created: 2025-08-21
1110

1211
set -euo pipefail

app-setup/templates/start-rclone.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
# - __RCLONE_REMOTE_NAME__: rclone remote name for Dropbox
1313
# - __DROPBOX_SYNC_INTERVAL__: Sync interval in minutes
1414
#
15-
# Author: Claude
16-
# Version: 1.0
15+
# Author: Andrew Rich <andrew.rich@gmail.com>
1716
# Created: 2025-08-22
1817

1918
# Exit on error

app-setup/transmission-setup.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
# --force: Skip all confirmation prompts
2929
# --rpc-password: Override RPC web interface password (default: auto-generated from hostname)
3030
#
31-
# Author: Claude
32-
# Version: 1.0
31+
# Author: Andrew Rich <andrew.rich@gmail.com>
3332
# Created: 2025-09-08
3433

3534
# Exit on error

docs/code-review-plex-setup-v1.1.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Code Review: plex-setup.sh (v1.1 Improvement Plan)
1+
# Code Review: plex-setup.sh (Post-1.0 Improvement Plan)
22

33
**Date:** 2025-09-12
44
**Script:** `app-setup/plex-setup.sh`
55
**Lines of Code:** 1,654
6-
**Review Type:** Post-v1.0 Maintenance & Improvement Assessment
6+
**Review Type:** Post-1.0 Maintenance & Improvement Assessment
77

88
## Executive Summary
99

@@ -385,7 +385,7 @@ Given the complexity, create focused test scripts before refactoring:
385385
- Shellcheck Issues: 0 ✅
386386
- Cyclomatic Complexity: High
387387

388-
**Target State (v1.1):**
388+
**Target State (Post-1.0):**
389389

390390
- Lines of Code: <1,200 (25% reduction through deduplication)
391391
- Longest Function: <75 lines

0 commit comments

Comments
 (0)