version update

This commit is contained in:
Tsanie Lily 2021-07-29 10:02:05 +08:00
parent 23b1ad7512
commit 23202abd98
221 changed files with 11914 additions and 3706 deletions

0
.gitignore vendored Normal file → Executable file
View File

0
LICENSE Normal file → Executable file
View File

0
Pixiview.Android/Assets/AboutAssets.txt Normal file → Executable file
View File

0
Pixiview.Android/Assets/fa-light-300.ttf Normal file → Executable file
View File

0
Pixiview.Android/Assets/fa-regular-400.ttf Normal file → Executable file
View File

0
Pixiview.Android/Assets/fa-solid-900.ttf Normal file → Executable file
View File

0
Pixiview.Android/Effects/LongPressEffectImplement.cs Normal file → Executable file
View File

0
Pixiview.Android/GlobalSuppressions.cs Normal file → Executable file
View File

0
Pixiview.Android/MainActivity.cs Normal file → Executable file
View File

View File

@ -16,7 +16,7 @@
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
<TargetFrameworkVersion>v9.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v11.0</TargetFrameworkVersion>
<AndroidEnableSGenConcurrent>true</AndroidEnableSGenConcurrent>
<AndroidUseAapt2>true</AndroidUseAapt2>
<AndroidHttpClientHandlerType>Xamarin.Android.Net.AndroidClientHandler</AndroidHttpClientHandlerType>
@ -59,10 +59,10 @@
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="4.6.0.800" />
<PackageReference Include="Xamarin.Essentials" Version="1.5.3.2" />
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2083" />
<PackageReference Include="Xamarin.Essentials" Version="1.7.0" />
<PackageReference Include="Newtonsoft.Json">
<Version>12.0.3</Version>
<Version>13.0.1</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0.531" package="org.tsanie.pixiview" android:versionCode="22">
<uses-sdk android:minSdkVersion="25" android:targetSdkVersion="28" />
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0.927" package="org.tsanie.pixiview" android:versionCode="25">
<uses-sdk android:minSdkVersion="25" android:targetSdkVersion="30" />
<application android:label="Pixiview" android:icon="@mipmap/icon" android:roundIcon="@mipmap/icon_round"></application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</manifest>

0
Pixiview.Android/Properties/AssemblyInfo.cs Normal file → Executable file
View File

0
Pixiview.Android/Renderers/AdaptedPageRenderer.cs Normal file → Executable file
View File

0
Pixiview.Android/Renderers/AppShellRenderer.cs Normal file → Executable file
View File

0
Pixiview.Android/Renderers/BlurryPanelRenderer.cs Normal file → Executable file
View File

2
Pixiview.Android/Renderers/CardViewRenderer.cs Normal file → Executable file
View File

@ -76,7 +76,7 @@ namespace Pixiview.Droid.Renderers
float scale = density;
double width = (double)element.GetValue(VisualElement.WidthProperty) * scale;
double height = (double)element.GetValue(VisualElement.HeightProperty) * scale;
Rect rect = new Rect(0, 0, (int)width, (int)height);
var rect = new Android.Graphics.Rect(0, 0, (int)width, (int)height);
outline.SetRoundRect(rect, radius);
}
}

0
Pixiview.Android/Renderers/CircleImageRenderer.cs Normal file → Executable file
View File

0
Pixiview.Android/Renderers/HybridWebViewRenderer.cs Normal file → Executable file
View File

0
Pixiview.Android/Renderers/OptionEntryRenderer.cs Normal file → Executable file
View File

0
Pixiview.Android/Renderers/OptionPickerRenderer.cs Normal file → Executable file
View File

0
Pixiview.Android/Renderers/RoundImageRenderer.cs Normal file → Executable file
View File

0
Pixiview.Android/Renderers/RoundLabelRenderer.cs Normal file → Executable file
View File

0
Pixiview.Android/Renderers/SearchBarRenderer.cs Normal file → Executable file
View File

0
Pixiview.Android/Renderers/SegmentedControlRenderer.cs Normal file → Executable file
View File

0
Pixiview.Android/Resources/AboutResources.txt Normal file → Executable file
View File

File diff suppressed because it is too large Load Diff

View File

View File

View File

