Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ugly installer splash screen #173

Merged
merged 4 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Builders/Builder.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

using System;
using System.IO;
using osu.Desktop.Deploy.Uploaders;

Expand All @@ -11,7 +12,7 @@ public abstract class Builder
protected abstract string TargetFramework { get; }
protected abstract string RuntimeIdentifier { get; }

protected string SplashImagePath => Path.Combine(Program.SolutionPath, "assets", "lazer-nuget.png");
protected string SplashImagePath => Path.Combine(Environment.CurrentDirectory, "lazer-velopack.jpg");
protected string IconPath => Path.Combine(Program.SolutionPath, Program.ProjectName, Program.IconName);

protected readonly string Version;
Expand Down
Binary file added lazer-velopack.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added lazer-velopack.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading