Skip to content

Commit 5ad42ab

Browse files
committed
UWP v5.5.0.0 & Android v1.4.1.0
Anime details, last updated sorting
1 parent a7d2dfe commit 5ad42ab

File tree

70 files changed

+216
-200
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+216
-200
lines changed

MALClient.Android.Adapters/ChangelogProvider.cs

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,13 @@ static ChangelogProvider()
3131

3232
public bool NewChangelog { get; set; }
3333

34-
public string DateWithVersion => $"{_currentVersion} - 16.06.2018";
34+
public string DateWithVersion => $"{_currentVersion} - 25.06.2018";
3535

3636
public List<string> Changelog => new List<string>
3737
{
38-
"Okay, so I have merged stuff that I had prepared for next update from before MAL going down.",
39-
"Added 3 new colour themes as requested on GitHub.",
40-
"Fixed being unable to donate twice (hopefully), thanks for GitHub report!",
41-
"We have brand new icon! Big thanks to @richardbmx!",
42-
"Fixed adding anime with new workaround.",
43-
"Manga should work again.",
38+
"Anime and manga details are back to their more detailed state. (Dates, Synopsis)",
39+
"Possible fixes for missing Anime/Manga lists",
40+
"Restored sorting by last updated.",
4441
"",
4542
"PLEASE NOTE that it's still one big pile of workarounds because MAL is still missing APIs. I'm doing my best to make it work but it's hard when the website itself is unstable sometimes.",
4643
"Start and End dates are something I'd like to do next but from early research it's going to be a wild ride...",

MALClient.Android/Properties/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.drutol.malclient" android:installLocation="auto" android:versionName="1.4.0.0" android:versionCode="66">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.drutol.malclient" android:installLocation="auto" android:versionName="1.4.1.0" android:versionCode="67">
33
<uses-permission android:name="com.android.vending.BILLING" />
44
<uses-permission android:name="android.permission.INTERNET" />
55
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Binary file not shown.

MALClient.Desktop/MALClient.UWP.Desktop.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,6 @@
320320
<Content Include="Properties\Default.rd.xml">
321321
<SubType>Designer</SubType>
322322
</Content>
323-
<Content Include="Assets\LockScreenLogo.scale-200.png" />
324323
<Content Include="Assets\SplashScreen.scale-200.png" />
325324
<Content Include="Assets\Square150x150Logo.scale-200.png" />
326325
<Content Include="Assets\Square44x44Logo.scale-200.png" />

MALClient.Desktop/MainPage.xaml

Lines changed: 21 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,26 @@
150150
</Button>
151151
</Grid>
152152
</Grid>
153-
154-
<Grid VerticalAlignment="Stretch" Grid.Row="1">
153+
<Grid x:Name="HamburgerTopGrid" Width="Auto" Grid.Row="0" Grid.Column="0" HorizontalAlignment="Left">
154+
<Grid.Background>
155+
<AcrylicBrush
156+
BackgroundSource="HostBackdrop"
157+
TintColor="{StaticResource BrushDeepBackgroundColor}"
158+
TintOpacity="0.5"
159+
FallbackColor="{StaticResource ColorHamburgerBackground}"/>
160+
</Grid.Background>
161+
<Grid.ColumnDefinitions>
162+
<ColumnDefinition Width="Auto" />
163+
</Grid.ColumnDefinitions>
164+
<Button IsTabStop="False" HorizontalAlignment="Left"
165+
BorderThickness="1"
166+
Width="48" VerticalAlignment="Stretch" Background="Transparent"
167+
Command="{Binding ReversePaneCommand}"
168+
Style="{StaticResource ButtonRevealStyle}">
169+
<TextBlock FontFamily="Segoe MDL2 Assets" FontSize="16" Text="&#xE700;"/>
170+
</Button>
171+
</Grid>
172+
<Grid VerticalAlignment="Stretch" Grid.Row="1">
155173
<Grid.Resources>
156174
<ResourceDictionary>
157175
<ResourceDictionary.MergedDictionaries>
@@ -163,30 +181,7 @@
163181
<ColumnDefinition Width="Auto" />
164182
<ColumnDefinition Width="*" />
165183
</Grid.ColumnDefinitions>
166-
<Grid.RowDefinitions>
167-
<RowDefinition Height="48"/>
168-
<RowDefinition Height="*"/>
169-
</Grid.RowDefinitions>
170-
<Grid x:Name="HamburgerTopGrid" Width="Auto" Grid.Column="0">
171-
<Grid.Background>
172-
<AcrylicBrush
173-
BackgroundSource="HostBackdrop"
174-
TintColor="{StaticResource BrushDeepBackgroundColor}"
175-
TintOpacity="0.5"
176-
FallbackColor="{StaticResource ColorHamburgerBackground}"/>
177-
</Grid.Background>
178-
<Grid.ColumnDefinitions>
179-
<ColumnDefinition Width="Auto" />
180-
</Grid.ColumnDefinitions>
181-
<Button IsTabStop="False" HorizontalAlignment="Left"
182-
BorderThickness="1"
183-
Width="48" VerticalAlignment="Stretch" Background="Transparent"
184-
Command="{Binding ReversePaneCommand}"
185-
Style="{StaticResource ButtonRevealStyle}">
186-
<TextBlock FontFamily="Segoe MDL2 Assets" FontSize="16" Text="&#xE700;"/>
187-
</Button>
188-
</Grid>
189-
<new:HamburgerControl x:Name="HamburgerControl" Grid.Column="0" Grid.Row="1" />
184+
<new:HamburgerControl x:Name="HamburgerControl" Grid.Column="0" Grid.Row="1" />
190185
<Grid x:Name="RootContentGrid" Grid.Column="1" Background="{ThemeResource BrushDeepBackground}" Grid.Row="0" Grid.RowSpan="2">
191186
<Grid.ColumnDefinitions>
192187
<ColumnDefinition Width="*" />

MALClient.Desktop/Package.appxmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
3-
<Identity Name="6252Drutol.MALClient" Publisher="CN=15F8BDF5-C01B-487E-8F46-C655AF2C3DD2" Version="5.4.4.0" />
3+
<Identity Name="6252Drutol.MALClient" Publisher="CN=15F8BDF5-C01B-487E-8F46-C655AF2C3DD2" Version="5.5.0.0" />
44
<mp:PhoneIdentity PhoneProductId="342214a1-b5e4-40ae-9721-b578557ea67b" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
55
<Properties>
66
<DisplayName>MALClient</DisplayName>
@@ -17,7 +17,7 @@
1717
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="MALClient.App">
1818
<uap:VisualElements DisplayName="MALClient" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="MALClient" BackgroundColor="transparent">
1919
<uap:LockScreen Notification="badge" BadgeLogo="Assets\BadgeLogo.png" />
20-
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square310x310Logo="Assets\LargeTile.png" Square71x71Logo="Assets\SmallTile.png">
20+
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square310x310Logo="Assets\LargeTile.png" Square71x71Logo="Assets\SmallTile.png" ShortName="MALClient">
2121
</uap:DefaultTile>
2222
<uap:SplashScreen Image="Assets\SplashScreen.png" BackgroundColor="black" />
2323
</uap:VisualElements>

MALClient.Mobile/App.xaml.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,6 @@ protected async void OnLaunchedOrActivated(IActivatedEventArgs e)
190190
RateReminderPopUp.ProcessRatePopUp();
191191
ProcessStatusBar();
192192
ProcessUpdate();
193-
StoreLogoWorkaroundHacker.Hack();
194193
_initialized = true;
195194
}
196195

