Skip to content

Commit

Permalink
bump to 3.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
w8tcha committed May 8, 2022
1 parent 02adff4 commit ec80488
Show file tree
Hide file tree
Showing 59 changed files with 408 additions and 352 deletions.
3 changes: 3 additions & 0 deletions YAF.SampleWebApplication/Forum/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
YetAnotherForum.NET Changelog
====================

# YetAnotherForum.NET v3.1.5
* bug fixes

# YetAnotherForum.NET v3.1.4
* [NEW] Active Flag for Categories to enable/disable a Category
* [NEW] Infinite Scrolling on Board Index if there are more then 20 Forums
Expand Down
2 changes: 1 addition & 1 deletion YAF.SampleWebApplication/Forum/Content/forum-admin.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions YAF.SampleWebApplication/Forum/Content/forum.min.css

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified YAF.SampleWebApplication/Forum/Content/webfonts/fa-solid-900.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions YAF.SampleWebApplication/Forum/Global.asax
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<%@ Application Inherits="YAF.Core.Context.YafHttpApplication" Language="C#" %>
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,60 @@ GO

/* Create missing profile columns first if not exist */

if not exists (select top 1 1 from sys.columns where object_id=object_id('[{databaseOwner}].[{objectQualifier}prov_Profile]') and name='Interests')
begin
alter table [{databaseOwner}].[{objectQualifier}prov_Profile] add Interests nvarchar(255) Null
end
GO

if not exists (select top 1 1 from sys.columns where object_id=object_id('[{databaseOwner}].[{objectQualifier}prov_Profile]') and name='Blog')
begin
alter table [{databaseOwner}].[{objectQualifier}prov_Profile] add Blog nvarchar(255) Null
end
GO

if not exists (select top 1 1 from sys.columns where object_id=object_id('[{databaseOwner}].[{objectQualifier}prov_Profile]') and name='Occupation')
begin
alter table [{databaseOwner}].[{objectQualifier}prov_Profile] add Occupation nvarchar(255) Null
end
GO

if not exists (select top 1 1 from sys.columns where object_id=object_id('[{databaseOwner}].[{objectQualifier}prov_Profile]') and name='Skype')
begin
alter table [{databaseOwner}].[{objectQualifier}prov_Profile] add Skype nvarchar(255) Null
end
GO

if not exists (select top 1 1 from sys.columns where object_id=object_id('[{databaseOwner}].[{objectQualifier}prov_Profile]') and name='RealName')
begin
alter table [{databaseOwner}].[{objectQualifier}prov_Profile] add RealName nvarchar(255) Null
end
GO

if not exists (select top 1 1 from sys.columns where object_id=object_id('[{databaseOwner}].[{objectQualifier}prov_Profile]') and name='Location')
begin
alter table [{databaseOwner}].[{objectQualifier}prov_Profile] add [Location] nvarchar(255) Null
end
GO

if not exists (select top 1 1 from sys.columns where object_id=object_id('[{databaseOwner}].[{objectQualifier}prov_Profile]') and name='Homepage')
begin
alter table [{databaseOwner}].[{objectQualifier}prov_Profile] add Homepage nvarchar(255) Null
end
GO

if not exists (select top 1 1 from sys.columns where object_id=object_id('[{databaseOwner}].[{objectQualifier}prov_Profile]') and name='Gender')
begin
alter table [{databaseOwner}].[{objectQualifier}prov_Profile] add Gender int Null
end
GO

if not exists (select top 1 1 from sys.columns where object_id=object_id('[{databaseOwner}].[{objectQualifier}prov_Profile]') and name='Birthday')
begin
alter table [{databaseOwner}].[{objectQualifier}prov_Profile] add Birthday datetime Null
end
GO

if not exists (select top 1 1 from sys.columns where object_id=object_id('[{databaseOwner}].[{objectQualifier}prov_Profile]') and name='GoogleId')
begin
alter table [{databaseOwner}].[{objectQualifier}prov_Profile] add GoogleId nvarchar(255) Null
Expand Down
Loading

0 comments on commit ec80488

Please sign in to comment.