├── .github └── FUNDING.yml ├── .gitignore ├── Installer ├── Images │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── Installer.wapproj └── Package.appxmanifest ├── LICENSE ├── PRIVACY.md ├── README.md ├── Snatch.sln └── Snatch ├── App.config ├── App.xaml ├── App.xaml.cs ├── Controls ├── EmptyListView.xaml ├── EmptyListView.xaml.cs ├── Header.xaml ├── Header.xaml.cs ├── Onboarding.xaml ├── Onboarding.xaml.cs ├── ShortcutList.xaml ├── ShortcutList.xaml.cs ├── SupportSection.xaml └── SupportSection.xaml.cs ├── Extensions ├── CustomCommand.cs ├── DbClient.cs ├── DelegateCommand.cs ├── DragBehavior.cs ├── HyperlinkExtension.cs ├── NativeApi.cs ├── ProcessWatcher.cs ├── SettingsBinding.cs └── Utils.cs ├── Models └── Entry.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── launchSettings.json ├── Resources ├── TrayResources.xaml ├── app-icon.ico ├── kasper-64.png ├── kasper.jpg ├── kiwi-bird-duotone.xaml └── tray-icon.ico ├── Snatch.csproj ├── Snatch.db ├── ViewModels ├── MainViewModel.cs ├── OnboardingViewModel.cs └── TrayViewModel.cs ├── Windows ├── MainWindow.xaml └── MainWindow.xaml.cs └── packages.config /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/.gitignore -------------------------------------------------------------------------------- /Installer/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /Installer/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /Installer/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /Installer/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /Installer/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /Installer/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /Installer/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /Installer/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /Installer/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /Installer/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /Installer/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Installer/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /Installer/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /Installer/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Installer/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /Installer/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /Installer/Images/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /Installer/Images/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /Installer/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Installer/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /Installer/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /Installer/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Installer/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /Installer/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /Installer/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Installer/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /Installer/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /Installer/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /Installer/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /Installer/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Installer/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /Installer/Installer.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Installer.wapproj -------------------------------------------------------------------------------- /Installer/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Installer/Package.appxmanifest -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/README.md -------------------------------------------------------------------------------- /Snatch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch.sln -------------------------------------------------------------------------------- /Snatch/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/App.config -------------------------------------------------------------------------------- /Snatch/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/App.xaml -------------------------------------------------------------------------------- /Snatch/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/App.xaml.cs -------------------------------------------------------------------------------- /Snatch/Controls/EmptyListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Controls/EmptyListView.xaml -------------------------------------------------------------------------------- /Snatch/Controls/EmptyListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Controls/EmptyListView.xaml.cs -------------------------------------------------------------------------------- /Snatch/Controls/Header.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Controls/Header.xaml -------------------------------------------------------------------------------- /Snatch/Controls/Header.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Controls/Header.xaml.cs -------------------------------------------------------------------------------- /Snatch/Controls/Onboarding.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Controls/Onboarding.xaml -------------------------------------------------------------------------------- /Snatch/Controls/Onboarding.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Controls/Onboarding.xaml.cs -------------------------------------------------------------------------------- /Snatch/Controls/ShortcutList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Controls/ShortcutList.xaml -------------------------------------------------------------------------------- /Snatch/Controls/ShortcutList.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Controls/ShortcutList.xaml.cs -------------------------------------------------------------------------------- /Snatch/Controls/SupportSection.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Controls/SupportSection.xaml -------------------------------------------------------------------------------- /Snatch/Controls/SupportSection.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Controls/SupportSection.xaml.cs -------------------------------------------------------------------------------- /Snatch/Extensions/CustomCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Extensions/CustomCommand.cs -------------------------------------------------------------------------------- /Snatch/Extensions/DbClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Extensions/DbClient.cs -------------------------------------------------------------------------------- /Snatch/Extensions/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Extensions/DelegateCommand.cs -------------------------------------------------------------------------------- /Snatch/Extensions/DragBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Extensions/DragBehavior.cs -------------------------------------------------------------------------------- /Snatch/Extensions/HyperlinkExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Extensions/HyperlinkExtension.cs -------------------------------------------------------------------------------- /Snatch/Extensions/NativeApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Extensions/NativeApi.cs -------------------------------------------------------------------------------- /Snatch/Extensions/ProcessWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Extensions/ProcessWatcher.cs -------------------------------------------------------------------------------- /Snatch/Extensions/SettingsBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Extensions/SettingsBinding.cs -------------------------------------------------------------------------------- /Snatch/Extensions/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Extensions/Utils.cs -------------------------------------------------------------------------------- /Snatch/Models/Entry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Models/Entry.cs -------------------------------------------------------------------------------- /Snatch/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Snatch/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Snatch/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Properties/Resources.resx -------------------------------------------------------------------------------- /Snatch/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Snatch/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Properties/Settings.settings -------------------------------------------------------------------------------- /Snatch/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Properties/launchSettings.json -------------------------------------------------------------------------------- /Snatch/Resources/TrayResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Resources/TrayResources.xaml -------------------------------------------------------------------------------- /Snatch/Resources/app-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Resources/app-icon.ico -------------------------------------------------------------------------------- /Snatch/Resources/kasper-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Resources/kasper-64.png -------------------------------------------------------------------------------- /Snatch/Resources/kasper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Resources/kasper.jpg -------------------------------------------------------------------------------- /Snatch/Resources/kiwi-bird-duotone.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Resources/kiwi-bird-duotone.xaml -------------------------------------------------------------------------------- /Snatch/Resources/tray-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Resources/tray-icon.ico -------------------------------------------------------------------------------- /Snatch/Snatch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Snatch.csproj -------------------------------------------------------------------------------- /Snatch/Snatch.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Snatch.db -------------------------------------------------------------------------------- /Snatch/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Snatch/ViewModels/OnboardingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/ViewModels/OnboardingViewModel.cs -------------------------------------------------------------------------------- /Snatch/ViewModels/TrayViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/ViewModels/TrayViewModel.cs -------------------------------------------------------------------------------- /Snatch/Windows/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Windows/MainWindow.xaml -------------------------------------------------------------------------------- /Snatch/Windows/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/Windows/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Snatch/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idered/snatch/HEAD/Snatch/packages.config --------------------------------------------------------------------------------