Final edits
This commit is contained in:
parent
c96875ba5d
commit
21d18aa565
@ -94,7 +94,7 @@ do
|
|||||||
rm $BUNDLE_MACOS/$n
|
rm $BUNDLE_MACOS/$n
|
||||||
done
|
done
|
||||||
|
|
||||||
APP_FILE=Libation.${VERSION}-chardonnay-macOS-${ARCH}.tgz
|
APP_FILE=Libation.${VERSION}-macOS-chardonnay-${ARCH}.tgz
|
||||||
|
|
||||||
echo "Creating app bundle: $APP_FILE"
|
echo "Creating app bundle: $APP_FILE"
|
||||||
tar -czvf $APP_FILE $BUNDLE
|
tar -czvf $APP_FILE $BUNDLE
|
||||||
|
|||||||
@ -59,7 +59,7 @@ namespace AaxDecrypter
|
|||||||
{
|
{
|
||||||
BytesReceived = 0,
|
BytesReceived = 0,
|
||||||
ProgressPercentage = 0,
|
ProgressPercentage = 0,
|
||||||
TotalBytesToReceive = InputFileStream.Length
|
TotalBytesToReceive = 0
|
||||||
};
|
};
|
||||||
|
|
||||||
OnDecryptProgressUpdate(zeroProgress);
|
OnDecryptProgressUpdate(zeroProgress);
|
||||||
|
|||||||
@ -10,8 +10,6 @@ using ApplicationServices;
|
|||||||
using AudibleUtilities;
|
using AudibleUtilities;
|
||||||
using LibationAvalonia.Dialogs.Login;
|
using LibationAvalonia.Dialogs.Login;
|
||||||
using Avalonia.Collections;
|
using Avalonia.Collections;
|
||||||
using LibationSearchEngine;
|
|
||||||
using Octokit.Internal;
|
|
||||||
|
|
||||||
namespace LibationAvalonia.ViewModels
|
namespace LibationAvalonia.ViewModels
|
||||||
{
|
{
|
||||||
@ -62,6 +60,7 @@ namespace LibationAvalonia.ViewModels
|
|||||||
{
|
{
|
||||||
var existingSeriesEntries = SOURCE.SeriesEntries().ToList();
|
var existingSeriesEntries = SOURCE.SeriesEntries().ToList();
|
||||||
|
|
||||||
|
FilteredInGridEntries?.Clear();
|
||||||
SOURCE.Clear();
|
SOURCE.Clear();
|
||||||
SOURCE.AddRange(CreateGridEntries(dbBooks));
|
SOURCE.AddRange(CreateGridEntries(dbBooks));
|
||||||
|
|
||||||
@ -164,7 +163,7 @@ namespace LibationAvalonia.ViewModels
|
|||||||
return FilteredInGridEntries.Contains(item);
|
return FilteredInGridEntries.Contains(item);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static List<GridEntry> QueryResults(List<GridEntry> entries, string searchString)
|
private static List<GridEntry> QueryResults(IEnumerable<GridEntry> entries, string searchString)
|
||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(searchString)) return null;
|
if (string.IsNullOrEmpty(searchString)) return null;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user