├── .github ├── copilot-instructions.md └── prompts │ ├── dotnet │ ├── async.prompt.md │ ├── codestyle.prompt.md │ ├── maui │ │ ├── hybrid.prompt.md │ │ ├── maui-layouts.prompt.md │ │ ├── maui-memory-leaks.prompt.md │ │ ├── maui-upgrade.prompt.md │ │ └── maui.prompt.md │ └── testing.xunit.prompt.md │ └── prompts.prompt.md ├── .gitignore ├── .vscode └── settings.json ├── LICENSE.MD ├── README.md ├── docs ├── 2025 Build - AI Infused MAUI.pptx ├── impl-plan-user-memory.md ├── memory-system-complete.md ├── phase1-verification-guide.md ├── preference-learning.md └── spec-usermemory.md ├── images ├── telepathy-screens.png └── youtube_poster.png └── src ├── .vscode └── settings.json ├── Telepathic.sln ├── Telepathic ├── App.xaml ├── App.xaml.cs ├── AppShell.xaml ├── AppShell.xaml.cs ├── Converters │ ├── AssistTypeToBoolConverter.cs │ ├── BoolToFontAttributesConverter.cs │ ├── BothBooleanConverter.cs │ ├── CombinedTasksConverter.cs │ ├── PhaseToRecordingBoolConverter.cs │ └── PhaseToReviewBoolConverter.cs ├── Data │ ├── CategoryRepository.cs │ ├── Constants.cs │ ├── JsonContext.cs │ ├── ProjectRepository.cs │ ├── SeedDataService.cs │ ├── TagRepository.cs │ ├── TaskRespository.cs │ └── UserMemory │ │ ├── IUserMemoryStore.cs │ │ ├── MemoryConstants.cs │ │ ├── MemoryEvent.cs │ │ ├── MemoryFact.cs │ │ ├── MemorySnapshot.cs │ │ └── SqliteUserMemoryStore.cs ├── MauiProgram.cs ├── Models │ ├── AssistType.cs │ ├── CalendarInfo.cs │ ├── Category.cs │ ├── CategoryChartData.cs │ ├── NullableDateTimeConverter.cs │ ├── PriorityTaskResult.cs │ ├── Project.cs │ ├── ProjectTask.cs │ ├── ProjectsTags.cs │ └── Tag.cs ├── PageModels │ ├── DeviceSensorsPageModel.cs │ ├── ExtractionModels.cs │ ├── ExtractionResponse.cs │ ├── IProjectTaskPageModel.cs │ ├── MainPageModel.cs │ ├── ManageMetaPageModel.cs │ ├── MemoryDebugPageModel.cs │ ├── MyDataPageModel.cs │ ├── PhotoPageModel.cs │ ├── ProjectDetailPageModel.cs │ ├── ProjectListPageModel.cs │ ├── TaskDetailPageModel.cs │ ├── UserProfilePageModel.cs │ └── VoicePageModel.cs ├── Pages │ ├── Controls │ │ ├── ActivityIndicatorView.xaml │ │ ├── ActivityIndicatorView.xaml.cs │ │ ├── AddButton.xaml │ │ ├── AddButton.xaml.cs │ │ ├── AnimatedGradientText.cs │ │ ├── CategoryChart.xaml │ │ ├── CategoryChart.xaml.cs │ │ ├── GradientTextInputLayout.cs │ │ ├── LegendExt.cs │ │ ├── ProjectCardView.xaml │ │ ├── ProjectCardView.xaml.cs │ │ ├── SettingsIconDrawable.cs │ │ ├── SkiaAnimatedGradientTextSK.cs │ │ ├── TagView.xaml │ │ ├── TagView.xaml.cs │ │ ├── TaskView.xaml │ │ └── TaskView.xaml.cs │ ├── DeviceSensorsPage.xaml │ ├── DeviceSensorsPage.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── ManageMetaPage.xaml │ ├── ManageMetaPage.xaml.cs │ ├── MemoryDebugPage.xaml │ ├── MemoryDebugPage.xaml.cs │ ├── MyDataPage.xaml │ ├── MyDataPage.xaml.cs │ ├── PhotoPage.xaml │ ├── PhotoPage.xaml.cs │ ├── ProjectDetailPage.xaml │ ├── ProjectDetailPage.xaml.cs │ ├── ProjectListPage.xaml │ ├── ProjectListPage.xaml.cs │ ├── TaskDetailPage.xaml │ ├── TaskDetailPage.xaml.cs │ ├── UserProfilePage.xaml │ ├── UserProfilePage.xaml.cs │ ├── VoicePage.xaml │ └── VoicePage.xaml.cs ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── HealthService.cs │ │ ├── LightSensorService.cs │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── CustomAppShell.cs │ │ ├── Entitlements.plist │ │ ├── HealthService.cs │ │ ├── Info.plist │ │ ├── LightSensorService.cs │ │ └── Program.cs │ ├── Tizen │ │ ├── Main.cs │ │ └── tizen-manifest.xml │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── HealthService.cs │ │ ├── LightSensorService.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── CustomAppShell.cs │ │ ├── Entitlements.plist │ │ ├── HealthService.cs │ │ ├── Info.plist │ │ ├── LightSensorService.cs │ │ ├── Program.cs │ │ └── Resources │ │ └── PrivacyInfo.xcprivacy ├── Properties │ └── launchSettings.json ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── FluentSystemIcons-Regular.ttf │ │ ├── FluentUI.cs │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-Semibold.ttf │ │ └── SegoeUI-Semibold.ttf │ ├── Images │ │ ├── flyoutheader.svg │ │ ├── flyoutheader_dark.svg │ │ ├── flyoutheader_light.svg │ │ ├── icon_telepathy_dark_off.svg │ │ ├── icon_telepathy_light_off.svg │ │ ├── icon_telepathy_off.svg │ │ └── icon_telepathy_on.svg │ ├── Raw │ │ ├── AboutAssets.txt │ │ └── SeedData.json │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── AppStyles.xaml │ │ ├── Colors.atomic.xaml │ │ ├── Colors.atomicorange.xaml │ │ ├── Colors.dotnet.xaml │ │ ├── Colors.noir.xaml │ │ ├── Colors.taskomatic.xaml │ │ ├── Colors.telepathic.xaml │ │ └── Styles.xaml ├── Services │ ├── AudioDeviceService.cs │ ├── AudioService.cs │ ├── ChatClientService.cs │ ├── FoundryTranscriptionService.cs │ ├── IAudioService.cs │ ├── IErrorHandler.cs │ ├── IHealthService.cs │ ├── ILightSensorService.cs │ ├── ITranscriptionService.cs │ ├── ModalErrorHandler.cs │ ├── TaskAssistAnalyzer.cs │ ├── TaskAssistHandler.cs │ └── WhisperTranscriptionService.cs ├── Telepathic.csproj ├── Tools │ └── LocationTools.cs ├── Utilities │ ├── ProjectExtentions.cs │ └── TaskUtilities.cs ├── ViewModels │ └── ProjectTaskViewModel.cs └── _usings.cs └── docs ├── impl-spec-voice-feature.md └── spec-voice-feature.md /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/prompts/dotnet/async.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/.github/prompts/dotnet/async.prompt.md -------------------------------------------------------------------------------- /.github/prompts/dotnet/codestyle.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/.github/prompts/dotnet/codestyle.prompt.md -------------------------------------------------------------------------------- /.github/prompts/dotnet/maui/hybrid.prompt.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/prompts/dotnet/maui/maui-layouts.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/.github/prompts/dotnet/maui/maui-layouts.prompt.md -------------------------------------------------------------------------------- /.github/prompts/dotnet/maui/maui-memory-leaks.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/.github/prompts/dotnet/maui/maui-memory-leaks.prompt.md -------------------------------------------------------------------------------- /.github/prompts/dotnet/maui/maui-upgrade.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/.github/prompts/dotnet/maui/maui-upgrade.prompt.md -------------------------------------------------------------------------------- /.github/prompts/dotnet/maui/maui.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/.github/prompts/dotnet/maui/maui.prompt.md -------------------------------------------------------------------------------- /.github/prompts/dotnet/testing.xunit.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/.github/prompts/dotnet/testing.xunit.prompt.md -------------------------------------------------------------------------------- /.github/prompts/prompts.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/.github/prompts/prompts.prompt.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/LICENSE.MD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/README.md -------------------------------------------------------------------------------- /docs/2025 Build - AI Infused MAUI.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/docs/2025 Build - AI Infused MAUI.pptx -------------------------------------------------------------------------------- /docs/impl-plan-user-memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/docs/impl-plan-user-memory.md -------------------------------------------------------------------------------- /docs/memory-system-complete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/docs/memory-system-complete.md -------------------------------------------------------------------------------- /docs/phase1-verification-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/docs/phase1-verification-guide.md -------------------------------------------------------------------------------- /docs/preference-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/docs/preference-learning.md -------------------------------------------------------------------------------- /docs/spec-usermemory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/docs/spec-usermemory.md -------------------------------------------------------------------------------- /images/telepathy-screens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/images/telepathy-screens.png -------------------------------------------------------------------------------- /images/youtube_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/images/youtube_poster.png -------------------------------------------------------------------------------- /src/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "dotnet.defaultSolution": "Telepathic.sln" 3 | } -------------------------------------------------------------------------------- /src/Telepathic.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic.sln -------------------------------------------------------------------------------- /src/Telepathic/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/App.xaml -------------------------------------------------------------------------------- /src/Telepathic/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/App.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/AppShell.xaml -------------------------------------------------------------------------------- /src/Telepathic/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/AppShell.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Converters/AssistTypeToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Converters/AssistTypeToBoolConverter.cs -------------------------------------------------------------------------------- /src/Telepathic/Converters/BoolToFontAttributesConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Converters/BoolToFontAttributesConverter.cs -------------------------------------------------------------------------------- /src/Telepathic/Converters/BothBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Converters/BothBooleanConverter.cs -------------------------------------------------------------------------------- /src/Telepathic/Converters/CombinedTasksConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Converters/CombinedTasksConverter.cs -------------------------------------------------------------------------------- /src/Telepathic/Converters/PhaseToRecordingBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Converters/PhaseToRecordingBoolConverter.cs -------------------------------------------------------------------------------- /src/Telepathic/Converters/PhaseToReviewBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Converters/PhaseToReviewBoolConverter.cs -------------------------------------------------------------------------------- /src/Telepathic/Data/CategoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Data/CategoryRepository.cs -------------------------------------------------------------------------------- /src/Telepathic/Data/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Data/Constants.cs -------------------------------------------------------------------------------- /src/Telepathic/Data/JsonContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Data/JsonContext.cs -------------------------------------------------------------------------------- /src/Telepathic/Data/ProjectRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Data/ProjectRepository.cs -------------------------------------------------------------------------------- /src/Telepathic/Data/SeedDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Data/SeedDataService.cs -------------------------------------------------------------------------------- /src/Telepathic/Data/TagRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Data/TagRepository.cs -------------------------------------------------------------------------------- /src/Telepathic/Data/TaskRespository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Data/TaskRespository.cs -------------------------------------------------------------------------------- /src/Telepathic/Data/UserMemory/IUserMemoryStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Data/UserMemory/IUserMemoryStore.cs -------------------------------------------------------------------------------- /src/Telepathic/Data/UserMemory/MemoryConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Data/UserMemory/MemoryConstants.cs -------------------------------------------------------------------------------- /src/Telepathic/Data/UserMemory/MemoryEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Data/UserMemory/MemoryEvent.cs -------------------------------------------------------------------------------- /src/Telepathic/Data/UserMemory/MemoryFact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Data/UserMemory/MemoryFact.cs -------------------------------------------------------------------------------- /src/Telepathic/Data/UserMemory/MemorySnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Data/UserMemory/MemorySnapshot.cs -------------------------------------------------------------------------------- /src/Telepathic/Data/UserMemory/SqliteUserMemoryStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Data/UserMemory/SqliteUserMemoryStore.cs -------------------------------------------------------------------------------- /src/Telepathic/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/MauiProgram.cs -------------------------------------------------------------------------------- /src/Telepathic/Models/AssistType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Models/AssistType.cs -------------------------------------------------------------------------------- /src/Telepathic/Models/CalendarInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Models/CalendarInfo.cs -------------------------------------------------------------------------------- /src/Telepathic/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Models/Category.cs -------------------------------------------------------------------------------- /src/Telepathic/Models/CategoryChartData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Models/CategoryChartData.cs -------------------------------------------------------------------------------- /src/Telepathic/Models/NullableDateTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Models/NullableDateTimeConverter.cs -------------------------------------------------------------------------------- /src/Telepathic/Models/PriorityTaskResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Models/PriorityTaskResult.cs -------------------------------------------------------------------------------- /src/Telepathic/Models/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Models/Project.cs -------------------------------------------------------------------------------- /src/Telepathic/Models/ProjectTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Models/ProjectTask.cs -------------------------------------------------------------------------------- /src/Telepathic/Models/ProjectsTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Models/ProjectsTags.cs -------------------------------------------------------------------------------- /src/Telepathic/Models/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Models/Tag.cs -------------------------------------------------------------------------------- /src/Telepathic/PageModels/DeviceSensorsPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/PageModels/DeviceSensorsPageModel.cs -------------------------------------------------------------------------------- /src/Telepathic/PageModels/ExtractionModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/PageModels/ExtractionModels.cs -------------------------------------------------------------------------------- /src/Telepathic/PageModels/ExtractionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/PageModels/ExtractionResponse.cs -------------------------------------------------------------------------------- /src/Telepathic/PageModels/IProjectTaskPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/PageModels/IProjectTaskPageModel.cs -------------------------------------------------------------------------------- /src/Telepathic/PageModels/MainPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/PageModels/MainPageModel.cs -------------------------------------------------------------------------------- /src/Telepathic/PageModels/ManageMetaPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/PageModels/ManageMetaPageModel.cs -------------------------------------------------------------------------------- /src/Telepathic/PageModels/MemoryDebugPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/PageModels/MemoryDebugPageModel.cs -------------------------------------------------------------------------------- /src/Telepathic/PageModels/MyDataPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/PageModels/MyDataPageModel.cs -------------------------------------------------------------------------------- /src/Telepathic/PageModels/PhotoPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/PageModels/PhotoPageModel.cs -------------------------------------------------------------------------------- /src/Telepathic/PageModels/ProjectDetailPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/PageModels/ProjectDetailPageModel.cs -------------------------------------------------------------------------------- /src/Telepathic/PageModels/ProjectListPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/PageModels/ProjectListPageModel.cs -------------------------------------------------------------------------------- /src/Telepathic/PageModels/TaskDetailPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/PageModels/TaskDetailPageModel.cs -------------------------------------------------------------------------------- /src/Telepathic/PageModels/UserProfilePageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/PageModels/UserProfilePageModel.cs -------------------------------------------------------------------------------- /src/Telepathic/PageModels/VoicePageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/PageModels/VoicePageModel.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/Controls/ActivityIndicatorView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/Controls/ActivityIndicatorView.xaml -------------------------------------------------------------------------------- /src/Telepathic/Pages/Controls/ActivityIndicatorView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/Controls/ActivityIndicatorView.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/Controls/AddButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/Controls/AddButton.xaml -------------------------------------------------------------------------------- /src/Telepathic/Pages/Controls/AddButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/Controls/AddButton.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/Controls/AnimatedGradientText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/Controls/AnimatedGradientText.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/Controls/CategoryChart.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/Controls/CategoryChart.xaml -------------------------------------------------------------------------------- /src/Telepathic/Pages/Controls/CategoryChart.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/Controls/CategoryChart.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/Controls/GradientTextInputLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/Controls/GradientTextInputLayout.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/Controls/LegendExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/Controls/LegendExt.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/Controls/ProjectCardView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/Controls/ProjectCardView.xaml -------------------------------------------------------------------------------- /src/Telepathic/Pages/Controls/ProjectCardView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/Controls/ProjectCardView.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/Controls/SettingsIconDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/Controls/SettingsIconDrawable.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/Controls/SkiaAnimatedGradientTextSK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/Controls/SkiaAnimatedGradientTextSK.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/Controls/TagView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/Controls/TagView.xaml -------------------------------------------------------------------------------- /src/Telepathic/Pages/Controls/TagView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/Controls/TagView.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/Controls/TaskView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/Controls/TaskView.xaml -------------------------------------------------------------------------------- /src/Telepathic/Pages/Controls/TaskView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/Controls/TaskView.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/DeviceSensorsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/DeviceSensorsPage.xaml -------------------------------------------------------------------------------- /src/Telepathic/Pages/DeviceSensorsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/DeviceSensorsPage.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/MainPage.xaml -------------------------------------------------------------------------------- /src/Telepathic/Pages/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/ManageMetaPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/ManageMetaPage.xaml -------------------------------------------------------------------------------- /src/Telepathic/Pages/ManageMetaPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/ManageMetaPage.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/MemoryDebugPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/MemoryDebugPage.xaml -------------------------------------------------------------------------------- /src/Telepathic/Pages/MemoryDebugPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/MemoryDebugPage.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/MyDataPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/MyDataPage.xaml -------------------------------------------------------------------------------- /src/Telepathic/Pages/MyDataPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/MyDataPage.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/PhotoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/PhotoPage.xaml -------------------------------------------------------------------------------- /src/Telepathic/Pages/PhotoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/PhotoPage.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/ProjectDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/ProjectDetailPage.xaml -------------------------------------------------------------------------------- /src/Telepathic/Pages/ProjectDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/ProjectDetailPage.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/ProjectListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/ProjectListPage.xaml -------------------------------------------------------------------------------- /src/Telepathic/Pages/ProjectListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/ProjectListPage.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/TaskDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/TaskDetailPage.xaml -------------------------------------------------------------------------------- /src/Telepathic/Pages/TaskDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/TaskDetailPage.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/UserProfilePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/UserProfilePage.xaml -------------------------------------------------------------------------------- /src/Telepathic/Pages/UserProfilePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/UserProfilePage.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Pages/VoicePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/VoicePage.xaml -------------------------------------------------------------------------------- /src/Telepathic/Pages/VoicePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Pages/VoicePage.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/Telepathic/Platforms/Android/HealthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/Android/HealthService.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/Android/LightSensorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/Android/LightSensorService.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/Telepathic/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/MacCatalyst/CustomAppShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/MacCatalyst/CustomAppShell.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/MacCatalyst/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/MacCatalyst/Entitlements.plist -------------------------------------------------------------------------------- /src/Telepathic/Platforms/MacCatalyst/HealthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/MacCatalyst/HealthService.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /src/Telepathic/Platforms/MacCatalyst/LightSensorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/MacCatalyst/LightSensorService.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /src/Telepathic/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /src/Telepathic/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/Windows/HealthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/Windows/HealthService.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/Windows/LightSensorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/Windows/LightSensorService.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /src/Telepathic/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /src/Telepathic/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/iOS/CustomAppShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/iOS/CustomAppShell.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/iOS/Entitlements.plist -------------------------------------------------------------------------------- /src/Telepathic/Platforms/iOS/HealthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/iOS/HealthService.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /src/Telepathic/Platforms/iOS/LightSensorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/iOS/LightSensorService.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /src/Telepathic/Platforms/iOS/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Platforms/iOS/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /src/Telepathic/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Telepathic/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /src/Telepathic/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /src/Telepathic/Resources/Fonts/FluentSystemIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Fonts/FluentSystemIcons-Regular.ttf -------------------------------------------------------------------------------- /src/Telepathic/Resources/Fonts/FluentUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Fonts/FluentUI.cs -------------------------------------------------------------------------------- /src/Telepathic/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /src/Telepathic/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /src/Telepathic/Resources/Fonts/SegoeUI-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Fonts/SegoeUI-Semibold.ttf -------------------------------------------------------------------------------- /src/Telepathic/Resources/Images/flyoutheader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Images/flyoutheader.svg -------------------------------------------------------------------------------- /src/Telepathic/Resources/Images/flyoutheader_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Images/flyoutheader_dark.svg -------------------------------------------------------------------------------- /src/Telepathic/Resources/Images/flyoutheader_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Images/flyoutheader_light.svg -------------------------------------------------------------------------------- /src/Telepathic/Resources/Images/icon_telepathy_dark_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Images/icon_telepathy_dark_off.svg -------------------------------------------------------------------------------- /src/Telepathic/Resources/Images/icon_telepathy_light_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Images/icon_telepathy_light_off.svg -------------------------------------------------------------------------------- /src/Telepathic/Resources/Images/icon_telepathy_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Images/icon_telepathy_off.svg -------------------------------------------------------------------------------- /src/Telepathic/Resources/Images/icon_telepathy_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Images/icon_telepathy_on.svg -------------------------------------------------------------------------------- /src/Telepathic/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /src/Telepathic/Resources/Raw/SeedData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Raw/SeedData.json -------------------------------------------------------------------------------- /src/Telepathic/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /src/Telepathic/Resources/Styles/AppStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Styles/AppStyles.xaml -------------------------------------------------------------------------------- /src/Telepathic/Resources/Styles/Colors.atomic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Styles/Colors.atomic.xaml -------------------------------------------------------------------------------- /src/Telepathic/Resources/Styles/Colors.atomicorange.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Styles/Colors.atomicorange.xaml -------------------------------------------------------------------------------- /src/Telepathic/Resources/Styles/Colors.dotnet.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Styles/Colors.dotnet.xaml -------------------------------------------------------------------------------- /src/Telepathic/Resources/Styles/Colors.noir.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Styles/Colors.noir.xaml -------------------------------------------------------------------------------- /src/Telepathic/Resources/Styles/Colors.taskomatic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Styles/Colors.taskomatic.xaml -------------------------------------------------------------------------------- /src/Telepathic/Resources/Styles/Colors.telepathic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Styles/Colors.telepathic.xaml -------------------------------------------------------------------------------- /src/Telepathic/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /src/Telepathic/Services/AudioDeviceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Services/AudioDeviceService.cs -------------------------------------------------------------------------------- /src/Telepathic/Services/AudioService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Services/AudioService.cs -------------------------------------------------------------------------------- /src/Telepathic/Services/ChatClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Services/ChatClientService.cs -------------------------------------------------------------------------------- /src/Telepathic/Services/FoundryTranscriptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Services/FoundryTranscriptionService.cs -------------------------------------------------------------------------------- /src/Telepathic/Services/IAudioService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Services/IAudioService.cs -------------------------------------------------------------------------------- /src/Telepathic/Services/IErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Services/IErrorHandler.cs -------------------------------------------------------------------------------- /src/Telepathic/Services/IHealthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Services/IHealthService.cs -------------------------------------------------------------------------------- /src/Telepathic/Services/ILightSensorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Services/ILightSensorService.cs -------------------------------------------------------------------------------- /src/Telepathic/Services/ITranscriptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Services/ITranscriptionService.cs -------------------------------------------------------------------------------- /src/Telepathic/Services/ModalErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Services/ModalErrorHandler.cs -------------------------------------------------------------------------------- /src/Telepathic/Services/TaskAssistAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Services/TaskAssistAnalyzer.cs -------------------------------------------------------------------------------- /src/Telepathic/Services/TaskAssistHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Services/TaskAssistHandler.cs -------------------------------------------------------------------------------- /src/Telepathic/Services/WhisperTranscriptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Services/WhisperTranscriptionService.cs -------------------------------------------------------------------------------- /src/Telepathic/Telepathic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Telepathic.csproj -------------------------------------------------------------------------------- /src/Telepathic/Tools/LocationTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Tools/LocationTools.cs -------------------------------------------------------------------------------- /src/Telepathic/Utilities/ProjectExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Utilities/ProjectExtentions.cs -------------------------------------------------------------------------------- /src/Telepathic/Utilities/TaskUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/Utilities/TaskUtilities.cs -------------------------------------------------------------------------------- /src/Telepathic/ViewModels/ProjectTaskViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/ViewModels/ProjectTaskViewModel.cs -------------------------------------------------------------------------------- /src/Telepathic/_usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/Telepathic/_usings.cs -------------------------------------------------------------------------------- /src/docs/impl-spec-voice-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/docs/impl-spec-voice-feature.md -------------------------------------------------------------------------------- /src/docs/spec-voice-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/telepathy/HEAD/src/docs/spec-voice-feature.md --------------------------------------------------------------------------------