├── .gitattributes ├── .gitignore ├── Library ├── DevExpress.Mvvm.UI.dll ├── DevExpress.Mvvm.dll ├── Hardcodet.Wpf.TaskbarNotification.dll ├── MaterialDesignColors.dll ├── MaterialDesignThemes.Wpf.dll └── NLog.dll ├── README.md ├── Sidebar.Common ├── Assets │ ├── Fonts │ │ ├── Awesome.ttf │ │ └── Digital.ttf │ └── Images │ │ ├── English.png │ │ └── Turkish.png ├── Behaviors │ ├── ExplicitBindingsBehavior.cs │ └── PreventDeselectionBehavior.cs ├── Helpers.cs ├── IModule.cs ├── Journal.cs ├── Mediator.cs ├── Messages.cs ├── Properties │ └── AssemblyInfo.cs ├── ResourceProvider.cs └── Sidebar.Common.csproj ├── Sidebar.Module.Calculator ├── Assets │ └── Calculator.png ├── CalculatorView.xaml ├── CalculatorView.xaml.cs ├── CalculatorViewModel.cs ├── Model │ └── CalculationModel.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── Resources.tr.resx └── Sidebar.Module.Calculator.csproj ├── Sidebar.Module.Calendar ├── Assets │ └── Calendar.png ├── CalendarView.xaml ├── CalendarView.xaml.cs ├── CalendarViewModel.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── Resources.tr.resx └── Sidebar.Module.Calendar.csproj ├── Sidebar.Module.Clock ├── Assets │ └── Clock.png ├── ClockView.xaml ├── ClockView.xaml.cs ├── ClockViewModel.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── Resources.tr.resx └── Sidebar.Module.Clock.csproj ├── Sidebar.Module.Dictionary ├── Assets │ ├── Background.png │ ├── Dictionary.png │ └── Languages │ │ ├── de.png │ │ ├── en.png │ │ ├── es.png │ │ ├── fr.png │ │ ├── it.png │ │ └── tr.png ├── Converters.cs ├── DictionaryView.xaml ├── DictionaryView.xaml.cs ├── DictionaryViewModel.cs ├── Global │ └── GlobalTextSelection.cs ├── Library │ ├── Gma.System.MouseKeyHook.dll │ └── LiteDB.dll ├── Model │ ├── DictionaryEntry.cs │ ├── DictionaryManager.cs │ ├── Extensions.cs │ └── SearchResult.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── Resources.tr.resx ├── Sidebar.Module.Dictionary.csproj └── Yandex │ ├── Language.cs │ ├── LanguagePair.cs │ ├── Model │ ├── DictionaryResult.cs │ ├── SpellResult.cs │ └── TranslationResult.cs │ └── YandexService.cs ├── Sidebar.Module.ExchangeRates ├── Assets │ └── ExchangeRates.png ├── Behaviors.cs ├── ExchangeRatesView.xaml ├── ExchangeRatesView.xaml.cs ├── ExchangeRatesViewModel.cs ├── Model │ ├── ExchangeRateModel.cs │ └── ExchangeRateService.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── Resources.tr.resx └── Sidebar.Module.ExchangeRates.csproj ├── Sidebar.Module.Shortcut ├── Assets │ └── Shortcut.png ├── FileSystem │ ├── ImageCache.cs │ └── ImageHelper.cs ├── Model │ └── DefaultShortcut.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── Resources.tr.resx ├── ShortcutView.xaml ├── ShortcutView.xaml.cs ├── ShortcutViewModel.cs └── Sidebar.Module.Shortcut.csproj ├── Sidebar.Module.StickyNote ├── Assets │ └── StickyNote.png ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── Resources.tr.resx ├── Sidebar.Module.StickyNote.csproj ├── StickyNoteView.xaml ├── StickyNoteView.xaml.cs └── StickyNoteViewModel.cs ├── Sidebar.Module.Weather ├── Assets │ ├── Weather.png │ └── WeatherIcons │ │ ├── 200d.png │ │ ├── 200n.png │ │ ├── 201d.png │ │ ├── 201n.png │ │ ├── 202d.png │ │ ├── 202n.png │ │ ├── 210d.png │ │ ├── 210n.png │ │ ├── 211d.png │ │ ├── 211n.png │ │ ├── 212d.png │ │ ├── 212n.png │ │ ├── 221d.png │ │ ├── 221n.png │ │ ├── 230d.png │ │ ├── 230n.png │ │ ├── 231d.png │ │ ├── 231n.png │ │ ├── 232d.png │ │ ├── 232n.png │ │ ├── 300d.png │ │ ├── 300n.png │ │ ├── 301d.png │ │ ├── 301n.png │ │ ├── 302d.png │ │ ├── 302n.png │ │ ├── 310d.png │ │ ├── 310n.png │ │ ├── 311d.png │ │ ├── 311n.png │ │ ├── 312d.png │ │ ├── 312n.png │ │ ├── 321d.png │ │ ├── 321n.png │ │ ├── 500d.png │ │ ├── 500n.png │ │ ├── 501d.png │ │ ├── 501n.png │ │ ├── 502d.png │ │ ├── 502n.png │ │ ├── 503d.png │ │ ├── 503n.png │ │ ├── 504d.png │ │ ├── 504n.png │ │ ├── 511d.png │ │ ├── 511n.png │ │ ├── 520d.png │ │ ├── 520n.png │ │ ├── 521d.png │ │ ├── 521n.png │ │ ├── 522d.png │ │ ├── 522n.png │ │ ├── 600d.png │ │ ├── 600n.png │ │ ├── 601d.png │ │ ├── 601n.png │ │ ├── 602d.png │ │ ├── 602n.png │ │ ├── 611d.png │ │ ├── 611n.png │ │ ├── 621d.png │ │ ├── 621n.png │ │ ├── 701d.png │ │ ├── 701n.png │ │ ├── 711d.png │ │ ├── 711n.png │ │ ├── 721d.png │ │ ├── 721n.png │ │ ├── 731d.png │ │ ├── 731n.png │ │ ├── 741d.png │ │ ├── 741n.png │ │ ├── 800d.png │ │ ├── 800n.png │ │ ├── 801d.png │ │ ├── 801n.png │ │ ├── 802d.png │ │ ├── 802n.png │ │ ├── 803d.png │ │ ├── 803n.png │ │ ├── 804d.png │ │ ├── 804n.png │ │ ├── 900d.png │ │ ├── 900n.png │ │ ├── 901d.png │ │ ├── 901n.png │ │ ├── 902d.png │ │ ├── 902n.png │ │ ├── 903d.png │ │ ├── 903n.png │ │ ├── 904d.png │ │ ├── 904n.png │ │ ├── 905d.png │ │ ├── 905n.png │ │ ├── 906d.png │ │ └── 906n.png ├── Model │ ├── WeatherData.cs │ └── WeatherService.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── Resources.tr.resx ├── Sidebar.Module.Weather.csproj ├── WeatherView.xaml ├── WeatherView.xaml.cs └── WeatherViewModel.cs ├── Sidebar.sln └── Sidebar ├── App.config ├── App.xaml ├── App.xaml.cs ├── Assets ├── English.png ├── NotifyIcon.ico ├── Sidebar.ico └── Turkish.png ├── Model ├── ModuleContainer.cs ├── ModuleDataContractResolver.cs ├── ModuleInformation.cs └── ModuleLoader.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Resources.tr.resx ├── Settings.Designer.cs └── Settings.settings ├── Sidebar.csproj ├── View ├── MainView.xaml └── MainView.xaml.cs └── ViewModel ├── DefaultModuleViewModel.cs └── MainViewModel.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/.gitignore -------------------------------------------------------------------------------- /Library/DevExpress.Mvvm.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Library/DevExpress.Mvvm.UI.dll -------------------------------------------------------------------------------- /Library/DevExpress.Mvvm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Library/DevExpress.Mvvm.dll -------------------------------------------------------------------------------- /Library/Hardcodet.Wpf.TaskbarNotification.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Library/Hardcodet.Wpf.TaskbarNotification.dll -------------------------------------------------------------------------------- /Library/MaterialDesignColors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Library/MaterialDesignColors.dll -------------------------------------------------------------------------------- /Library/MaterialDesignThemes.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Library/MaterialDesignThemes.Wpf.dll -------------------------------------------------------------------------------- /Library/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Library/NLog.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/README.md -------------------------------------------------------------------------------- /Sidebar.Common/Assets/Fonts/Awesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Common/Assets/Fonts/Awesome.ttf -------------------------------------------------------------------------------- /Sidebar.Common/Assets/Fonts/Digital.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Common/Assets/Fonts/Digital.ttf -------------------------------------------------------------------------------- /Sidebar.Common/Assets/Images/English.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Common/Assets/Images/English.png -------------------------------------------------------------------------------- /Sidebar.Common/Assets/Images/Turkish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Common/Assets/Images/Turkish.png -------------------------------------------------------------------------------- /Sidebar.Common/Behaviors/ExplicitBindingsBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Common/Behaviors/ExplicitBindingsBehavior.cs -------------------------------------------------------------------------------- /Sidebar.Common/Behaviors/PreventDeselectionBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Common/Behaviors/PreventDeselectionBehavior.cs -------------------------------------------------------------------------------- /Sidebar.Common/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Common/Helpers.cs -------------------------------------------------------------------------------- /Sidebar.Common/IModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Common/IModule.cs -------------------------------------------------------------------------------- /Sidebar.Common/Journal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Common/Journal.cs -------------------------------------------------------------------------------- /Sidebar.Common/Mediator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Common/Mediator.cs -------------------------------------------------------------------------------- /Sidebar.Common/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Common/Messages.cs -------------------------------------------------------------------------------- /Sidebar.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sidebar.Common/ResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Common/ResourceProvider.cs -------------------------------------------------------------------------------- /Sidebar.Common/Sidebar.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Common/Sidebar.Common.csproj -------------------------------------------------------------------------------- /Sidebar.Module.Calculator/Assets/Calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calculator/Assets/Calculator.png -------------------------------------------------------------------------------- /Sidebar.Module.Calculator/CalculatorView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calculator/CalculatorView.xaml -------------------------------------------------------------------------------- /Sidebar.Module.Calculator/CalculatorView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calculator/CalculatorView.xaml.cs -------------------------------------------------------------------------------- /Sidebar.Module.Calculator/CalculatorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calculator/CalculatorViewModel.cs -------------------------------------------------------------------------------- /Sidebar.Module.Calculator/Model/CalculationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calculator/Model/CalculationModel.cs -------------------------------------------------------------------------------- /Sidebar.Module.Calculator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calculator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sidebar.Module.Calculator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calculator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Sidebar.Module.Calculator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calculator/Properties/Resources.resx -------------------------------------------------------------------------------- /Sidebar.Module.Calculator/Properties/Resources.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calculator/Properties/Resources.tr.resx -------------------------------------------------------------------------------- /Sidebar.Module.Calculator/Sidebar.Module.Calculator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calculator/Sidebar.Module.Calculator.csproj -------------------------------------------------------------------------------- /Sidebar.Module.Calendar/Assets/Calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calendar/Assets/Calendar.png -------------------------------------------------------------------------------- /Sidebar.Module.Calendar/CalendarView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calendar/CalendarView.xaml -------------------------------------------------------------------------------- /Sidebar.Module.Calendar/CalendarView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calendar/CalendarView.xaml.cs -------------------------------------------------------------------------------- /Sidebar.Module.Calendar/CalendarViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calendar/CalendarViewModel.cs -------------------------------------------------------------------------------- /Sidebar.Module.Calendar/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calendar/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sidebar.Module.Calendar/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calendar/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Sidebar.Module.Calendar/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calendar/Properties/Resources.resx -------------------------------------------------------------------------------- /Sidebar.Module.Calendar/Properties/Resources.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calendar/Properties/Resources.tr.resx -------------------------------------------------------------------------------- /Sidebar.Module.Calendar/Sidebar.Module.Calendar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Calendar/Sidebar.Module.Calendar.csproj -------------------------------------------------------------------------------- /Sidebar.Module.Clock/Assets/Clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Clock/Assets/Clock.png -------------------------------------------------------------------------------- /Sidebar.Module.Clock/ClockView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Clock/ClockView.xaml -------------------------------------------------------------------------------- /Sidebar.Module.Clock/ClockView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Clock/ClockView.xaml.cs -------------------------------------------------------------------------------- /Sidebar.Module.Clock/ClockViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Clock/ClockViewModel.cs -------------------------------------------------------------------------------- /Sidebar.Module.Clock/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Clock/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sidebar.Module.Clock/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Clock/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Sidebar.Module.Clock/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Clock/Properties/Resources.resx -------------------------------------------------------------------------------- /Sidebar.Module.Clock/Properties/Resources.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Clock/Properties/Resources.tr.resx -------------------------------------------------------------------------------- /Sidebar.Module.Clock/Sidebar.Module.Clock.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Clock/Sidebar.Module.Clock.csproj -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Assets/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Assets/Background.png -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Assets/Dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Assets/Dictionary.png -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Assets/Languages/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Assets/Languages/de.png -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Assets/Languages/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Assets/Languages/en.png -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Assets/Languages/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Assets/Languages/es.png -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Assets/Languages/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Assets/Languages/fr.png -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Assets/Languages/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Assets/Languages/it.png -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Assets/Languages/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Assets/Languages/tr.png -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Converters.cs -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/DictionaryView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/DictionaryView.xaml -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/DictionaryView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/DictionaryView.xaml.cs -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/DictionaryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/DictionaryViewModel.cs -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Global/GlobalTextSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Global/GlobalTextSelection.cs -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Library/Gma.System.MouseKeyHook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Library/Gma.System.MouseKeyHook.dll -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Library/LiteDB.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Library/LiteDB.dll -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Model/DictionaryEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Model/DictionaryEntry.cs -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Model/DictionaryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Model/DictionaryManager.cs -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Model/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Model/Extensions.cs -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Model/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Model/SearchResult.cs -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Properties/Resources.resx -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Properties/Resources.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Properties/Resources.tr.resx -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Sidebar.Module.Dictionary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Sidebar.Module.Dictionary.csproj -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Yandex/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Yandex/Language.cs -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Yandex/LanguagePair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Yandex/LanguagePair.cs -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Yandex/Model/DictionaryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Yandex/Model/DictionaryResult.cs -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Yandex/Model/SpellResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Yandex/Model/SpellResult.cs -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Yandex/Model/TranslationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Yandex/Model/TranslationResult.cs -------------------------------------------------------------------------------- /Sidebar.Module.Dictionary/Yandex/YandexService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Dictionary/Yandex/YandexService.cs -------------------------------------------------------------------------------- /Sidebar.Module.ExchangeRates/Assets/ExchangeRates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.ExchangeRates/Assets/ExchangeRates.png -------------------------------------------------------------------------------- /Sidebar.Module.ExchangeRates/Behaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.ExchangeRates/Behaviors.cs -------------------------------------------------------------------------------- /Sidebar.Module.ExchangeRates/ExchangeRatesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.ExchangeRates/ExchangeRatesView.xaml -------------------------------------------------------------------------------- /Sidebar.Module.ExchangeRates/ExchangeRatesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.ExchangeRates/ExchangeRatesView.xaml.cs -------------------------------------------------------------------------------- /Sidebar.Module.ExchangeRates/ExchangeRatesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.ExchangeRates/ExchangeRatesViewModel.cs -------------------------------------------------------------------------------- /Sidebar.Module.ExchangeRates/Model/ExchangeRateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.ExchangeRates/Model/ExchangeRateModel.cs -------------------------------------------------------------------------------- /Sidebar.Module.ExchangeRates/Model/ExchangeRateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.ExchangeRates/Model/ExchangeRateService.cs -------------------------------------------------------------------------------- /Sidebar.Module.ExchangeRates/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.ExchangeRates/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sidebar.Module.ExchangeRates/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.ExchangeRates/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Sidebar.Module.ExchangeRates/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.ExchangeRates/Properties/Resources.resx -------------------------------------------------------------------------------- /Sidebar.Module.ExchangeRates/Properties/Resources.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.ExchangeRates/Properties/Resources.tr.resx -------------------------------------------------------------------------------- /Sidebar.Module.ExchangeRates/Sidebar.Module.ExchangeRates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.ExchangeRates/Sidebar.Module.ExchangeRates.csproj -------------------------------------------------------------------------------- /Sidebar.Module.Shortcut/Assets/Shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Shortcut/Assets/Shortcut.png -------------------------------------------------------------------------------- /Sidebar.Module.Shortcut/FileSystem/ImageCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Shortcut/FileSystem/ImageCache.cs -------------------------------------------------------------------------------- /Sidebar.Module.Shortcut/FileSystem/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Shortcut/FileSystem/ImageHelper.cs -------------------------------------------------------------------------------- /Sidebar.Module.Shortcut/Model/DefaultShortcut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Shortcut/Model/DefaultShortcut.cs -------------------------------------------------------------------------------- /Sidebar.Module.Shortcut/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Shortcut/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sidebar.Module.Shortcut/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Shortcut/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Sidebar.Module.Shortcut/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Shortcut/Properties/Resources.resx -------------------------------------------------------------------------------- /Sidebar.Module.Shortcut/Properties/Resources.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Shortcut/Properties/Resources.tr.resx -------------------------------------------------------------------------------- /Sidebar.Module.Shortcut/ShortcutView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Shortcut/ShortcutView.xaml -------------------------------------------------------------------------------- /Sidebar.Module.Shortcut/ShortcutView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Shortcut/ShortcutView.xaml.cs -------------------------------------------------------------------------------- /Sidebar.Module.Shortcut/ShortcutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Shortcut/ShortcutViewModel.cs -------------------------------------------------------------------------------- /Sidebar.Module.Shortcut/Sidebar.Module.Shortcut.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Shortcut/Sidebar.Module.Shortcut.csproj -------------------------------------------------------------------------------- /Sidebar.Module.StickyNote/Assets/StickyNote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.StickyNote/Assets/StickyNote.png -------------------------------------------------------------------------------- /Sidebar.Module.StickyNote/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.StickyNote/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sidebar.Module.StickyNote/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.StickyNote/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Sidebar.Module.StickyNote/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.StickyNote/Properties/Resources.resx -------------------------------------------------------------------------------- /Sidebar.Module.StickyNote/Properties/Resources.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.StickyNote/Properties/Resources.tr.resx -------------------------------------------------------------------------------- /Sidebar.Module.StickyNote/Sidebar.Module.StickyNote.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.StickyNote/Sidebar.Module.StickyNote.csproj -------------------------------------------------------------------------------- /Sidebar.Module.StickyNote/StickyNoteView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.StickyNote/StickyNoteView.xaml -------------------------------------------------------------------------------- /Sidebar.Module.StickyNote/StickyNoteView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.StickyNote/StickyNoteView.xaml.cs -------------------------------------------------------------------------------- /Sidebar.Module.StickyNote/StickyNoteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.StickyNote/StickyNoteViewModel.cs -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/Weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/Weather.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/200d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/200d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/200n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/200n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/201d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/201d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/201n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/201n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/202d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/202d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/202n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/202n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/210d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/210d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/210n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/210n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/211d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/211d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/211n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/211n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/212d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/212d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/212n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/212n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/221d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/221d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/221n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/221n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/230d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/230d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/230n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/230n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/231d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/231d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/231n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/231n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/232d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/232d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/232n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/232n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/300d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/300d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/300n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/300n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/301d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/301d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/301n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/301n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/302d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/302d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/302n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/302n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/310d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/310d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/310n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/310n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/311d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/311d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/311n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/311n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/312d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/312d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/312n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/312n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/321d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/321d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/321n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/321n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/500d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/500d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/500n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/500n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/501d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/501d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/501n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/501n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/502d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/502d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/502n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/502n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/503d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/503d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/503n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/503n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/504d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/504d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/504n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/504n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/511d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/511d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/511n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/511n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/520d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/520d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/520n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/520n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/521d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/521d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/521n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/521n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/522d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/522d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/522n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/522n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/600d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/600d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/600n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/600n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/601d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/601d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/601n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/601n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/602d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/602d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/602n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/602n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/611d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/611d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/611n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/611n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/621d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/621d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/621n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/621n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/701d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/701d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/701n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/701n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/711d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/711d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/711n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/711n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/721d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/721d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/721n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/721n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/731d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/731d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/731n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/731n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/741d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/741d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/741n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/741n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/800d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/800d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/800n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/800n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/801d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/801d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/801n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/801n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/802d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/802d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/802n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/802n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/803d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/803d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/803n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/803n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/804d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/804d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/804n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/804n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/900d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/900d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/900n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/900n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/901d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/901d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/901n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/901n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/902d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/902d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/902n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/902n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/903d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/903d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/903n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/903n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/904d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/904d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/904n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/904n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/905d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/905d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/905n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/905n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/906d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/906d.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Assets/WeatherIcons/906n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Assets/WeatherIcons/906n.png -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Model/WeatherData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Model/WeatherData.cs -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Model/WeatherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Model/WeatherService.cs -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Properties/Resources.resx -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Properties/Resources.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Properties/Resources.tr.resx -------------------------------------------------------------------------------- /Sidebar.Module.Weather/Sidebar.Module.Weather.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/Sidebar.Module.Weather.csproj -------------------------------------------------------------------------------- /Sidebar.Module.Weather/WeatherView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/WeatherView.xaml -------------------------------------------------------------------------------- /Sidebar.Module.Weather/WeatherView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/WeatherView.xaml.cs -------------------------------------------------------------------------------- /Sidebar.Module.Weather/WeatherViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.Module.Weather/WeatherViewModel.cs -------------------------------------------------------------------------------- /Sidebar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar.sln -------------------------------------------------------------------------------- /Sidebar/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/App.config -------------------------------------------------------------------------------- /Sidebar/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/App.xaml -------------------------------------------------------------------------------- /Sidebar/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/App.xaml.cs -------------------------------------------------------------------------------- /Sidebar/Assets/English.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/Assets/English.png -------------------------------------------------------------------------------- /Sidebar/Assets/NotifyIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/Assets/NotifyIcon.ico -------------------------------------------------------------------------------- /Sidebar/Assets/Sidebar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/Assets/Sidebar.ico -------------------------------------------------------------------------------- /Sidebar/Assets/Turkish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/Assets/Turkish.png -------------------------------------------------------------------------------- /Sidebar/Model/ModuleContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/Model/ModuleContainer.cs -------------------------------------------------------------------------------- /Sidebar/Model/ModuleDataContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/Model/ModuleDataContractResolver.cs -------------------------------------------------------------------------------- /Sidebar/Model/ModuleInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/Model/ModuleInformation.cs -------------------------------------------------------------------------------- /Sidebar/Model/ModuleLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/Model/ModuleLoader.cs -------------------------------------------------------------------------------- /Sidebar/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/Program.cs -------------------------------------------------------------------------------- /Sidebar/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sidebar/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Sidebar/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/Properties/Resources.resx -------------------------------------------------------------------------------- /Sidebar/Properties/Resources.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/Properties/Resources.tr.resx -------------------------------------------------------------------------------- /Sidebar/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Sidebar/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/Properties/Settings.settings -------------------------------------------------------------------------------- /Sidebar/Sidebar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/Sidebar.csproj -------------------------------------------------------------------------------- /Sidebar/View/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/View/MainView.xaml -------------------------------------------------------------------------------- /Sidebar/View/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/View/MainView.xaml.cs -------------------------------------------------------------------------------- /Sidebar/ViewModel/DefaultModuleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/ViewModel/DefaultModuleViewModel.cs -------------------------------------------------------------------------------- /Sidebar/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omeryanar/Sidebar/HEAD/Sidebar/ViewModel/MainViewModel.cs --------------------------------------------------------------------------------