Rebrand to Atomic

pull/16/head
Miepee 4 years ago
parent 3e1f8e2e89
commit c8cbc52f95

@ -3,15 +3,15 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.28803.156
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AM2RModPacker", "AM2RModPacker\AM2RModPacker.csproj", "{13E58D3E-D34E-4354-B5D3-AC43B05E7212}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Atomic", "Atomic\Atomic.csproj", "{13E58D3E-D34E-4354-B5D3-AC43B05E7212}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AM2RModPackerLib", "AM2RModPackerLib\AM2RModPackerLib.csproj", "{9FC86440-2F54-436C-A71C-50429D7CA0B9}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AtomicLib", "AtomicLib\AtomicLib.csproj", "{9FC86440-2F54-436C-A71C-50429D7CA0B9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AM2RModPacker.Wpf", "AM2RModPacker.Wpf\AM2RModPacker.Wpf.csproj", "{61CBA52B-16B2-4982-8046-BE3C730D8E45}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Atomic.Wpf", "Atomic.Wpf\Atomic.Wpf.csproj", "{61CBA52B-16B2-4982-8046-BE3C730D8E45}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AM2RModPacker.Gtk", "AM2RModPacker.Gtk\AM2RModPacker.Gtk.csproj", "{80D403DC-E4B6-45DF-ACC9-D70152AA8117}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Atomic.Gtk", "Atomic.Gtk\Atomic.Gtk.csproj", "{80D403DC-E4B6-45DF-ACC9-D70152AA8117}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AM2RModPacker.Mac", "AM2RModPacker.Mac\AM2RModPacker.Mac.csproj", "{A0481858-CA50-4DB8-A547-193BD1D57D21}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Atomic.Mac", "Atomic.Mac\Atomic.Mac.csproj", "{A0481858-CA50-4DB8-A547-193BD1D57D21}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

@ -3,7 +3,8 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<OutputType>Exe</OutputType>
<OutputType>WinExe</OutputType>
<RootNamespace>AM2RModPacker.Gtk</RootNamespace>
</PropertyGroup>
<ItemGroup>
@ -11,7 +12,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AM2RModPacker\AM2RModPacker.csproj" />
<ProjectReference Include="..\Atomic\Atomic.csproj" />
</ItemGroup>
</Project>

@ -1,6 +1,6 @@
using Eto.Forms;
namespace AM2RModPacker.Gtk;
namespace Atomic.Gtk;
class Program
{

@ -3,7 +3,8 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<OutputType>Exe</OutputType>
<OutputType>WinExe</OutputType>
<RootNamespace>AM2RModPacker.Mac</RootNamespace>
</PropertyGroup>
<ItemGroup>
@ -11,7 +12,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AM2RModPacker\AM2RModPacker.csproj" />
<ProjectReference Include="..\Atomic\Atomic.csproj" />
</ItemGroup>
</Project>

@ -1,6 +1,6 @@
using Eto.Forms;
namespace AM2RModPacker.Mac;
namespace Atomic.Mac;
class Program
{

@ -3,8 +3,10 @@
<PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<OutputType>Exe</OutputType>
<OutputType>WinExe</OutputType>
<LangVersion>10</LangVersion>
<ApplicationIcon>icon64.ico</ApplicationIcon>
<RootNamespace>AM2RModPacker.Wpf</RootNamespace>
</PropertyGroup>
<ItemGroup>
@ -12,7 +14,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AM2RModPacker\AM2RModPacker.csproj" />
<ProjectReference Include="..\Atomic\Atomic.csproj" />
</ItemGroup>
</Project>

@ -1,6 +1,6 @@
using Eto.Forms;
namespace AM2RModPacker.Wpf;
namespace Atomic.Wpf;
class Program
{

Before

Width:  |  Height:  |  Size: 401 KiB

After

Width:  |  Height:  |  Size: 401 KiB

@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<LangVersion>10</LangVersion>
<RootNamespace>AM2RModPacker</RootNamespace>
</PropertyGroup>
<ItemGroup>
@ -20,7 +21,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AM2RModPackerLib\AM2RModPackerLib.csproj" />
<ProjectReference Include="..\AtomicLib\AtomicLib.csproj" />
</ItemGroup>
<ItemGroup>

@ -1,12 +1,12 @@
using System.Collections.Generic;
using Eto.Forms;
using Eto.Drawing;
using AM2RModPackerLib.XML;
using AtomicLib.XML;
using System.IO;
using System.Reflection;
using AM2RModPackerLib;
using AtomicLib;
namespace AM2RModPacker;
namespace Atomic;
public partial class ModPacker : Form
{
@ -51,8 +51,8 @@ public partial class ModPacker : Form
};
#endregion
Title = "AM2R ModPacker " + version;
Icon = new Icon(1f, new Bitmap(AM2RModPacker.Resources.icon64));
Title = "Atomic v" + version;
Icon = new Icon(1f, new Bitmap(Resources.icon64));
MinimumSize = new Size(300, 200);
ClientSize = new Size(550, 450);

@ -5,10 +5,10 @@ using System.IO.Compression;
using System.Linq;
using System.Reflection;
using System.Text.RegularExpressions;
using AM2RModPackerLib;
using AtomicLib;
using Eto.Forms;
namespace AM2RModPacker;
namespace Atomic;
public partial class ModPacker : Form
{
@ -285,8 +285,8 @@ public partial class ModPacker : Form
createLabel.Text = "Mod packaging aborted!";
// Remove temp directory
if (Directory.Exists(Path.GetTempPath() + "/AM2RModPacker"))
Directory.Delete(Path.GetTempPath() + "/AM2RModPacker", true);
if (Directory.Exists(Path.GetTempPath() + "/Atomic"))
Directory.Delete(Path.GetTempPath() + "/Atomic", true);
}
private void UpdateCreateButton()

@ -8,7 +8,7 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace AM2RModPacker {
namespace Atomic {
using System;
@ -39,7 +39,7 @@ namespace AM2RModPacker {
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AM2RModPacker.Resources", typeof(Resources).Assembly);
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Atomic.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
@ -70,4 +70,4 @@ namespace AM2RModPacker {
}
}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 401 KiB

@ -5,6 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<LangVersion>10</LangVersion>
<RootNamespace>AM2RModPackerLib</RootNamespace>
</PropertyGroup>
<ItemGroup>

@ -2,9 +2,9 @@
using System.Diagnostics;
using System.IO.Compression;
using System.Security.Cryptography;
using AM2RModPackerLib.XML;
using AtomicLib.XML;
namespace AM2RModPackerLib;
namespace AtomicLib;
public enum ProfileOperatingSystems
{
@ -43,11 +43,11 @@ public static class Core
};
// Cleanup in case of previous errors
if (Directory.Exists($"{Path.GetTempPath()}/AM2RModPacker"))
Directory.Delete($"{Path.GetTempPath()}/AM2RModPacker", true);
if (Directory.Exists($"{Path.GetTempPath()}/Atomic"))
Directory.Delete($"{Path.GetTempPath()}/Atomic", true);
// Create temp work folders
string tempPath = Directory.CreateDirectory($"{Path.GetTempPath()}/AM2RModPacker").FullName;
string tempPath = Directory.CreateDirectory($"{Path.GetTempPath()}/Atomic").FullName;
string tempOriginalPath = Directory.CreateDirectory($"{tempPath}/original").FullName;
string tempModPath = Directory.CreateDirectory($"{tempPath}/mod").FullName;
string tempProfilePath = Directory.CreateDirectory($"{tempPath}/profile").FullName;

@ -1,7 +1,7 @@
using System.Reflection;
using AM2RModPackerLib.XML;
using AtomicLib.XML;
namespace AM2RModPackerLib;
namespace AtomicLib;
public class ModCreationInfo
{

@ -1,6 +1,6 @@
using System.Runtime.InteropServices;
namespace AM2RModPackerLib;
namespace AtomicLib;
/// <summary>
/// Class that has information about the current running operating system.

@ -1,6 +1,6 @@
using System.Xml.Serialization;
namespace AM2RModPackerLib.XML;
namespace AtomicLib.XML;
/// <summary>
/// Class that handles how the mod settings are saved as XML.

@ -1,6 +1,6 @@
using System.Text;
namespace AM2RModPackerLib.XML;
namespace AtomicLib.XML;
/// <summary>
/// The <c>Serializer</c> class, that serializes to and deserializes from XML files.
Loading…
Cancel
Save