Implemented auto-update using Squirrel
Reworked SettingsPageView to not need a Save Button and added a folder browser control
This commit is contained in:
@@ -25,14 +25,24 @@ namespace Filtration.WindsorInstallers
|
||||
.LifeStyle.Singleton);
|
||||
|
||||
container.Register(
|
||||
Component.For<IUpdateCheckService>()
|
||||
.ImplementedBy<UpdateCheckService>()
|
||||
Component.For<IUpdateService>()
|
||||
.ImplementedBy<UpdateService>()
|
||||
.LifeStyle.Singleton);
|
||||
|
||||
container.Register(
|
||||
Component.For<IClipboardService>()
|
||||
.ImplementedBy<ClipboardService>()
|
||||
.LifeStyle.Singleton);
|
||||
|
||||
container.Register(
|
||||
Component.For<IBootstrapper>()
|
||||
.ImplementedBy<Bootstrapper>()
|
||||
.LifeStyle.Singleton);
|
||||
|
||||
container.Register(
|
||||
Component.For<ISettingsService>()
|
||||
.ImplementedBy<SettingsService>()
|
||||
.LifeStyle.Singleton);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -68,9 +68,9 @@ namespace Filtration.WindsorInstallers
|
||||
.LifeStyle.Transient);
|
||||
|
||||
container.Register(
|
||||
Component.For<IUpdateAvailableViewModel>()
|
||||
.ImplementedBy<UpdateAvailableViewModel>()
|
||||
.LifeStyle.Transient);
|
||||
Component.For<IUpdateViewModel>()
|
||||
.ImplementedBy<UpdateViewModel>()
|
||||
.LifeStyle.Singleton);
|
||||
|
||||
container.Register(
|
||||
Component.For<IItemFilterBlockViewModelFactory>().AsFactory());
|
||||
|
||||
Reference in New Issue
Block a user