├── .github └── workflows │ └── test.yml ├── .gitignore ├── .swiftlint.yml ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── AppFeature │ ├── App.swift │ ├── AppView.swift │ ├── Buttons.swift │ ├── DateSelector.swift │ └── RandomDate.swift ├── ConfigurationFeature │ ├── Configuration.swift │ └── ConfigurationView.swift ├── SpeechRecognizerCore │ ├── SpeechRecognizer.swift │ └── SpeechRecognizerButton.swift ├── TTSCore │ ├── SpeakButton.swift │ └── TTS.swift └── WidgetFeature │ └── Widget.swift ├── TellTime └── TellTime.xcodeproj │ └── xcshareddata │ └── xcschemes │ └── TellTime.xcscheme ├── Tests ├── ConfigurationFeatureTests │ ├── ConfigurationTests.swift │ ├── ConfigurationViewTests.swift │ └── __Snapshots__ │ │ └── ConfigurationViewTests │ │ ├── testConfigurationViews.1.png │ │ └── testConfigurationViewsInLandscape.1.png ├── SpeechRecognizerCoreTests │ └── SpeechRecognizerTests.swift └── TTSCoreTests │ ├── SpeakButtonTests.swift │ ├── TTSTests.swift │ └── __Snapshots__ │ └── SpeakButtonTests │ └── testSpeakButtons.1.png ├── docs └── assets │ └── iPhoneScreenshots.png ├── privacy.md └── telltime ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── Package.swift ├── TellTime.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved ├── TellTime ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Test Clock 120x120-1.png │ │ ├── Test Clock 120x120.png │ │ ├── Test Clock 152x152.png │ │ ├── Test Clock 167x167.png │ │ ├── Test Clock 180x180.png │ │ ├── Test Clock 20x20.png │ │ ├── Test Clock 29x29.png │ │ ├── Test Clock 40x40-1.png │ │ ├── Test Clock 40x40-2.png │ │ ├── Test Clock 40x40.png │ │ ├── Test Clock 58x58-1.png │ │ ├── Test Clock 58x58.png │ │ ├── Test Clock 60x60.png │ │ ├── Test Clock 76x76.png │ │ ├── Test Clock 80x80-1.png │ │ ├── Test Clock 80x80.png │ │ ├── Test Clock 87x87.png │ │ └── Test Clock-2.png │ ├── Contents.json │ ├── Logo.imageset │ │ ├── Contents.json │ │ ├── TellTimeLogo200x200.png │ │ ├── TellTimeLogo400x400.png │ │ └── TellTimeLogo600x600.png │ └── clock-svg.imageset │ │ ├── Contents.json │ │ └── method-draw-image.svg ├── Info.plist ├── LaunchScreen.storyboard ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── TellTimeUKApp.swift ├── TellTimeTests ├── Clock │ ├── Elements │ │ └── __Snapshots__ │ │ │ ├── ArmTests │ │ │ ├── testArmWithAnAngle.1.png │ │ │ ├── testArms.1.png │ │ │ ├── testArtNouveauArm.1.png │ │ │ ├── testBiggerArm.1.png │ │ │ ├── testDrawnArms.1.png │ │ │ └── testDrawningArm.1.png │ │ │ ├── BorderTests │ │ │ └── testClassicClockBorders.1.png │ │ │ └── IndicatorsTests │ │ │ └── testIndicators.1.png │ ├── Face │ │ └── __Snapshots__ │ │ │ ├── ClockFaceTests │ │ │ ├── testClockFaceNeutral.1.png │ │ │ └── testClockFaceSmiling.1.png │ │ │ ├── EyeTests │ │ │ └── testEyes.1.png │ │ │ └── MouthTests │ │ │ └── testMouths.1.png │ └── __Snapshots__ │ │ └── ClockTests │ │ ├── testClockViewArtNouveauStyle.1.png │ │ ├── testClockViewDrawingStyle.1.png │ │ ├── testClockViewWithFace.1.png │ │ └── testClockViews.1.png ├── Common │ └── __Snapshots__ │ │ └── SwiftUIExtensionsTests │ │ └── testPathExtension.1.png ├── Configuration │ └── __Snapshots__ │ │ └── ConfigurationViewTests │ │ ├── testConfigurationViews.1.png │ │ └── testConfigurationViewsInLandscape.1.png └── TTS │ └── __Snapshots__ │ └── SpeakButtonTests │ └── testSpeakButtons.1.png └── TellTimeWidget ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json └── WidgetBackground.colorset │ └── Contents.json ├── Info.plist ├── TellTimeWidget.intentdefinition └── TellTimeWidget.swift /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata/ 2 | .DS_Store 3 | .build 4 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AppFeature/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Sources/AppFeature/App.swift -------------------------------------------------------------------------------- /Sources/AppFeature/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Sources/AppFeature/AppView.swift -------------------------------------------------------------------------------- /Sources/AppFeature/Buttons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Sources/AppFeature/Buttons.swift -------------------------------------------------------------------------------- /Sources/AppFeature/DateSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Sources/AppFeature/DateSelector.swift -------------------------------------------------------------------------------- /Sources/AppFeature/RandomDate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Sources/AppFeature/RandomDate.swift -------------------------------------------------------------------------------- /Sources/ConfigurationFeature/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Sources/ConfigurationFeature/Configuration.swift -------------------------------------------------------------------------------- /Sources/ConfigurationFeature/ConfigurationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Sources/ConfigurationFeature/ConfigurationView.swift -------------------------------------------------------------------------------- /Sources/SpeechRecognizerCore/SpeechRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Sources/SpeechRecognizerCore/SpeechRecognizer.swift -------------------------------------------------------------------------------- /Sources/SpeechRecognizerCore/SpeechRecognizerButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Sources/SpeechRecognizerCore/SpeechRecognizerButton.swift -------------------------------------------------------------------------------- /Sources/TTSCore/SpeakButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Sources/TTSCore/SpeakButton.swift -------------------------------------------------------------------------------- /Sources/TTSCore/TTS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Sources/TTSCore/TTS.swift -------------------------------------------------------------------------------- /Sources/WidgetFeature/Widget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Sources/WidgetFeature/Widget.swift -------------------------------------------------------------------------------- /TellTime/TellTime.xcodeproj/xcshareddata/xcschemes/TellTime.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/TellTime/TellTime.xcodeproj/xcshareddata/xcschemes/TellTime.xcscheme -------------------------------------------------------------------------------- /Tests/ConfigurationFeatureTests/ConfigurationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Tests/ConfigurationFeatureTests/ConfigurationTests.swift -------------------------------------------------------------------------------- /Tests/ConfigurationFeatureTests/ConfigurationViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Tests/ConfigurationFeatureTests/ConfigurationViewTests.swift -------------------------------------------------------------------------------- /Tests/ConfigurationFeatureTests/__Snapshots__/ConfigurationViewTests/testConfigurationViews.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Tests/ConfigurationFeatureTests/__Snapshots__/ConfigurationViewTests/testConfigurationViews.1.png -------------------------------------------------------------------------------- /Tests/ConfigurationFeatureTests/__Snapshots__/ConfigurationViewTests/testConfigurationViewsInLandscape.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Tests/ConfigurationFeatureTests/__Snapshots__/ConfigurationViewTests/testConfigurationViewsInLandscape.1.png -------------------------------------------------------------------------------- /Tests/SpeechRecognizerCoreTests/SpeechRecognizerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Tests/SpeechRecognizerCoreTests/SpeechRecognizerTests.swift -------------------------------------------------------------------------------- /Tests/TTSCoreTests/SpeakButtonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Tests/TTSCoreTests/SpeakButtonTests.swift -------------------------------------------------------------------------------- /Tests/TTSCoreTests/TTSTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Tests/TTSCoreTests/TTSTests.swift -------------------------------------------------------------------------------- /Tests/TTSCoreTests/__Snapshots__/SpeakButtonTests/testSpeakButtons.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/Tests/TTSCoreTests/__Snapshots__/SpeakButtonTests/testSpeakButtons.1.png -------------------------------------------------------------------------------- /docs/assets/iPhoneScreenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/docs/assets/iPhoneScreenshots.png -------------------------------------------------------------------------------- /privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/privacy.md -------------------------------------------------------------------------------- /telltime/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /telltime/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/Package.swift -------------------------------------------------------------------------------- /telltime/TellTime.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /telltime/TellTime.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /telltime/TellTime.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /telltime/TellTime.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 120x120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 120x120-1.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 120x120.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 152x152.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 167x167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 167x167.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 180x180.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 20x20.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 29x29.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 40x40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 40x40-1.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 40x40-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 40x40-2.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 40x40.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 58x58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 58x58-1.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 58x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 58x58.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 60x60.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 76x76.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 80x80-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 80x80-1.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 80x80.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 87x87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock 87x87.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/AppIcon.appiconset/Test Clock-2.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/Logo.imageset/Contents.json -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/Logo.imageset/TellTimeLogo200x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/Logo.imageset/TellTimeLogo200x200.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/Logo.imageset/TellTimeLogo400x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/Logo.imageset/TellTimeLogo400x400.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/Logo.imageset/TellTimeLogo600x600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/Logo.imageset/TellTimeLogo600x600.png -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/clock-svg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/clock-svg.imageset/Contents.json -------------------------------------------------------------------------------- /telltime/TellTime/Assets.xcassets/clock-svg.imageset/method-draw-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Assets.xcassets/clock-svg.imageset/method-draw-image.svg -------------------------------------------------------------------------------- /telltime/TellTime/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Info.plist -------------------------------------------------------------------------------- /telltime/TellTime/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/LaunchScreen.storyboard -------------------------------------------------------------------------------- /telltime/TellTime/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /telltime/TellTime/TellTimeUKApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTime/TellTimeUKApp.swift -------------------------------------------------------------------------------- /telltime/TellTimeTests/Clock/Elements/__Snapshots__/ArmTests/testArmWithAnAngle.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Clock/Elements/__Snapshots__/ArmTests/testArmWithAnAngle.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Clock/Elements/__Snapshots__/ArmTests/testArms.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Clock/Elements/__Snapshots__/ArmTests/testArms.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Clock/Elements/__Snapshots__/ArmTests/testArtNouveauArm.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Clock/Elements/__Snapshots__/ArmTests/testArtNouveauArm.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Clock/Elements/__Snapshots__/ArmTests/testBiggerArm.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Clock/Elements/__Snapshots__/ArmTests/testBiggerArm.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Clock/Elements/__Snapshots__/ArmTests/testDrawnArms.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Clock/Elements/__Snapshots__/ArmTests/testDrawnArms.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Clock/Elements/__Snapshots__/ArmTests/testDrawningArm.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Clock/Elements/__Snapshots__/ArmTests/testDrawningArm.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Clock/Elements/__Snapshots__/BorderTests/testClassicClockBorders.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Clock/Elements/__Snapshots__/BorderTests/testClassicClockBorders.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Clock/Elements/__Snapshots__/IndicatorsTests/testIndicators.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Clock/Elements/__Snapshots__/IndicatorsTests/testIndicators.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Clock/Face/__Snapshots__/ClockFaceTests/testClockFaceNeutral.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Clock/Face/__Snapshots__/ClockFaceTests/testClockFaceNeutral.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Clock/Face/__Snapshots__/ClockFaceTests/testClockFaceSmiling.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Clock/Face/__Snapshots__/ClockFaceTests/testClockFaceSmiling.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Clock/Face/__Snapshots__/EyeTests/testEyes.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Clock/Face/__Snapshots__/EyeTests/testEyes.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Clock/Face/__Snapshots__/MouthTests/testMouths.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Clock/Face/__Snapshots__/MouthTests/testMouths.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Clock/__Snapshots__/ClockTests/testClockViewArtNouveauStyle.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Clock/__Snapshots__/ClockTests/testClockViewArtNouveauStyle.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Clock/__Snapshots__/ClockTests/testClockViewDrawingStyle.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Clock/__Snapshots__/ClockTests/testClockViewDrawingStyle.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Clock/__Snapshots__/ClockTests/testClockViewWithFace.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Clock/__Snapshots__/ClockTests/testClockViewWithFace.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Clock/__Snapshots__/ClockTests/testClockViews.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Clock/__Snapshots__/ClockTests/testClockViews.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Common/__Snapshots__/SwiftUIExtensionsTests/testPathExtension.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Common/__Snapshots__/SwiftUIExtensionsTests/testPathExtension.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Configuration/__Snapshots__/ConfigurationViewTests/testConfigurationViews.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Configuration/__Snapshots__/ConfigurationViewTests/testConfigurationViews.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/Configuration/__Snapshots__/ConfigurationViewTests/testConfigurationViewsInLandscape.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/Configuration/__Snapshots__/ConfigurationViewTests/testConfigurationViewsInLandscape.1.png -------------------------------------------------------------------------------- /telltime/TellTimeTests/TTS/__Snapshots__/SpeakButtonTests/testSpeakButtons.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeTests/TTS/__Snapshots__/SpeakButtonTests/testSpeakButtons.1.png -------------------------------------------------------------------------------- /telltime/TellTimeWidget/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeWidget/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /telltime/TellTimeWidget/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeWidget/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /telltime/TellTimeWidget/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeWidget/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /telltime/TellTimeWidget/Assets.xcassets/WidgetBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeWidget/Assets.xcassets/WidgetBackground.colorset/Contents.json -------------------------------------------------------------------------------- /telltime/TellTimeWidget/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeWidget/Info.plist -------------------------------------------------------------------------------- /telltime/TellTimeWidget/TellTimeWidget.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeWidget/TellTimeWidget.intentdefinition -------------------------------------------------------------------------------- /telltime/TellTimeWidget/TellTimeWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudjenny/TellTime/HEAD/telltime/TellTimeWidget/TellTimeWidget.swift --------------------------------------------------------------------------------