230 Bytes
267 Bytes
306 Bytes
0 Bytes
0 Bytes
218 Bytes
13.6 KB
17.5 KB
22.1 KB
30.3 KB
65.5 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
3.22 KB
3.91 KB
5.49 KB
12.3 KB
0 Bytes
0 Bytes
0 Bytes
0 Bytes
0 Bytes
-10.4 KB
Binary file not shown.

MALClient.Mobile/Assets/annak.png

131 KB
Binary file not shown.

MALClient.Mobile/MALClient.UWP.Mobile.csproj

Lines changed: 29 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -241,35 +241,59 @@
241241
</AppxManifest>
242242
</ItemGroup>
243243
<ItemGroup>
244+
<Content Include="Assets\BadgeLogo.scale-100.png" />
245+
<Content Include="Assets\BadgeLogo.scale-125.png" />
246+
<Content Include="Assets\BadgeLogo.scale-150.png" />
244247
<Content Include="Assets\BadgeLogo.scale-200.png" />
245248
<Content Include="Assets\BadgeLogo.scale-400.png" />
246249
<Content Include="Assets\GitHub-Mark-120px-plus.png" />
247250
<Content Include="Assets\GitHub-Mark-Light-120px-plus.png" />
248-
<Content Include="Assets\hummingbird150x150.scale-200.png" />
251+
<Content Include="Assets\LargeTile.scale-100.png" />
252+
<Content Include="Assets\LargeTile.scale-125.png" />
253+
<Content Include="Assets\LargeTile.scale-150.png" />
254+
<Content Include="Assets\LargeTile.scale-200.png" />
255+
<Content Include="Assets\LargeTile.scale-400.png" />
249256
<Content Include="Assets\LogInBG.PNG" />
250-
<Content Include="Assets\MalClientTransparentLogo150x150.png" />
251-
<Content Include="Assets\MalClientTransparentLogo300x300.png" />
252257
<Content Include="Assets\mallonglogo300x150.png" />
258+
<Content Include="Assets\SmallTile.scale-100.png" />
259+
<Content Include="Assets\SmallTile.scale-125.png" />
260+
<Content Include="Assets\SmallTile.scale-150.png" />
261+
<Content Include="Assets\SmallTile.scale-200.png" />
262+
<Content Include="Assets\SmallTile.scale-400.png" />
263+
<Content Include="Assets\SplashScreen.scale-100.png" />
264+
<Content Include="Assets\SplashScreen.scale-125.png" />
265+
<Content Include="Assets\SplashScreen.scale-150.png" />
253266
<Content Include="Assets\SplashScreen.scale-400.png" />
254267
<Content Include="Assets\Square150x150Logo.scale-100.png" />
268+
<Content Include="Assets\Square150x150Logo.scale-125.png" />
269+
<Content Include="Assets\Square150x150Logo.scale-150.png" />
255270
<Content Include="Assets\Square150x150Logo.scale-400.png" />
271+
<Content Include="Assets\Square44x44Logo.altform-unplated_targetsize-16.png" />
272+
<Content Include="Assets\Square44x44Logo.altform-unplated_targetsize-32.png" />
256273
<Content Include="Assets\Square44x44Logo.scale-100.png" />
274+
<Content Include="Assets\Square44x44Logo.scale-125.png" />
275+
<Content Include="Assets\Square44x44Logo.scale-150.png" />
257276
<Content Include="Assets\Square44x44Logo.scale-400.png" />
277+
<Content Include="Assets\Square44x44Logo.targetsize-16.png" />
278+
<Content Include="Assets\Square44x44Logo.targetsize-24.png" />
279+
<Content Include="Assets\Square44x44Logo.targetsize-256.png" />
258280
<Content Include="Assets\Square44x44Logo.targetsize-256_altform-unplated.png" />
281+
<Content Include="Assets\Square44x44Logo.targetsize-32.png" />
282+
<Content Include="Assets\Square44x44Logo.targetsize-48.png" />
259283
<Content Include="Assets\Square44x44Logo.targetsize-48_altform-unplated.png" />
260-
<Content Include="Assets\StoreLogoAsset.png" />
261284
<Content Include="Assets\StoreLogo.scale-100.png" />
262285
<Content Include="Assets\StoreLogo.scale-125.png" />
263286
<Content Include="Assets\StoreLogo.scale-150.png" />
264287
<Content Include="Assets\StoreLogo.scale-200.png" />
265288
<Content Include="Assets\StoreLogo.scale-400.png" />
266289
<Content Include="Assets\Wide310x150Logo.scale-100.png" />
290+
<Content Include="Assets\Wide310x150Logo.scale-125.png" />
291+
<Content Include="Assets\Wide310x150Logo.scale-150.png" />
267292
<Content Include="Assets\Wide310x150Logo.scale-400.png" />
268293
<None Include="MALClient.UWP.Mobile_StoreKey.pfx" />
269294
<None Include="Package.StoreAssociation.xml" />
270295
<None Include="Package.xml" />
271296
<Content Include="Properties\Default.rd.xml" />
272-
<Content Include="Assets\LockScreenLogo.scale-200.png" />
273297
<Content Include="Assets\SplashScreen.scale-200.png" />
274298
<Content Include="Assets\Square150x150Logo.scale-200.png" />
275299
<Content Include="Assets\Square44x44Logo.scale-200.png" />

