Skip to content

Commit

Permalink
disabled configuration, adjusted defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
Eisenhuth committed Feb 28, 2023
1 parent 3b0f81a commit d6f3563
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
10 changes: 5 additions & 5 deletions nael/nael/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ public class Configuration : IPluginConfiguration
public int Version { get; set; }
public bool Enabled { get; set; } = true;

public static string Dynamo { get; set; } = "Dynamo";
public static string Chariot { get; set; } = "Chariot";
public static string Beam { get; set; } = "Beam";
public static string Dive { get; set; } = "Dive";
public static string MeteorStream { get; set; } = "Meteor Stream";
public static string Dynamo { get; set; } = "IN";
public static string Chariot { get; set; } = "OUT";
public static string Beam { get; set; } = "STACK";
public static string Dive { get; set; } = "DIVE";
public static string MeteorStream { get; set; } = "SPREAD";
public static string Separator { get; set; } = ">";


Expand Down
8 changes: 6 additions & 2 deletions nael/nael/NaelPlugin.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Dalamud.Game.Text;
using System.Numerics;
using Dalamud.Game.Text;

namespace nael
{
Expand Down Expand Up @@ -137,13 +138,16 @@ private void DrawConfiguration()

ImGui.Begin($"{Name} Configuration", ref drawConfiguration);

ImGui.TextColored(new Vector4(1, 0, 0, 1), "customization currently disabled");
ImGui.BeginDisabled();
ImGui.InputText("Dynamo", ref configDynamo, 32);
ImGui.InputText("Chariot", ref configChariot, 32);
ImGui.InputText("Beam", ref configBeam, 32);
ImGui.InputText("Dive", ref configDive, 32);
ImGui.InputText("Meteor Stream", ref configMeteorStream, 32);
ImGui.InputText("Separator", ref configSeparator, 8);

ImGui.EndDisabled();

ImGui.Separator();

ImGui.Text($"Nael deus Darnus: {configBeam} {configSeparator} {configChariot}");
Expand Down
2 changes: 1 addition & 1 deletion nael/nael/nael.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>$(AppData)\Eisenhuth\DalamudDevPlugins\NaelPlugin\</OutputPath>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<PackageProjectUrl>https://github.com/Eisenhuth/dalamud-nael</PackageProjectUrl>
Expand Down

0 comments on commit d6f3563

Please sign in to comment.