File tree Expand file tree Collapse file tree 5 files changed +6
-2
lines changed
BlogEngine.Core/Properties Expand file tree Collapse file tree 5 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 19
19
[ assembly: CLSCompliant ( false ) ]
20
20
[ assembly: ComVisible ( false ) ]
21
21
[ assembly: AllowPartiallyTrustedCallers ]
22
- [ assembly: AssemblyVersion ( "3.1.4.7 " ) ]
22
+ [ assembly: AssemblyVersion ( "3.1.4.8 " ) ]
23
23
[ assembly: SecurityRules ( SecurityRuleSet . Level1 ) ]
Original file line number Diff line number Diff line change 707
707
<Content Include =" Custom\Themes\Standard\fonts\fontello.eot" />
708
708
<Content Include =" Custom\Themes\Standard\fonts\fontello.ttf" />
709
709
<Content Include =" Custom\Themes\Standard\fonts\fontello.woff" />
710
- <Content Include =" Custom\Themes\Standard\fonts\Yekan.woff" />
711
710
<Content Include =" Custom\Themes\Standard\site.master" />
712
711
<None Include =" Scripts\jquery-2.1.4.intellisense.js" />
713
712
<Content Include =" Scripts\i18n\angular-locale_aa-dj.js" />
Original file line number Diff line number Diff line change 8
8
ALTER TABLE dbo .be_Settings DROP CONSTRAINT AK_SettingName
9
9
GO
10
10
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)
11
15
GO
Original file line number Diff line number Diff line change @@ -246,6 +246,7 @@ public class Updater : WebService {
246
246
ReplaceDir("\\App_GlobalResources");
247
247
ReplaceDir("\\Scripts");
248
248
ReplaceDir("\\Content");
249
+ ReplaceDir("\\Custom\\Themes\\Standard");
249
250
250
251
return "";
251
252
}
You can’t perform that action at this time.
0 commit comments