Skip to content

Commit 003044e

Browse files
authored
Merge pull request #211 from johnhenley/issues/205
Fix order of "What's new" module w/ topics only
2 parents cc64d22 + 525cbd5 commit 003044e

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

ActiveForums.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,6 +656,10 @@
656656
<None Include="sql\07.00.02.SqlDataProvider" />
657657
<None Include="sql\07.00.05.SqlDataProvider" />
658658
<None Include="sql\07.00.06.SqlDataProvider" />
659+
<None Include="sql\07.00.07.SqlDataProvider" />
660+
<None Include="sql\07.00.08.SqlDataProvider" />
661+
<None Include="sql\08.00.00.SqlDataProvider" />
662+
<None Include="sql\07.00.06.SqlDataProvider" />
659663
<None Include="sql\Enterprise.sql" />
660664
<Content Include="config\templates\ModAlert_text.txt" />
661665
<Content Include="config\templates\ModEmail_text.txt" />
@@ -1376,4 +1380,4 @@
13761380
<!--<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />-->
13771381
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
13781382
<Import Project="Module.Build" />
1379-
</Project>
1383+
</Project>

ActiveForums.dnn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<dotnetnuke type="Package" version="5.0">
22
<packages>
3-
<package name="Active Forums" type="Module" version="07.00.05">
3+
<package name="Active Forums" type="Module" version="07.00.06">
44
<friendlyName>Active Forums</friendlyName>
55
<description>Community Forums: The official online forums module for the DNN Community.</description>
66
<iconFile>DesktopModules/ActiveForums/images/af6_icon.jpg</iconFile>
@@ -84,7 +84,7 @@
8484
<assembly>
8585
<name>DotNetNuke.Modules.ActiveForums.dll</name>
8686
<sourceFileName>bin\DotNetNuke.Modules.ActiveForums.dll</sourceFileName>
87-
<version>07.00.05</version>
87+
<version>07.00.06</version>
8888
</assembly>
8989
</assemblies>
9090
</component>

ActiveForums_Symbols.dnn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<dotnetnuke type="Package" version="5.0">
22
<packages>
3-
<package name="Active Forums_Symbols" type="Library" version="07.00.05">
3+
<package name="Active Forums_Symbols" type="Library" version="07.00.06">
44
<friendlyName>Active Forums Symbols</friendlyName>
55
<description>Community Forums: The official online forums module for the DNN Community.</description>
66
<iconFile>DesktopModules/ActiveForums/images/af6_icon.jpg</iconFile>
@@ -14,7 +14,7 @@
1414
<releaseNotes src="ReleaseNotes.txt" />
1515
<azureCompatible>True</azureCompatible>
1616
<dependencies>
17-
<dependency type="managedPackage" version="7.0.5">Active Forums</dependency>
17+
<dependency type="managedPackage" version="7.0.6">Active Forums</dependency>
1818
</dependencies>
1919
<components>
2020
<component type="ResourceFile">

Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@
5252
// You can specify all the values or you can default the Build and Revision Numbers
5353
// by using the '*' as shown below:
5454

55-
[assembly: AssemblyVersion("07.00.05")]
55+
[assembly: AssemblyVersion("07.00.06")]
5656

57-
[assembly: AssemblyFileVersion("07.00.05")]
57+
[assembly: AssemblyFileVersion("07.00.06")]
5858

5959
[assembly: WebResource("DotNetNuke.Modules.ActiveForums.CustomControls.Resources.cb.js", "text/javascript")]
6060
[assembly: WebResource("DotNetNuke.Modules.ActiveForums.scripts.afadmin.properties.js", "text/javascript")]

ReleaseNotes.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<ul>
1313
<li>TASK: Change hardcoded paths/files to constants (<a href="https://github.com/DNNCommunity/Dnn.CommunityForums/issues/224">Issue 224</a>, thanks <a href="https://github.com/johnhenley" target="_blank">@johnhenley</a>!)</li>
1414
<li>FIXED: Hidden forum groups not showing if some forums in the hidden group are visible (<a href="https://github.com/DNNCommunity/Dnn.CommunityForums/issues/243">Issue 243</a>, thanks <a href="https://github.com/johnhenley" target="_blank">@johnhenley</a>!)</li>
15+
<li>FIXED: Fix order of "What's new" module w/ topics only option (<a href="https://github.com/DNNCommunity/Dnn.CommunityForums/issues/205">Issue 205</a>, thanks <a href="https://github.com/johnhenley" target="_blank">@johnhenley</a>!)</li>
1516
<li>NEW: Replace deprecated DNN platform method GetModuleSettings() with .ModuleSettings property references [huge perf improvement!] (<a href="https://github.com/DNNCommunity/Dnn.CommunityForums/issues/252">Issue 252</a>, thanks <a href="https://github.com/johnhenley" target="_blank">@johnhenley</a>!)</li>
1617
</ul>
1718

0 commit comments

Comments
 (0)