这是indexloc提供的服务,不要输入任何密码
Skip to content
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
2 changes: 1 addition & 1 deletion Logic/ApplicationSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ private static readonly Lazy<ApplicationSettings>
/// </summary>
private List<string> ExcludedProperties;

public string ClientVersion { get; } = "2 R257.1";
public string ClientVersion { get; } = "2 R257.2";
public string Version { get; } = "5";
public int ClientCodeVersion { get; } = 257;

Expand Down
9 changes: 9 additions & 0 deletions Logic/ScheduleManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,15 @@ private bool IsNewScheduleAvailable()
newSchedule = ResolveNormalAndInterrupts(parsedSchedule);
}

// If we have come out of this process without any schedule, then we ought to assign the default
if (newSchedule.Count <= 0)
{
newSchedule = new List<ScheduleItem>()
{
CurrentDefaultLayout
};
}

// Should we force a change
// (broadly this depends on whether or not the schedule has changed.)
bool forceChange = false;
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.257.1.0")]
[assembly: AssemblyFileVersion("2.257.1.0")]
[assembly: AssemblyVersion("2.257.2.0")]
[assembly: AssemblyFileVersion("2.257.2.0")]
[assembly: Guid("3bd467a4-4ef9-466a-b156-a79c13a863f7")]