Rename app to MayShow

This commit is contained in:
2026-02-17 17:43:09 +09:00
parent f3dedb0a2e
commit 55b5013184
7 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ class MainViewModel : BaseViewModel, IFontResolver
var quotes = Constants.GetQuotes();
Random random = new Random();
var quoteIndex = random.Next(0, quotes.Length);
_createPDFLog = "----- Receipt PDF Builder v" + Constants.AppVersion + "------" + Environment.NewLine;
_createPDFLog = "----- MayShow v" + Constants.AppVersion + "------" + Environment.NewLine;
_createPDFLog += quotes[quoteIndex] + Environment.NewLine;
_createPDFLog += "---------------------------------------" + Environment.NewLine;
_createPDFLog += "Ready to create PDF!";