This commit is contained in:
2024-10-26 23:07:24 +02:00
parent 00e37f9edf
commit 37df53d333
2 changed files with 13 additions and 20 deletions

View File

@@ -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>

View File

@@ -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());
} }