Skip to content

Commit de10375

Browse files
Removed start of html info page during the update phase. And moved the Info button on the Contents page.
1 parent b03fdb1 commit de10375

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

Source/Menu/DownloadContentForm.Designer.cs

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Source/Menu/DownloadContentForm.cs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -948,8 +948,7 @@ private async void DeleteButton_Click(object sender, EventArgs e)
948948

949949
if (areThereChangedAddedFiles(route))
950950
{
951-
writeAndStartInfoFile();
952-
message = Catalog.GetStringFmt("Changed or added local files found in Directory \"{0}\", see Info at the bottom for more information. Do you want to continue?", route.DirectoryInstalledIn);
951+
message = Catalog.GetStringFmt("Changed or added local files found in Directory \"{0}\". Do you want to continue?", route.DirectoryInstalledIn);
953952
if (MessageBox.Show(message, Catalog.GetString("Attention"), MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button2) != DialogResult.Yes)
954953
{
955954
// cancelled
@@ -1019,8 +1018,7 @@ private void updateButton_Click(object sender, EventArgs e)
10191018
List<string> commitStrings = getCommits(route.DirectoryInstalledIn);
10201019
if (commitStrings.Count > 0)
10211020
{
1022-
writeAndStartInfoFile();
1023-
message = Catalog.GetString("Remote updates found, see Info at the bottom for more information. Do you want to continue?");
1021+
message = Catalog.GetString("Remote updates found. Do you want to continue?");
10241022
if (MessageBox.Show(message, Catalog.GetString("Attention"), MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button2) != DialogResult.Yes)
10251023
{
10261024
// cancelled
@@ -1029,7 +1027,7 @@ private void updateButton_Click(object sender, EventArgs e)
10291027
}
10301028
if (areThereChangedAddedFiles(route))
10311029
{
1032-
message = Catalog.GetString("Changed or added local files found, Update might fail, see Info at the bottom for more information. Do you want to continue?");
1030+
message = Catalog.GetString("Changed or added local files found, Update might fail. Do you want to continue?");
10331031
if (MessageBox.Show(message, Catalog.GetString("Attention"), MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button2) != DialogResult.Yes)
10341032
{
10351033
// cancelled

0 commit comments

Comments
 (0)