Compare commits

..

9 Commits

Author SHA1 Message Date
2a5c3d5db0 Fix Combat End and split combat + performance. (#30)
Co-authored-by: defnotken <itsdefnotken@gmail.com>
Reviewed-on: #30
Reviewed-by: cake <cake@noreply.git.lightless-sync.org>
2025-09-16 02:42:20 +02:00
CakeAndBanana
b2bd1a5fb7 Added filter option to hide syncshells in main ui/all syncshells 2025-09-15 16:11:12 +02:00
CakeAndBanana
af7ac0fdd9 Removal of MCDF mention in settings, it was desperated. 2025-09-15 06:13:32 +02:00
CakeAndBanana
ed776739bf Added button combo to press while transfering, close screen after. 2025-09-15 06:08:52 +02:00
CakeAndBanana
7b999bfbbc Redone caching in parralel threading, added retries on timeouts on download sessions. 2025-09-15 05:41:56 +02:00
CakeAndBanana
3c717bf5ef Own-threshold warning now is clickable to open characteranalysis screen. 2025-09-15 05:41:23 +02:00
CakeAndBanana
d1cbedcc37 Added transfer owner button in user list in Admin panel. 2025-09-15 05:40:41 +02:00
defnotken
31a6344f4e adding seenCleaned 2025-09-13 22:54:11 -05:00
defnotken
bf91dacb6f start 1.11.10 2025-09-13 22:51:56 -05:00
3 changed files with 8 additions and 8 deletions

View File

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

View File

@@ -549,7 +549,7 @@ public class CompactUi : WindowMediatorSubscriberBase
bool FilterNotTaggedUsers(KeyValuePair<Pair, List<GroupFullInfoDto>> u)
=> u.Key.IsDirectlyPaired && !u.Key.IsOneSidedPair && !_tagHandler.HasAnyPairTag(u.Key.UserData.UID);
bool FilterNotTaggedSyncshells(GroupFullInfoDto group)
=> (!_tagHandler.HasAnySyncshellTag(group.GID) && !_configService.Current.ShowGroupedSyncshellsInAll) || true;
=> (!_tagHandler.HasAnySyncshellTag(group.GID) && !_configService.Current.ShowGroupedSyncshellsInAll) || _configService.Current.ShowGroupedSyncshellsInAll;
bool FilterOfflineUsers(KeyValuePair<Pair, List<GroupFullInfoDto>> u)
=> ((u.Key.IsDirectlyPaired && _configService.Current.ShowSyncshellOfflineUsersSeparately)
|| !_configService.Current.ShowSyncshellOfflineUsersSeparately)

View File

@@ -1145,12 +1145,12 @@ public class SettingsUi : WindowMediatorSubscriberBase
}
_uiShared.DrawHelpText("This will group up all Syncshells in a special 'All Syncshells' folder in the main UI.");
//if (ImGui.Checkbox("Show grouped syncshells in main screen/all syncshells", ref groupedSyncshells))
//{
// _configService.Current.ShowGroupedSyncshellsInAll = groupedSyncshells;
// _configService.Save();
// Mediator.Publish(new RefreshUiMessage());
//}
if (ImGui.Checkbox("Show grouped syncshells in main screen/all syncshells", ref groupedSyncshells))
{
_configService.Current.ShowGroupedSyncshellsInAll = groupedSyncshells;
_configService.Save();
Mediator.Publish(new RefreshUiMessage());
}
_uiShared.DrawHelpText("This will show grouped syncshells in main screen or group 'All Syncshells'.");
if (ImGui.Checkbox("Show player name for visible players", ref showNameInsteadOfNotes))