Skip to content

Commit 5c49b2a

Browse files
committed
refactor: Moving files and switching occurences
1 parent 66607b1 commit 5c49b2a

37 files changed

+45
-45
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
An open source app for splitting receipts, checks, and bills. Privacy first no external API or cloud calls; everything runs on device.
33

44
## Structure
5-
- ReceiptSplit
5+
- RapidSplit
66
- Components (Miscellaneous UI components)
77
- Schema (Database class definitions)
88
- Screens (All top-level UI screens)
99
- Services (Machine learning services)
1010
- Utilities (All helpers)
11-
- ReceiptSplitTests
12-
- ReceiptSplitUITests
11+
- RapidSplitTests
12+
- RapidSplitUITests
1313

1414
## TODO / Backlog
1515
- [ ] Finish unit testing

ReceiptSplit/Assets.xcassets/AccentColor.colorset/Contents.json renamed to RapidSplit/Assets.xcassets/AccentColor.colorset/Contents.json

File renamed without changes.

ReceiptSplit/Assets.xcassets/AppIcon.appiconset/Contents.json renamed to RapidSplit/Assets.xcassets/AppIcon.appiconset/Contents.json

File renamed without changes.
File renamed without changes.

ReceiptSplit/Components/CheckboxStyle.swift renamed to RapidSplit/Components/CheckboxStyle.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// CheckboxStyle.swift
3-
// ReceiptSplit
3+
// RapidSplit
44
//
55
// Created by Addison Hanrattie on 9/27/25.
66
//

ReceiptSplit/Components/ContactPicker.swift renamed to RapidSplit/Components/ContactPicker.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// ContactPicker.swift
3-
// ReceiptSplit
3+
// RapidSplit
44
//
55
// Created by Addison Hanrattie on 9/24/25.
66
//

ReceiptSplit/Components/CustomCameraView.swift renamed to RapidSplit/Components/CustomCameraView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// CustomCameraView.swift
3-
// ReceiptSplit
3+
// RapidSplit
44
//
55
// Created by Addison Hanrattie on 9/22/25.
66
//

ReceiptSplit/Components/InitialsIcon.swift renamed to RapidSplit/Components/InitialsIcon.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// InitialsIcon.swift
3-
// ReceiptSplit
3+
// RapidSplit
44
//
55
// Created by Addison Hanrattie on 9/27/25.
66
//

ReceiptSplit/Components/ParticipantOverview.swift renamed to RapidSplit/Components/ParticipantOverview.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// ParticipantOverview.swift
3-
// ReceiptSplit
3+
// RapidSplit
44
//
55
// Created by Addison Hanrattie on 9/29/25.
66
//
@@ -41,7 +41,7 @@ struct ParticipantOverview: View {
4141
let phoneNumberUtility = PhoneNumberUtility()
4242
do {
4343
let formattedPhone = try phoneNumberUtility.parse(phoneNumber, ignoreType: true).adjustedNationalNumber()
44-
return URL(string: "venmo://paycharge?txn=request&recipients=\(formattedPhone)&note=ReceiptSplitBill&amount=\(totalCost)")
44+
return URL(string: "venmo://paycharge?txn=request&recipients=\(formattedPhone)&note=RapidSplitBill&amount=\(totalCost)")
4545
} catch let error {
4646
snackbarMessage = error.localizedDescription
4747
showSnackbar = true

ReceiptSplit/Components/Tables/AssignmentTable.swift renamed to RapidSplit/Components/Tables/AssignmentTable.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// AssignmentTable.swift
3-
// ReceiptSplit
3+
// RapidSplit
44
//
55
// Created by Addison Hanrattie on 9/27/25.
66
//

0 commit comments

Comments
 (0)