Skip to content

Commit

Permalink
3.6.18211.1611
Browse files Browse the repository at this point in the history
  • Loading branch information
admin committed Jul 30, 2018
2 parents 2b764dc + 4be107a commit b077008
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,15 @@ protected override async Task CloseAsync()
{
if (this.Tables.Any() == true)
{
await TableContentDescriptorUtility.EndEditAsync(this.authentication, this.contentDescriptor);
this.DetachEvent();
try
{
await TableContentDescriptorUtility.EndEditAsync(this.authentication, this.contentDescriptor);
this.DetachEvent();
}
catch (Exception e)
{
AppMessageBox.ShowError(e);
}
}
}

Expand Down
4 changes: 2 additions & 2 deletions common/Ntreev.Crema.AssemblyInfo/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyVersion("3.6")]
[assembly: AssemblyFileVersion("3.6.18206.1129")]
[assembly: AssemblyInformationalVersion("3.6.18206.1129")]
[assembly: AssemblyFileVersion("3.6.18211.1611")]
[assembly: AssemblyInformationalVersion("3.6.18211.1611")]
2 changes: 2 additions & 0 deletions server/Ntreev.Crema.Services/Data/DataBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,11 @@ public void Rename(Authentication authentication, string name)
this.DataBases.InvokeDataBaseRename(authentication, this, name);
var oldName = base.Name;
base.Name = name;
this.metaData = null;
this.basePath = Path.Combine(Path.GetDirectoryName(this.basePath), name);
this.Sign(authentication);
this.DataBases.InvokeItemsRenamedEvent(authentication, new DataBase[] { this }, new string[] { oldName, });
this.GetMetaData(authentication);
}

public void Delete(Authentication authentication)
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.18206.1129
3.6.18211.1611

0 comments on commit b077008

Please sign in to comment.