├── .gitignore ├── Assets ├── logo.png ├── screenshot-1.png └── screenshot-2.png ├── Chat.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcuserdata │ └── yangzhiyuan.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Chat ├── .DS_Store ├── API │ ├── ChatAPI.swift │ ├── ChatError.swift │ ├── ChatRequest.swift │ ├── ChatResponse.swift │ └── Endpoint.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-mac-1024.png │ │ ├── icon-mac-128.png │ │ ├── icon-mac-16.png │ │ ├── icon-mac-256.png │ │ ├── icon-mac-32.png │ │ ├── icon-mac-512.png │ │ └── icon-mac-64.png │ └── Contents.json ├── Chat.entitlements ├── ChatApp.swift ├── ChatView │ ├── ChatMessageBubble.swift │ ├── ChatMessageView.swift │ ├── ChatToolBarView.swift │ └── ChatView.swift ├── Color.xcassets │ ├── Contents.json │ └── systemWhite.colorset │ │ └── Contents.json ├── ContentView.swift ├── Generated │ ├── R + Color.swift │ ├── R + Text.swift │ └── R.swift ├── Helper │ └── SyntaxHighlighter │ │ ├── SplashCodeSyntaxHighlighter.swift │ │ └── TextOutputFormat.swift ├── Info.plist ├── Model │ └── ChatMessage.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Resource │ ├── en.lproj │ │ └── Localizable.strings │ └── zh-Hans.lproj │ │ └── Localizable.strings └── ViewModel │ └── ChatViewModel.swift ├── LICENSE ├── README.md └── super-coder.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Assets/logo.png -------------------------------------------------------------------------------- /Assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Assets/screenshot-1.png -------------------------------------------------------------------------------- /Assets/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Assets/screenshot-2.png -------------------------------------------------------------------------------- /Chat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chat.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Chat.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Chat.xcodeproj/xcuserdata/yangzhiyuan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat.xcodeproj/xcuserdata/yangzhiyuan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Chat.xcodeproj/xcuserdata/yangzhiyuan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat.xcodeproj/xcuserdata/yangzhiyuan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Chat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/.DS_Store -------------------------------------------------------------------------------- /Chat/API/ChatAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/API/ChatAPI.swift -------------------------------------------------------------------------------- /Chat/API/ChatError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/API/ChatError.swift -------------------------------------------------------------------------------- /Chat/API/ChatRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/API/ChatRequest.swift -------------------------------------------------------------------------------- /Chat/API/ChatResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/API/ChatResponse.swift -------------------------------------------------------------------------------- /Chat/API/Endpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/API/Endpoint.swift -------------------------------------------------------------------------------- /Chat/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Chat/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chat/Assets.xcassets/AppIcon.appiconset/icon-mac-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Assets.xcassets/AppIcon.appiconset/icon-mac-1024.png -------------------------------------------------------------------------------- /Chat/Assets.xcassets/AppIcon.appiconset/icon-mac-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Assets.xcassets/AppIcon.appiconset/icon-mac-128.png -------------------------------------------------------------------------------- /Chat/Assets.xcassets/AppIcon.appiconset/icon-mac-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Assets.xcassets/AppIcon.appiconset/icon-mac-16.png -------------------------------------------------------------------------------- /Chat/Assets.xcassets/AppIcon.appiconset/icon-mac-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Assets.xcassets/AppIcon.appiconset/icon-mac-256.png -------------------------------------------------------------------------------- /Chat/Assets.xcassets/AppIcon.appiconset/icon-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Assets.xcassets/AppIcon.appiconset/icon-mac-32.png -------------------------------------------------------------------------------- /Chat/Assets.xcassets/AppIcon.appiconset/icon-mac-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Assets.xcassets/AppIcon.appiconset/icon-mac-512.png -------------------------------------------------------------------------------- /Chat/Assets.xcassets/AppIcon.appiconset/icon-mac-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Assets.xcassets/AppIcon.appiconset/icon-mac-64.png -------------------------------------------------------------------------------- /Chat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Chat/Chat.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Chat.entitlements -------------------------------------------------------------------------------- /Chat/ChatApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/ChatApp.swift -------------------------------------------------------------------------------- /Chat/ChatView/ChatMessageBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/ChatView/ChatMessageBubble.swift -------------------------------------------------------------------------------- /Chat/ChatView/ChatMessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/ChatView/ChatMessageView.swift -------------------------------------------------------------------------------- /Chat/ChatView/ChatToolBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/ChatView/ChatToolBarView.swift -------------------------------------------------------------------------------- /Chat/ChatView/ChatView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/ChatView/ChatView.swift -------------------------------------------------------------------------------- /Chat/Color.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Color.xcassets/Contents.json -------------------------------------------------------------------------------- /Chat/Color.xcassets/systemWhite.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Color.xcassets/systemWhite.colorset/Contents.json -------------------------------------------------------------------------------- /Chat/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/ContentView.swift -------------------------------------------------------------------------------- /Chat/Generated/R + Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Generated/R + Color.swift -------------------------------------------------------------------------------- /Chat/Generated/R + Text.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Generated/R + Text.swift -------------------------------------------------------------------------------- /Chat/Generated/R.swift: -------------------------------------------------------------------------------- 1 | // 2 | // R.swift 3 | 4 | import Foundation 5 | 6 | internal enum R {} -------------------------------------------------------------------------------- /Chat/Helper/SyntaxHighlighter/SplashCodeSyntaxHighlighter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Helper/SyntaxHighlighter/SplashCodeSyntaxHighlighter.swift -------------------------------------------------------------------------------- /Chat/Helper/SyntaxHighlighter/TextOutputFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Helper/SyntaxHighlighter/TextOutputFormat.swift -------------------------------------------------------------------------------- /Chat/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Info.plist -------------------------------------------------------------------------------- /Chat/Model/ChatMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Model/ChatMessage.swift -------------------------------------------------------------------------------- /Chat/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Chat/Resource/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Resource/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Chat/Resource/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/Resource/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Chat/ViewModel/ChatViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/Chat/ViewModel/ChatViewModel.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/README.md -------------------------------------------------------------------------------- /super-coder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeaderBoy/Chat/HEAD/super-coder.yml --------------------------------------------------------------------------------