├── .gitignore ├── .gitmodules ├── Assets ├── installer.bmp └── speckle.ico ├── InnoSetup ├── Default.isl ├── ISCC.exe ├── ISCmplr.dll ├── ISPP.dll ├── ISPPBuiltins.iss ├── Setup.e32 ├── SetupLdr.e32 ├── WizModernImage-IS.bmp ├── WizModernImage.bmp ├── WizModernSmallImage-IS.bmp ├── WizModernSmallImage.bmp ├── islzma.dll ├── islzma32.exe └── islzma64.exe ├── LICENSE ├── README.md ├── SpeckleInstaller.iss ├── SpeckleUpdater.sln ├── SpeckleUpdater ├── Api.cs ├── App.config ├── App.xaml ├── App.xaml.cs ├── GitHub.cs ├── Globals.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Release.cs ├── SpeckleUpdater.csproj ├── logo.png ├── packages.config └── speckle.ico └── appveyor.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/installer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/Assets/installer.bmp -------------------------------------------------------------------------------- /Assets/speckle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/Assets/speckle.ico -------------------------------------------------------------------------------- /InnoSetup/Default.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/InnoSetup/Default.isl -------------------------------------------------------------------------------- /InnoSetup/ISCC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/InnoSetup/ISCC.exe -------------------------------------------------------------------------------- /InnoSetup/ISCmplr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/InnoSetup/ISCmplr.dll -------------------------------------------------------------------------------- /InnoSetup/ISPP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/InnoSetup/ISPP.dll -------------------------------------------------------------------------------- /InnoSetup/ISPPBuiltins.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/InnoSetup/ISPPBuiltins.iss -------------------------------------------------------------------------------- /InnoSetup/Setup.e32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/InnoSetup/Setup.e32 -------------------------------------------------------------------------------- /InnoSetup/SetupLdr.e32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/InnoSetup/SetupLdr.e32 -------------------------------------------------------------------------------- /InnoSetup/WizModernImage-IS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/InnoSetup/WizModernImage-IS.bmp -------------------------------------------------------------------------------- /InnoSetup/WizModernImage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/InnoSetup/WizModernImage.bmp -------------------------------------------------------------------------------- /InnoSetup/WizModernSmallImage-IS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/InnoSetup/WizModernSmallImage-IS.bmp -------------------------------------------------------------------------------- /InnoSetup/WizModernSmallImage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/InnoSetup/WizModernSmallImage.bmp -------------------------------------------------------------------------------- /InnoSetup/islzma.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/InnoSetup/islzma.dll -------------------------------------------------------------------------------- /InnoSetup/islzma32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/InnoSetup/islzma32.exe -------------------------------------------------------------------------------- /InnoSetup/islzma64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/InnoSetup/islzma64.exe -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/README.md -------------------------------------------------------------------------------- /SpeckleInstaller.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleInstaller.iss -------------------------------------------------------------------------------- /SpeckleUpdater.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater.sln -------------------------------------------------------------------------------- /SpeckleUpdater/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/Api.cs -------------------------------------------------------------------------------- /SpeckleUpdater/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/App.config -------------------------------------------------------------------------------- /SpeckleUpdater/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/App.xaml -------------------------------------------------------------------------------- /SpeckleUpdater/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/App.xaml.cs -------------------------------------------------------------------------------- /SpeckleUpdater/GitHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/GitHub.cs -------------------------------------------------------------------------------- /SpeckleUpdater/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/Globals.cs -------------------------------------------------------------------------------- /SpeckleUpdater/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/MainWindow.xaml -------------------------------------------------------------------------------- /SpeckleUpdater/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/MainWindow.xaml.cs -------------------------------------------------------------------------------- /SpeckleUpdater/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SpeckleUpdater/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SpeckleUpdater/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/Properties/Resources.resx -------------------------------------------------------------------------------- /SpeckleUpdater/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SpeckleUpdater/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/Properties/Settings.settings -------------------------------------------------------------------------------- /SpeckleUpdater/Release.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/Release.cs -------------------------------------------------------------------------------- /SpeckleUpdater/SpeckleUpdater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/SpeckleUpdater.csproj -------------------------------------------------------------------------------- /SpeckleUpdater/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/logo.png -------------------------------------------------------------------------------- /SpeckleUpdater/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/packages.config -------------------------------------------------------------------------------- /SpeckleUpdater/speckle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/SpeckleUpdater/speckle.ico -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speckleworks/SpeckleInstaller/HEAD/appveyor.yml --------------------------------------------------------------------------------