MALClient.Mobile/Package.appxmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
3-
<Identity Name="6252Drutol.MALClient" Publisher="CN=15F8BDF5-C01B-487E-8F46-C655AF2C3DD2" Version="5.4.3.0" />
3+
<Identity Name="6252Drutol.MALClient" Publisher="CN=15F8BDF5-C01B-487E-8F46-C655AF2C3DD2" Version="5.5.1.0" />
44
<mp:PhoneIdentity PhoneProductId="1dcd95e9-6d62-4349-9942-7fad35a25157" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
55
<Properties>
66
<DisplayName>MALClient</DisplayName>
@@ -17,7 +17,7 @@
1717
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="MALClient.App">
1818
<uap:VisualElements DisplayName="MALClient" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="MALClient" BackgroundColor="transparent">
1919
<uap:LockScreen Notification="badgeAndTileText" BadgeLogo="Assets\BadgeLogo.png" />
20-
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png">
20+
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" ShortName="MALClient" Square310x310Logo="Assets\LargeTile.png" Square71x71Logo="Assets\SmallTile.png">
2121
</uap:DefaultTile>
2222
<uap:SplashScreen Image="Assets\SplashScreen.png" />
2323
</uap:VisualElements>

MALClient.UWP.Adapters/ChangeLogProvider.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ public class ChangeLogProvider : IChangeLogProvider
1313
public bool NewChangelog { get; set; }
1414
public string CurrentVersion => UWPUtilities.GetAppVersion();
1515

16-
public string DateWithVersion => $"v{UWPUtilities.GetAppVersion()} - 05.05.2018";
16+
public string DateWithVersion => $"v{UWPUtilities.GetAppVersion()} - 25.06.2018";
1717

1818
public List<string> Changelog => new List<string>
1919
{
20-
"Fixed related anime.",
21-
"Fixed sign-in issues."
20+
"Restoring fuctionality after MAL's shananigans. Not everything works yet.",
21+
"In the meantime we got new icon!"
2222
};
2323
}
2424
}

0 commit comments

Comments
 (0)