Skip to content

Commit 8967d62

Browse files
loktowclaude
andcommitted
Rename project from D2RLoader to HoradricEye
- Rename directory D2RLoader/ → HoradricEye/ - Rename D2RLoader.sln → HoradricEye.sln - Rename D2RLoader.csproj → HoradricEye.csproj - Replace all D2RLoader namespace, class, and path references with HoradricEye across all .cs, .xaml, .csproj, .sln, and .iss files - Data directory %APPDATA%\D2RLoader → %APPDATA%\HoradricEye - Update installer/setup.iss AppURL and project paths - Update README build instructions Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent fafe1cf commit 8967d62

75 files changed

Lines changed: 906 additions & 75 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

D2RLoader.sln renamed to HoradricEye.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
1+
22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.0.31903.59
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "D2RLoader", "D2RLoader\D2RLoader.csproj", "{A1B2C3D4-E5F6-7890-ABCD-EF1234567890}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HoradricEye", "HoradricEye\HoradricEye.csproj", "{A1B2C3D4-E5F6-7890-ABCD-EF1234567890}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Application x:Class="D2RLoader.App"
1+
<Application x:Class="HoradricEye.App"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
ShutdownMode="OnMainWindowClose">
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
using D2RLoader.Services;
1+
using HoradricEye.Services;
22
using Microsoft.AspNetCore.Builder;
33
using Microsoft.AspNetCore.Hosting;
44
using Microsoft.Extensions.DependencyInjection;
55
using System.IO;
66
using System.Windows;
77

8-
namespace D2RLoader;
8+
namespace HoradricEye;
99

1010
public partial class App : Application
1111
{

D2RLoader/Controllers/AccountsController.cs renamed to HoradricEye/Controllers/AccountsController.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using D2RLoader.Models;
2-
using D2RLoader.Services;
1+
using HoradricEye.Models;
2+
using HoradricEye.Services;
33
using Microsoft.AspNetCore.Mvc;
44

5-
namespace D2RLoader.Controllers;
5+
namespace HoradricEye.Controllers;
66

77
[ApiController]
88
[Route("api/accounts")]

D2RLoader/Controllers/AppConfigController.cs renamed to HoradricEye/Controllers/AppConfigController.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using D2RLoader.Models;
2-
using D2RLoader.Services;
1+
using HoradricEye.Models;
2+
using HoradricEye.Services;
33
using Microsoft.AspNetCore.Mvc;
44

5-
namespace D2RLoader.Controllers;
5+
namespace HoradricEye.Controllers;
66

77
[ApiController]
88
[Route("api/config")]

D2RLoader/Controllers/BattleNetAuthController.cs renamed to HoradricEye/Controllers/BattleNetAuthController.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
using D2RLoader.Services;
1+
using HoradricEye.Services;
22
using Microsoft.AspNetCore.Mvc;
33

4-
namespace D2RLoader.Controllers;
4+
namespace HoradricEye.Controllers;
55

66
[ApiController]
77
[Route("api/accounts/{id:int}/bnet-auth")]

D2RLoader/Controllers/LaunchController.cs renamed to HoradricEye/Controllers/LaunchController.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
using D2RLoader.Services;
1+
using HoradricEye.Services;
22
using Microsoft.AspNetCore.Mvc;
33

4-
namespace D2RLoader.Controllers;
4+
namespace HoradricEye.Controllers;
55

66
[ApiController]
77
[Route("api/launch")]

D2RLoader/Controllers/LayoutsController.cs renamed to HoradricEye/Controllers/LayoutsController.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using D2RLoader.Models;
2-
using D2RLoader.Services;
1+
using HoradricEye.Models;
2+
using HoradricEye.Services;
33
using Microsoft.AspNetCore.Mvc;
44

5-
namespace D2RLoader.Controllers;
5+
namespace HoradricEye.Controllers;
66

77
[ApiController]
88
[Route("api/layouts")]

D2RLoader/Controllers/MonitorsController.cs renamed to HoradricEye/Controllers/MonitorsController.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
using D2RLoader.Services;
1+
using HoradricEye.Services;
22
using Microsoft.AspNetCore.Mvc;
33

4-
namespace D2RLoader.Controllers;
4+
namespace HoradricEye.Controllers;
55

66
[ApiController]
77
[Route("api/monitors")]

D2RLoader/Controllers/StatsController.cs renamed to HoradricEye/Controllers/StatsController.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
using D2RLoader.Services;
1+
using HoradricEye.Services;
22
using Microsoft.AspNetCore.Mvc;
33

4-
namespace D2RLoader.Controllers;
4+
namespace HoradricEye.Controllers;
55

66
[ApiController]
77
[Route("api/stats")]

0 commit comments

Comments
 (0)