Skip to content

Commit 3572b2c

Browse files
committed
Renamed from working name to new name
1 parent e3b41ec commit 3572b2c

21 files changed

+47
-61
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Spectacle for Windows
1+
# Neat Windows
22

33
Easily organize windows without using a mouse. Inspired by [spectacle][1].
44
[1]:https://github.com/eczarny/spectacle

spectacle-windows.sln neat-windows.sln

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 2013
44
VisualStudioVersion = 12.0.31101.0
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "spectacle-windows", "spectacle-windows\spectacle-windows.csproj", "{FD06D960-AE86-4869-9CDB-E23776F66D3F}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "neat-windows", "neat-windows\neat-windows.csproj", "{FD06D960-AE86-4869-9CDB-E23776F66D3F}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution

spectacle-windows/ConfigurationManager.cs neat-windows/ConfigurationManager.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text;
66
using System.Windows.Forms;
77

8-
namespace spectacle_windows
8+
namespace neat_windows
99
{
1010
class ConfigurationManager
1111
{
Binary file not shown.

spectacle-windows/Hotkey.cs neat-windows/Hotkey.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Xml.Serialization;
55
using System.Runtime.InteropServices;
66

7-
namespace spectacle_windows
7+
namespace neat_windows
88
{
99
/*
1010
* Hotkey abstraction kindly taken from:

spectacle-windows/HotkeyHandler.cs neat-windows/HotkeyHandler.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Configuration;
33
using System.Windows.Forms;
44

5-
namespace spectacle_windows
5+
namespace neat_windows
66
{
77
class HotkeyHandler
88
{

spectacle-windows/NativeMethods.cs neat-windows/NativeMethods.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Runtime.InteropServices;
33

4-
namespace spectacle_windows
4+
namespace neat_windows
55
{
66
static class NativeMethods
77
{

spectacle-windows/Program.cs neat-windows/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Windows.Forms;
33

4-
namespace spectacle_windows
4+
namespace neat_windows
55
{
66
static class Program
77
{

spectacle-windows/Properties/AssemblyInfo.cs neat-windows/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
8-
[assembly: AssemblyTitle("spectacle-windows")]
8+
[assembly: AssemblyTitle("neat-windows")]
99
[assembly: AssemblyDescription("")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("spectacle-windows")]
12+
[assembly: AssemblyProduct("neat-windows")]
1313
[assembly: AssemblyCopyright("Copyright © 2015")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]

spectacle-windows/Properties/Resources.Designer.cs neat-windows/Properties/Resources.Designer.cs

+18-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spectacle-windows/Properties/Settings.Designer.cs neat-windows/Properties/Settings.Designer.cs

+9-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spectacle-windows/ScreenSizePosition.cs neat-windows/ScreenSizePosition.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Drawing;
33
using System.Windows.Forms;
44

5-
namespace spectacle_windows
5+
namespace neat_windows
66
{
77
class ScreenSizePosition
88
{

spectacle-windows/Settings.cs neat-windows/Settings.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace spectacle_windows.Properties {
1+
namespace neat_windows.Properties {
22

33

44
// This class allows you to handle specific events on the settings class:

spectacle-windows/SettingsForm.Designer.cs neat-windows/SettingsForm.Designer.cs

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spectacle-windows/SettingsForm.cs neat-windows/SettingsForm.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Collections.Generic;
22
using System.Windows.Forms;
33

4-
namespace spectacle_windows
4+
namespace neat_windows
55
{
66
public partial class SettingsForm : Form
77
{
File renamed without changes.

spectacle-windows/WindowConstants.cs neat-windows/WindowConstants.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace spectacle_windows
3+
namespace neat_windows
44
{
55
/*
66
* Constants kindly taken from:

spectacle-windows/WindowResizer.cs neat-windows/WindowResizer.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Drawing;
33

4-
namespace spectacle_windows
4+
namespace neat_windows
55
{
66
class WindowResizer
77
{

spectacle-windows/spectacle-windows.csproj neat-windows/neat-windows.csproj

+3-5
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<ProjectGuid>{FD06D960-AE86-4869-9CDB-E23776F66D3F}</ProjectGuid>
88
<OutputType>WinExe</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>spectacle_windows</RootNamespace>
11-
<AssemblyName>spectacle-windows</AssemblyName>
10+
<RootNamespace>neat_windows</RootNamespace>
11+
<AssemblyName>neat-windows</AssemblyName>
1212
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<IsWebBootstrapper>false</IsWebBootstrapper>
@@ -50,9 +50,6 @@
5050
<PropertyGroup>
5151
<ManifestCertificateThumbprint>6902562EE7BB76B1D065A478F36954E2F5FF6C3C</ManifestCertificateThumbprint>
5252
</PropertyGroup>
53-
<PropertyGroup>
54-
<ManifestKeyFile>spectacle-windows_TemporaryKey.pfx</ManifestKeyFile>
55-
</PropertyGroup>
5653
<PropertyGroup>
5754
<GenerateManifests>true</GenerateManifests>
5855
</PropertyGroup>
@@ -100,6 +97,7 @@
10097
<Compile Include="Properties\Resources.Designer.cs">
10198
<AutoGen>True</AutoGen>
10299
<DependentUpon>Resources.resx</DependentUpon>
100+
<DesignTime>True</DesignTime>
103101
</Compile>
104102
<None Include="Properties\Settings.settings">
105103
<Generator>SettingsSingleFileGenerator</Generator>

0 commit comments

Comments
 (0)