Skip to content

Commit

Permalink
rename project
Browse files Browse the repository at this point in the history
  • Loading branch information
ohhsodead committed Sep 17, 2022
1 parent 0890a74 commit 408e529
Show file tree
Hide file tree
Showing 43 changed files with 69 additions and 430 deletions.
2 changes: 1 addition & 1 deletion src/Atomic.sln → src/Arisen GSC Injector.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30011.22
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Atomic", "Atomic\Atomic.csproj", "{471A20D8-E259-4002-9FC8-79252BDBA6A8}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Arisen GSC Injector", "Arisen GSC Injector\Arisen GSC Injector.csproj", "{471A20D8-E259-4002-9FC8-79252BDBA6A8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<ProjectGuid>{471A20D8-E259-4002-9FC8-79252BDBA6A8}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Atomic</RootNamespace>
<AssemblyName>Atomic</AssemblyName>
<RootNamespace>Arisen_GSC_Injector</RootNamespace>
<AssemblyName>Arisen GSC Injector</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
Expand Down Expand Up @@ -94,8 +94,8 @@
<HintPath>..\References\JRPC.dll</HintPath>
<EmbedInteropTypes>False</EmbedInteropTypes>
</Reference>
<Reference Include="log4net, Version=2.0.13.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<HintPath>..\packages\log4net.2.0.13\lib\net45\log4net.dll</HintPath>
<Reference Include="log4net, Version=2.0.15.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<HintPath>..\packages\log4net.2.0.15\lib\net45\log4net.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
Expand Down Expand Up @@ -169,12 +169,6 @@
<Compile Include="Extensions\StringExtensions.cs" />
<Compile Include="Io\Archives.cs" />
<Compile Include="Io\UserFolders.cs" />
<Compile Include="MetroForm1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="MetroForm1.Designer.cs">
<DependentUpon>MetroForm1.cs</DependentUpon>
</Compile>
<Compile Include="Models\GscData.cs" />
<Compile Include="Models\ModsData.cs" />
<Compile Include="Database\SettingsData.cs" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
namespace Atomic.Constants
namespace Arisen_GSC_Injector.Constants
{
public class Urls
{
/// <summary>
/// Web URL for the project repository on hosted GitHub.
/// </summary>
internal const string GitHubRepo = "https://github.com/ohhsodead/Atomic/";
internal const string GitHubRepo = "https://github.com/ohhsodead/arisen-gsc-injector/";

/// <summary>
/// Direct web API on GitHub with the latest release information.
/// </summary>
internal const string GitHubLatestRelease = "https://api.github.com/repos/ohhsodead/Atomic/releases/latest";
internal const string GitHubLatestRelease = "https://api.github.com/repos/ohhsodead/arisen-gsc-injector/releases/latest";

/// <summary>
/// Direct download for the categories database file hosted on Dropbox. (Maybe move to GitHub soon)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using Atomic.Constants;
using Arisen_GSC_Injector.Constants;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;

namespace Atomic.Database
namespace Arisen_GSC_Injector.Database
{
public class DropboxData
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace Atomic.Database
namespace Arisen_GSC_Injector.Database
{
public partial class SettingsData
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Drawing;
using System.Windows.Forms;

namespace Atomic.Extensions
namespace Arisen_GSC_Injector.Extensions
{
internal static class ControlExtensions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Text;
using System.Threading.Tasks;

namespace Atomic.Extensions
namespace Arisen_GSC_Injector.Extensions
{
internal static class DataExtensions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Net;
using System.Runtime.InteropServices;

namespace Atomic.Extensions
namespace Arisen_GSC_Injector.Extensions
{
internal static class HttpExtensions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Drawing;

namespace Atomic.Extensions
namespace Arisen_GSC_Injector.Extensions
{
internal static class ImageExtensions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.IO;

namespace Atomic.Extensions
namespace Arisen_GSC_Injector.Extensions
{
public class StringExtensions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
using System.Net;
using System.Reflection;
using System.Windows.Forms;
using Atomic.Constants;
using Atomic.Forms;
using Atomic.Io;
using Atomic.Models.Release_Data;
using Arisen_GSC_Injector.Constants;
using Arisen_GSC_Injector.Forms;
using Arisen_GSC_Injector.Io;
using Arisen_GSC_Injector.Models.Release_Data;
using DevExpress.XtraEditors;
using Newtonsoft.Json;

namespace Atomic.Extensions
namespace Arisen_GSC_Injector.Extensions
{
public abstract class UpdateExtensions
{
Expand Down Expand Up @@ -69,7 +69,7 @@ public static void CheckApplicationVersion()
}
else
{
MainWindow.Window.SetStatus($"You're currently using the latest version of Atomic ({GitHubData.Name})");
MainWindow.Window.SetStatus($"You're currently using the latest version of Arisen GSC Injector ({GitHubData.Name})");
}
}
catch (Exception ex)
Expand All @@ -89,7 +89,7 @@ private static void DownloadAndRunInstaller()
var installerFile = $@"{KnownFolders.GetPath(KnownFolder.Downloads)}\{GitHubData.Assets[0].Name}";

MainWindow.Window.SetStatus("A new update is available. Downloading the installer...");
XtraMessageBox.Show(MainWindow.Window, $@"A new version of Atomic ({GitHubData.Name}) is now available. Click OK to download and run the installer.", @"Update Available", MessageBoxButtons.OK, MessageBoxIcon.Information);
XtraMessageBox.Show(MainWindow.Window, $@"A new version of Arisen GSC Injector ({GitHubData.Name}) is now available. Click OK to download and run the installer.", @"Update Available", MessageBoxButtons.OK, MessageBoxIcon.Information);
WebClient.DownloadFile(GitHubData.Assets[0].BrowserDownloadUrl, installerFile);
Process.Start(installerFile);
Application.Exit();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.ComponentModel;

namespace Atomic.Extensions
namespace Arisen_GSC_Injector.Extensions
{
public static class WorkerExtensions
{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using Atomic.Database;
using Arisen_GSC_Injector.Database;
using DevExpress.XtraEditors;
using JRPC_Client;
using System;
using System.IO;
using System.Windows.Forms;

namespace Atomic.Forms
namespace Arisen_GSC_Injector.Forms
{
public partial class FileInjector : XtraForm
{
Expand Down
File renamed without changes.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Atomic.Constants;
using Atomic.Database;
using Atomic.Extensions;
using Atomic.Io;
using Arisen_GSC_Injector.Constants;
using Arisen_GSC_Injector.Database;
using Arisen_GSC_Injector.Extensions;
using Arisen_GSC_Injector.Io;
using DevExpress.XtraBars;
using DevExpress.XtraEditors;
using DevExpress.XtraGrid.Views.Base;
Expand All @@ -14,14 +14,13 @@
using System.Data;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using XDevkit;

namespace Atomic.Forms
namespace Arisen_GSC_Injector.Forms
{
public partial class MainWindow : DevExpress.XtraEditors.XtraForm
public partial class MainWindow : XtraForm
{
public MainWindow()
{
Expand All @@ -42,7 +41,7 @@ public MainWindow()

private async void MainWindow_Load(object sender, EventArgs e)
{
Text = $"Atomic - {UpdateExtensions.CurrentVersionName}";
Text = $"Arisen GSC Injector - {UpdateExtensions.CurrentVersionName}";

LoadSettingsData();

Expand Down Expand Up @@ -121,7 +120,7 @@ private void InitializeFinished()

LabelStats.Caption = $"{Database.Mods.TotalModsMP} Mods for Multiplayer, {Database.Mods.TotalModsZM} Mods for Zombies (Last Updated: {Database.Mods.LastUpdated.ToLocalTime().ToShortDateString()})";

SetStatus($"Initialized Atomic ({UpdateExtensions.CurrentVersionName}) - Ready to connect and attach to console...");
SetStatus($"Initialized Arisen GSC Injector ({UpdateExtensions.CurrentVersionName}) - Ready to connect and attach to console...");
}

/// <summary>
Expand Down Expand Up @@ -206,7 +205,7 @@ private void MenuItemCheckForUpdate_ItemClick(object sender, ItemClickEventArgs

private void MenuItemAbout_ItemClick(object sender, ItemClickEventArgs e)
{
XtraMessageBox.Show(this, "Atomic was developed by @ohhsodead and few friends, with the only intention of providing an efficient tool for browsing, downloading and injecting GSC mods.\n\nAll credits are given to those appropriate creators/authors of the mods used in this project.\n\nIf you have any questions please send a message at my Discord: ohhsodead#2519 with your much welcomed comments, suggestions and feedback to help support this project.", "About", MessageBoxButtons.OK, MessageBoxIcon.Information);
XtraMessageBox.Show(this, "Arisen GSC Injector was developed by @ohhsodead and few friends, with the only intention of providing an efficient tool for browsing, downloading and injecting GSC mods.\n\nAll credits are given to those appropriate creators/authors of the mods used in this project.\n\nIf you have any questions please send a message at my Discord: ohhsodead#2519 with your much welcomed comments, suggestions and feedback to help support this project.", "About", MessageBoxButtons.OK, MessageBoxIcon.Information);
}

private void MenuItemClearGscMods_ItemClick(object sender, ItemClickEventArgs e)
Expand Down Expand Up @@ -240,7 +239,7 @@ private void ConnectPS3()

if (!IsInGame())
{
NotifyMessagePS3("^2Hooked to Atomic", "Successfully connected and attached!", "party_ready");
NotifyMessagePS3("^2Hooked to Arisen GSC Injector", "Successfully connected and attached!", "party_ready");
}

XtraMessageBox.Show(this, "Connected and attached to Black Ops II", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.IO;
using System.IO.Compression;

namespace Atomic.Io
namespace Arisen_GSC_Injector.Io
{
public class Archives
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Runtime.InteropServices;

namespace Atomic.Io
namespace Arisen_GSC_Injector.Io
{
public static class KnownFolders
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
using System;
using System.IO;

namespace Atomic.Io
namespace Arisen_GSC_Injector.Io
{
public class UserFolders
{
/// <summary>
/// Get the user's Documents folder.
/// </summary>
internal static string AppData { get; } = $@"{KnownFolders.GetPath(KnownFolder.Documents)}\Atomic\";
internal static string AppData { get; } = $@"{KnownFolders.GetPath(KnownFolder.Documents)}\Arisen GSC Injector\";

/// <summary>
/// Get the directory to download modded files at.
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace Atomic.Database
namespace Arisen_GSC_Injector.Database
{
public partial class GscData
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
using Atomic.Extensions;
using Atomic.Forms;
using Atomic.Io;
using Arisen_GSC_Injector.Extensions;
using Arisen_GSC_Injector.Forms;
using Arisen_GSC_Injector.Io;
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Net;

namespace Atomic.Database
namespace Arisen_GSC_Injector.Database
{
public partial class ModsData
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using Newtonsoft.Json;

namespace Atomic.Models.Release_Data
namespace Arisen_GSC_Injector.Models.Release_Data
{
public class GitHubData
{
Expand Down
Loading

0 comments on commit 408e529

Please sign in to comment.