├── .gitignore ├── LICENSE ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── README.md ├── Resources ├── Assets.xcassets │ ├── Complication.complicationset │ │ ├── Circular.imageset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Extra Large.imageset │ │ │ └── Contents.json │ │ ├── Graphic Bezel.imageset │ │ │ └── Contents.json │ │ ├── Graphic Circular.imageset │ │ │ └── Contents.json │ │ ├── Graphic Corner.imageset │ │ │ └── Contents.json │ │ ├── Graphic Extra Large.imageset │ │ │ └── Contents.json │ │ ├── Graphic Large Rectangular.imageset │ │ │ └── Contents.json │ │ ├── Modular.imageset │ │ │ └── Contents.json │ │ └── Utilitarian.imageset │ │ │ └── Contents.json │ └── Contents.json ├── Info.plist ├── Localizable.xcstrings ├── PrivacyInfo.xcprivacy ├── PushNotificationPayload.apns └── Watch The Matrix WatchKit Extension.entitlements ├── Sources ├── Extensions │ ├── Date-Formatting.swift │ ├── ErrorResponse-Types.swift │ └── MatrixError-Identifiable.swift ├── Model │ ├── DataController.swift │ ├── Edit.swift │ ├── Matrix.xcdatamodeld │ │ └── Model.xcdatamodel │ │ │ └── contents │ ├── MatrixController.swift │ ├── Member.swift │ ├── Message.swift │ ├── Reaction.swift │ ├── Redaction.swift │ ├── Room.swift │ ├── SyncState.swift │ ├── TestData.swift │ └── Transactions │ │ ├── MessageTransaction.swift │ │ ├── TransactionManager.swift │ │ └── TransactionStore.swift ├── Views │ ├── ImageBubble.swift │ ├── Layout │ │ ├── AlignedScrollView.swift │ │ └── MessageAligner.swift │ ├── LoginView.swift │ ├── LoginViewModel.swift │ ├── MessageBubble.swift │ ├── MessageComposer.swift │ ├── MessageTransactionView.swift │ ├── MessageView.swift │ ├── ReactionPicker.swift │ ├── ReactionsView.swift │ ├── RoomCell.swift │ ├── RoomView.swift │ ├── RootView.swift │ └── SettingsView.swift ├── WatchTheMatrixApp.swift └── watchOS Extras │ ├── ComplicationController.swift │ ├── NotificationController.swift │ └── NotificationView.swift ├── Tests ├── BaseTestCase.swift ├── DataControllerTests.swift ├── EventProcessingTests.swift ├── Fixtures │ ├── JoinedRoom-ReactionRedaction.json │ ├── LoadMessages.json │ ├── MessageReplies.json │ ├── NewJoinedRoom.json │ ├── SyncMessageJoinedRoom.json │ └── SyncNewRoomWithReaction.json ├── Info.plist ├── MemberTests.swift ├── MessageTests.swift ├── RedactionTests.swift └── RoomTests.swift ├── Watch App ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon_108@2x.png │ │ ├── Icon_24@2x.png │ │ ├── Icon_27.5@2x.png │ │ ├── Icon_29@2x.png │ │ ├── Icon_29@3x.png │ │ ├── Icon_40@2x.png │ │ ├── Icon_44@2x.png │ │ ├── Icon_50@2x.png │ │ ├── Icon_86@2x.png │ │ ├── Icon_98@2x.png │ │ └── Icon_AppStore.png │ └── Contents.json └── Info.plist └── Watch The Matrix.xcodeproj ├── project.pbxproj └── project.xcworkspace ├── contents.xcworkspacedata └── xcshareddata ├── IDEWorkspaceChecks.plist └── swiftpm └── Package.resolved /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/LICENSE -------------------------------------------------------------------------------- /Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Resources/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Complication.complicationset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Resources/Assets.xcassets/Complication.complicationset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Resources/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Complication.complicationset/Graphic Bezel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Resources/Assets.xcassets/Complication.complicationset/Graphic Bezel.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Complication.complicationset/Graphic Circular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Resources/Assets.xcassets/Complication.complicationset/Graphic Circular.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Resources/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Complication.complicationset/Graphic Extra Large.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Resources/Assets.xcassets/Complication.complicationset/Graphic Extra Large.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Complication.complicationset/Graphic Large Rectangular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Resources/Assets.xcassets/Complication.complicationset/Graphic Large Rectangular.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Resources/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Resources/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Resources/Info.plist -------------------------------------------------------------------------------- /Resources/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Resources/Localizable.xcstrings -------------------------------------------------------------------------------- /Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Resources/PushNotificationPayload.apns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Resources/PushNotificationPayload.apns -------------------------------------------------------------------------------- /Resources/Watch The Matrix WatchKit Extension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Resources/Watch The Matrix WatchKit Extension.entitlements -------------------------------------------------------------------------------- /Sources/Extensions/Date-Formatting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Extensions/Date-Formatting.swift -------------------------------------------------------------------------------- /Sources/Extensions/ErrorResponse-Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Extensions/ErrorResponse-Types.swift -------------------------------------------------------------------------------- /Sources/Extensions/MatrixError-Identifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Extensions/MatrixError-Identifiable.swift -------------------------------------------------------------------------------- /Sources/Model/DataController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Model/DataController.swift -------------------------------------------------------------------------------- /Sources/Model/Edit.swift: -------------------------------------------------------------------------------- 1 | import CoreData 2 | 3 | extension Edit { 4 | // 5 | } 6 | -------------------------------------------------------------------------------- /Sources/Model/Matrix.xcdatamodeld/Model.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Model/Matrix.xcdatamodeld/Model.xcdatamodel/contents -------------------------------------------------------------------------------- /Sources/Model/MatrixController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Model/MatrixController.swift -------------------------------------------------------------------------------- /Sources/Model/Member.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Model/Member.swift -------------------------------------------------------------------------------- /Sources/Model/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Model/Message.swift -------------------------------------------------------------------------------- /Sources/Model/Reaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Model/Reaction.swift -------------------------------------------------------------------------------- /Sources/Model/Redaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Model/Redaction.swift -------------------------------------------------------------------------------- /Sources/Model/Room.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Model/Room.swift -------------------------------------------------------------------------------- /Sources/Model/SyncState.swift: -------------------------------------------------------------------------------- 1 | import CoreData 2 | 3 | extension SyncState { 4 | // 5 | } 6 | -------------------------------------------------------------------------------- /Sources/Model/TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Model/TestData.swift -------------------------------------------------------------------------------- /Sources/Model/Transactions/MessageTransaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Model/Transactions/MessageTransaction.swift -------------------------------------------------------------------------------- /Sources/Model/Transactions/TransactionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Model/Transactions/TransactionManager.swift -------------------------------------------------------------------------------- /Sources/Model/Transactions/TransactionStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Model/Transactions/TransactionStore.swift -------------------------------------------------------------------------------- /Sources/Views/ImageBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Views/ImageBubble.swift -------------------------------------------------------------------------------- /Sources/Views/Layout/AlignedScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Views/Layout/AlignedScrollView.swift -------------------------------------------------------------------------------- /Sources/Views/Layout/MessageAligner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Views/Layout/MessageAligner.swift -------------------------------------------------------------------------------- /Sources/Views/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Views/LoginView.swift -------------------------------------------------------------------------------- /Sources/Views/LoginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Views/LoginViewModel.swift -------------------------------------------------------------------------------- /Sources/Views/MessageBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Views/MessageBubble.swift -------------------------------------------------------------------------------- /Sources/Views/MessageComposer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Views/MessageComposer.swift -------------------------------------------------------------------------------- /Sources/Views/MessageTransactionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Views/MessageTransactionView.swift -------------------------------------------------------------------------------- /Sources/Views/MessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Views/MessageView.swift -------------------------------------------------------------------------------- /Sources/Views/ReactionPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Views/ReactionPicker.swift -------------------------------------------------------------------------------- /Sources/Views/ReactionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Views/ReactionsView.swift -------------------------------------------------------------------------------- /Sources/Views/RoomCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Views/RoomCell.swift -------------------------------------------------------------------------------- /Sources/Views/RoomView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Views/RoomView.swift -------------------------------------------------------------------------------- /Sources/Views/RootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Views/RootView.swift -------------------------------------------------------------------------------- /Sources/Views/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/Views/SettingsView.swift -------------------------------------------------------------------------------- /Sources/WatchTheMatrixApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/WatchTheMatrixApp.swift -------------------------------------------------------------------------------- /Sources/watchOS Extras/ComplicationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/watchOS Extras/ComplicationController.swift -------------------------------------------------------------------------------- /Sources/watchOS Extras/NotificationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/watchOS Extras/NotificationController.swift -------------------------------------------------------------------------------- /Sources/watchOS Extras/NotificationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Sources/watchOS Extras/NotificationView.swift -------------------------------------------------------------------------------- /Tests/BaseTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Tests/BaseTestCase.swift -------------------------------------------------------------------------------- /Tests/DataControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Tests/DataControllerTests.swift -------------------------------------------------------------------------------- /Tests/EventProcessingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Tests/EventProcessingTests.swift -------------------------------------------------------------------------------- /Tests/Fixtures/JoinedRoom-ReactionRedaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Tests/Fixtures/JoinedRoom-ReactionRedaction.json -------------------------------------------------------------------------------- /Tests/Fixtures/LoadMessages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Tests/Fixtures/LoadMessages.json -------------------------------------------------------------------------------- /Tests/Fixtures/MessageReplies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Tests/Fixtures/MessageReplies.json -------------------------------------------------------------------------------- /Tests/Fixtures/NewJoinedRoom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Tests/Fixtures/NewJoinedRoom.json -------------------------------------------------------------------------------- /Tests/Fixtures/SyncMessageJoinedRoom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Tests/Fixtures/SyncMessageJoinedRoom.json -------------------------------------------------------------------------------- /Tests/Fixtures/SyncNewRoomWithReaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Tests/Fixtures/SyncNewRoomWithReaction.json -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/MemberTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Tests/MemberTests.swift -------------------------------------------------------------------------------- /Tests/MessageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Tests/MessageTests.swift -------------------------------------------------------------------------------- /Tests/RedactionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Tests/RedactionTests.swift -------------------------------------------------------------------------------- /Tests/RoomTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Tests/RoomTests.swift -------------------------------------------------------------------------------- /Watch App/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch App/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Watch App/Assets.xcassets/AppIcon.appiconset/Icon_108@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch App/Assets.xcassets/AppIcon.appiconset/Icon_108@2x.png -------------------------------------------------------------------------------- /Watch App/Assets.xcassets/AppIcon.appiconset/Icon_24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch App/Assets.xcassets/AppIcon.appiconset/Icon_24@2x.png -------------------------------------------------------------------------------- /Watch App/Assets.xcassets/AppIcon.appiconset/Icon_27.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch App/Assets.xcassets/AppIcon.appiconset/Icon_27.5@2x.png -------------------------------------------------------------------------------- /Watch App/Assets.xcassets/AppIcon.appiconset/Icon_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch App/Assets.xcassets/AppIcon.appiconset/Icon_29@2x.png -------------------------------------------------------------------------------- /Watch App/Assets.xcassets/AppIcon.appiconset/Icon_29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch App/Assets.xcassets/AppIcon.appiconset/Icon_29@3x.png -------------------------------------------------------------------------------- /Watch App/Assets.xcassets/AppIcon.appiconset/Icon_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch App/Assets.xcassets/AppIcon.appiconset/Icon_40@2x.png -------------------------------------------------------------------------------- /Watch App/Assets.xcassets/AppIcon.appiconset/Icon_44@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch App/Assets.xcassets/AppIcon.appiconset/Icon_44@2x.png -------------------------------------------------------------------------------- /Watch App/Assets.xcassets/AppIcon.appiconset/Icon_50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch App/Assets.xcassets/AppIcon.appiconset/Icon_50@2x.png -------------------------------------------------------------------------------- /Watch App/Assets.xcassets/AppIcon.appiconset/Icon_86@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch App/Assets.xcassets/AppIcon.appiconset/Icon_86@2x.png -------------------------------------------------------------------------------- /Watch App/Assets.xcassets/AppIcon.appiconset/Icon_98@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch App/Assets.xcassets/AppIcon.appiconset/Icon_98@2x.png -------------------------------------------------------------------------------- /Watch App/Assets.xcassets/AppIcon.appiconset/Icon_AppStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch App/Assets.xcassets/AppIcon.appiconset/Icon_AppStore.png -------------------------------------------------------------------------------- /Watch App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Watch App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch App/Info.plist -------------------------------------------------------------------------------- /Watch The Matrix.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch The Matrix.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Watch The Matrix.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch The Matrix.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Watch The Matrix.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch The Matrix.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Watch The Matrix.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixlwave/Watch-The-Matrix/HEAD/Watch The Matrix.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved --------------------------------------------------------------------------------