diff --git a/.gitignore b/.gitignore index d97b7a4..a4595e1 100644 --- a/.gitignore +++ b/.gitignore @@ -112,10 +112,10 @@ xcuserdata *.moved-aside /.idea -/ConversationsClassic/.idea -/ConversationsClassic.xcodeproj +/AnotherIM/.idea +/AnotherIM.xcodeproj /Info.plist -/ConversationsClassic/ConversationsClassic.entitlements +/AnotherIM/AnotherIM.entitlements /XMPPSwift/Client/VoIP/rickroll.mp4 /.nvim /buildServer.json diff --git a/ConversationsClassic/ConversationsClassicApp.swift b/AnotherIM/AnotherIMApp.swift similarity index 96% rename from ConversationsClassic/ConversationsClassicApp.swift rename to AnotherIM/AnotherIMApp.swift index 53fe0ac..efb030b 100644 --- a/ConversationsClassic/ConversationsClassicApp.swift +++ b/AnotherIM/AnotherIMApp.swift @@ -3,7 +3,7 @@ import SwiftUI @main @MainActor -struct ConversationsClassic: App { +struct AnotherIMApp: App { @Environment(\.scenePhase) private var scenePhase private let clientsStore = ClientsStore.shared diff --git a/ConversationsClassic/AppData/AppError.swift b/AnotherIM/AppData/AppError.swift similarity index 100% rename from ConversationsClassic/AppData/AppError.swift rename to AnotherIM/AppData/AppError.swift diff --git a/ConversationsClassic/AppData/Client/Client+MartinCarbons.swift b/AnotherIM/AppData/Client/Client+MartinCarbons.swift similarity index 100% rename from ConversationsClassic/AppData/Client/Client+MartinCarbons.swift rename to AnotherIM/AppData/Client/Client+MartinCarbons.swift diff --git a/ConversationsClassic/AppData/Client/Client+MartinChats.swift b/AnotherIM/AppData/Client/Client+MartinChats.swift similarity index 100% rename from ConversationsClassic/AppData/Client/Client+MartinChats.swift rename to AnotherIM/AppData/Client/Client+MartinChats.swift diff --git a/ConversationsClassic/AppData/Client/Client+MartinDisco.swift b/AnotherIM/AppData/Client/Client+MartinDisco.swift similarity index 100% rename from ConversationsClassic/AppData/Client/Client+MartinDisco.swift rename to AnotherIM/AppData/Client/Client+MartinDisco.swift diff --git a/ConversationsClassic/AppData/Client/Client+MartinMAM.swift b/AnotherIM/AppData/Client/Client+MartinMAM.swift similarity index 100% rename from ConversationsClassic/AppData/Client/Client+MartinMAM.swift rename to AnotherIM/AppData/Client/Client+MartinMAM.swift diff --git a/ConversationsClassic/AppData/Client/Client+MartinMessages.swift b/AnotherIM/AppData/Client/Client+MartinMessages.swift similarity index 100% rename from ConversationsClassic/AppData/Client/Client+MartinMessages.swift rename to AnotherIM/AppData/Client/Client+MartinMessages.swift diff --git a/ConversationsClassic/AppData/Client/Client+MartinOMEMO.swift b/AnotherIM/AppData/Client/Client+MartinOMEMO.swift similarity index 100% rename from ConversationsClassic/AppData/Client/Client+MartinOMEMO.swift rename to AnotherIM/AppData/Client/Client+MartinOMEMO.swift diff --git a/ConversationsClassic/AppData/Client/Client+MartinRosters.swift b/AnotherIM/AppData/Client/Client+MartinRosters.swift similarity index 100% rename from ConversationsClassic/AppData/Client/Client+MartinRosters.swift rename to AnotherIM/AppData/Client/Client+MartinRosters.swift diff --git a/ConversationsClassic/AppData/Client/Client.swift b/AnotherIM/AppData/Client/Client.swift similarity index 100% rename from ConversationsClassic/AppData/Client/Client.swift rename to AnotherIM/AppData/Client/Client.swift diff --git a/ConversationsClassic/AppData/Model/Chat.swift b/AnotherIM/AppData/Model/Chat.swift similarity index 100% rename from ConversationsClassic/AppData/Model/Chat.swift rename to AnotherIM/AppData/Model/Chat.swift diff --git a/ConversationsClassic/AppData/Model/Credentials.swift b/AnotherIM/AppData/Model/Credentials.swift similarity index 100% rename from ConversationsClassic/AppData/Model/Credentials.swift rename to AnotherIM/AppData/Model/Credentials.swift diff --git a/ConversationsClassic/AppData/Model/GalleryItem.swift b/AnotherIM/AppData/Model/GalleryItem.swift similarity index 100% rename from ConversationsClassic/AppData/Model/GalleryItem.swift rename to AnotherIM/AppData/Model/GalleryItem.swift diff --git a/ConversationsClassic/AppData/Model/Message+OMEMO.swift b/AnotherIM/AppData/Model/Message+OMEMO.swift similarity index 100% rename from ConversationsClassic/AppData/Model/Message+OMEMO.swift rename to AnotherIM/AppData/Model/Message+OMEMO.swift diff --git a/ConversationsClassic/AppData/Model/Message.swift b/AnotherIM/AppData/Model/Message.swift similarity index 100% rename from ConversationsClassic/AppData/Model/Message.swift rename to AnotherIM/AppData/Model/Message.swift diff --git a/ConversationsClassic/AppData/Model/OMEMO.swift b/AnotherIM/AppData/Model/OMEMO.swift similarity index 100% rename from ConversationsClassic/AppData/Model/OMEMO.swift rename to AnotherIM/AppData/Model/OMEMO.swift diff --git a/ConversationsClassic/AppData/Model/Roster.swift b/AnotherIM/AppData/Model/Roster.swift similarity index 100% rename from ConversationsClassic/AppData/Model/Roster.swift rename to AnotherIM/AppData/Model/Roster.swift diff --git a/ConversationsClassic/AppData/Model/ServerFeature.swift b/AnotherIM/AppData/Model/ServerFeature.swift similarity index 100% rename from ConversationsClassic/AppData/Model/ServerFeature.swift rename to AnotherIM/AppData/Model/ServerFeature.swift diff --git a/ConversationsClassic/AppData/Services/AESGSMEngine.swift b/AnotherIM/AppData/Services/AESGSMEngine.swift similarity index 100% rename from ConversationsClassic/AppData/Services/AESGSMEngine.swift rename to AnotherIM/AppData/Services/AESGSMEngine.swift diff --git a/ConversationsClassic/AppData/Services/Database+Migrations.swift b/AnotherIM/AppData/Services/Database+Migrations.swift similarity index 100% rename from ConversationsClassic/AppData/Services/Database+Migrations.swift rename to AnotherIM/AppData/Services/Database+Migrations.swift diff --git a/ConversationsClassic/AppData/Services/Database.swift b/AnotherIM/AppData/Services/Database.swift similarity index 100% rename from ConversationsClassic/AppData/Services/Database.swift rename to AnotherIM/AppData/Services/Database.swift diff --git a/ConversationsClassic/AppData/Services/Logger.swift b/AnotherIM/AppData/Services/Logger.swift similarity index 100% rename from ConversationsClassic/AppData/Services/Logger.swift rename to AnotherIM/AppData/Services/Logger.swift diff --git a/ConversationsClassic/AppData/Services/NetworkMonitor.swift b/AnotherIM/AppData/Services/NetworkMonitor.swift similarity index 100% rename from ConversationsClassic/AppData/Services/NetworkMonitor.swift rename to AnotherIM/AppData/Services/NetworkMonitor.swift diff --git a/ConversationsClassic/AppData/Services/PersistUserSettings.swift b/AnotherIM/AppData/Services/PersistUserSettings.swift similarity index 100% rename from ConversationsClassic/AppData/Services/PersistUserSettings.swift rename to AnotherIM/AppData/Services/PersistUserSettings.swift diff --git a/ConversationsClassic/AppData/Store/AttachmentsStore.swift b/AnotherIM/AppData/Store/AttachmentsStore.swift similarity index 100% rename from ConversationsClassic/AppData/Store/AttachmentsStore.swift rename to AnotherIM/AppData/Store/AttachmentsStore.swift diff --git a/ConversationsClassic/AppData/Store/ChatSettingsStore.swift b/AnotherIM/AppData/Store/ChatSettingsStore.swift similarity index 100% rename from ConversationsClassic/AppData/Store/ChatSettingsStore.swift rename to AnotherIM/AppData/Store/ChatSettingsStore.swift diff --git a/ConversationsClassic/AppData/Store/ClientsStore.swift b/AnotherIM/AppData/Store/ClientsStore.swift similarity index 100% rename from ConversationsClassic/AppData/Store/ClientsStore.swift rename to AnotherIM/AppData/Store/ClientsStore.swift diff --git a/ConversationsClassic/AppData/Store/MessagesStore.swift b/AnotherIM/AppData/Store/MessagesStore.swift similarity index 100% rename from ConversationsClassic/AppData/Store/MessagesStore.swift rename to AnotherIM/AppData/Store/MessagesStore.swift diff --git a/ConversationsClassic/Generated/.gitignore b/AnotherIM/Generated/.gitignore similarity index 100% rename from ConversationsClassic/Generated/.gitignore rename to AnotherIM/Generated/.gitignore diff --git a/ConversationsClassic/Helpers/AVAsset+Thumbnail.swift b/AnotherIM/Helpers/AVAsset+Thumbnail.swift similarity index 100% rename from ConversationsClassic/Helpers/AVAsset+Thumbnail.swift rename to AnotherIM/Helpers/AVAsset+Thumbnail.swift diff --git a/ConversationsClassic/Helpers/Binding+Extensions.swift b/AnotherIM/Helpers/Binding+Extensions.swift similarity index 100% rename from ConversationsClassic/Helpers/Binding+Extensions.swift rename to AnotherIM/Helpers/Binding+Extensions.swift diff --git a/ConversationsClassic/Helpers/ButtonStyles.swift b/AnotherIM/Helpers/ButtonStyles.swift similarity index 100% rename from ConversationsClassic/Helpers/ButtonStyles.swift rename to AnotherIM/Helpers/ButtonStyles.swift diff --git a/ConversationsClassic/Helpers/Colors+Tappable.swift b/AnotherIM/Helpers/Colors+Tappable.swift similarity index 100% rename from ConversationsClassic/Helpers/Colors+Tappable.swift rename to AnotherIM/Helpers/Colors+Tappable.swift diff --git a/ConversationsClassic/Helpers/Const.swift b/AnotherIM/Helpers/Const.swift similarity index 96% rename from ConversationsClassic/Helpers/Const.swift rename to AnotherIM/Helpers/Const.swift index 4c2d9f9..8af2571 100644 --- a/ConversationsClassic/Helpers/Const.swift +++ b/AnotherIM/Helpers/Const.swift @@ -11,7 +11,7 @@ enum Const { } static var appName: String { - Bundle.main.bundleIdentifier ?? "Conversations Classic iOS" + Bundle.main.bundleIdentifier ?? "another.im" } // Trusted servers diff --git a/ConversationsClassic/Helpers/EdgeInsets+Extensions.swift b/AnotherIM/Helpers/EdgeInsets+Extensions.swift similarity index 100% rename from ConversationsClassic/Helpers/EdgeInsets+Extensions.swift rename to AnotherIM/Helpers/EdgeInsets+Extensions.swift diff --git a/ConversationsClassic/Helpers/Map+Extensions.swift b/AnotherIM/Helpers/Map+Extensions.swift similarity index 100% rename from ConversationsClassic/Helpers/Map+Extensions.swift rename to AnotherIM/Helpers/Map+Extensions.swift diff --git a/ConversationsClassic/Helpers/PHImageManager+Fetch.swift b/AnotherIM/Helpers/PHImageManager+Fetch.swift similarity index 100% rename from ConversationsClassic/Helpers/PHImageManager+Fetch.swift rename to AnotherIM/Helpers/PHImageManager+Fetch.swift diff --git a/ConversationsClassic/Helpers/String+Extensions.swift b/AnotherIM/Helpers/String+Extensions.swift similarity index 100% rename from ConversationsClassic/Helpers/String+Extensions.swift rename to AnotherIM/Helpers/String+Extensions.swift diff --git a/ConversationsClassic/Helpers/TimeInterval+Extensions.swift b/AnotherIM/Helpers/TimeInterval+Extensions.swift similarity index 100% rename from ConversationsClassic/Helpers/TimeInterval+Extensions.swift rename to AnotherIM/Helpers/TimeInterval+Extensions.swift diff --git a/ConversationsClassic/Helpers/Typography.swift b/AnotherIM/Helpers/Typography.swift similarity index 100% rename from ConversationsClassic/Helpers/Typography.swift rename to AnotherIM/Helpers/Typography.swift diff --git a/ConversationsClassic/Helpers/UIApplication+Extensions.swift b/AnotherIM/Helpers/UIApplication+Extensions.swift similarity index 100% rename from ConversationsClassic/Helpers/UIApplication+Extensions.swift rename to AnotherIM/Helpers/UIApplication+Extensions.swift diff --git a/ConversationsClassic/Helpers/UIImage+Crop.swift b/AnotherIM/Helpers/UIImage+Crop.swift similarity index 100% rename from ConversationsClassic/Helpers/UIImage+Crop.swift rename to AnotherIM/Helpers/UIImage+Crop.swift diff --git a/ConversationsClassic/Helpers/URL+Extensions.swift b/AnotherIM/Helpers/URL+Extensions.swift similarity index 100% rename from ConversationsClassic/Helpers/URL+Extensions.swift rename to AnotherIM/Helpers/URL+Extensions.swift diff --git a/ConversationsClassic/Helpers/Vibration.swift b/AnotherIM/Helpers/Vibration.swift similarity index 100% rename from ConversationsClassic/Helpers/Vibration.swift rename to AnotherIM/Helpers/Vibration.swift diff --git a/ConversationsClassic/Helpers/View+Debug.swift b/AnotherIM/Helpers/View+Debug.swift similarity index 100% rename from ConversationsClassic/Helpers/View+Debug.swift rename to AnotherIM/Helpers/View+Debug.swift diff --git a/ConversationsClassic/Helpers/View+Flip.swift b/AnotherIM/Helpers/View+Flip.swift similarity index 100% rename from ConversationsClassic/Helpers/View+Flip.swift rename to AnotherIM/Helpers/View+Flip.swift diff --git a/ConversationsClassic/Helpers/View+If.swift b/AnotherIM/Helpers/View+If.swift similarity index 100% rename from ConversationsClassic/Helpers/View+If.swift rename to AnotherIM/Helpers/View+If.swift diff --git a/ConversationsClassic/Helpers/View+OnLoad.swift b/AnotherIM/Helpers/View+OnLoad.swift similarity index 100% rename from ConversationsClassic/Helpers/View+OnLoad.swift rename to AnotherIM/Helpers/View+OnLoad.swift diff --git a/ConversationsClassic/Helpers/View+TappableArea.swift b/AnotherIM/Helpers/View+TappableArea.swift similarity index 100% rename from ConversationsClassic/Helpers/View+TappableArea.swift rename to AnotherIM/Helpers/View+TappableArea.swift diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/material/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/material/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/material/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/material/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/material/background/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/material/background/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/material/background/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/material/background/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/material/background/dark.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/material/background/dark.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/material/background/dark.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/material/background/dark.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/material/background/light.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/material/background/light.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/material/background/light.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/material/background/light.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/material/elements/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/material/elements/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/material/elements/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/material/elements/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/material/elements/active.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/material/elements/active.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/material/elements/active.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/material/elements/active.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/material/elements/inactive.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/material/elements/inactive.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/material/elements/inactive.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/material/elements/inactive.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/material/shape/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/material/shape/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/material/shape/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/material/shape/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/material/shape/alternate.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/material/shape/alternate.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/material/shape/alternate.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/material/shape/alternate.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/material/shape/black.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/material/shape/black.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/material/shape/black.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/material/shape/black.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/material/shape/separator.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/material/shape/separator.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/material/shape/separator.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/material/shape/separator.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/material/shape/white.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/material/shape/white.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/material/shape/white.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/material/shape/white.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/material/text/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/material/text/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/material/text/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/material/text/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/material/text/main.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/material/text/main.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/material/text/main.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/material/text/main.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/material/text/sub.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/material/text/sub.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/material/text/sub.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/material/text/sub.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/material/text/white.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/material/text/white.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/material/text/white.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/material/text/white.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/background/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/background/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/background/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/background/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/primary/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/primary/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/primary/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/primary/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/primary/c100.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/primary/c100.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/primary/c100.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/primary/c100.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/primary/c200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/primary/c200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/primary/c200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/primary/c200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/primary/c400.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/primary/c400.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/primary/c400.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/primary/c400.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/primary/c50.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/primary/c50.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/primary/c50.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/primary/c50.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/primary/c500main.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/primary/c500main.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/primary/c500main.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/primary/c500main.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c100.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c100.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c100.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c100.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c300.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c300.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c300.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c300.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c400.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c400.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c400.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c400.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c50.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c50.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c50.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c50.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c500main.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c500main.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c500main.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c500main.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c600.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c600.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c600.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c600.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c700.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c700.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c700.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c700.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c800.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c800.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c800.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c800.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c900.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c900.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/secondary/c900.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/secondary/c900.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/text/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/text/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/text/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/text/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/text/main.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/text/main.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/text/main.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/text/main.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/old/text/sub.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/old/text/sub.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/old/text/sub.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/old/text/sub.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blue200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blue200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blue200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blue200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blue300.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blue300.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blue300.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blue300.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blue500.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blue500.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blue500.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blue500.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blue800.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blue800.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blue800.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blue800.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blueDark200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blueDark200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blueDark200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blueDark200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blueDark300.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blueDark300.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blueDark300.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blueDark300.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blueDark500.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blueDark500.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blueDark500.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blueDark500.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blueDark800.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blueDark800.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blueDark800.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blueDark800.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blueLight200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blueLight200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blueLight200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blueLight200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blueLight300.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blueLight300.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blueLight300.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blueLight300.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blueLight500.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blueLight500.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blueLight500.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blueLight500.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blueLight800.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blueLight800.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/blueLight800.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/blueLight800.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/brown200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/brown200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/brown200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/brown200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/brown300.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/brown300.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/brown300.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/brown300.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/brown500.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/brown500.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/brown500.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/brown500.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/brown800.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/brown800.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/brown800.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/brown800.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenDark100.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenDark100.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenDark100.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenDark100.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenDark200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenDark200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenDark200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenDark200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenDark300.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenDark300.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenDark300.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenDark300.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenDark500.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenDark500.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenDark500.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenDark500.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenDark800.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenDark800.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenDark800.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenDark800.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenLight200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenLight200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenLight200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenLight200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenLight300.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenLight300.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenLight300.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenLight300.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenLight500.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenLight500.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenLight500.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenLight500.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenLight800.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenLight800.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/greenLight800.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/greenLight800.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/magentaDark200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/magentaDark200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/magentaDark200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/magentaDark200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/magentaDark300.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/magentaDark300.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/magentaDark300.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/magentaDark300.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/magentaDark500.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/magentaDark500.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/magentaDark500.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/magentaDark500.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/magentaDark800.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/magentaDark800.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/magentaDark800.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/magentaDark800.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/magentaLight200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/magentaLight200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/magentaLight200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/magentaLight200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/magentaLight300.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/magentaLight300.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/magentaLight300.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/magentaLight300.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/magentaLight500.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/magentaLight500.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/magentaLight500.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/magentaLight500.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/magentaLight800.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/magentaLight800.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/magentaLight800.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/magentaLight800.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/orangeDark200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/orangeDark200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/orangeDark200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/orangeDark200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/orangeDark300.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/orangeDark300.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/orangeDark300.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/orangeDark300.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/orangeDark500.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/orangeDark500.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/orangeDark500.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/orangeDark500.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/orangeDark800.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/orangeDark800.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/orangeDark800.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/orangeDark800.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/orangeLight200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/orangeLight200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/orangeLight200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/orangeLight200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/orangeLight300.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/orangeLight300.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/orangeLight300.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/orangeLight300.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/orangeLight500.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/orangeLight500.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/orangeLight500.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/orangeLight500.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/orangeLight800.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/orangeLight800.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/orangeLight800.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/orangeLight800.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/pink200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/pink200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/pink200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/pink200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/pink300.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/pink300.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/pink300.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/pink300.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/pink500.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/pink500.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/pink500.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/pink500.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/pink800.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/pink800.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/pink800.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/pink800.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/red200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/red200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/red200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/red200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/red300.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/red300.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/red300.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/red300.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/red500.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/red500.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/red500.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/red500.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/red800.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/red800.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/red800.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/red800.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/tortoiseDark200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/tortoiseDark200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/tortoiseDark200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/tortoiseDark200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/tortoiseDark300.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/tortoiseDark300.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/tortoiseDark300.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/tortoiseDark300.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/tortoiseDark500.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/tortoiseDark500.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/tortoiseDark500.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/tortoiseDark500.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/tortoiseDark800.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/tortoiseDark800.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/tortoiseDark800.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/tortoiseDark800.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/tortoiseLight200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/tortoiseLight200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/tortoiseLight200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/tortoiseLight200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/tortoiseLight300.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/tortoiseLight300.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/tortoiseLight300.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/tortoiseLight300.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/tortoiseLight500.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/tortoiseLight500.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/tortoiseLight500.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/tortoiseLight500.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/tortoiseLight800.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/tortoiseLight800.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/tortoiseLight800.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/tortoiseLight800.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/yellowDark200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/yellowDark200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/yellowDark200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/yellowDark200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/yellowDark300.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/yellowDark300.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/yellowDark300.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/yellowDark300.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/yellowDark500.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/yellowDark500.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/yellowDark500.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/yellowDark500.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/yellowDark800.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/yellowDark800.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/yellowDark800.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/yellowDark800.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/yellowLight200.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/yellowLight200.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/yellowLight200.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/yellowLight200.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/yellowLight300.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/yellowLight300.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/yellowLight300.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/yellowLight300.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/yellowLight500.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/yellowLight500.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/yellowLight500.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/yellowLight500.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/yellowLight800.colorset/Contents.json b/AnotherIM/Resources/Assets/Colors.xcassets/rainbow/yellowLight800.colorset/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Colors.xcassets/rainbow/yellowLight800.colorset/Contents.json rename to AnotherIM/Resources/Assets/Colors.xcassets/rainbow/yellowLight800.colorset/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Images.xcassets/AppIcon.appiconset/Contents.json b/AnotherIM/Resources/Assets/Images.xcassets/AppIcon.appiconset/Contents.json similarity index 80% rename from ConversationsClassic/Resources/Assets/Images.xcassets/AppIcon.appiconset/Contents.json rename to AnotherIM/Resources/Assets/Images.xcassets/AppIcon.appiconset/Contents.json index 72c4225..41fc93f 100644 --- a/ConversationsClassic/Resources/Assets/Images.xcassets/AppIcon.appiconset/Contents.json +++ b/AnotherIM/Resources/Assets/Images.xcassets/AppIcon.appiconset/Contents.json @@ -1,7 +1,7 @@ { "images" : [ { - "filename" : "logo2.png", + "filename" : "another_app_icon.png", "idiom" : "universal", "platform" : "ios", "size" : "1024x1024" diff --git a/AnotherIM/Resources/Assets/Images.xcassets/AppIcon.appiconset/another_app_icon.png b/AnotherIM/Resources/Assets/Images.xcassets/AppIcon.appiconset/another_app_icon.png new file mode 100644 index 0000000..db76522 Binary files /dev/null and b/AnotherIM/Resources/Assets/Images.xcassets/AppIcon.appiconset/another_app_icon.png differ diff --git a/ConversationsClassic/Resources/Assets/Images.xcassets/Contents.json b/AnotherIM/Resources/Assets/Images.xcassets/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Assets/Images.xcassets/Contents.json rename to AnotherIM/Resources/Assets/Images.xcassets/Contents.json diff --git a/ConversationsClassic/Resources/Assets/Images.xcassets/logo.imageset/Contents.json b/AnotherIM/Resources/Assets/Images.xcassets/logo.imageset/Contents.json similarity index 81% rename from ConversationsClassic/Resources/Assets/Images.xcassets/logo.imageset/Contents.json rename to AnotherIM/Resources/Assets/Images.xcassets/logo.imageset/Contents.json index aed7690..5dc55bc 100644 --- a/ConversationsClassic/Resources/Assets/Images.xcassets/logo.imageset/Contents.json +++ b/AnotherIM/Resources/Assets/Images.xcassets/logo.imageset/Contents.json @@ -1,7 +1,7 @@ { "images" : [ { - "filename" : "logo2_wo_bg.png", + "filename" : "another_app_logo.png", "idiom" : "universal" } ], diff --git a/AnotherIM/Resources/Assets/Images.xcassets/logo.imageset/another_app_logo.png b/AnotherIM/Resources/Assets/Images.xcassets/logo.imageset/another_app_logo.png new file mode 100644 index 0000000..37012ee Binary files /dev/null and b/AnotherIM/Resources/Assets/Images.xcassets/logo.imageset/another_app_logo.png differ diff --git a/ConversationsClassic/Resources/Preview Content/Preview Assets.xcassets/Contents.json b/AnotherIM/Resources/Preview Content/Preview Assets.xcassets/Contents.json similarity index 100% rename from ConversationsClassic/Resources/Preview Content/Preview Assets.xcassets/Contents.json rename to AnotherIM/Resources/Preview Content/Preview Assets.xcassets/Contents.json diff --git a/ConversationsClassic/Resources/Strings/Localizable.strings b/AnotherIM/Resources/Strings/Localizable.strings similarity index 98% rename from ConversationsClassic/Resources/Strings/Localizable.strings rename to AnotherIM/Resources/Strings/Localizable.strings index 1aa2921..33cad33 100644 --- a/ConversationsClassic/Resources/Strings/Localizable.strings +++ b/AnotherIM/Resources/Strings/Localizable.strings @@ -1,5 +1,5 @@ // MARK: General -"Global.name" = "Conversartions Classic"; +"Global.name" = "another.im"; "Global.ok" = "Ok"; "Global.back" = "Back"; "Global.cancel" = "Cancel"; diff --git a/ConversationsClassic/Resources/launchscreen.storyboard b/AnotherIM/Resources/launchscreen.storyboard similarity index 100% rename from ConversationsClassic/Resources/launchscreen.storyboard rename to AnotherIM/Resources/launchscreen.storyboard diff --git a/ConversationsClassic/Resources/server_features.plist b/AnotherIM/Resources/server_features.plist similarity index 100% rename from ConversationsClassic/Resources/server_features.plist rename to AnotherIM/Resources/server_features.plist diff --git a/ConversationsClassic/View/Entering/LoginScreen.swift b/AnotherIM/View/Entering/LoginScreen.swift similarity index 100% rename from ConversationsClassic/View/Entering/LoginScreen.swift rename to AnotherIM/View/Entering/LoginScreen.swift diff --git a/ConversationsClassic/View/Entering/RegistrationScreen.swift b/AnotherIM/View/Entering/RegistrationScreen.swift similarity index 100% rename from ConversationsClassic/View/Entering/RegistrationScreen.swift rename to AnotherIM/View/Entering/RegistrationScreen.swift diff --git a/ConversationsClassic/View/Entering/WelcomeScreen.swift b/AnotherIM/View/Entering/WelcomeScreen.swift similarity index 100% rename from ConversationsClassic/View/Entering/WelcomeScreen.swift rename to AnotherIM/View/Entering/WelcomeScreen.swift diff --git a/ConversationsClassic/View/Main/ChatList/ChatsCreateScreenMain.swift b/AnotherIM/View/Main/ChatList/ChatsCreateScreenMain.swift similarity index 100% rename from ConversationsClassic/View/Main/ChatList/ChatsCreateScreenMain.swift rename to AnotherIM/View/Main/ChatList/ChatsCreateScreenMain.swift diff --git a/ConversationsClassic/View/Main/ChatList/ChatsListScreen.swift b/AnotherIM/View/Main/ChatList/ChatsListScreen.swift similarity index 100% rename from ConversationsClassic/View/Main/ChatList/ChatsListScreen.swift rename to AnotherIM/View/Main/ChatList/ChatsListScreen.swift diff --git a/ConversationsClassic/View/Main/Contacts/AddContactOrChannelScreen.swift b/AnotherIM/View/Main/Contacts/AddContactOrChannelScreen.swift similarity index 100% rename from ConversationsClassic/View/Main/Contacts/AddContactOrChannelScreen.swift rename to AnotherIM/View/Main/Contacts/AddContactOrChannelScreen.swift diff --git a/ConversationsClassic/View/Main/Contacts/ContactsScreen.swift b/AnotherIM/View/Main/Contacts/ContactsScreen.swift similarity index 100% rename from ConversationsClassic/View/Main/Contacts/ContactsScreen.swift rename to AnotherIM/View/Main/Contacts/ContactsScreen.swift diff --git a/ConversationsClassic/View/Main/Conversation/Attachments/AttachmentPickerScreen.swift b/AnotherIM/View/Main/Conversation/Attachments/AttachmentPickerScreen.swift similarity index 100% rename from ConversationsClassic/View/Main/Conversation/Attachments/AttachmentPickerScreen.swift rename to AnotherIM/View/Main/Conversation/Attachments/AttachmentPickerScreen.swift diff --git a/ConversationsClassic/View/Main/Conversation/Attachments/ContactsPickerView.swift b/AnotherIM/View/Main/Conversation/Attachments/ContactsPickerView.swift similarity index 100% rename from ConversationsClassic/View/Main/Conversation/Attachments/ContactsPickerView.swift rename to AnotherIM/View/Main/Conversation/Attachments/ContactsPickerView.swift diff --git a/ConversationsClassic/View/Main/Conversation/Attachments/FilesPickerView.swift b/AnotherIM/View/Main/Conversation/Attachments/FilesPickerView.swift similarity index 100% rename from ConversationsClassic/View/Main/Conversation/Attachments/FilesPickerView.swift rename to AnotherIM/View/Main/Conversation/Attachments/FilesPickerView.swift diff --git a/ConversationsClassic/View/Main/Conversation/Attachments/LocationPickerView.swift b/AnotherIM/View/Main/Conversation/Attachments/LocationPickerView.swift similarity index 100% rename from ConversationsClassic/View/Main/Conversation/Attachments/LocationPickerView.swift rename to AnotherIM/View/Main/Conversation/Attachments/LocationPickerView.swift diff --git a/ConversationsClassic/View/Main/Conversation/Attachments/MediaPickerComponents/CameraCellPreview.swift b/AnotherIM/View/Main/Conversation/Attachments/MediaPickerComponents/CameraCellPreview.swift similarity index 100% rename from ConversationsClassic/View/Main/Conversation/Attachments/MediaPickerComponents/CameraCellPreview.swift rename to AnotherIM/View/Main/Conversation/Attachments/MediaPickerComponents/CameraCellPreview.swift diff --git a/ConversationsClassic/View/Main/Conversation/Attachments/MediaPickerComponents/CameraPicker.swift b/AnotherIM/View/Main/Conversation/Attachments/MediaPickerComponents/CameraPicker.swift similarity index 100% rename from ConversationsClassic/View/Main/Conversation/Attachments/MediaPickerComponents/CameraPicker.swift rename to AnotherIM/View/Main/Conversation/Attachments/MediaPickerComponents/CameraPicker.swift diff --git a/ConversationsClassic/View/Main/Conversation/Attachments/MediaPickerComponents/CameraView.swift b/AnotherIM/View/Main/Conversation/Attachments/MediaPickerComponents/CameraView.swift similarity index 100% rename from ConversationsClassic/View/Main/Conversation/Attachments/MediaPickerComponents/CameraView.swift rename to AnotherIM/View/Main/Conversation/Attachments/MediaPickerComponents/CameraView.swift diff --git a/ConversationsClassic/View/Main/Conversation/Attachments/MediaPickerComponents/GalleryView.swift b/AnotherIM/View/Main/Conversation/Attachments/MediaPickerComponents/GalleryView.swift similarity index 100% rename from ConversationsClassic/View/Main/Conversation/Attachments/MediaPickerComponents/GalleryView.swift rename to AnotherIM/View/Main/Conversation/Attachments/MediaPickerComponents/GalleryView.swift diff --git a/ConversationsClassic/View/Main/Conversation/Attachments/MediaPickerView.swift b/AnotherIM/View/Main/Conversation/Attachments/MediaPickerView.swift similarity index 100% rename from ConversationsClassic/View/Main/Conversation/Attachments/MediaPickerView.swift rename to AnotherIM/View/Main/Conversation/Attachments/MediaPickerView.swift diff --git a/ConversationsClassic/View/Main/Conversation/ConversationMessageContainer.swift b/AnotherIM/View/Main/Conversation/ConversationMessageContainer.swift similarity index 100% rename from ConversationsClassic/View/Main/Conversation/ConversationMessageContainer.swift rename to AnotherIM/View/Main/Conversation/ConversationMessageContainer.swift diff --git a/ConversationsClassic/View/Main/Conversation/ConversationMessageRow.swift b/AnotherIM/View/Main/Conversation/ConversationMessageRow.swift similarity index 100% rename from ConversationsClassic/View/Main/Conversation/ConversationMessageRow.swift rename to AnotherIM/View/Main/Conversation/ConversationMessageRow.swift diff --git a/ConversationsClassic/View/Main/Conversation/ConversationScreen.swift b/AnotherIM/View/Main/Conversation/ConversationScreen.swift similarity index 100% rename from ConversationsClassic/View/Main/Conversation/ConversationScreen.swift rename to AnotherIM/View/Main/Conversation/ConversationScreen.swift diff --git a/ConversationsClassic/View/Main/Conversation/ConversationSettingsScreen.swift b/AnotherIM/View/Main/Conversation/ConversationSettingsScreen.swift similarity index 100% rename from ConversationsClassic/View/Main/Conversation/ConversationSettingsScreen.swift rename to AnotherIM/View/Main/Conversation/ConversationSettingsScreen.swift diff --git a/ConversationsClassic/View/Main/Conversation/ConversationTextInput.swift b/AnotherIM/View/Main/Conversation/ConversationTextInput.swift similarity index 100% rename from ConversationsClassic/View/Main/Conversation/ConversationTextInput.swift rename to AnotherIM/View/Main/Conversation/ConversationTextInput.swift diff --git a/ConversationsClassic/View/Main/MainTabScreen.swift b/AnotherIM/View/Main/MainTabScreen.swift similarity index 100% rename from ConversationsClassic/View/Main/MainTabScreen.swift rename to AnotherIM/View/Main/MainTabScreen.swift diff --git a/ConversationsClassic/View/Main/Settings/SettingsScreen.swift b/AnotherIM/View/Main/Settings/SettingsScreen.swift similarity index 100% rename from ConversationsClassic/View/Main/Settings/SettingsScreen.swift rename to AnotherIM/View/Main/Settings/SettingsScreen.swift diff --git a/ConversationsClassic/View/RootView.swift b/AnotherIM/View/RootView.swift similarity index 100% rename from ConversationsClassic/View/RootView.swift rename to AnotherIM/View/RootView.swift diff --git a/ConversationsClassic/View/SharedComponents/LoadingScreen.swift b/AnotherIM/View/SharedComponents/LoadingScreen.swift similarity index 100% rename from ConversationsClassic/View/SharedComponents/LoadingScreen.swift rename to AnotherIM/View/SharedComponents/LoadingScreen.swift diff --git a/ConversationsClassic/View/SharedComponents/SharedListRow.swift b/AnotherIM/View/SharedComponents/SharedListRow.swift similarity index 100% rename from ConversationsClassic/View/SharedComponents/SharedListRow.swift rename to AnotherIM/View/SharedComponents/SharedListRow.swift diff --git a/ConversationsClassic/View/SharedComponents/SharedNavigationBar.swift b/AnotherIM/View/SharedComponents/SharedNavigationBar.swift similarity index 100% rename from ConversationsClassic/View/SharedComponents/SharedNavigationBar.swift rename to AnotherIM/View/SharedComponents/SharedNavigationBar.swift diff --git a/ConversationsClassic/View/SharedComponents/SharedSectionTitle.swift b/AnotherIM/View/SharedComponents/SharedSectionTitle.swift similarity index 100% rename from ConversationsClassic/View/SharedComponents/SharedSectionTitle.swift rename to AnotherIM/View/SharedComponents/SharedSectionTitle.swift diff --git a/ConversationsClassic/View/SharedComponents/UniversalInputCollection.swift b/AnotherIM/View/SharedComponents/UniversalInputCollection.swift similarity index 100% rename from ConversationsClassic/View/SharedComponents/UniversalInputCollection.swift rename to AnotherIM/View/SharedComponents/UniversalInputCollection.swift diff --git a/ConversationsClassic/View/StartScreen.swift b/AnotherIM/View/StartScreen.swift similarity index 100% rename from ConversationsClassic/View/StartScreen.swift rename to AnotherIM/View/StartScreen.swift diff --git a/ConversationsClassic/Resources/Assets/Images.xcassets/AppIcon.appiconset/logo2.png b/ConversationsClassic/Resources/Assets/Images.xcassets/AppIcon.appiconset/logo2.png deleted file mode 100644 index 0eb8723..0000000 Binary files a/ConversationsClassic/Resources/Assets/Images.xcassets/AppIcon.appiconset/logo2.png and /dev/null differ diff --git a/ConversationsClassic/Resources/Assets/Images.xcassets/logo.imageset/logo2_wo_bg.png b/ConversationsClassic/Resources/Assets/Images.xcassets/logo.imageset/logo2_wo_bg.png deleted file mode 100644 index e8e80f9..0000000 Binary files a/ConversationsClassic/Resources/Assets/Images.xcassets/logo.imageset/logo2_wo_bg.png and /dev/null differ diff --git a/README.md b/README.md index 472b8ae..5467577 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Conversations Classic iOS client +# Another.im XMPP iOS client -This is the source code for the Conversations Classic iOS. +This is the source code for the another.im XMPP iOS app. # License diff --git a/project.yml b/project.yml index 6167286..dbe2c21 100644 --- a/project.yml +++ b/project.yml @@ -1,5 +1,5 @@ --- -name: ConversationsClassic +name: AnotherIM options: postGenCommand: swiftgen @@ -16,7 +16,7 @@ packages: majorVersion: 4.2.2 GRDB: url: https://github.com/groue/GRDB.swift.git - branch: master + majorVersion: 6.29.3 # GRDBQuery: # url: https://github.com/groue/GRDBQuery.git # branch: main @@ -32,7 +32,7 @@ targets: # # iOS App - ConversationsClassic: + AnotherIM: type: application platform: iOS deploymentTarget: 16.0 @@ -54,24 +54,24 @@ targets: # UIStatusBarStyle: UIStatusBarStyleLightContent # NSFaceIDUsageDescription: Required for accessing to account info # UIUserInterfaceStyle: Light - CFBundleDisplayName: Conversations + CFBundleDisplayName: another.im CFBundleShortVersionString: "1.0.0" CFBundleVersion: "7" sources: - - path: ConversationsClassic + - path: AnotherIM excludes: - .nvim settings: TARGETED_DEVICE_FAMILY: 1 DEBUG_INFORMATION_FORMAT: dwarf-with-dsym - PRODUCT_BUNDLE_IDENTIFIER: im.narayana.conversations.ios + PRODUCT_BUNDLE_IDENTIFIER: im.narayana.anotherim.ios DEAD_CODE_STRIPPING: true - CODE_SIGN_ENTITLEMENTS: ConversationsClassic/ConversationsClassic.entitlements + CODE_SIGN_ENTITLEMENTS: AnotherIM/AnotherIM.entitlements entitlements: - path: ConversationsClassic/ConversationsClassic.entitlements + path: AnotherIM/AnotherIM.entitlements properties: - com.apple.security.application-groups: group.im.narayana.conversations - # keychain-access-groups: imt.narayana.ConversationsClassic.ios + com.apple.security.application-groups: group.im.narayana.anotherim + # keychain-access-groups: imt.narayana.anotherim.ios dependencies: - sdk: Security.framework - sdk: CryptoKit.framework diff --git a/swiftgen.yml b/swiftgen.yml index c9f65a1..5abf349 100644 --- a/swiftgen.yml +++ b/swiftgen.yml @@ -1,6 +1,6 @@ --- -output_dir: ConversationsClassic/Generated -input_dir: ConversationsClassic/Resources +output_dir: AnotherIM/Generated +input_dir: AnotherIM/Resources xcassets: - inputs: Assets/Images.xcassets