Skip to content

Commit

Permalink
Merge pull request #210 from EPTamminga/07.00.05
Browse files Browse the repository at this point in the history
Release items
  • Loading branch information
EPTamminga authored Feb 4, 2020
2 parents 42fdf2f + c674f07 commit 42932ad
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("7.0.4.0")]
[assembly: AssemblyFileVersion("7.0.4.0")]
[assembly: AssemblyVersion("7.0.5.0")]
[assembly: AssemblyFileVersion("7.0.5.0")]
8 changes: 8 additions & 0 deletions Installation/CleanUp/Cleanup.07.00.05.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
'Remove old versions of events
Install\Module\Events_07.00.04_Install.zip

'Remove artifacts from previous incorrect install versions

'Tidy up debug files if any
Bin\DotNetNuke.Modules.Events.pdb
Bin\DotNetNuke.Modules.Events.ScheduleControl.pdb
5 changes: 3 additions & 2 deletions Installation/DNN_Events.dnn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<dotnetnuke type="Package" version="5.0">
<packages>
<package name="DNN_Events" type="Module" version="7.0.4">
<package name="DNN_Events" type="Module" version="7.0.5">
<friendlyName>Events</friendlyName>
<description>This module renders single and recurring events and includes Master and Sub Calendars with Event Rollup, TimeZone Adjustment, Event Enrollment, and Event Notification.</description>
<iconFile>DesktopModules\Events\DNN_Events.png</iconFile>
Expand All @@ -11,7 +11,7 @@
<email>[email protected]</email>
</owner>
<license src="License.txt"></license>
<releaseNotes src="Release.07.00.04.txt"></releaseNotes>
<releaseNotes src="Release.07.00.05.txt"></releaseNotes>
<azureCompatible>true</azureCompatible>
<dependencies>
<dependency type="CoreVersion">8.0.0</dependency>
Expand Down Expand Up @@ -428,6 +428,7 @@
<component type="Cleanup" version="07.00.02" fileName="Installation\CleanUp\Cleanup.07.00.02.txt" />
<component type="Cleanup" version="07.00.03" fileName="Installation\CleanUp\Cleanup.07.00.03.txt" />
<component type="Cleanup" version="07.00.04" fileName="Installation\CleanUp\Cleanup.07.00.04.txt" />
<component type="Cleanup" version="07.00.05" fileName="Installation\CleanUp\Cleanup.07.00.05.txt" />
<component type="Config">
<config>
<configFile>web.config</configFile>
Expand Down
9 changes: 9 additions & 0 deletions Installation/ReleaseNotes/Release.07.00.05.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<h2>Release notes DNN.Events 07.00.05</h2>
<p>DNN.Events 07.00.05 will work for any DNN version <strong>8.0.1</strong> and up to the latest release of DNNPlatform. Full details on the changes can be found in great detail at <a href="https://github.com/DNNCommunity/DNN.Events/releases" target="_blank">the repository on GitHub</a>.</p>
<p>This is a bug fix release of the DNN.Events module.</p>
<h3>BUG FIXES</h3>
<ul>
<li>Several casting errors due to the VB.net/C# conversion fixed</li>
<li>Select date fixed</li>
<li>Auto height in Location & Category table</li>
</ul>
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("7.0.4.0")]
[assembly: AssemblyFileVersion("7.0.4.0")]
[assembly: AssemblyVersion("7.0.5.0")]
[assembly: AssemblyFileVersion("7.0.5.0")]
4 changes: 2 additions & 2 deletions SubControls/SelectLocation.ascx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public ArrayList SelectedLocation
else
{
_selectedLocation.Clear();
foreach (int location in Settings.ModuleLocationIDs)
foreach (var location in Settings.ModuleLocationIDs)
{
_selectedLocation.Add(location);
}
Expand All @@ -119,7 +119,7 @@ public ArrayList SelectedLocation
else if (Settings.ModuleLocationsSelected != EventModuleSettings.LocationsSelected.All)
{
_selectedLocation.Clear();
foreach (int location in Settings.ModuleLocationIDs)
foreach (var location in Settings.ModuleLocationIDs)
{
_selectedLocation.Add(location);
}
Expand Down

0 comments on commit 42932ad

Please sign in to comment.