Rebrand entire project from Feels to Reflect

Complete rename across all bundle IDs, App Groups, CloudKit containers,
StoreKit product IDs, data store filenames, URL schemes, logger subsystems,
Swift identifiers, user-facing strings (7 languages), file names, directory
names, Xcode project, schemes, assets, and documentation.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Trey t
2026-02-26 11:47:16 -06:00
parent b1a54d2844
commit 0442eab1f8
380 changed files with 858 additions and 1077 deletions

View File

@@ -1,6 +1,6 @@
//
// ExportService.swift
// Feels
// Reflect
//
// Handles exporting mood data to CSV and PDF formats with beautiful visualizations.
//
@@ -76,7 +76,7 @@ class ExportService {
func exportCSV(entries: [MoodEntryModel]) -> URL? {
let csv = generateCSV(entries: entries)
let filename = "Feels-Export-\(formattedDate()).csv"
let filename = "Reflect-Export-\(formattedDate()).csv"
let tempURL = FileManager.default.temporaryDirectory.appendingPathComponent(filename)
do {
@@ -107,7 +107,7 @@ class ExportService {
let contentWidth = pageWidth - (margin * 2)
let pdfMetaData = [
kCGPDFContextCreator: "Feels App",
kCGPDFContextCreator: "Reflect App",
kCGPDFContextTitle: title
]
@@ -167,7 +167,7 @@ class ExportService {
return nil
}
let filename = "Feels-Report-\(formattedDate()).pdf"
let filename = "Reflect-Report-\(formattedDate()).pdf"
let tempURL = FileManager.default.temporaryDirectory.appendingPathComponent(filename)
do {
@@ -624,7 +624,7 @@ class ExportService {
.font: footerFont,
.foregroundColor: UIColor.lightGray
]
let footerString = NSAttributedString(string: "Generated by Feels - Your Mood Tracking Companion", attributes: footerAttributes)
let footerString = NSAttributedString(string: "Generated by Reflect - Your Mood Tracking Companion", attributes: footerAttributes)
let footerSize = footerString.size()
footerString.draw(at: CGPoint(x: (pageWidth - footerSize.width) / 2, y: footerY))
}