[READ-ONLY] Mirror of https://github.com/jackmawer/BlueRoseClassic.
0

Configure Feed

Select the types of activity you want to include in your feed.

Legacy branch

Current branch is having trouble updating FreeSO properly. This is meant
to address that.

Zack Casey (Feb 24, 2016, 8:22 PM EST) 664f210c 0879abdc

+22 -11
+2 -2
BlueRose/BlueRose.csproj
··· 43 43 <StartupObject>BlueRose.Program</StartupObject> 44 44 </PropertyGroup> 45 45 <ItemGroup> 46 - <Reference Include="Ionic.Zip, Version=1.9.8.0, Culture=neutral, PublicKeyToken=6583c7c814667745, processorArchitecture=MSIL"> 47 - <HintPath>..\packages\DotNetZip.1.9.8\lib\net20\Ionic.Zip.dll</HintPath> 46 + <Reference Include="Ionic.Zip, Version=1.9.7.0, Culture=neutral, PublicKeyToken=6583c7c814667745, processorArchitecture=MSIL"> 47 + <HintPath>..\packages\DotNetZip.1.9.7\lib\net20\Ionic.Zip.dll</HintPath> 48 48 <Private>True</Private> 49 49 </Reference> 50 50 <Reference Include="System" />
+19 -8
BlueRose/BlueRoseGUI.cs
··· 140 140 141 141 private void btnUpdateLauncher_Click(object sender, EventArgs e) 142 142 { 143 - btnUpdateLauncher.Enabled = false; 144 - 145 - WebClient client = new WebClient(); 146 - 147 - client.DownloadFileCompleted += new AsyncCompletedEventHandler(brDownloadCompleted); 148 - 149 - client.DownloadFileAsync(BlueRose.webURL(@"https://dl.dropboxusercontent.com/u/42345729/BlueRoseUpdate.zip"), 150 - blueRoseFile); 143 + try 144 + { 145 + ProcessStartInfo newProccess = new ProcessStartInfo("SimplyUpdate.exe"); 146 + newProccess.UseShellExecute = true; 147 + newProccess.Verb = "runas"; 148 + Process.Start(newProccess); 149 + try 150 + { 151 + Application.Exit(); 152 + } 153 + catch 154 + { 155 + Environment.Exit(0); 156 + } 157 + } 158 + catch (Exception ex) 159 + { 160 + MessageBox.Show(ex.Message); 161 + } 151 162 } 152 163 153 164 void brDownloadCompleted(object sender, AsyncCompletedEventArgs e)
+1 -1
BlueRose/packages.config
··· 1 1 <?xml version="1.0" encoding="utf-8"?> 2 2 <packages> 3 - <package id="DotNetZip" version="1.9.8" targetFramework="net452" /> 3 + <package id="DotNetZip" version="1.9.7" targetFramework="net452" /> 4 4 </packages>