Skip to content

Commit

Permalink
fixed popup, changed icon and splash
Browse files Browse the repository at this point in the history
  • Loading branch information
danzuep committed Dec 13, 2023
1 parent 53c52df commit 5cb2e3a
Show file tree
Hide file tree
Showing 7 changed files with 313 additions and 24 deletions.
9 changes: 4 additions & 5 deletions Bible.App/Bible.App.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Description>Open-source Bible app for any platform.</Description>
<RepositoryUrl>https://github.com/danzuep/BibleApp</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PublishDir>./publish</PublishDir>
<PublishDir>../publish</PublishDir>
<PackageReleaseNotes>
0.1.0 Simple Bible reader
</PackageReleaseNotes>
Expand All @@ -31,7 +31,7 @@
<Nullable>enable</Nullable>

<!-- Display name -->
<ApplicationTitle>Open Bible app</ApplicationTitle>
<ApplicationTitle>Open Bible</ApplicationTitle>

<!-- App Identifier -->
<ApplicationId>com.danzuep.bibleapp</ApplicationId>
Expand Down Expand Up @@ -78,15 +78,14 @@

<ItemGroup>
<!-- App Icon -->
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" />
<MauiIcon Include="Resources\AppIcon\appicon.svg" />

<!-- Splash Screen -->
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" />

<!-- Images -->
<MauiImage Include="Resources\Images\*" />
<MauiImage Update="Resources\Images\dotnet_bot.png" Resize="True" BaseSize="300,185" />


<!-- Custom Fonts -->
<MauiFont Include="Resources\Fonts\*" />

Expand Down
1 change: 0 additions & 1 deletion Bible.App/Pages/MainPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ private void OnLanguageSelectionChanged(object sender, EventArgs e)
.FirstOrDefault(t => t.Identifier == MainPageViewModel.Web);
if (bibleTranslationPicker.SelectedItem == null)
bibleTranslationPicker.SelectedIndex = 0;
bibleChapterPicker.Focus();
}
}

Expand Down
54 changes: 51 additions & 3 deletions Bible.App/Resources/AppIcon/appicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 0 additions & 8 deletions Bible.App/Resources/AppIcon/appiconfg.svg

This file was deleted.

Binary file removed Bible.App/Resources/Images/dotnet_bot.png
Binary file not shown.
264 changes: 257 additions & 7 deletions Bible.App/Resources/Splash/splash.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions Scripts/publish.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ $projectFile = "${projectFolder}/${projectAppName}/${projectAppName}.csproj";

# restore the base project dependencies
Set-Location -Path "${projectFolder}";
dotnet clean;
dotnet restore "${projectFile}";
if (-not $?) {
Write-Host "Project file not found.";
Expand Down

0 comments on commit 5cb2e3a

Please sign in to comment.