Compare commits

..

9 Commits

Author SHA1 Message Date
defnotken
af607e4380 fixes to plugin.
All checks were successful
Tag and Release Lightless / tag-and-release (push) Successful in 2m26s
2025-12-19 15:36:54 -06:00
defnotken
29e6555480 Merge branch '2.0.0' into dev 2025-12-19 15:31:20 -06:00
defnotken
9402731b2b Merge branch '2.0.0' into dev 2025-12-19 15:30:44 -06:00
defnotken
f43fb28257 Hello version?
All checks were successful
Tag and Release Lightless / tag-and-release (push) Successful in 2m22s
2025-12-19 10:17:35 -06:00
defnotken
465da1bdf2 pre 2.0 test
All checks were successful
Tag and Release Lightless / tag-and-release (push) Successful in 2m17s
2025-12-19 10:06:00 -06:00
defnotken
0a592c87dd Maybe?
All checks were successful
Tag and Release Lightless / tag-and-release (push) Successful in 2m20s
2025-12-19 09:57:44 -06:00
defnotken
321a9c8b55 lets try this checkout
Some checks failed
Tag and Release Lightless / tag-and-release (push) Failing after 1m7s
2025-12-19 09:54:54 -06:00
defnotken
4aa09ce05e Merge branch '2.0.0' into dev
Some checks failed
Tag and Release Lightless / tag-and-release (push) Failing after 1m4s
2025-12-19 09:43:26 -06:00
defnotken
fea633b6f6 Lets test build dev.
Some checks failed
Tag and Release Lightless / tag-and-release (push) Failing after 1m51s
2025-12-19 09:18:37 -06:00
3 changed files with 2 additions and 59 deletions

View File

@@ -69,58 +69,6 @@ namespace LightlessSync;
#pragma warning restore S125 // Sections of code should not be commented out
// thank you dark 🙏
/*
---------
-------------------------
-------------- ##++++ -------------
----------+##+++++++++++++++++++###--------
+------ ####++++++++++++++++++++++++##### -----
------- #####++++++++++++++++++++++++++++++###### +++++
------+#####++++++++++++++++++++++++++++++++++########+++++
------######++++++++++++++++++++++++++++++++++++++#########++++
------######+++++++++++++++++++++++++++++++++++++##############+++
-----#######+++++++++++++++++++++++++++++++#######################+++
---- #######++++++++++++++++++++++++++++############################ ++
-----########+++++++++++++++++++++++++++##################################
----+########+++++++++++++++++++++++++#######################################
---- ########+++++++++++++++++++++++-+#########################################
-----#########++++++++++++++++++++--+###########################################
----#########+++++++++++++++++++---+#######+++++++++#############################
----##########+++++++++++++++++----###+--------.......---+####################### #
---###########+++++++++++++++-----#+------..................-#######################
----###########++++++++++++++----------..----..................-+####################
---+###########+++++++++++++--------.-+########+-................-###################
----############++++++++++++--------+##############+................+#################
----############++++---+---------.-#################+................-################
---+####+++++-------------------..###################+...............--###############
----+#############++-------------.+####################-...............--###############
----+##############++++++++------.+####################+...............---##############
----+##############+++++++++-----.+####################+...............---+#############
---++##############++++++++-------####################.................---#############
----+################++++++++-----+##################-......-..........---+############
----++################+++++++-------################-......+...........---+############
----++##################++++++--------+##########+-......-#-..........----+###########
--- ++##################+++++--------..--+++---........+#-.........------+###########
+++++++####################++----------.............-+#+-......-.--------+##########
+++ +++######################+---------..........+###+-......-----------+##########
++++-+++##########################+++------+++######-......--------.----##########
++++----+########################################+-.......------------+#########
++++ ----+####################################--.....----------------#########
+++ -----++###############################+------------------------########
+++ ------++###########++##+++++#+++----------------------------+#######
+++ ----------++########-----------...------------------------+#######
+++ -------------------------------------------------------#######
++# ---------------------------------------------------+######
## ------------------------------------------------######
### -------------------------------------------+#####
### --------------------------------------+#####
# -------------------------------####
----------------------++###
------------#
*/
// Just a shitty fork, still with love.
public class LightlessPlugin : MediatorSubscriberBase, IHostedService
{
private readonly DalamudUtilService _dalamudUtil;

View File

@@ -3,7 +3,7 @@
<PropertyGroup>
<Authors></Authors>
<Company></Company>
<Version>2.0.0</Version>
<Version>1.42.0.70</Version>
<Description></Description>
<Copyright></Copyright>
<PackageProjectUrl>https://github.com/Light-Public-Syncshells/LightlessClient</PackageProjectUrl>

View File

@@ -48,8 +48,7 @@ public sealed class CommandManagerService : IDisposable
"\t /light gpose - Opens the Lightless Character Data Hub window" + Environment.NewLine +
"\t /light analyze - Opens the Lightless Character Data Analysis window" + Environment.NewLine +
"\t /light settings - Opens the Lightless Settings window" + Environment.NewLine +
"\t /light finder - Opens the Lightfinder window" + Environment.NewLine +
"\t /light finder - Opens the Lightless Chat window"
"\t /light finder - Opens the Lightfinder window"
});
}
@@ -134,9 +133,5 @@ public sealed class CommandManagerService : IDisposable
{
_mediator.Publish(new UiToggleMessage(typeof(LightFinderUI)));
}
else if (string.Equals(splitArgs[0], "chat", StringComparison.OrdinalIgnoreCase))
{
_mediator.Publish(new UiToggleMessage(typeof(ZoneChatUi)));
}
}
}