Skip to content

Commit

Permalink
- added support to mark servers as favorites and keep them on top of …
Browse files Browse the repository at this point in the history
…the server list

- added button for "Quick Refresh" which updates the status of all servers in the current list
- renamed "Reload Servers" to "Find Servers" which should make it clearer that it loads a new server list
- removing leading/trailing spaces from server names
  • Loading branch information
PredatH0r committed Jul 29, 2015
1 parent e0a9b88 commit 1437e0d
Show file tree
Hide file tree
Showing 19 changed files with 539 additions and 631 deletions.
66 changes: 0 additions & 66 deletions Main/App.config

This file was deleted.

10 changes: 0 additions & 10 deletions Main/Main.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,6 @@
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\Settings.Designer.cs">
<DependentUpon>Settings.settings</DependentUpon>
<AutoGen>True</AutoGen>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
Expand All @@ -93,14 +88,9 @@
<ItemGroup>
<None Include="amd64\libsodium.so" />
<None Include="amd64\libzmq.so" />
<None Include="App.config" />
<None Include="i386\libsodium.so" />
<None Include="i386\libzmq.so" />
<None Include="packages.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\QueryMaster\QueryMaster\QueryMaster.csproj">
Expand Down
4 changes: 2 additions & 2 deletions Main/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Main
{
public static class Program
{
private const string Version = "1.12.2";
private const string Version = "1.13";

[STAThread]
static void Main()
Expand All @@ -20,7 +20,7 @@ static void Main()
System.Threading.Thread.CurrentThread.CurrentCulture = culture;
#endif
// change font before creating the main form to get correct auto-scaling
ServerBrowser.Program.Init(new Font("Segoe UI", AppearanceObject.DefaultFont.Size + 0.75f), Properties.Settings.Default.Skin);
ServerBrowser.Program.Init(new Font("Segoe UI", AppearanceObject.DefaultFont.Size + 0.75f), ServerBrowser.Properties.Settings.Default.Skin);

var mainForm = new ServerBrowserForm();
var icon = typeof (Program).Assembly.GetManifestResourceStream("Main.App.ico");
Expand Down
6 changes: 3 additions & 3 deletions Main/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Main")]
[assembly: AssemblyTitle("ServerBrowser")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Main")]
[assembly: AssemblyCompany("ServerBrowser")]
[assembly: AssemblyProduct("ServerBrowser")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
Expand Down
219 changes: 0 additions & 219 deletions Main/Properties/Settings.Designer.cs

This file was deleted.

Loading

0 comments on commit 1437e0d

Please sign in to comment.