Compare commits

..

12 Commits

Author SHA1 Message Date
defnotken
f4665a0909 Brio fix
All checks were successful
Tag and Release Lightless / tag-and-release (push) Successful in 2m20s
2025-12-20 00:41:10 -06:00
defnotken
cb4bcec5e9 Merge branch '2.0.0' into dev 2025-12-20 00:40:31 -06:00
Minmoose
e5fa477eee Fix Brio IPC 2025-12-19 19:06:34 -06:00
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 3 additions and 55 deletions

View File

@@ -13,7 +13,7 @@ namespace LightlessSync.Interop.Ipc;
public sealed class IpcCallerBrio : IpcServiceBase
{
private static readonly IpcServiceDescriptor BrioDescriptor = new("Brio", "Brio", new Version(3, 0, 0, 0));
private static readonly IpcServiceDescriptor BrioDescriptor = new("Brio", "Brio", new Version(0, 0, 0, 0));
private readonly ILogger<IpcCallerBrio> _logger;
private readonly DalamudUtilService _dalamudUtilService;
@@ -144,7 +144,7 @@ public sealed class IpcCallerBrio : IpcServiceBase
try
{
var version = _apiVersion.Invoke();
return version.Item1 == 3 && version.Item2 >= 0
return version.Breaking == 3 && version.Feature >= 0
? IpcConnectionState.Available
: IpcConnectionState.VersionMismatch;
}

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.71</Version>
<Description></Description>
<Copyright></Copyright>
<PackageProjectUrl>https://github.com/Light-Public-Syncshells/LightlessClient</PackageProjectUrl>