├── .gitattributes ├── .gitignore ├── Core ├── App.config ├── AppState.cs ├── Core.csproj ├── Enums │ ├── AppType.cs │ ├── BrowserType.cs │ ├── SleepStatus.cs │ └── WebPageInfoType.cs ├── Event │ ├── AppActiveChangedEventArgs.cs │ ├── AppDurationUpdatedEventArgs.cs │ ├── AppObserverEventHandler.cs │ ├── AppTimerEventHandler.cs │ ├── BrowserObserverEventHandler.cs │ ├── EventHandler.cs │ ├── ObserverEventHandler.cs │ └── WebServerEventHandler.cs ├── Librarys │ ├── Browser │ │ ├── Favicon │ │ │ └── FaviconDownloader.cs │ │ ├── UrlHelper.cs │ │ └── WebSocketEvent.cs │ ├── FileHelper.cs │ ├── Iconer.cs │ ├── Logger.cs │ ├── ProcessHelper.cs │ ├── RegexHelper.cs │ ├── SQLite │ │ ├── SQLiteBuilder.cs │ │ ├── SQLiteConfiguration.cs │ │ └── TaiDbContext.cs │ ├── Shortcut.cs │ ├── SiteCache.cs │ ├── SystemCommon.cs │ ├── Time.cs │ └── Win32API.cs ├── Models │ ├── AppModel.cs │ ├── AppObserver │ │ ├── AppInfo.cs │ │ ├── AppObserverEventArgs.cs │ │ └── WindowInfo.cs │ ├── CategoryModel.cs │ ├── Config │ │ ├── BehaviorModel.cs │ │ ├── ConfigAttribute.cs │ │ ├── ConfigModel.cs │ │ ├── GeneralModel.cs │ │ └── Link │ │ │ └── LinkModel.cs │ ├── DailyLogModel.cs │ ├── Data │ │ ├── CommonDataModel.cs │ │ └── HoursDataModel.cs │ ├── Db │ │ ├── WebBrowseLogModel.cs │ │ ├── WebSiteCategoryModel.cs │ │ ├── WebSiteModel.cs │ │ └── WebUrlModel.cs │ ├── HoursLogModel.cs │ └── WebPage │ │ ├── NotifyWeb.cs │ │ └── Site.cs ├── Properties │ └── AssemblyInfo.cs ├── Servicers │ ├── Instances │ │ ├── AppConfig.cs │ │ ├── AppData.cs │ │ ├── AppManager.cs │ │ ├── AppObserver.cs │ │ ├── AppTimerServicer.cs │ │ ├── Categorys.cs │ │ ├── Data.cs │ │ ├── Database.cs │ │ ├── DateTimeObserver.cs │ │ ├── Main.cs │ │ ├── Sleepdiscover.cs │ │ ├── WebData.cs │ │ ├── WebFilter.cs │ │ ├── WebServer.cs │ │ └── WindowManager.cs │ └── Interfaces │ │ ├── IAppConfig.cs │ │ ├── IAppData.cs │ │ ├── IAppManager.cs │ │ ├── IAppObserver.cs │ │ ├── IAppTimerServicer.cs │ │ ├── ICategorys.cs │ │ ├── IData.cs │ │ ├── IDatabase.cs │ │ ├── IDateTimeObserver.cs │ │ ├── IMain.cs │ │ ├── ISleepdiscover.cs │ │ ├── IWebData.cs │ │ ├── IWebFilter.cs │ │ ├── IWebServer.cs │ │ └── IWindowManager.cs └── packages.config ├── LICENSE ├── README.md ├── Tai.sln ├── TaiBug ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── TaiBug.csproj └── ghost_gray (320).ico ├── UI ├── App.config ├── App.xaml ├── App.xaml.cs ├── Base │ ├── Color │ │ ├── ColorTypes.cs │ │ └── Colors.cs │ └── UIHelper.cs ├── Controls │ ├── Base │ │ ├── CheckBox.cs │ │ ├── ColorSelect.cs │ │ ├── DiffValue.cs │ │ ├── EmptyData.cs │ │ ├── Icon.cs │ │ ├── IconConverter.cs │ │ ├── IconSelect.cs │ │ ├── IconTypes.cs │ │ ├── Img.cs │ │ ├── Placeholder.cs │ │ ├── Text.cs │ │ └── View.cs │ ├── Button │ │ ├── Button.cs │ │ └── IconButton.cs │ ├── Charts │ │ ├── ChartDataValueType.cs │ │ ├── ChartItemTypeColumn.cs │ │ ├── Charts.cs │ │ ├── ChartsItemTypeCard.cs │ │ ├── ChartsItemTypeList.cs │ │ ├── ChartsItemTypeMonth.cs │ │ ├── ChartsItemTypePie.cs │ │ ├── ChartsItemTypeRadar.cs │ │ ├── ChartsType.cs │ │ └── Model │ │ │ ├── ChartBadgeModel.cs │ │ │ ├── ChartBadgeType.cs │ │ │ ├── ChartColumnInfoModel.cs │ │ │ └── ChartsDataModel.cs │ ├── Command.cs │ ├── Converters │ │ ├── DateTimeConverter.cs │ │ ├── GetCountConverter.cs │ │ ├── HextoColorConverter.cs │ │ ├── TimeConverter.cs │ │ └── ToStringConverter.cs │ ├── DatePickerBar │ │ ├── DatePickerBar.cs │ │ ├── DatePickerBarItem.cs │ │ └── DatePickerShowType.cs │ ├── Expander │ │ └── Expander.cs │ ├── Input │ │ └── InputBox.cs │ ├── List │ │ ├── BaseList.cs │ │ └── BaseListItem.cs │ ├── Models │ │ └── PageModel.cs │ ├── Navigation │ │ ├── Models │ │ │ └── NavigationItemModel.cs │ │ ├── Navigation.cs │ │ └── NavigationItem.cs │ ├── PageContainer.cs │ ├── Select │ │ ├── DateSelect.cs │ │ ├── DateSelectType.cs │ │ ├── ImageSelect.cs │ │ ├── Option.cs │ │ ├── Select.cs │ │ └── SelectItemModel.cs │ ├── SettingPanel │ │ ├── SettingPanel.cs │ │ ├── SettingPanelItem.cs │ │ └── SettingPanelMultiItem.cs │ ├── TPage.cs │ ├── Tabbar │ │ └── Tabbar.cs │ ├── Toggle │ │ ├── Toggle.cs │ │ └── ToggleTextPosition.cs │ └── Window │ │ ├── DefaultWindow.cs │ │ ├── DefaultWindowCommands.cs │ │ ├── HideWindow.cs │ │ └── ToastType.cs ├── Extensions │ └── ListExtensions.cs ├── Librays │ └── Image │ │ └── Imager.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Models │ ├── Category │ │ └── CategoryModel.cs │ ├── CategoryAppList │ │ └── ChooseAppModel.cs │ ├── CategoryAppListPageModel.cs │ ├── CategoryPageModel.cs │ ├── CategoryWebSiteListPageModel.cs │ ├── ChartPageModel.cs │ ├── ContextMenuItemModel.cs │ ├── DataPageModel.cs │ ├── DetailPageModel.cs │ ├── IndexPageModel.cs │ ├── MainWindowModel.cs │ ├── ModelBase.cs │ ├── SettingPageModel.cs │ ├── UINotifyPropertyChanged.cs │ └── WebSiteDetailPageModel.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── Resources │ ├── Emoji │ │ ├── (1).png │ │ ├── (10).png │ │ ├── (11).png │ │ ├── (12).png │ │ ├── (13).png │ │ ├── (14).png │ │ ├── (15).png │ │ ├── (16).png │ │ ├── (17).png │ │ ├── (18).png │ │ ├── (19).png │ │ ├── (2).png │ │ ├── (20).png │ │ ├── (21).png │ │ ├── (22).png │ │ ├── (23).png │ │ ├── (24).png │ │ ├── (25).png │ │ ├── (26).png │ │ ├── (27).png │ │ ├── (28).png │ │ ├── (29).png │ │ ├── (3).png │ │ ├── (30).png │ │ ├── (31).png │ │ ├── (32).png │ │ ├── (33).png │ │ ├── (34).png │ │ ├── (35).png │ │ ├── (36).png │ │ ├── (37).png │ │ ├── (38).png │ │ ├── (39).png │ │ ├── (4).png │ │ ├── (40).png │ │ ├── (41).png │ │ ├── (42).png │ │ ├── (43).png │ │ ├── (44).png │ │ ├── (5).png │ │ ├── (6).png │ │ ├── (7).png │ │ ├── (8).png │ │ └── (9).png │ ├── Fonts │ │ └── Segoe Fluent Icons.ttf │ ├── Icons │ │ ├── defaultIcon.png │ │ ├── tai.ico │ │ ├── tai32.ico │ │ └── taibusy.ico │ └── Themes │ │ ├── Common.xaml │ │ ├── Dark.xaml │ │ └── Light.xaml ├── Servicers │ ├── AppContextMenuServicer.cs │ ├── IAppContextMenuServicer.cs │ ├── IInputServicer.cs │ ├── IMainServicer.cs │ ├── IStatusBarIconServicer.cs │ ├── IThemeServicer.cs │ ├── IUIServicer.cs │ ├── IWebSiteContextMenuServicer.cs │ ├── InputEventHandler.cs │ ├── InputServicer.cs │ ├── MainServicer.cs │ ├── StatusBarIconServicer.cs │ ├── ThemeServicer.cs │ ├── UIServicer.cs │ └── WebSiteContextMenuServicer.cs ├── StateData.cs ├── Themes │ ├── Base │ │ ├── CheckBox.xaml │ │ ├── ColorSelect.xaml │ │ ├── EmptyData.xaml │ │ ├── Icon.xaml │ │ ├── IconSelect.xaml │ │ ├── Img.xaml │ │ ├── Placeholder.xaml │ │ ├── Text.xaml │ │ └── View.xaml │ ├── Button │ │ ├── Button.xaml │ │ └── IconButton.xaml │ ├── Charts │ │ ├── Charts.xaml │ │ ├── ChartsItemTypeCard.xaml │ │ ├── ChartsItemTypeColumn.xaml │ │ ├── ChartsItemTypeList.xaml │ │ ├── ChartsItemTypeMonth.xaml │ │ └── ChartsItemTypeRadar.xaml │ ├── DatePickerBar │ │ ├── DatePickerBar.xaml │ │ └── DatePickerBarItem.xaml │ ├── Expander │ │ └── Expander.xaml │ ├── Generic.xaml │ ├── Input │ │ └── InputBox.xaml │ ├── List │ │ ├── BaseList.xaml │ │ └── BaseListItem.xaml │ ├── Navigation │ │ ├── Navigation.xaml │ │ └── NavigationItem.xaml │ ├── PageContainer.xaml │ ├── Select │ │ ├── DateSelect.xaml │ │ ├── ImageSelect.xaml │ │ ├── Option.xaml │ │ └── Select.xaml │ ├── SettingPanel │ │ ├── SettingPanel.xaml │ │ ├── SettingPanelItem.xaml │ │ └── SettingPanelMultiItem.xaml │ ├── TPage.xaml │ ├── Tabbar │ │ └── Tabbar.xaml │ ├── Toggle │ │ └── Toggle.xaml │ └── Window │ │ ├── DefaultWindow.xaml │ │ └── HideWindow.xaml ├── UI.csproj ├── ViewModels │ ├── CategoryAppListPageVM.cs │ ├── CategoryPageVM.cs │ ├── CategoryWebSiteListPageVM.cs │ ├── ChartPageVM.cs │ ├── DataPageVM.cs │ ├── DetailPageVM.cs │ ├── IndexPageVM.cs │ ├── MainViewModel.cs │ ├── SettingPageVM.cs │ └── WebSiteDetailPageVM.cs ├── Views │ ├── CategoryAppListPage.xaml │ ├── CategoryAppListPage.xaml.cs │ ├── CategoryPage.xaml │ ├── CategoryPage.xaml.cs │ ├── CategoryWebSiteListPage.xaml │ ├── CategoryWebSiteListPage.xaml.cs │ ├── ChartPage.xaml │ ├── ChartPage.xaml.cs │ ├── DataPage.xaml │ ├── DataPage.xaml.cs │ ├── DetailPage.xaml │ ├── DetailPage.xaml.cs │ ├── IndexPage.xaml │ ├── IndexPage.xaml.cs │ ├── SettingPage.xaml │ ├── SettingPage.xaml.cs │ ├── WebSiteDetailPage.xaml │ └── WebSiteDetailPage.xaml.cs ├── app.manifest └── packages.config ├── Updater ├── App.config ├── App.xaml ├── App.xaml.cs ├── GithubRelease.cs ├── MainModel.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── UINotifyPropertyChanged.cs ├── Unzip.cs ├── Updater.csproj └── packages.config ├── WebExtensions └── Chrome │ ├── icon128.png │ ├── icon48.png │ ├── icons │ ├── socket-active.png │ └── socket-inactive.png │ ├── manifest.json │ └── service-worker.js ├── index.jpg └── privacy.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/.gitignore -------------------------------------------------------------------------------- /Core/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/App.config -------------------------------------------------------------------------------- /Core/AppState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/AppState.cs -------------------------------------------------------------------------------- /Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Core.csproj -------------------------------------------------------------------------------- /Core/Enums/AppType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Enums/AppType.cs -------------------------------------------------------------------------------- /Core/Enums/BrowserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Enums/BrowserType.cs -------------------------------------------------------------------------------- /Core/Enums/SleepStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Enums/SleepStatus.cs -------------------------------------------------------------------------------- /Core/Enums/WebPageInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Enums/WebPageInfoType.cs -------------------------------------------------------------------------------- /Core/Event/AppActiveChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Event/AppActiveChangedEventArgs.cs -------------------------------------------------------------------------------- /Core/Event/AppDurationUpdatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Event/AppDurationUpdatedEventArgs.cs -------------------------------------------------------------------------------- /Core/Event/AppObserverEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Event/AppObserverEventHandler.cs -------------------------------------------------------------------------------- /Core/Event/AppTimerEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Event/AppTimerEventHandler.cs -------------------------------------------------------------------------------- /Core/Event/BrowserObserverEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Event/BrowserObserverEventHandler.cs -------------------------------------------------------------------------------- /Core/Event/EventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Event/EventHandler.cs -------------------------------------------------------------------------------- /Core/Event/ObserverEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Event/ObserverEventHandler.cs -------------------------------------------------------------------------------- /Core/Event/WebServerEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Event/WebServerEventHandler.cs -------------------------------------------------------------------------------- /Core/Librarys/Browser/Favicon/FaviconDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Librarys/Browser/Favicon/FaviconDownloader.cs -------------------------------------------------------------------------------- /Core/Librarys/Browser/UrlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Librarys/Browser/UrlHelper.cs -------------------------------------------------------------------------------- /Core/Librarys/Browser/WebSocketEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Librarys/Browser/WebSocketEvent.cs -------------------------------------------------------------------------------- /Core/Librarys/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Librarys/FileHelper.cs -------------------------------------------------------------------------------- /Core/Librarys/Iconer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Librarys/Iconer.cs -------------------------------------------------------------------------------- /Core/Librarys/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Librarys/Logger.cs -------------------------------------------------------------------------------- /Core/Librarys/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Librarys/ProcessHelper.cs -------------------------------------------------------------------------------- /Core/Librarys/RegexHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Librarys/RegexHelper.cs -------------------------------------------------------------------------------- /Core/Librarys/SQLite/SQLiteBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Librarys/SQLite/SQLiteBuilder.cs -------------------------------------------------------------------------------- /Core/Librarys/SQLite/SQLiteConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Librarys/SQLite/SQLiteConfiguration.cs -------------------------------------------------------------------------------- /Core/Librarys/SQLite/TaiDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Librarys/SQLite/TaiDbContext.cs -------------------------------------------------------------------------------- /Core/Librarys/Shortcut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Librarys/Shortcut.cs -------------------------------------------------------------------------------- /Core/Librarys/SiteCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Librarys/SiteCache.cs -------------------------------------------------------------------------------- /Core/Librarys/SystemCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Librarys/SystemCommon.cs -------------------------------------------------------------------------------- /Core/Librarys/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Librarys/Time.cs -------------------------------------------------------------------------------- /Core/Librarys/Win32API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Librarys/Win32API.cs -------------------------------------------------------------------------------- /Core/Models/AppModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/AppModel.cs -------------------------------------------------------------------------------- /Core/Models/AppObserver/AppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/AppObserver/AppInfo.cs -------------------------------------------------------------------------------- /Core/Models/AppObserver/AppObserverEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/AppObserver/AppObserverEventArgs.cs -------------------------------------------------------------------------------- /Core/Models/AppObserver/WindowInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/AppObserver/WindowInfo.cs -------------------------------------------------------------------------------- /Core/Models/CategoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/CategoryModel.cs -------------------------------------------------------------------------------- /Core/Models/Config/BehaviorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/Config/BehaviorModel.cs -------------------------------------------------------------------------------- /Core/Models/Config/ConfigAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/Config/ConfigAttribute.cs -------------------------------------------------------------------------------- /Core/Models/Config/ConfigModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/Config/ConfigModel.cs -------------------------------------------------------------------------------- /Core/Models/Config/GeneralModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/Config/GeneralModel.cs -------------------------------------------------------------------------------- /Core/Models/Config/Link/LinkModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/Config/Link/LinkModel.cs -------------------------------------------------------------------------------- /Core/Models/DailyLogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/DailyLogModel.cs -------------------------------------------------------------------------------- /Core/Models/Data/CommonDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/Data/CommonDataModel.cs -------------------------------------------------------------------------------- /Core/Models/Data/HoursDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/Data/HoursDataModel.cs -------------------------------------------------------------------------------- /Core/Models/Db/WebBrowseLogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/Db/WebBrowseLogModel.cs -------------------------------------------------------------------------------- /Core/Models/Db/WebSiteCategoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/Db/WebSiteCategoryModel.cs -------------------------------------------------------------------------------- /Core/Models/Db/WebSiteModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/Db/WebSiteModel.cs -------------------------------------------------------------------------------- /Core/Models/Db/WebUrlModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/Db/WebUrlModel.cs -------------------------------------------------------------------------------- /Core/Models/HoursLogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/HoursLogModel.cs -------------------------------------------------------------------------------- /Core/Models/WebPage/NotifyWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/WebPage/NotifyWeb.cs -------------------------------------------------------------------------------- /Core/Models/WebPage/Site.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Models/WebPage/Site.cs -------------------------------------------------------------------------------- /Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Core/Servicers/Instances/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Instances/AppConfig.cs -------------------------------------------------------------------------------- /Core/Servicers/Instances/AppData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Instances/AppData.cs -------------------------------------------------------------------------------- /Core/Servicers/Instances/AppManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Instances/AppManager.cs -------------------------------------------------------------------------------- /Core/Servicers/Instances/AppObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Instances/AppObserver.cs -------------------------------------------------------------------------------- /Core/Servicers/Instances/AppTimerServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Instances/AppTimerServicer.cs -------------------------------------------------------------------------------- /Core/Servicers/Instances/Categorys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Instances/Categorys.cs -------------------------------------------------------------------------------- /Core/Servicers/Instances/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Instances/Data.cs -------------------------------------------------------------------------------- /Core/Servicers/Instances/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Instances/Database.cs -------------------------------------------------------------------------------- /Core/Servicers/Instances/DateTimeObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Instances/DateTimeObserver.cs -------------------------------------------------------------------------------- /Core/Servicers/Instances/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Instances/Main.cs -------------------------------------------------------------------------------- /Core/Servicers/Instances/Sleepdiscover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Instances/Sleepdiscover.cs -------------------------------------------------------------------------------- /Core/Servicers/Instances/WebData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Instances/WebData.cs -------------------------------------------------------------------------------- /Core/Servicers/Instances/WebFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Instances/WebFilter.cs -------------------------------------------------------------------------------- /Core/Servicers/Instances/WebServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Instances/WebServer.cs -------------------------------------------------------------------------------- /Core/Servicers/Instances/WindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Instances/WindowManager.cs -------------------------------------------------------------------------------- /Core/Servicers/Interfaces/IAppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Interfaces/IAppConfig.cs -------------------------------------------------------------------------------- /Core/Servicers/Interfaces/IAppData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Interfaces/IAppData.cs -------------------------------------------------------------------------------- /Core/Servicers/Interfaces/IAppManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Interfaces/IAppManager.cs -------------------------------------------------------------------------------- /Core/Servicers/Interfaces/IAppObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Interfaces/IAppObserver.cs -------------------------------------------------------------------------------- /Core/Servicers/Interfaces/IAppTimerServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Interfaces/IAppTimerServicer.cs -------------------------------------------------------------------------------- /Core/Servicers/Interfaces/ICategorys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Interfaces/ICategorys.cs -------------------------------------------------------------------------------- /Core/Servicers/Interfaces/IData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Interfaces/IData.cs -------------------------------------------------------------------------------- /Core/Servicers/Interfaces/IDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Interfaces/IDatabase.cs -------------------------------------------------------------------------------- /Core/Servicers/Interfaces/IDateTimeObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Interfaces/IDateTimeObserver.cs -------------------------------------------------------------------------------- /Core/Servicers/Interfaces/IMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Interfaces/IMain.cs -------------------------------------------------------------------------------- /Core/Servicers/Interfaces/ISleepdiscover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Interfaces/ISleepdiscover.cs -------------------------------------------------------------------------------- /Core/Servicers/Interfaces/IWebData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Interfaces/IWebData.cs -------------------------------------------------------------------------------- /Core/Servicers/Interfaces/IWebFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Interfaces/IWebFilter.cs -------------------------------------------------------------------------------- /Core/Servicers/Interfaces/IWebServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Interfaces/IWebServer.cs -------------------------------------------------------------------------------- /Core/Servicers/Interfaces/IWindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/Servicers/Interfaces/IWindowManager.cs -------------------------------------------------------------------------------- /Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Core/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/README.md -------------------------------------------------------------------------------- /Tai.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Tai.sln -------------------------------------------------------------------------------- /TaiBug/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/TaiBug/App.config -------------------------------------------------------------------------------- /TaiBug/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/TaiBug/App.xaml -------------------------------------------------------------------------------- /TaiBug/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/TaiBug/App.xaml.cs -------------------------------------------------------------------------------- /TaiBug/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/TaiBug/MainWindow.xaml -------------------------------------------------------------------------------- /TaiBug/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/TaiBug/MainWindow.xaml.cs -------------------------------------------------------------------------------- /TaiBug/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/TaiBug/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TaiBug/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/TaiBug/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TaiBug/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/TaiBug/Properties/Resources.resx -------------------------------------------------------------------------------- /TaiBug/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/TaiBug/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TaiBug/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/TaiBug/Properties/Settings.settings -------------------------------------------------------------------------------- /TaiBug/TaiBug.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/TaiBug/TaiBug.csproj -------------------------------------------------------------------------------- /TaiBug/ghost_gray (320).ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/TaiBug/ghost_gray (320).ico -------------------------------------------------------------------------------- /UI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/App.config -------------------------------------------------------------------------------- /UI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/App.xaml -------------------------------------------------------------------------------- /UI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/App.xaml.cs -------------------------------------------------------------------------------- /UI/Base/Color/ColorTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Base/Color/ColorTypes.cs -------------------------------------------------------------------------------- /UI/Base/Color/Colors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Base/Color/Colors.cs -------------------------------------------------------------------------------- /UI/Base/UIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Base/UIHelper.cs -------------------------------------------------------------------------------- /UI/Controls/Base/CheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Base/CheckBox.cs -------------------------------------------------------------------------------- /UI/Controls/Base/ColorSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Base/ColorSelect.cs -------------------------------------------------------------------------------- /UI/Controls/Base/DiffValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Base/DiffValue.cs -------------------------------------------------------------------------------- /UI/Controls/Base/EmptyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Base/EmptyData.cs -------------------------------------------------------------------------------- /UI/Controls/Base/Icon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Base/Icon.cs -------------------------------------------------------------------------------- /UI/Controls/Base/IconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Base/IconConverter.cs -------------------------------------------------------------------------------- /UI/Controls/Base/IconSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Base/IconSelect.cs -------------------------------------------------------------------------------- /UI/Controls/Base/IconTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Base/IconTypes.cs -------------------------------------------------------------------------------- /UI/Controls/Base/Img.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Base/Img.cs -------------------------------------------------------------------------------- /UI/Controls/Base/Placeholder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Base/Placeholder.cs -------------------------------------------------------------------------------- /UI/Controls/Base/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Base/Text.cs -------------------------------------------------------------------------------- /UI/Controls/Base/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Base/View.cs -------------------------------------------------------------------------------- /UI/Controls/Button/Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Button/Button.cs -------------------------------------------------------------------------------- /UI/Controls/Button/IconButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Button/IconButton.cs -------------------------------------------------------------------------------- /UI/Controls/Charts/ChartDataValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Charts/ChartDataValueType.cs -------------------------------------------------------------------------------- /UI/Controls/Charts/ChartItemTypeColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Charts/ChartItemTypeColumn.cs -------------------------------------------------------------------------------- /UI/Controls/Charts/Charts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Charts/Charts.cs -------------------------------------------------------------------------------- /UI/Controls/Charts/ChartsItemTypeCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Charts/ChartsItemTypeCard.cs -------------------------------------------------------------------------------- /UI/Controls/Charts/ChartsItemTypeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Charts/ChartsItemTypeList.cs -------------------------------------------------------------------------------- /UI/Controls/Charts/ChartsItemTypeMonth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Charts/ChartsItemTypeMonth.cs -------------------------------------------------------------------------------- /UI/Controls/Charts/ChartsItemTypePie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Charts/ChartsItemTypePie.cs -------------------------------------------------------------------------------- /UI/Controls/Charts/ChartsItemTypeRadar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Charts/ChartsItemTypeRadar.cs -------------------------------------------------------------------------------- /UI/Controls/Charts/ChartsType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Charts/ChartsType.cs -------------------------------------------------------------------------------- /UI/Controls/Charts/Model/ChartBadgeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Charts/Model/ChartBadgeModel.cs -------------------------------------------------------------------------------- /UI/Controls/Charts/Model/ChartBadgeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Charts/Model/ChartBadgeType.cs -------------------------------------------------------------------------------- /UI/Controls/Charts/Model/ChartColumnInfoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Charts/Model/ChartColumnInfoModel.cs -------------------------------------------------------------------------------- /UI/Controls/Charts/Model/ChartsDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Charts/Model/ChartsDataModel.cs -------------------------------------------------------------------------------- /UI/Controls/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Command.cs -------------------------------------------------------------------------------- /UI/Controls/Converters/DateTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Converters/DateTimeConverter.cs -------------------------------------------------------------------------------- /UI/Controls/Converters/GetCountConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Converters/GetCountConverter.cs -------------------------------------------------------------------------------- /UI/Controls/Converters/HextoColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Converters/HextoColorConverter.cs -------------------------------------------------------------------------------- /UI/Controls/Converters/TimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Converters/TimeConverter.cs -------------------------------------------------------------------------------- /UI/Controls/Converters/ToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Converters/ToStringConverter.cs -------------------------------------------------------------------------------- /UI/Controls/DatePickerBar/DatePickerBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/DatePickerBar/DatePickerBar.cs -------------------------------------------------------------------------------- /UI/Controls/DatePickerBar/DatePickerBarItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/DatePickerBar/DatePickerBarItem.cs -------------------------------------------------------------------------------- /UI/Controls/DatePickerBar/DatePickerShowType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/DatePickerBar/DatePickerShowType.cs -------------------------------------------------------------------------------- /UI/Controls/Expander/Expander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Expander/Expander.cs -------------------------------------------------------------------------------- /UI/Controls/Input/InputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Input/InputBox.cs -------------------------------------------------------------------------------- /UI/Controls/List/BaseList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/List/BaseList.cs -------------------------------------------------------------------------------- /UI/Controls/List/BaseListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/List/BaseListItem.cs -------------------------------------------------------------------------------- /UI/Controls/Models/PageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Models/PageModel.cs -------------------------------------------------------------------------------- /UI/Controls/Navigation/Models/NavigationItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Navigation/Models/NavigationItemModel.cs -------------------------------------------------------------------------------- /UI/Controls/Navigation/Navigation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Navigation/Navigation.cs -------------------------------------------------------------------------------- /UI/Controls/Navigation/NavigationItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Navigation/NavigationItem.cs -------------------------------------------------------------------------------- /UI/Controls/PageContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/PageContainer.cs -------------------------------------------------------------------------------- /UI/Controls/Select/DateSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Select/DateSelect.cs -------------------------------------------------------------------------------- /UI/Controls/Select/DateSelectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Select/DateSelectType.cs -------------------------------------------------------------------------------- /UI/Controls/Select/ImageSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Select/ImageSelect.cs -------------------------------------------------------------------------------- /UI/Controls/Select/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Select/Option.cs -------------------------------------------------------------------------------- /UI/Controls/Select/Select.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Select/Select.cs -------------------------------------------------------------------------------- /UI/Controls/Select/SelectItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Select/SelectItemModel.cs -------------------------------------------------------------------------------- /UI/Controls/SettingPanel/SettingPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/SettingPanel/SettingPanel.cs -------------------------------------------------------------------------------- /UI/Controls/SettingPanel/SettingPanelItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/SettingPanel/SettingPanelItem.cs -------------------------------------------------------------------------------- /UI/Controls/SettingPanel/SettingPanelMultiItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/SettingPanel/SettingPanelMultiItem.cs -------------------------------------------------------------------------------- /UI/Controls/TPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/TPage.cs -------------------------------------------------------------------------------- /UI/Controls/Tabbar/Tabbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Tabbar/Tabbar.cs -------------------------------------------------------------------------------- /UI/Controls/Toggle/Toggle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Toggle/Toggle.cs -------------------------------------------------------------------------------- /UI/Controls/Toggle/ToggleTextPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Toggle/ToggleTextPosition.cs -------------------------------------------------------------------------------- /UI/Controls/Window/DefaultWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Window/DefaultWindow.cs -------------------------------------------------------------------------------- /UI/Controls/Window/DefaultWindowCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Window/DefaultWindowCommands.cs -------------------------------------------------------------------------------- /UI/Controls/Window/HideWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Window/HideWindow.cs -------------------------------------------------------------------------------- /UI/Controls/Window/ToastType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Controls/Window/ToastType.cs -------------------------------------------------------------------------------- /UI/Extensions/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Extensions/ListExtensions.cs -------------------------------------------------------------------------------- /UI/Librays/Image/Imager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Librays/Image/Imager.cs -------------------------------------------------------------------------------- /UI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/MainWindow.xaml -------------------------------------------------------------------------------- /UI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /UI/Models/Category/CategoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Models/Category/CategoryModel.cs -------------------------------------------------------------------------------- /UI/Models/CategoryAppList/ChooseAppModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Models/CategoryAppList/ChooseAppModel.cs -------------------------------------------------------------------------------- /UI/Models/CategoryAppListPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Models/CategoryAppListPageModel.cs -------------------------------------------------------------------------------- /UI/Models/CategoryPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Models/CategoryPageModel.cs -------------------------------------------------------------------------------- /UI/Models/CategoryWebSiteListPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Models/CategoryWebSiteListPageModel.cs -------------------------------------------------------------------------------- /UI/Models/ChartPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Models/ChartPageModel.cs -------------------------------------------------------------------------------- /UI/Models/ContextMenuItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Models/ContextMenuItemModel.cs -------------------------------------------------------------------------------- /UI/Models/DataPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Models/DataPageModel.cs -------------------------------------------------------------------------------- /UI/Models/DetailPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Models/DetailPageModel.cs -------------------------------------------------------------------------------- /UI/Models/IndexPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Models/IndexPageModel.cs -------------------------------------------------------------------------------- /UI/Models/MainWindowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Models/MainWindowModel.cs -------------------------------------------------------------------------------- /UI/Models/ModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Models/ModelBase.cs -------------------------------------------------------------------------------- /UI/Models/SettingPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Models/SettingPageModel.cs -------------------------------------------------------------------------------- /UI/Models/UINotifyPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Models/UINotifyPropertyChanged.cs -------------------------------------------------------------------------------- /UI/Models/WebSiteDetailPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Models/WebSiteDetailPageModel.cs -------------------------------------------------------------------------------- /UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /UI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Properties/Resources.resx -------------------------------------------------------------------------------- /UI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /UI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Properties/Settings.settings -------------------------------------------------------------------------------- /UI/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Properties/app.manifest -------------------------------------------------------------------------------- /UI/Resources/Emoji/(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(1).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(10).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(10).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(11).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(11).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(12).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(12).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(13).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(13).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(14).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(14).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(15).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(15).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(16).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(16).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(17).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(17).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(18).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(18).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(19).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(19).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(2).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(20).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(20).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(21).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(21).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(22).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(22).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(23).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(23).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(24).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(24).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(25).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(25).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(26).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(26).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(27).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(27).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(28).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(28).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(29).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(29).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(3).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(30).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(30).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(31).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(32).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(32).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(33).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(33).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(34).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(34).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(35).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(35).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(36).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(36).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(37).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(37).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(38).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(38).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(39).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(39).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(4).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(40).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(40).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(41).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(41).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(42).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(42).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(43).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(43).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(44).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(44).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(5).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(6).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(7).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(8).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(8).png -------------------------------------------------------------------------------- /UI/Resources/Emoji/(9).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Emoji/(9).png -------------------------------------------------------------------------------- /UI/Resources/Fonts/Segoe Fluent Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Fonts/Segoe Fluent Icons.ttf -------------------------------------------------------------------------------- /UI/Resources/Icons/defaultIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Icons/defaultIcon.png -------------------------------------------------------------------------------- /UI/Resources/Icons/tai.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Icons/tai.ico -------------------------------------------------------------------------------- /UI/Resources/Icons/tai32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Icons/tai32.ico -------------------------------------------------------------------------------- /UI/Resources/Icons/taibusy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Icons/taibusy.ico -------------------------------------------------------------------------------- /UI/Resources/Themes/Common.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Themes/Common.xaml -------------------------------------------------------------------------------- /UI/Resources/Themes/Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Themes/Dark.xaml -------------------------------------------------------------------------------- /UI/Resources/Themes/Light.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Resources/Themes/Light.xaml -------------------------------------------------------------------------------- /UI/Servicers/AppContextMenuServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Servicers/AppContextMenuServicer.cs -------------------------------------------------------------------------------- /UI/Servicers/IAppContextMenuServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Servicers/IAppContextMenuServicer.cs -------------------------------------------------------------------------------- /UI/Servicers/IInputServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Servicers/IInputServicer.cs -------------------------------------------------------------------------------- /UI/Servicers/IMainServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Servicers/IMainServicer.cs -------------------------------------------------------------------------------- /UI/Servicers/IStatusBarIconServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Servicers/IStatusBarIconServicer.cs -------------------------------------------------------------------------------- /UI/Servicers/IThemeServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Servicers/IThemeServicer.cs -------------------------------------------------------------------------------- /UI/Servicers/IUIServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Servicers/IUIServicer.cs -------------------------------------------------------------------------------- /UI/Servicers/IWebSiteContextMenuServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Servicers/IWebSiteContextMenuServicer.cs -------------------------------------------------------------------------------- /UI/Servicers/InputEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Servicers/InputEventHandler.cs -------------------------------------------------------------------------------- /UI/Servicers/InputServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Servicers/InputServicer.cs -------------------------------------------------------------------------------- /UI/Servicers/MainServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Servicers/MainServicer.cs -------------------------------------------------------------------------------- /UI/Servicers/StatusBarIconServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Servicers/StatusBarIconServicer.cs -------------------------------------------------------------------------------- /UI/Servicers/ThemeServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Servicers/ThemeServicer.cs -------------------------------------------------------------------------------- /UI/Servicers/UIServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Servicers/UIServicer.cs -------------------------------------------------------------------------------- /UI/Servicers/WebSiteContextMenuServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Servicers/WebSiteContextMenuServicer.cs -------------------------------------------------------------------------------- /UI/StateData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/StateData.cs -------------------------------------------------------------------------------- /UI/Themes/Base/CheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Base/CheckBox.xaml -------------------------------------------------------------------------------- /UI/Themes/Base/ColorSelect.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Base/ColorSelect.xaml -------------------------------------------------------------------------------- /UI/Themes/Base/EmptyData.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Base/EmptyData.xaml -------------------------------------------------------------------------------- /UI/Themes/Base/Icon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Base/Icon.xaml -------------------------------------------------------------------------------- /UI/Themes/Base/IconSelect.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Base/IconSelect.xaml -------------------------------------------------------------------------------- /UI/Themes/Base/Img.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Base/Img.xaml -------------------------------------------------------------------------------- /UI/Themes/Base/Placeholder.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Base/Placeholder.xaml -------------------------------------------------------------------------------- /UI/Themes/Base/Text.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Base/Text.xaml -------------------------------------------------------------------------------- /UI/Themes/Base/View.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Base/View.xaml -------------------------------------------------------------------------------- /UI/Themes/Button/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Button/Button.xaml -------------------------------------------------------------------------------- /UI/Themes/Button/IconButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Button/IconButton.xaml -------------------------------------------------------------------------------- /UI/Themes/Charts/Charts.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Charts/Charts.xaml -------------------------------------------------------------------------------- /UI/Themes/Charts/ChartsItemTypeCard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Charts/ChartsItemTypeCard.xaml -------------------------------------------------------------------------------- /UI/Themes/Charts/ChartsItemTypeColumn.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Charts/ChartsItemTypeColumn.xaml -------------------------------------------------------------------------------- /UI/Themes/Charts/ChartsItemTypeList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Charts/ChartsItemTypeList.xaml -------------------------------------------------------------------------------- /UI/Themes/Charts/ChartsItemTypeMonth.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Charts/ChartsItemTypeMonth.xaml -------------------------------------------------------------------------------- /UI/Themes/Charts/ChartsItemTypeRadar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Charts/ChartsItemTypeRadar.xaml -------------------------------------------------------------------------------- /UI/Themes/DatePickerBar/DatePickerBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/DatePickerBar/DatePickerBar.xaml -------------------------------------------------------------------------------- /UI/Themes/DatePickerBar/DatePickerBarItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/DatePickerBar/DatePickerBarItem.xaml -------------------------------------------------------------------------------- /UI/Themes/Expander/Expander.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Expander/Expander.xaml -------------------------------------------------------------------------------- /UI/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Generic.xaml -------------------------------------------------------------------------------- /UI/Themes/Input/InputBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Input/InputBox.xaml -------------------------------------------------------------------------------- /UI/Themes/List/BaseList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/List/BaseList.xaml -------------------------------------------------------------------------------- /UI/Themes/List/BaseListItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/List/BaseListItem.xaml -------------------------------------------------------------------------------- /UI/Themes/Navigation/Navigation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Navigation/Navigation.xaml -------------------------------------------------------------------------------- /UI/Themes/Navigation/NavigationItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Navigation/NavigationItem.xaml -------------------------------------------------------------------------------- /UI/Themes/PageContainer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/PageContainer.xaml -------------------------------------------------------------------------------- /UI/Themes/Select/DateSelect.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Select/DateSelect.xaml -------------------------------------------------------------------------------- /UI/Themes/Select/ImageSelect.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Select/ImageSelect.xaml -------------------------------------------------------------------------------- /UI/Themes/Select/Option.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Select/Option.xaml -------------------------------------------------------------------------------- /UI/Themes/Select/Select.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Select/Select.xaml -------------------------------------------------------------------------------- /UI/Themes/SettingPanel/SettingPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/SettingPanel/SettingPanel.xaml -------------------------------------------------------------------------------- /UI/Themes/SettingPanel/SettingPanelItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/SettingPanel/SettingPanelItem.xaml -------------------------------------------------------------------------------- /UI/Themes/SettingPanel/SettingPanelMultiItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/SettingPanel/SettingPanelMultiItem.xaml -------------------------------------------------------------------------------- /UI/Themes/TPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/TPage.xaml -------------------------------------------------------------------------------- /UI/Themes/Tabbar/Tabbar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Tabbar/Tabbar.xaml -------------------------------------------------------------------------------- /UI/Themes/Toggle/Toggle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Toggle/Toggle.xaml -------------------------------------------------------------------------------- /UI/Themes/Window/DefaultWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Window/DefaultWindow.xaml -------------------------------------------------------------------------------- /UI/Themes/Window/HideWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Themes/Window/HideWindow.xaml -------------------------------------------------------------------------------- /UI/UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/UI.csproj -------------------------------------------------------------------------------- /UI/ViewModels/CategoryAppListPageVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/ViewModels/CategoryAppListPageVM.cs -------------------------------------------------------------------------------- /UI/ViewModels/CategoryPageVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/ViewModels/CategoryPageVM.cs -------------------------------------------------------------------------------- /UI/ViewModels/CategoryWebSiteListPageVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/ViewModels/CategoryWebSiteListPageVM.cs -------------------------------------------------------------------------------- /UI/ViewModels/ChartPageVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/ViewModels/ChartPageVM.cs -------------------------------------------------------------------------------- /UI/ViewModels/DataPageVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/ViewModels/DataPageVM.cs -------------------------------------------------------------------------------- /UI/ViewModels/DetailPageVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/ViewModels/DetailPageVM.cs -------------------------------------------------------------------------------- /UI/ViewModels/IndexPageVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/ViewModels/IndexPageVM.cs -------------------------------------------------------------------------------- /UI/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /UI/ViewModels/SettingPageVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/ViewModels/SettingPageVM.cs -------------------------------------------------------------------------------- /UI/ViewModels/WebSiteDetailPageVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/ViewModels/WebSiteDetailPageVM.cs -------------------------------------------------------------------------------- /UI/Views/CategoryAppListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/CategoryAppListPage.xaml -------------------------------------------------------------------------------- /UI/Views/CategoryAppListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/CategoryAppListPage.xaml.cs -------------------------------------------------------------------------------- /UI/Views/CategoryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/CategoryPage.xaml -------------------------------------------------------------------------------- /UI/Views/CategoryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/CategoryPage.xaml.cs -------------------------------------------------------------------------------- /UI/Views/CategoryWebSiteListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/CategoryWebSiteListPage.xaml -------------------------------------------------------------------------------- /UI/Views/CategoryWebSiteListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/CategoryWebSiteListPage.xaml.cs -------------------------------------------------------------------------------- /UI/Views/ChartPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/ChartPage.xaml -------------------------------------------------------------------------------- /UI/Views/ChartPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/ChartPage.xaml.cs -------------------------------------------------------------------------------- /UI/Views/DataPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/DataPage.xaml -------------------------------------------------------------------------------- /UI/Views/DataPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/DataPage.xaml.cs -------------------------------------------------------------------------------- /UI/Views/DetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/DetailPage.xaml -------------------------------------------------------------------------------- /UI/Views/DetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/DetailPage.xaml.cs -------------------------------------------------------------------------------- /UI/Views/IndexPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/IndexPage.xaml -------------------------------------------------------------------------------- /UI/Views/IndexPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/IndexPage.xaml.cs -------------------------------------------------------------------------------- /UI/Views/SettingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/SettingPage.xaml -------------------------------------------------------------------------------- /UI/Views/SettingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/SettingPage.xaml.cs -------------------------------------------------------------------------------- /UI/Views/WebSiteDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/WebSiteDetailPage.xaml -------------------------------------------------------------------------------- /UI/Views/WebSiteDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/Views/WebSiteDetailPage.xaml.cs -------------------------------------------------------------------------------- /UI/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/app.manifest -------------------------------------------------------------------------------- /UI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/UI/packages.config -------------------------------------------------------------------------------- /Updater/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Updater/App.config -------------------------------------------------------------------------------- /Updater/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Updater/App.xaml -------------------------------------------------------------------------------- /Updater/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Updater/App.xaml.cs -------------------------------------------------------------------------------- /Updater/GithubRelease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Updater/GithubRelease.cs -------------------------------------------------------------------------------- /Updater/MainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Updater/MainModel.cs -------------------------------------------------------------------------------- /Updater/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Updater/MainWindow.xaml -------------------------------------------------------------------------------- /Updater/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Updater/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Updater/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Updater/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Updater/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Updater/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Updater/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Updater/Properties/Resources.resx -------------------------------------------------------------------------------- /Updater/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Updater/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Updater/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Updater/Properties/Settings.settings -------------------------------------------------------------------------------- /Updater/UINotifyPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Updater/UINotifyPropertyChanged.cs -------------------------------------------------------------------------------- /Updater/Unzip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Updater/Unzip.cs -------------------------------------------------------------------------------- /Updater/Updater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Updater/Updater.csproj -------------------------------------------------------------------------------- /Updater/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/Updater/packages.config -------------------------------------------------------------------------------- /WebExtensions/Chrome/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/WebExtensions/Chrome/icon128.png -------------------------------------------------------------------------------- /WebExtensions/Chrome/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/WebExtensions/Chrome/icon48.png -------------------------------------------------------------------------------- /WebExtensions/Chrome/icons/socket-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/WebExtensions/Chrome/icons/socket-active.png -------------------------------------------------------------------------------- /WebExtensions/Chrome/icons/socket-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/WebExtensions/Chrome/icons/socket-inactive.png -------------------------------------------------------------------------------- /WebExtensions/Chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/WebExtensions/Chrome/manifest.json -------------------------------------------------------------------------------- /WebExtensions/Chrome/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/WebExtensions/Chrome/service-worker.js -------------------------------------------------------------------------------- /index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/index.jpg -------------------------------------------------------------------------------- /privacy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planshit/Tai/HEAD/privacy.txt --------------------------------------------------------------------------------