Skip to content

Commit

Permalink
More deploy polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
thommcgrath committed Oct 27, 2023
1 parent b6d332a commit c1eab45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Project/Views/DeployManager.xojo_window
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ End
Private Sub Begin()
Var NowGMT As New DateTime(DateTime.Now.SecondsFrom1970, New TimeZone(0))
Var Now As DateTime = DateTime.Now
Self.DeployLabel = NowGMT.Year.ToString(Locale.Raw, "0000") + "-" + NowGMT.Month.ToString(Locale.Raw, "00") + "-" + NowGMT.Day.ToString(Locale.Raw, "00") + " " + NowGMT.Hour.ToString(Locale.Raw, "00") + ":" + NowGMT.Minute.ToString(Locale.Raw, "00") + ":" + NowGMT.Second.ToString(Locale.Raw, "00") + " GMT (" + Now.ToString(Locale.Current, DateTime.FormatStyles.None, DateTime.FormatStyles.Short) + " " + Now.Timezone.Abbreviation + ")"
Self.DeployLabel = NowGMT.Year.ToString(Locale.Raw, "0000") + "-" + NowGMT.Month.ToString(Locale.Raw, "00") + "-" + NowGMT.Day.ToString(Locale.Raw, "00") + " " + NowGMT.Hour.ToString(Locale.Raw, "00") + ":" + NowGMT.Minute.ToString(Locale.Raw, "00") + ":" + NowGMT.Second.ToString(Locale.Raw, "00") + " GMT (" + Now.ToString(Locale.Current, DateTime.FormatStyles.None, DateTime.FormatStyles.Short).ReplaceAll(&u202f, " ") + " " + Now.Timezone.Abbreviation + ")"

Var ProfileProblems As New Dictionary

Expand Down

0 comments on commit c1eab45

Please sign in to comment.