0
Pixiview.Android/Resources/drawable-night/ic_rank.xml Normal file → Executable file
View File

View File

View File

0
Pixiview.Android/Resources/drawable-night/ic_user.xml Normal file → Executable file
View File

0
Pixiview.Android/Resources/drawable/download.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

0
Pixiview.Android/Resources/drawable/ic_bookmark.xml Normal file → Executable file
View File

View File

0
Pixiview.Android/Resources/drawable/ic_option.xml Normal file → Executable file
View File

0
Pixiview.Android/Resources/drawable/ic_rank.xml Normal file → Executable file
View File

View File

0
Pixiview.Android/Resources/drawable/ic_search.xml Normal file → Executable file
View File

0
Pixiview.Android/Resources/drawable/ic_sparkles.xml Normal file → Executable file
View File

View File

0
Pixiview.Android/Resources/drawable/ic_user.xml Normal file → Executable file
View File

View File

0
Pixiview.Android/Resources/drawable/no_profile.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

0
Pixiview.Android/Resources/drawable/splash_logo.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 6.5 KiB

0
Pixiview.Android/Resources/drawable/splash_screen.xml Normal file → Executable file
View File

0
Pixiview.Android/Resources/layout/RadioButton.xml Normal file → Executable file
View File

0
Pixiview.Android/Resources/layout/RadioGroup.xml Normal file → Executable file
View File

0
Pixiview.Android/Resources/layout/Tabbar.xml Normal file → Executable file
View File

0
Pixiview.Android/Resources/layout/Toolbar.xml Normal file → Executable file
View File

0
Pixiview.Android/Resources/mipmap-anydpi-v26/icon.xml Normal file → Executable file
View File

View File

0
Pixiview.Android/Resources/mipmap-hdpi/icon.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

0
Pixiview.Android/Resources/mipmap-hdpi/icon_round.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

0
Pixiview.Android/Resources/mipmap-mdpi/icon.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

0
Pixiview.Android/Resources/mipmap-mdpi/icon_round.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

0
Pixiview.Android/Resources/mipmap-xhdpi/icon.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

0
Pixiview.Android/Resources/mipmap-xhdpi/icon_round.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

0
Pixiview.Android/Resources/mipmap-xxhdpi/icon.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

Before

Width:  |  Height:  |  Size: 8.0 KiB

After

Width:  |  Height:  |  Size: 8.0 KiB

0
Pixiview.Android/Resources/mipmap-xxxhdpi/icon.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 6.6 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

0
Pixiview.Android/Resources/values/colors.xml Normal file → Executable file
View File

0
Pixiview.Android/Resources/values/styles.xml Normal file → Executable file
View File

2
Pixiview.Android/SplashActivity.cs Normal file → Executable file
View File

@ -2,7 +2,7 @@
using Android.App;
using Android.Content;
using Android.OS;
using Android.Support.V7.App;
using AndroidX.AppCompat.App;
namespace Pixiview.Droid
{

0
Pixiview.iOS.OpenExtension/Entitlements.plist Normal file → Executable file
View File

4
Pixiview.iOS.OpenExtension/Info.plist Normal file → Executable file
View File

@ -29,8 +29,8 @@
<string>com.apple.share-services</string>
</dict>
<key>CFBundleShortVersionString</key>
<string>1.0.531</string>
<string>1.2.727</string>
<key>CFBundleVersion</key>
<string>22</string>
<string>31</string>
</dict>
</plist>

View File

0
Pixiview.iOS.OpenExtension/ShareViewController.cs Normal file → Executable file
View File

0
Pixiview.iOS/AppDelegate.cs Normal file → Executable file
View File

View File

View File

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 44 KiB

View File

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

View File

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

0
Pixiview.iOS/Assets.xcassets/IconBookmark.imageset/Contents.json vendored Normal file → Executable file
View File

View File

Before

Width:  |  Height:  |  Size: 244 B

After

Width:  |  Height:  |  Size: 244 B

View File

Before

Width:  |  Height:  |  Size: 339 B

After

Width:  |  Height:  |  Size: 339 B

View File

Before

Width:  |  Height:  |  Size: 458 B

After

Width:  |  Height:  |  Size: 458 B

View File

Some files were not shown because too many files have changed in this diff Show More