Skip to content
Merged
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
41500b5
[Plugin] Implement preload download and safe callbacks
Cryotechnic Mar 18, 2026
f5995e9
Bump ILLink.Tasks to 10.0.5; add .NET ref packs
Cryotechnic Mar 18, 2026
6a71b12
Add per-file progress callback support
Cryotechnic Mar 18, 2026
b62a37e
Make TryRegisterPerFileProgressCallback unsafe for improved performance
Cryotechnic Mar 19, 2026
6bdf973
Update FFmpeg installation note for clarity and conciseness
Cryotechnic Mar 19, 2026
f74ab60
Merge branch 'main' into feat/plugin-preload
Cryotechnic Mar 30, 2026
763ff55
Update localization references in plugin installation progress messages
Cryotechnic Mar 30, 2026
5ded46e
Prevent multiple allocations of per-file progress callback delegate
Cryotechnic Mar 30, 2026
0023f0c
Add per-file progress indicator status updates during preload
Cryotechnic Mar 30, 2026
7f2b766
Update download status handling to reflect success or failure
Cryotechnic Mar 30, 2026
085bd65
Handle OperationCanceledException in preload status check
Cryotechnic Mar 30, 2026
2d10717
Re-throw exception after logging preload failure in StartPackageDownload
Cryotechnic Mar 30, 2026
ddf66a8
Enhance file cleanup process and error handling in PluginGameInstallW…
Cryotechnic Mar 30, 2026
52d3ae7
Require scroll-to-bottom before accepting license agreement dialog
Cryotechnic Mar 31, 2026
a7a1b9b
[skip ci] Sync translation Translate en_US.json in de_DE
transifex-integration[bot] Apr 1, 2026
14d74bf
docs: update README.md [skip ci]
allcontributors[bot] Apr 1, 2026
0e8e498
docs: update .all-contributorsrc [skip ci]
allcontributors[bot] Apr 1, 2026
1dab2ad
docs: add perfectdelusions as a contributor for translation (#867)
bagusnl Apr 1, 2026
a30d984
Simplify BitmapIcon Create
neon-nyan Apr 3, 2026
cdec12d
Update MainPage.Navigation.cs
neon-nyan Apr 3, 2026
277a83c
Log error when unregistering per-file progress callback in PluginInfo
Cryotechnic Apr 4, 2026
9ad64fd
Add null check for progress in PluginGameInstallWrapper to prevent ex…
Cryotechnic Apr 4, 2026
df8717f
[skip ci] Sync translation Translate en_US.json in ja_JP
transifex-integration[bot] Apr 5, 2026
ff64a98
[skip ci] Sync translation Translate en_US.json in ja_JP
transifex-integration[bot] Apr 5, 2026
e02ab8b
Implement async preload download with per-file progress callbacks (#865)
neon-nyan Apr 5, 2026
ff1e82b
Simplify method to add navigation items
neon-nyan Apr 5, 2026
ba0472d
Update EncTool repo
neon-nyan Apr 5, 2026
c44c7f4
Update submodule
neon-nyan Apr 5, 2026
edbd6ae
Update NuGet
neon-nyan Apr 5, 2026
517ae11
Update ImageEx
neon-nyan Apr 5, 2026
55f4403
Fix ReturnToHomePage not refreshing after returning to its game
neon-nyan Apr 5, 2026
f87ef76
Fix deleted files re-downloaded on ZZZ and HSR update
neon-nyan Apr 5, 2026
bd26158
Refactor Hi3 CG metadata parser
neon-nyan Apr 5, 2026
5c0e414
Remove inclusion of postproc on FFmpeg
neon-nyan Apr 5, 2026
0875136
Revert "Remove inclusion of postproc on FFmpeg"
neon-nyan Apr 5, 2026
5ba9bd2
Improve Hi3 Cache Update and Game Repair file checks
neon-nyan Apr 6, 2026
00ce752
[skip ci] Sync translation Translate en_US.json in id_ID
transifex-integration[bot] Apr 6, 2026
ecc5919
[skip ci] Sync translation Translate en_US.json in zh_CN
transifex-integration[bot] Apr 6, 2026
73fc79d
Fix detection on LGPLv2.1 compliance FFmpeg builds
neon-nyan Apr 6, 2026
1b19c1a
Custom media element improvements
neon-nyan Apr 8, 2026
45d5548
Allow Genshin Repair if no dispatch token is available
neon-nyan Apr 8, 2026
6c1d75e
[skip ci] Adding German translation for Readme, by @puyomi2k
neon-nyan Apr 8, 2026
23e027f
[skip ci] Fix localized Readme links
neon-nyan Apr 8, 2026
ee13b0b
Use fade-in/fade-out transition on background image
neon-nyan Apr 8, 2026
9c67d86
Make event button position relative to background
neon-nyan Apr 10, 2026
06570a8
Update ImageBackgroundManager.cs
neon-nyan Apr 10, 2026
e3b7bee
Update NuGet
neon-nyan Apr 10, 2026
f88803e
Remove BitmapCache on pages
neon-nyan Apr 10, 2026
970969f
Fix OOBESelectGame Checkbox UI
neon-nyan Apr 11, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,15 @@
"contributions": [
"translation"
]
},
{
"login": "perfectdelusions",
"name": "eden",
"avatar_url": "https://avatars.githubusercontent.com/u/272893080?v=4",
"profile": "https://github.com/perfectdelusions",
"contributions": [
"translation"
]
}
],
"repoType": "github"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@
using CollapseLauncher.Plugins;
using Hi3Helper;
using Hi3Helper.Data;
using Hi3Helper.Shared.Region;
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Media;
using System;
using System.Collections.Generic;
using System.IO;
using System.Numerics;

// ReSharper disable StringLiteralTypo
Expand Down Expand Up @@ -67,23 +69,24 @@ private static IconElement GetGamePresetIcon(PresetConfig presetConfig)

if (presetConfig is not PluginPresetConfigWrapper pluginPresetConfig)
{
return new BitmapIcon
{
UriSource = new Uri(uri)
};
return Create(uri);
}

PluginInfo pluginInfo = pluginPresetConfig.PluginInfo;
GamePluginIconConverter converter = StaticConverter<GamePluginIconConverter>.Shared;
if (converter.Convert(pluginInfo, null!, null!, "") is not IconElement iconElement)
{
return new BitmapIcon
{
UriSource = new Uri(uri)
};
return Create(uri);
}

return iconElement;

static BitmapIcon Create(string uri)
=> new()
{
UriSource = new Uri(uri),
ShowAsMonochrome = false
};
}

private static void AttachEventToNotification(PresetConfig presetConfig, IBackgroundActivity activity, string activityTitle, string activitySubtitle)
Expand Down
Loading
Loading