1.0.6
This commit is contained in:
@@ -26,8 +26,8 @@
|
|||||||
<ApplicationId>com.companyname.jugenddienststunden</ApplicationId>
|
<ApplicationId>com.companyname.jugenddienststunden</ApplicationId>
|
||||||
|
|
||||||
<!-- Versions -->
|
<!-- Versions -->
|
||||||
<ApplicationDisplayVersion>1.0.3</ApplicationDisplayVersion>
|
<ApplicationDisplayVersion>1.0.6</ApplicationDisplayVersion>
|
||||||
<ApplicationVersion>1</ApplicationVersion>
|
<ApplicationVersion>7</ApplicationVersion>
|
||||||
|
|
||||||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion>
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion>
|
||||||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion>
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion>
|
||||||
@@ -38,7 +38,7 @@
|
|||||||
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
||||||
<PackageIcon>paket_icon.png</PackageIcon>
|
<PackageIcon>paket_icon.png</PackageIcon>
|
||||||
<NeutralLanguage>de</NeutralLanguage>
|
<NeutralLanguage>de</NeutralLanguage>
|
||||||
<PackageVersion>1.0.3</PackageVersion>
|
<PackageVersion>1.0.6</PackageVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|
||||||
@@ -113,25 +113,25 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-android|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-android|AnyCPU'">
|
||||||
<ApplicationDisplayVersion>1.0.4</ApplicationDisplayVersion>
|
<ApplicationDisplayVersion>1.0.6</ApplicationDisplayVersion>
|
||||||
<ApplicationVersion>5</ApplicationVersion>
|
<ApplicationVersion>7</ApplicationVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-android|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-android|AnyCPU'">
|
||||||
<ApplicationDisplayVersion>1.0.4</ApplicationDisplayVersion>
|
<ApplicationDisplayVersion>1.0.6</ApplicationDisplayVersion>
|
||||||
<ApplicationVersion>5</ApplicationVersion>
|
<ApplicationVersion>7</ApplicationVersion>
|
||||||
<DebugSymbols>True</DebugSymbols>
|
<DebugSymbols>True</DebugSymbols>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-windows10.0.19041.0|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-windows10.0.19041.0|AnyCPU'">
|
||||||
<ApplicationVersion>5</ApplicationVersion>
|
<ApplicationVersion>7</ApplicationVersion>
|
||||||
<DefineConstants>$(DefineConstants);DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION</DefineConstants>
|
<DefineConstants>$(DefineConstants);DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION</DefineConstants>
|
||||||
<ApplicationDisplayVersion>1.0.4</ApplicationDisplayVersion>
|
<ApplicationDisplayVersion>1.0.6</ApplicationDisplayVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-windows10.0.19041.0|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-windows10.0.19041.0|AnyCPU'">
|
||||||
<ApplicationVersion>5</ApplicationVersion>
|
<ApplicationVersion>7</ApplicationVersion>
|
||||||
<ApplicationDisplayVersion>1.0.4</ApplicationDisplayVersion>
|
<ApplicationDisplayVersion>1.0.6</ApplicationDisplayVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
|||||||
@@ -8,9 +8,7 @@ namespace Jugenddienst_Stunden.Views;
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class StundenPage : ContentPage {
|
public partial class StundenPage : ContentPage {
|
||||||
|
|
||||||
private int heightValue;
|
private int heightValue = 300;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// CTOR
|
/// CTOR
|
||||||
@@ -38,9 +36,6 @@ public partial class StundenPage : ContentPage {
|
|||||||
SizeChanged += OnPageSizeChanged;
|
SizeChanged += OnPageSizeChanged;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
private void Vm_AlertEvent(object? sender, string e) {
|
private void Vm_AlertEvent(object? sender, string e) {
|
||||||
MainThread.BeginInvokeOnMainThread(async () => {
|
MainThread.BeginInvokeOnMainThread(async () => {
|
||||||
await DisplayAlert("Fehler:", e, "OK");
|
await DisplayAlert("Fehler:", e, "OK");
|
||||||
@@ -64,8 +59,6 @@ public partial class StundenPage : ContentPage {
|
|||||||
return Preferences.Default.Get("apiKey", "") != "";
|
return Preferences.Default.Get("apiKey", "") != "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
private async void NavigateToTargetPage() {
|
private async void NavigateToTargetPage() {
|
||||||
await Navigation.PushAsync(new LoginPage());
|
await Navigation.PushAsync(new LoginPage());
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user