Skip to content

Commit 9ecfd69

Browse files
committed
minor changes
1 parent 84ece25 commit 9ecfd69

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

AppShell.xaml.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -629,20 +629,19 @@ private async void DumpBoxClicked(object sender, EventArgs e)
629629
BoxExport.Export(sav,result.Folder.Path, BoxExportSettings.Default with { Scope = BoxExportScope.Current });
630630
return;
631631
}
632-
633632
}
634633

635634
private async void SaveBoxDataClicked(object sender, EventArgs e)
636635
{
637636
if (await DisplayAlert("Dump", "Dump ALL Boxes?", "yes", "no"))
638637
{
639-
using MemoryStream boxstream = new(sav.GetPCBinary());
638+
await using MemoryStream boxstream = new(sav.GetPCBinary());
640639
await FileSaver.SaveAsync("pcdata.bin", boxstream);
641640
return;
642641
}
643642
if (await DisplayAlert("Dump", "Dump Current Box?", "yes", "cancel"))
644643
{
645-
using MemoryStream Cboxstream = new(sav.GetBoxBinary(sav.CurrentBox));
644+
await using MemoryStream Cboxstream = new(sav.GetBoxBinary(sav.CurrentBox));
646645
await FileSaver.SaveAsync($"boxdata {sav.CurrentBox}.bin", Cboxstream);
647646
return;
648647
}

pktabs/PKTab.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace PKHeXMAUI;
1212

1313
public partial class MainPage : ContentPage
1414
{
15-
public static string Version = "v24.12.11";
15+
public static string Version = "v24.12.19";
1616
public bool SkipTextChange = false;
1717
public static int[] NoFormSpriteSpecies = [664, 665, 744, 982, 855, 854, 869,892,1012,1013];
1818
public bool FirstLoad = true;

0 commit comments

Comments
 (0)