├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── YDrive.sln └── YDrive ├── .editorconfig ├── Activation ├── ActivationHandler.cs └── DefaultLaunchActivationHandler.cs ├── App.xaml ├── App.xaml.cs ├── Assets ├── FolderIcon640x555.png ├── LockScreenLogo.scale-200.png ├── SplashScreen.scale-200.png ├── Square150x150Logo.scale-200.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.targetsize-24_altform-unplated.png ├── StoreLogo.png └── Wide310x150Logo.scale-200.png ├── Common ├── BitmapEncoding.cs └── GlobalVars.cs ├── Helpers ├── EncryptAndDecrypt.cs ├── EnumToBooleanConverter.cs ├── Json.cs ├── RandomData.cs ├── ResourceExtensions.cs ├── SettingsStorageExtensions.cs └── Singleton.cs ├── Models └── File.cs ├── Package.appxmanifest ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml ├── README.md ├── Services ├── ActivationService.cs ├── DataService.cs ├── FirstRunDisplayService.cs ├── NavigationService.cs ├── ThemeSelectorService.cs ├── WhatsNewDisplayService.cs └── YoutubeService.cs ├── Strings └── en-us │ └── Resources.resw ├── Styles ├── Page.xaml ├── TextBlock.xaml ├── _Colors.xaml ├── _FontSizes.xaml └── _Thickness.xaml ├── Views ├── FilesPage.xaml ├── FilesPage.xaml.cs ├── FirstRunDialog.xaml ├── FirstRunDialog.xaml.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── SettingsPage.xaml ├── SettingsPage.xaml.cs ├── ShellNavigationItem.cs ├── ShellPage.xaml ├── ShellPage.xaml.cs ├── WhatsNewDialog.xaml └── WhatsNewDialog.xaml.cs └── YDrive.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/README.md -------------------------------------------------------------------------------- /YDrive.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive.sln -------------------------------------------------------------------------------- /YDrive/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/.editorconfig -------------------------------------------------------------------------------- /YDrive/Activation/ActivationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Activation/ActivationHandler.cs -------------------------------------------------------------------------------- /YDrive/Activation/DefaultLaunchActivationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Activation/DefaultLaunchActivationHandler.cs -------------------------------------------------------------------------------- /YDrive/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/App.xaml -------------------------------------------------------------------------------- /YDrive/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/App.xaml.cs -------------------------------------------------------------------------------- /YDrive/Assets/FolderIcon640x555.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Assets/FolderIcon640x555.png -------------------------------------------------------------------------------- /YDrive/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /YDrive/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /YDrive/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /YDrive/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /YDrive/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /YDrive/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Assets/StoreLogo.png -------------------------------------------------------------------------------- /YDrive/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /YDrive/Common/BitmapEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Common/BitmapEncoding.cs -------------------------------------------------------------------------------- /YDrive/Common/GlobalVars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Common/GlobalVars.cs -------------------------------------------------------------------------------- /YDrive/Helpers/EncryptAndDecrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Helpers/EncryptAndDecrypt.cs -------------------------------------------------------------------------------- /YDrive/Helpers/EnumToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Helpers/EnumToBooleanConverter.cs -------------------------------------------------------------------------------- /YDrive/Helpers/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Helpers/Json.cs -------------------------------------------------------------------------------- /YDrive/Helpers/RandomData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Helpers/RandomData.cs -------------------------------------------------------------------------------- /YDrive/Helpers/ResourceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Helpers/ResourceExtensions.cs -------------------------------------------------------------------------------- /YDrive/Helpers/SettingsStorageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Helpers/SettingsStorageExtensions.cs -------------------------------------------------------------------------------- /YDrive/Helpers/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Helpers/Singleton.cs -------------------------------------------------------------------------------- /YDrive/Models/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Models/File.cs -------------------------------------------------------------------------------- /YDrive/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Package.appxmanifest -------------------------------------------------------------------------------- /YDrive/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /YDrive/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Properties/Default.rd.xml -------------------------------------------------------------------------------- /YDrive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/README.md -------------------------------------------------------------------------------- /YDrive/Services/ActivationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Services/ActivationService.cs -------------------------------------------------------------------------------- /YDrive/Services/DataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Services/DataService.cs -------------------------------------------------------------------------------- /YDrive/Services/FirstRunDisplayService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Services/FirstRunDisplayService.cs -------------------------------------------------------------------------------- /YDrive/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Services/NavigationService.cs -------------------------------------------------------------------------------- /YDrive/Services/ThemeSelectorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Services/ThemeSelectorService.cs -------------------------------------------------------------------------------- /YDrive/Services/WhatsNewDisplayService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Services/WhatsNewDisplayService.cs -------------------------------------------------------------------------------- /YDrive/Services/YoutubeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Services/YoutubeService.cs -------------------------------------------------------------------------------- /YDrive/Strings/en-us/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Strings/en-us/Resources.resw -------------------------------------------------------------------------------- /YDrive/Styles/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Styles/Page.xaml -------------------------------------------------------------------------------- /YDrive/Styles/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Styles/TextBlock.xaml -------------------------------------------------------------------------------- /YDrive/Styles/_Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Styles/_Colors.xaml -------------------------------------------------------------------------------- /YDrive/Styles/_FontSizes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Styles/_FontSizes.xaml -------------------------------------------------------------------------------- /YDrive/Styles/_Thickness.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Styles/_Thickness.xaml -------------------------------------------------------------------------------- /YDrive/Views/FilesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Views/FilesPage.xaml -------------------------------------------------------------------------------- /YDrive/Views/FilesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Views/FilesPage.xaml.cs -------------------------------------------------------------------------------- /YDrive/Views/FirstRunDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Views/FirstRunDialog.xaml -------------------------------------------------------------------------------- /YDrive/Views/FirstRunDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Views/FirstRunDialog.xaml.cs -------------------------------------------------------------------------------- /YDrive/Views/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Views/MainPage.xaml -------------------------------------------------------------------------------- /YDrive/Views/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Views/MainPage.xaml.cs -------------------------------------------------------------------------------- /YDrive/Views/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Views/SettingsPage.xaml -------------------------------------------------------------------------------- /YDrive/Views/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Views/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /YDrive/Views/ShellNavigationItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Views/ShellNavigationItem.cs -------------------------------------------------------------------------------- /YDrive/Views/ShellPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Views/ShellPage.xaml -------------------------------------------------------------------------------- /YDrive/Views/ShellPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Views/ShellPage.xaml.cs -------------------------------------------------------------------------------- /YDrive/Views/WhatsNewDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Views/WhatsNewDialog.xaml -------------------------------------------------------------------------------- /YDrive/Views/WhatsNewDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/Views/WhatsNewDialog.xaml.cs -------------------------------------------------------------------------------- /YDrive/YDrive.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inarikami/YDrive/HEAD/YDrive/YDrive.csproj --------------------------------------------------------------------------------