diff --git a/Core/Properties/AssemblyInfo.cs b/Core/Properties/AssemblyInfo.cs index c00342b..f161b42 100644 --- a/Core/Properties/AssemblyInfo.cs +++ b/Core/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值 //通过使用 "*",如下所示: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.1.0.2")] -[assembly: AssemblyFileVersion("1.1.0.2")] +[assembly: AssemblyVersion("1.1.0.3")] +[assembly: AssemblyFileVersion("1.1.0.3")] diff --git a/Core/Servicers/Instances/WebData.cs b/Core/Servicers/Instances/WebData.cs index 500424a..518457d 100644 --- a/Core/Servicers/Instances/WebData.cs +++ b/Core/Servicers/Instances/WebData.cs @@ -244,6 +244,14 @@ private Models.Db.WebUrlModel GetCreateUrl(TaiDbContext db, Site site_) }); db.SaveChanges(); } + else + { + if (result.Title != site_.Title) + { + result.Title = site_.Title; + db.SaveChanges(); + } + } return result; } diff --git a/UI/Controls/Tabbar/Tabbar.cs b/UI/Controls/Tabbar/Tabbar.cs index 89b96ed..0e8b2c8 100644 --- a/UI/Controls/Tabbar/Tabbar.cs +++ b/UI/Controls/Tabbar/Tabbar.cs @@ -158,8 +158,8 @@ private void CreateAnimations() { storyboard = new Storyboard(); scrollAnimation = new DoubleAnimation(); - scrollAnimation.EasingFunction = new BackEase() { EasingMode = EasingMode.EaseOut, Amplitude = .8 }; - scrollAnimation.Duration = new Duration(TimeSpan.FromSeconds(0.38)); + //scrollAnimation.EasingFunction = new BackEase() { EasingMode = EasingMode.EaseOut, Amplitude = .8 }; + scrollAnimation.Duration = new Duration(TimeSpan.FromSeconds(0.1)); Storyboard.SetTarget(scrollAnimation, ActiveBlock); Storyboard.SetTargetProperty(scrollAnimation, new PropertyPath("RenderTransform.Children[0].X")); diff --git a/UI/Properties/AssemblyInfo.cs b/UI/Properties/AssemblyInfo.cs index 1db182e..80a8a71 100644 --- a/UI/Properties/AssemblyInfo.cs +++ b/UI/Properties/AssemblyInfo.cs @@ -51,5 +51,5 @@ //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值 //通过使用 "*",如下所示: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.5.0.2")] -[assembly: AssemblyFileVersion("1.5.0.2")] +[assembly: AssemblyVersion("1.5.0.3")] +[assembly: AssemblyFileVersion("1.5.0.3")]