├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── Surround.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ └── Package.resolved ├── xcshareddata │ └── xcschemes │ │ ├── Surround.xcscheme │ │ └── SurroundWidgetsExtension.xcscheme └── xcuserdata │ └── honganhkhoa.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Surround ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── surround-1024.png │ │ ├── surround-120.png │ │ ├── surround-121.png │ │ ├── surround-152.png │ │ ├── surround-167.png │ │ ├── surround-180.png │ │ ├── surround-20.png │ │ ├── surround-29.png │ │ ├── surround-40.png │ │ ├── surround-41.png │ │ ├── surround-42.png │ │ ├── surround-58.png │ │ ├── surround-59.png │ │ ├── surround-60.png │ │ ├── surround-76.png │ │ ├── surround-80.png │ │ ├── surround-81.png │ │ └── surround-87.png │ ├── Contents.json │ ├── Surround.imageset │ │ ├── Contents.json │ │ ├── surround-120.png │ │ ├── surround-180.png │ │ └── surround-60.png │ ├── SurroundNotification.imageset │ │ ├── Contents.json │ │ ├── Simulator Screenshot - iPhone 15 Pro - 2024-02-16 at 17.20.14.png │ │ ├── Simulator Screenshot - iPhone 15 Pro - 2024-02-16 at 17.22.54.png │ │ ├── Simulator Screenshot - iPhone 15 Pro - 2024-02-16 at 17.24.55.png │ │ ├── Simulator Screenshot - iPhone 15 Pro - 2024-02-16 at 17.26.22.png │ │ ├── Simulator Screenshot - iPhone 15 Pro - 2024-08-04 at 10.36.21.png │ │ ├── Simulator Screenshot - iPhone 15 Pro - 2024-08-04 at 10.37.22.png │ │ ├── Simulator Screenshot - iPhone 15 Pro - 2024-08-04 at 10.40.35.png │ │ └── Simulator Screenshot - iPhone 15 Pro - 2024-08-04 at 10.41.37.png │ ├── ogs.imageset │ │ ├── Contents.json │ │ ├── ogs_dark.svg │ │ └── ogs_light.svg │ └── stonePlacing.dataset │ │ ├── Contents.json │ │ └── stone.mp3 ├── Components │ ├── BoardDemoView.swift │ ├── BoardView.swift │ ├── ChallengeCell.swift │ ├── ChatLine.swift │ ├── ChatLog.swift │ ├── GameCell.swift │ ├── GameControlRow.swift │ ├── InlineTimerView.swift │ ├── NotificationPopup.swift │ ├── PrivateMessageLog.swift │ ├── PrivateMessageNotificationView.swift │ ├── Stone.swift │ └── TimerView.swift ├── Data │ └── TestData.swift ├── Info.plist ├── Localizable.xcstrings ├── MainViewWrapper.swift ├── Models │ ├── Core │ │ ├── BoardPosition.swift │ │ ├── Game.swift │ │ ├── MoveTree.swift │ │ ├── TimeControl.swift │ │ └── Variation.swift │ ├── OGS │ │ ├── OGSAutomatchEntry.swift │ │ ├── OGSChallenge.swift │ │ ├── OGSChatLine.swift │ │ ├── OGSChatMessage.swift │ │ ├── OGSClock.swift │ │ ├── OGSGame.swift │ │ ├── OGSMoveTreeNode.swift │ │ ├── OGSPauseControl.swift │ │ ├── OGSPrivateMessage.swift │ │ ├── OGSPuzzle.swift │ │ ├── OGSRemoteSetting.swift │ │ ├── OGSUIConfig.swift │ │ └── OGSUser.swift │ └── UserDefaults+SurroundModels.swift ├── Preview Content │ ├── Preview Assets.xcassets │ │ └── Contents.json │ ├── chat-27671778.json │ ├── game-18759438.json │ ├── game-23871959.json │ ├── game-25076729.json │ ├── game-25291907.json │ ├── game-25758368.json │ ├── game-26268396.json │ ├── game-26268404.json │ ├── game-26269354.json │ ├── game-27053412.json │ ├── game-27671778.json │ ├── game-beta-11289.json │ ├── game-beta-11359.json │ └── puzzle-2630.json ├── ScoreEstimator │ ├── Bridging-Header.h │ ├── Color.h │ ├── Goban.cc │ ├── Goban.h │ ├── Grid.h │ ├── LICENSE │ ├── Point.h │ ├── ThreadPool.h │ ├── Vec.h │ ├── constants.h │ ├── estimator.h │ ├── log.h │ ├── rang.hpp │ └── se_wrapper.cpp ├── Services │ ├── NavigationService.swift │ ├── OGSService.swift │ ├── OGSWebsocket.swift │ ├── SurroundNotificationService.swift │ ├── SurroundService.swift │ ├── TextUtilities.swift │ └── TimeUtilities.swift ├── Surround.entitlements ├── SurroundApp.swift └── Views │ ├── AboutView.swift │ ├── GameDetail │ ├── ActiveGamesCarousel.swift │ ├── AnalyzeTreeView.swift │ ├── GameDetailView.swift │ ├── PlayersBannerView.swift │ └── SingleGameView.swift │ ├── HomeView.swift │ ├── MainView.swift │ ├── NewGameView.swift │ ├── OGSBrowserView.swift │ ├── PreferredSettingsView.swift │ ├── PrivateMessagesView.swift │ ├── PublicGamesList.swift │ ├── RulesPickerView.swift │ ├── SettingsView.swift │ ├── SupporterView.swift │ ├── ThirdPartyLoginView.swift │ ├── TimeSystemPickerView.swift │ ├── UserSelectionView.swift │ ├── View+apply.swift │ ├── WaitingGamesView.swift │ └── WelcomeView.swift ├── SurroundNotificationContent ├── Base.lproj │ └── MainInterface.storyboard ├── Info.plist ├── NotificationViewController.swift ├── SurroundNotificationContent.entitlements ├── fr.lproj │ └── MainInterface.strings └── ja.lproj │ └── MainInterface.strings ├── SurroundNotificationService ├── Info.plist ├── NotificationService.swift └── SurroundNotificationService.entitlements ├── SurroundTests ├── BoardPositionTests.swift ├── ChallengeTests.swift ├── GameTests.swift ├── Info.plist ├── PuzzleTests.swift └── SurroundTests.swift ├── SurroundUITests ├── Info.plist └── SurroundUITests.swift ├── SurroundWidgets ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── WidgetBackground.colorset │ │ └── Contents.json ├── Info.plist └── SurroundWidgets.swift └── SurroundWidgetsExtension.entitlements /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/README.md -------------------------------------------------------------------------------- /Surround.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Surround.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Surround.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Surround.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Surround.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Surround.xcodeproj/xcshareddata/xcschemes/Surround.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround.xcodeproj/xcshareddata/xcschemes/Surround.xcscheme -------------------------------------------------------------------------------- /Surround.xcodeproj/xcshareddata/xcschemes/SurroundWidgetsExtension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround.xcodeproj/xcshareddata/xcschemes/SurroundWidgetsExtension.xcscheme -------------------------------------------------------------------------------- /Surround.xcodeproj/xcuserdata/honganhkhoa.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround.xcodeproj/xcuserdata/honganhkhoa.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-1024.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-120.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-121.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-152.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-167.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-180.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-20.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-29.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-40.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-41.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-42.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-58.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-59.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-60.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-76.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-80.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-81.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/AppIcon.appiconset/surround-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/AppIcon.appiconset/surround-87.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Surround/Assets.xcassets/Surround.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/Surround.imageset/Contents.json -------------------------------------------------------------------------------- /Surround/Assets.xcassets/Surround.imageset/surround-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/Surround.imageset/surround-120.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/Surround.imageset/surround-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/Surround.imageset/surround-180.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/Surround.imageset/surround-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/Surround.imageset/surround-60.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/SurroundNotification.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/SurroundNotification.imageset/Contents.json -------------------------------------------------------------------------------- /Surround/Assets.xcassets/SurroundNotification.imageset/Simulator Screenshot - iPhone 15 Pro - 2024-02-16 at 17.20.14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/SurroundNotification.imageset/Simulator Screenshot - iPhone 15 Pro - 2024-02-16 at 17.20.14.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/SurroundNotification.imageset/Simulator Screenshot - iPhone 15 Pro - 2024-02-16 at 17.22.54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/SurroundNotification.imageset/Simulator Screenshot - iPhone 15 Pro - 2024-02-16 at 17.22.54.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/SurroundNotification.imageset/Simulator Screenshot - iPhone 15 Pro - 2024-02-16 at 17.24.55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/SurroundNotification.imageset/Simulator Screenshot - iPhone 15 Pro - 2024-02-16 at 17.24.55.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/SurroundNotification.imageset/Simulator Screenshot - iPhone 15 Pro - 2024-02-16 at 17.26.22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/SurroundNotification.imageset/Simulator Screenshot - iPhone 15 Pro - 2024-02-16 at 17.26.22.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/SurroundNotification.imageset/Simulator Screenshot - iPhone 15 Pro - 2024-08-04 at 10.36.21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/SurroundNotification.imageset/Simulator Screenshot - iPhone 15 Pro - 2024-08-04 at 10.36.21.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/SurroundNotification.imageset/Simulator Screenshot - iPhone 15 Pro - 2024-08-04 at 10.37.22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/SurroundNotification.imageset/Simulator Screenshot - iPhone 15 Pro - 2024-08-04 at 10.37.22.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/SurroundNotification.imageset/Simulator Screenshot - iPhone 15 Pro - 2024-08-04 at 10.40.35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/SurroundNotification.imageset/Simulator Screenshot - iPhone 15 Pro - 2024-08-04 at 10.40.35.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/SurroundNotification.imageset/Simulator Screenshot - iPhone 15 Pro - 2024-08-04 at 10.41.37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/SurroundNotification.imageset/Simulator Screenshot - iPhone 15 Pro - 2024-08-04 at 10.41.37.png -------------------------------------------------------------------------------- /Surround/Assets.xcassets/ogs.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/ogs.imageset/Contents.json -------------------------------------------------------------------------------- /Surround/Assets.xcassets/ogs.imageset/ogs_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/ogs.imageset/ogs_dark.svg -------------------------------------------------------------------------------- /Surround/Assets.xcassets/ogs.imageset/ogs_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/ogs.imageset/ogs_light.svg -------------------------------------------------------------------------------- /Surround/Assets.xcassets/stonePlacing.dataset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/stonePlacing.dataset/Contents.json -------------------------------------------------------------------------------- /Surround/Assets.xcassets/stonePlacing.dataset/stone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Assets.xcassets/stonePlacing.dataset/stone.mp3 -------------------------------------------------------------------------------- /Surround/Components/BoardDemoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Components/BoardDemoView.swift -------------------------------------------------------------------------------- /Surround/Components/BoardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Components/BoardView.swift -------------------------------------------------------------------------------- /Surround/Components/ChallengeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Components/ChallengeCell.swift -------------------------------------------------------------------------------- /Surround/Components/ChatLine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Components/ChatLine.swift -------------------------------------------------------------------------------- /Surround/Components/ChatLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Components/ChatLog.swift -------------------------------------------------------------------------------- /Surround/Components/GameCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Components/GameCell.swift -------------------------------------------------------------------------------- /Surround/Components/GameControlRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Components/GameControlRow.swift -------------------------------------------------------------------------------- /Surround/Components/InlineTimerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Components/InlineTimerView.swift -------------------------------------------------------------------------------- /Surround/Components/NotificationPopup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Components/NotificationPopup.swift -------------------------------------------------------------------------------- /Surround/Components/PrivateMessageLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Components/PrivateMessageLog.swift -------------------------------------------------------------------------------- /Surround/Components/PrivateMessageNotificationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Components/PrivateMessageNotificationView.swift -------------------------------------------------------------------------------- /Surround/Components/Stone.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Components/Stone.swift -------------------------------------------------------------------------------- /Surround/Components/TimerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Components/TimerView.swift -------------------------------------------------------------------------------- /Surround/Data/TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Data/TestData.swift -------------------------------------------------------------------------------- /Surround/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Info.plist -------------------------------------------------------------------------------- /Surround/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Localizable.xcstrings -------------------------------------------------------------------------------- /Surround/MainViewWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/MainViewWrapper.swift -------------------------------------------------------------------------------- /Surround/Models/Core/BoardPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/Core/BoardPosition.swift -------------------------------------------------------------------------------- /Surround/Models/Core/Game.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/Core/Game.swift -------------------------------------------------------------------------------- /Surround/Models/Core/MoveTree.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/Core/MoveTree.swift -------------------------------------------------------------------------------- /Surround/Models/Core/TimeControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/Core/TimeControl.swift -------------------------------------------------------------------------------- /Surround/Models/Core/Variation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/Core/Variation.swift -------------------------------------------------------------------------------- /Surround/Models/OGS/OGSAutomatchEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/OGS/OGSAutomatchEntry.swift -------------------------------------------------------------------------------- /Surround/Models/OGS/OGSChallenge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/OGS/OGSChallenge.swift -------------------------------------------------------------------------------- /Surround/Models/OGS/OGSChatLine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/OGS/OGSChatLine.swift -------------------------------------------------------------------------------- /Surround/Models/OGS/OGSChatMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/OGS/OGSChatMessage.swift -------------------------------------------------------------------------------- /Surround/Models/OGS/OGSClock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/OGS/OGSClock.swift -------------------------------------------------------------------------------- /Surround/Models/OGS/OGSGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/OGS/OGSGame.swift -------------------------------------------------------------------------------- /Surround/Models/OGS/OGSMoveTreeNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/OGS/OGSMoveTreeNode.swift -------------------------------------------------------------------------------- /Surround/Models/OGS/OGSPauseControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/OGS/OGSPauseControl.swift -------------------------------------------------------------------------------- /Surround/Models/OGS/OGSPrivateMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/OGS/OGSPrivateMessage.swift -------------------------------------------------------------------------------- /Surround/Models/OGS/OGSPuzzle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/OGS/OGSPuzzle.swift -------------------------------------------------------------------------------- /Surround/Models/OGS/OGSRemoteSetting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/OGS/OGSRemoteSetting.swift -------------------------------------------------------------------------------- /Surround/Models/OGS/OGSUIConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/OGS/OGSUIConfig.swift -------------------------------------------------------------------------------- /Surround/Models/OGS/OGSUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/OGS/OGSUser.swift -------------------------------------------------------------------------------- /Surround/Models/UserDefaults+SurroundModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Models/UserDefaults+SurroundModels.swift -------------------------------------------------------------------------------- /Surround/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Surround/Preview Content/chat-27671778.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Preview Content/chat-27671778.json -------------------------------------------------------------------------------- /Surround/Preview Content/game-18759438.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Preview Content/game-18759438.json -------------------------------------------------------------------------------- /Surround/Preview Content/game-23871959.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Preview Content/game-23871959.json -------------------------------------------------------------------------------- /Surround/Preview Content/game-25076729.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Preview Content/game-25076729.json -------------------------------------------------------------------------------- /Surround/Preview Content/game-25291907.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Preview Content/game-25291907.json -------------------------------------------------------------------------------- /Surround/Preview Content/game-25758368.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Preview Content/game-25758368.json -------------------------------------------------------------------------------- /Surround/Preview Content/game-26268396.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Preview Content/game-26268396.json -------------------------------------------------------------------------------- /Surround/Preview Content/game-26268404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Preview Content/game-26268404.json -------------------------------------------------------------------------------- /Surround/Preview Content/game-26269354.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Preview Content/game-26269354.json -------------------------------------------------------------------------------- /Surround/Preview Content/game-27053412.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Preview Content/game-27053412.json -------------------------------------------------------------------------------- /Surround/Preview Content/game-27671778.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Preview Content/game-27671778.json -------------------------------------------------------------------------------- /Surround/Preview Content/game-beta-11289.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Preview Content/game-beta-11289.json -------------------------------------------------------------------------------- /Surround/Preview Content/game-beta-11359.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Preview Content/game-beta-11359.json -------------------------------------------------------------------------------- /Surround/Preview Content/puzzle-2630.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Preview Content/puzzle-2630.json -------------------------------------------------------------------------------- /Surround/ScoreEstimator/Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/ScoreEstimator/Bridging-Header.h -------------------------------------------------------------------------------- /Surround/ScoreEstimator/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/ScoreEstimator/Color.h -------------------------------------------------------------------------------- /Surround/ScoreEstimator/Goban.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/ScoreEstimator/Goban.cc -------------------------------------------------------------------------------- /Surround/ScoreEstimator/Goban.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/ScoreEstimator/Goban.h -------------------------------------------------------------------------------- /Surround/ScoreEstimator/Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/ScoreEstimator/Grid.h -------------------------------------------------------------------------------- /Surround/ScoreEstimator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/ScoreEstimator/LICENSE -------------------------------------------------------------------------------- /Surround/ScoreEstimator/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/ScoreEstimator/Point.h -------------------------------------------------------------------------------- /Surround/ScoreEstimator/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/ScoreEstimator/ThreadPool.h -------------------------------------------------------------------------------- /Surround/ScoreEstimator/Vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/ScoreEstimator/Vec.h -------------------------------------------------------------------------------- /Surround/ScoreEstimator/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/ScoreEstimator/constants.h -------------------------------------------------------------------------------- /Surround/ScoreEstimator/estimator.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Surround/ScoreEstimator/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/ScoreEstimator/log.h -------------------------------------------------------------------------------- /Surround/ScoreEstimator/rang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/ScoreEstimator/rang.hpp -------------------------------------------------------------------------------- /Surround/ScoreEstimator/se_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/ScoreEstimator/se_wrapper.cpp -------------------------------------------------------------------------------- /Surround/Services/NavigationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Services/NavigationService.swift -------------------------------------------------------------------------------- /Surround/Services/OGSService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Services/OGSService.swift -------------------------------------------------------------------------------- /Surround/Services/OGSWebsocket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Services/OGSWebsocket.swift -------------------------------------------------------------------------------- /Surround/Services/SurroundNotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Services/SurroundNotificationService.swift -------------------------------------------------------------------------------- /Surround/Services/SurroundService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Services/SurroundService.swift -------------------------------------------------------------------------------- /Surround/Services/TextUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Services/TextUtilities.swift -------------------------------------------------------------------------------- /Surround/Services/TimeUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Services/TimeUtilities.swift -------------------------------------------------------------------------------- /Surround/Surround.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Surround.entitlements -------------------------------------------------------------------------------- /Surround/SurroundApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/SurroundApp.swift -------------------------------------------------------------------------------- /Surround/Views/AboutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/AboutView.swift -------------------------------------------------------------------------------- /Surround/Views/GameDetail/ActiveGamesCarousel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/GameDetail/ActiveGamesCarousel.swift -------------------------------------------------------------------------------- /Surround/Views/GameDetail/AnalyzeTreeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/GameDetail/AnalyzeTreeView.swift -------------------------------------------------------------------------------- /Surround/Views/GameDetail/GameDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/GameDetail/GameDetailView.swift -------------------------------------------------------------------------------- /Surround/Views/GameDetail/PlayersBannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/GameDetail/PlayersBannerView.swift -------------------------------------------------------------------------------- /Surround/Views/GameDetail/SingleGameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/GameDetail/SingleGameView.swift -------------------------------------------------------------------------------- /Surround/Views/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/HomeView.swift -------------------------------------------------------------------------------- /Surround/Views/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/MainView.swift -------------------------------------------------------------------------------- /Surround/Views/NewGameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/NewGameView.swift -------------------------------------------------------------------------------- /Surround/Views/OGSBrowserView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/OGSBrowserView.swift -------------------------------------------------------------------------------- /Surround/Views/PreferredSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/PreferredSettingsView.swift -------------------------------------------------------------------------------- /Surround/Views/PrivateMessagesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/PrivateMessagesView.swift -------------------------------------------------------------------------------- /Surround/Views/PublicGamesList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/PublicGamesList.swift -------------------------------------------------------------------------------- /Surround/Views/RulesPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/RulesPickerView.swift -------------------------------------------------------------------------------- /Surround/Views/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/SettingsView.swift -------------------------------------------------------------------------------- /Surround/Views/SupporterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/SupporterView.swift -------------------------------------------------------------------------------- /Surround/Views/ThirdPartyLoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/ThirdPartyLoginView.swift -------------------------------------------------------------------------------- /Surround/Views/TimeSystemPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/TimeSystemPickerView.swift -------------------------------------------------------------------------------- /Surround/Views/UserSelectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/UserSelectionView.swift -------------------------------------------------------------------------------- /Surround/Views/View+apply.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/View+apply.swift -------------------------------------------------------------------------------- /Surround/Views/WaitingGamesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/WaitingGamesView.swift -------------------------------------------------------------------------------- /Surround/Views/WelcomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/Surround/Views/WelcomeView.swift -------------------------------------------------------------------------------- /SurroundNotificationContent/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundNotificationContent/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /SurroundNotificationContent/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundNotificationContent/Info.plist -------------------------------------------------------------------------------- /SurroundNotificationContent/NotificationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundNotificationContent/NotificationViewController.swift -------------------------------------------------------------------------------- /SurroundNotificationContent/SurroundNotificationContent.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundNotificationContent/SurroundNotificationContent.entitlements -------------------------------------------------------------------------------- /SurroundNotificationContent/fr.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SurroundNotificationContent/ja.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SurroundNotificationService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundNotificationService/Info.plist -------------------------------------------------------------------------------- /SurroundNotificationService/NotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundNotificationService/NotificationService.swift -------------------------------------------------------------------------------- /SurroundNotificationService/SurroundNotificationService.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundNotificationService/SurroundNotificationService.entitlements -------------------------------------------------------------------------------- /SurroundTests/BoardPositionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundTests/BoardPositionTests.swift -------------------------------------------------------------------------------- /SurroundTests/ChallengeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundTests/ChallengeTests.swift -------------------------------------------------------------------------------- /SurroundTests/GameTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundTests/GameTests.swift -------------------------------------------------------------------------------- /SurroundTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundTests/Info.plist -------------------------------------------------------------------------------- /SurroundTests/PuzzleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundTests/PuzzleTests.swift -------------------------------------------------------------------------------- /SurroundTests/SurroundTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundTests/SurroundTests.swift -------------------------------------------------------------------------------- /SurroundUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundUITests/Info.plist -------------------------------------------------------------------------------- /SurroundUITests/SurroundUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundUITests/SurroundUITests.swift -------------------------------------------------------------------------------- /SurroundWidgets/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundWidgets/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /SurroundWidgets/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundWidgets/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SurroundWidgets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundWidgets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SurroundWidgets/Assets.xcassets/WidgetBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundWidgets/Assets.xcassets/WidgetBackground.colorset/Contents.json -------------------------------------------------------------------------------- /SurroundWidgets/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundWidgets/Info.plist -------------------------------------------------------------------------------- /SurroundWidgets/SurroundWidgets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundWidgets/SurroundWidgets.swift -------------------------------------------------------------------------------- /SurroundWidgetsExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honganhkhoa/Surround/HEAD/SurroundWidgetsExtension.entitlements --------------------------------------------------------------------------------