Skip to content

Commit c95e7c5

Browse files
committed
Setup and DB provider fixes
1 parent 15eadd4 commit c95e7c5

File tree

5 files changed

+6
-2
lines changed

5 files changed

+6
-2
lines changed

BlogEngine/BlogEngine.Core/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
[assembly: CLSCompliant(false)]
2020
[assembly: ComVisible(false)]
2121
[assembly: AllowPartiallyTrustedCallers]
22-
[assembly: AssemblyVersion("3.1.4.7")]
22+
[assembly: AssemblyVersion("3.1.4.8")]
2323
[assembly: SecurityRules(SecurityRuleSet.Level1)]

BlogEngine/BlogEngine.NET/BlogEngine.NET.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,6 @@
707707
<Content Include="Custom\Themes\Standard\fonts\fontello.eot" />
708708
<Content Include="Custom\Themes\Standard\fonts\fontello.ttf" />
709709
<Content Include="Custom\Themes\Standard\fonts\fontello.woff" />
710-
<Content Include="Custom\Themes\Standard\fonts\Yekan.woff" />
711710
<Content Include="Custom\Themes\Standard\site.master" />
712711
<None Include="Scripts\jquery-2.1.4.intellisense.js" />
713712
<Content Include="Scripts\i18n\angular-locale_aa-dj.js" />
-2 Bytes
Binary file not shown.

BlogEngine/BlogEngine.NET/setup/SQLServer/Upgrade.sql

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,8 @@ GO
88
ALTER TABLE dbo.be_Settings DROP CONSTRAINT AK_SettingName
99
GO
1010
ALTER TABLE dbo.be_Settings ADD CONSTRAINT AK_SettingName UNIQUE (BlogId, SettingName)
11+
GO
12+
ALTER TABLE dbo.be_PackageFiles DROP CONSTRAINT PK_be_PackageFiles
13+
GO
14+
ALTER TABLE dbo.be_PackageFiles ADD CONSTRAINT PK_be_PackageFiles UNIQUE (PackageId, FilePath)
1115
GO

BlogEngine/BlogEngine.NET/setup/upgrade/Updater.asmx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ public class Updater : WebService {
246246
ReplaceDir("\\App_GlobalResources");
247247
ReplaceDir("\\Scripts");
248248
ReplaceDir("\\Content");
249+
ReplaceDir("\\Custom\\Themes\\Standard");
249250

250251
return "";
251252
}

0 commit comments

Comments
 (0)