Skip to content

Commit

Permalink
Merge pull request #229 from hismightiness/tasks/release-03.02.03
Browse files Browse the repository at this point in the history
Tasks/release 03.02.03
  • Loading branch information
Will Strohl authored Nov 13, 2019
2 parents bd1a8da + ffab5e0 commit f04fe6d
Show file tree
Hide file tree
Showing 7 changed files with 64 additions and 34 deletions.
4 changes: 2 additions & 2 deletions Build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@

<!-- Version Number -->
<PropertyGroup Condition=" '$(BUILD_NUMBER)' == '' ">
<Version>03.02.02</Version>
<Version>03.02.03</Version>
<FileVersion>01.00.00</FileVersion>
<InformationalVersion>01.00.00</InformationalVersion>
</PropertyGroup>

<PropertyGroup Condition=" '$(BUILD_NUMBER)' != '' ">
<!-- Build Server Number -->
<Version>03.02.02</Version>
<Version>03.02.03</Version>
<FileVersion>$(BUILD_NUMBER)</FileVersion>
<InformationalVersion>$(BUILD_NUMBER)</InformationalVersion>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion CommonAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
[assembly: CLSCompliant(false)]
[assembly: ComVisible(false)]

[assembly: AssemblyVersion("3.02.02")]
[assembly: AssemblyVersion("3.02.03")]
[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile("")]
[assembly: AssemblyKeyName("")]
Expand Down
4 changes: 3 additions & 1 deletion Libraries/Hotcakes.Commerce/Catalog/Variant.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public Variant()
Sku = string.Empty;
Price = -1;
Selections = new OptionSelectionList();
CustomProperty = string.Empty;
}

/// <summary>
Expand Down Expand Up @@ -132,7 +133,8 @@ public VariantDTO ToDto()
ProductId = ProductId,
Sku = Sku,
Price = Price,
Selections = selDto
Selections = selDto,
CustomProperty = CustomProperty
};
}
}
Expand Down
7 changes: 7 additions & 0 deletions Libraries/Hotcakes.CommerceDTO/v1/Catalog/VariantDTO.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public VariantDTO()
Selections = new List<OptionSelectionDTO>();
Sku = string.Empty;
Price = -1;
CustomProperty = string.Empty;
}

/// <summary>
Expand Down Expand Up @@ -78,5 +79,11 @@ public VariantDTO()
/// </summary>
[DataMember]
public List<OptionSelectionDTO> Selections { get; set; }

/// <summary>
/// The Custom Property to add further variant details
/// </summary>
[DataMember]
public string CustomProperty { get; set; }
}
}
Binary file modified WebDeploy/DNN_Platform_8.0.3_Install.zip
Binary file not shown.
59 changes: 32 additions & 27 deletions Website/DesktopModules/Hotcakes/Hotcakes.dnn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<dotnetnuke type="Package" version="5.0">
<packages>
<package name="Hotcakes.Core" type="Library" version="03.02.02">
<package name="Hotcakes.Core" type="Library" version="03.02.03">
<friendlyName>Hotcakes Commerce</friendlyName>
<description><![CDATA[Hotcakes Commerce will give your company the control it needs to create and manage your e-commerce site.]]></description>
<iconFile>~/DesktopModules/Hotcakes/Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -58,7 +58,7 @@
<attributes>
<businessControllerClass>Hotcakes.Modules.Core.HotcakesController, Hotcakes.Modules</businessControllerClass>
<desktopModuleID>[DESKTOPMODULEID]</desktopModuleID>
<upgradeVersionsList>01.00.00,01.00.07,01.05.00,01.06.00,01.07.00,01.08.00,01.09.00,01.10.00,02.00.00,02.00.01,02.00.02,02.00.03,02.00.04,02.00.05,02.00.06,03.00.00,03.00.01,03.01.00,03.02.00,03.02.01,03.02.02</upgradeVersionsList>
<upgradeVersionsList>01.00.00,01.00.07,01.05.00,01.06.00,01.07.00,01.08.00,01.09.00,01.10.00,02.00.00,02.00.01,02.00.02,02.00.03,02.00.04,02.00.05,02.00.06,03.00.00,03.00.01,03.01.00,03.02.00,03.02.01,03.02.02,03.02.03</upgradeVersionsList>
</attributes>
</eventMessage>
</component>
Expand Down Expand Up @@ -195,10 +195,15 @@
<name>03.02.02.SqlDataProvider</name>
<version>03.02.02</version>
</script>
<script type="Install">
<path>Providers\DataProviders\SqlDataProvider</path>
<name>03.02.03.SqlDataProvider</name>
<version>03.02.03</version>
</script>
<script type="UnInstall">
<path>Providers\DataProviders\SqlDataProvider</path>
<name>Uninstall.SqlDataProvider</name>
<version>03.02.02</version>
<version>03.02.03</version>
</script>
</scripts>
</component>
Expand Down Expand Up @@ -518,7 +523,7 @@
</components>
</package>

<package name="Hotcakes.ExtensionUrlProvider" type="Library" version="03.02.02">
<package name="Hotcakes.ExtensionUrlProvider" type="Library" version="03.02.03">
<friendlyName>Hotcakes Extension Url Provider</friendlyName>
<description><![CDATA[Hotcakes Extension Url Provider allows you to get rid of 'slug' parameter name in friednly urls]]></description>
<iconFile>~/DesktopModules/Hotcakes/Core/Images/hcc-logo.png</iconFile>
Expand All @@ -544,7 +549,7 @@
</components>
</package>

<package name="Hotcakes.AddressBook" type="Module" version="03.02.02">
<package name="Hotcakes.AddressBook" type="Module" version="03.02.03">
<friendlyName>Hotcakes Address Book</friendlyName>
<description><![CDATA[Hotcakes Commerce address book allows your customers to save addresses used for shipping.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -598,7 +603,7 @@
</components>
</package>

<package name="Hotcakes.Cart" type="Module" version="03.02.02">
<package name="Hotcakes.Cart" type="Module" version="03.02.03">
<friendlyName>Hotcakes Cart</friendlyName>
<description><![CDATA[Hotcakes Commerce cart displays products to customers for purchase.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -670,7 +675,7 @@
</components>
</package>

<package name="Hotcakes.CategoryMenu" type="Module" version="03.02.02">
<package name="Hotcakes.CategoryMenu" type="Module" version="03.02.03">
<friendlyName>Hotcakes Category Menu</friendlyName>
<description><![CDATA[Hotcakes Commerce category menu displays categories to help customers find categorized products.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -742,7 +747,7 @@
</components>
</package>

<package name="Hotcakes.CategoryViewer" type="Module" version="03.02.02">
<package name="Hotcakes.CategoryViewer" type="Module" version="03.02.03">
<friendlyName>Hotcakes Category Viewer</friendlyName>
<description><![CDATA[Hotcakes Commerce category viewer displays a listing of categories in a visual way for customers to easily drill down to products of their choice.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -816,7 +821,7 @@
</components>
</package>

<package name="Hotcakes.Checkout" type="Module" version="03.02.02">
<package name="Hotcakes.Checkout" type="Module" version="03.02.03">
<friendlyName>Hotcakes Checkout</friendlyName>
<description><![CDATA[Hotcakes Commerce checkout allows a customer to finalize their shopping experience by purchasing the items saved in their cart.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -918,7 +923,7 @@
</components>
</package>

<package name="Hotcakes.FeaturedProducts" type="Module" version="03.02.02">
<package name="Hotcakes.FeaturedProducts" type="Module" version="03.02.03">
<friendlyName>Hotcakes Featured Products</friendlyName>
<description><![CDATA[Hotcakes Commerce featured products allows you to display products to customers that have been marked as featuresd in the product catalog.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -990,7 +995,7 @@
</components>
</package>

<package name="Hotcakes.LastProductsViewed" type="Module" version="03.02.02">
<package name="Hotcakes.LastProductsViewed" type="Module" version="03.02.03">
<friendlyName>Hotcakes Last Products Viewed</friendlyName>
<description><![CDATA[Hotcakes Commerce Last Products Viewed allows you to display the last products that a customer viewed to make it easy for them to return and purchase them.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -1062,7 +1067,7 @@
</components>
</package>

<package name="Hotcakes.MiniCart" type="Module" version="03.02.02">
<package name="Hotcakes.MiniCart" type="Module" version="03.02.03">
<friendlyName>Hotcakes Mini Cart</friendlyName>
<description><![CDATA[Hotcakes Commerce Mini Cart allows you to provide a minimized cart experience, reducing the amount of things a customer sees.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -1134,7 +1139,7 @@
</components>
</package>

<package name="Hotcakes.SearchInput" type="Module" version="03.02.02">
<package name="Hotcakes.SearchInput" type="Module" version="03.02.03">
<friendlyName>Hotcakes Search Input</friendlyName>
<description><![CDATA[Hotcakes Commerce Search Input displays a search option for customers to use to discover products in your store.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -1206,7 +1211,7 @@
</components>
</package>

<package name="Hotcakes.SkinAffiliate" type="SkinObject" version="03.02.02">
<package name="Hotcakes.SkinAffiliate" type="SkinObject" version="03.02.03">
<friendlyName>HCSKINAFFILIATE SkinObject</friendlyName>
<description><![CDATA[Hotcakes Commerce Affiliate skin object allows designers to add capabilities to handle affiliate requests on each page load without adding code to the page.]]></description>
<iconFile>~/DesktopModules/Hotcakes/Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -1239,7 +1244,7 @@
</components>
</package>

<package name="Hotcakes.SkinSearch" type="SkinObject" version="03.02.02">
<package name="Hotcakes.SkinSearch" type="SkinObject" version="03.02.03">
<friendlyName>HCSKINSEARCH SkinObject</friendlyName>
<description><![CDATA[Hotcakes Commerce Search skin object allows designers to insert the store's search feature into the skin.]]></description>
<iconFile>~/DesktopModules/Hotcakes/Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -1272,7 +1277,7 @@
</components>
</package>

<package name="Hotcakes.OrderHistory" type="Module" version="03.02.02">
<package name="Hotcakes.OrderHistory" type="Module" version="03.02.03">
<friendlyName>Hotcakes Order History</friendlyName>
<description><![CDATA[Hotcakes Commerce Order History module provides a way for customers to review their past orders.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -1344,7 +1349,7 @@
</components>
</package>

<package name="Hotcakes.ProductGrid" type="Module" version="03.02.02">
<package name="Hotcakes.ProductGrid" type="Module" version="03.02.03">
<friendlyName>Hotcakes Product Grid</friendlyName>
<description><![CDATA[Hotcakes Commerce Product Grid allows you to specify a set of products to list anywhere, in a grid layout.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -1414,7 +1419,7 @@
</components>
</package>

<package name="Hotcakes.ProductViewer" type="Module" version="03.02.02">
<package name="Hotcakes.ProductViewer" type="Module" version="03.02.03">
<friendlyName>Hotcakes Product Viewer</friendlyName>
<description><![CDATA[Hotcakes Commerce Product Viewer module displays a chosen product to your customers.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -1488,7 +1493,7 @@
</components>
</package>

<package name="Hotcakes.ProductReviews" type="Module" version="03.02.02">
<package name="Hotcakes.ProductReviews" type="Module" version="03.02.03">
<friendlyName>Hotcakes Product Reviews</friendlyName>
<description><![CDATA[Hotcakes Commerce Product Reviews will display related reviews for the product currently being displayed on the page.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -1560,7 +1565,7 @@
</components>
</package>

<package name="Hotcakes.ContentBlocks" type="Module" version="03.02.02">
<package name="Hotcakes.ContentBlocks" type="Module" version="03.02.03">
<friendlyName>Hotcakes Content Blocks</friendlyName>
<description><![CDATA[Hotcakes Commerce Content Blocks module allows you to display content blocks you've created in the store admin.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -1632,7 +1637,7 @@
</components>
</package>

<package name="Hotcakes.Search" type="Module" version="03.02.02">
<package name="Hotcakes.Search" type="Module" version="03.02.03">
<friendlyName>Hotcakes Search</friendlyName>
<description><![CDATA[Hotcakes Commerce Search Module allows you to use different settings to create a search results page for your store just the way you need it.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -1704,7 +1709,7 @@
</components>
</package>

<package name="Hotcakes.TopWeeklySellers" type="Module" version="03.02.02">
<package name="Hotcakes.TopWeeklySellers" type="Module" version="03.02.03">
<friendlyName>Hotcakes Top Weekly Sellers</friendlyName>
<description><![CDATA[Hotcakes Commerce Top Weekly Sellers will display a listing of the 10 most popular products sold over the past week.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -1776,7 +1781,7 @@
</components>
</package>

<package name="Hotcakes.Top10Products" type="Module" version="03.02.02">
<package name="Hotcakes.Top10Products" type="Module" version="03.02.03">
<friendlyName>Hotcakes Top 10 Products</friendlyName>
<description><![CDATA[Hotcakes Commerce Top 10 Products module will display a listing of the most popular products sold in the store in the past 10 calendar days.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -1848,7 +1853,7 @@
</components>
</package>

<package name="Hotcakes.WishList" type="Module" version="03.02.02">
<package name="Hotcakes.WishList" type="Module" version="03.02.03">
<friendlyName>Hotcakes Wish List</friendlyName>
<description><![CDATA[Hotcakes Commerce Wish List module shows your customers products that have been added to their wish list for purchase later.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -1902,7 +1907,7 @@
</components>
</package>

<package name="Hotcakes.AffiliateRegistration" type="Module" version="03.02.02">
<package name="Hotcakes.AffiliateRegistration" type="Module" version="03.02.03">
<friendlyName>Hotcakes Affiliate Registration</friendlyName>
<friendlyName>Hotcakes Wish List</friendlyName>
<description><![CDATA[Hotcakes Commerce Affiliate Registration module.]]></description>
Expand Down Expand Up @@ -1957,7 +1962,7 @@
</components>
</package>

<package name="Hotcakes.AffiliateDashboard" type="Module" version="03.02.02">
<package name="Hotcakes.AffiliateDashboard" type="Module" version="03.02.03">
<friendlyName>Hotcakes Affiliate Dashboard</friendlyName>
<description><![CDATA[Hotcakes Commerce Affiliate Dashboard.]]></description>
<iconFile>Core/Images/hcc-logo.png</iconFile>
Expand Down Expand Up @@ -2011,7 +2016,7 @@
</components>
</package>

<package name="Hotcakes.ControlPanel" type="Provider" version="03.02.02">
<package name="Hotcakes.ControlPanel" type="Provider" version="03.02.03">
<friendlyName>Hotcakes Control Panel</friendlyName>
<description>Hotcakes Control Panel</description>
<iconFile>~/DesktopModules/Hotcakes/Core/Images/hcc-logo.png</iconFile>
Expand Down
22 changes: 19 additions & 3 deletions Website/DesktopModules/Hotcakes/ReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,25 @@
<h5>Version 03.02.02</h5>
<h5>Version 03.02.03</h5>
<p><strong>Highlights</strong></p>
<p><strong>Enhancements</strong></p>
<ul>
<li><strong>Choose to Notify Membership Subscribers</strong> - SI: You are now able to choose whether new customers receive the DNN role assignment e-mail for membership product types (<a href="https://github.com/HotcakesCommerce/hotcakes-commerce-core/issues/184" target="_blank">Issue </a>)</li>
<li><strong>Added Special Properties to Variants</strong> - SI: You're now able to add special properties to variants for even more flexibility for your unique e-commerce implementations (<a href="https://github.com/HotcakesCommerce/hotcakes-commerce-core/issues/221" target="_blank">Issue 221</a>)</li>
</ul>
<p><strong>Bug Fixes</strong></p>
<ul>
<li><a href="https://github.com/HotcakesCommerce/hotcakes-commerce-core/issues/193" target="_blank">Issue 193</a> - Administration category sort not working</li>
</ul>
<h5>Thank you to the following community members for participating in this release!</h5>
<ul>
<li>Will Strohl, <a href="https://upendoventures.com/What/Hotcakes-Commerce" target="_blank">Upendo Ventures</a></li>
<li>Nirav Sanghvi, <a href="https://upendoventures.com/What/Hotcakes-Commerce" target="_blank">Upendo Ventures</a></li>
<li>Ryan Jagdfeld, <a href="https://github.com/yog-it" target="_blank">Yog-IT</a></li>
</ul>

<h5>Version 03.02.02</h5>
<p><strong>Highlights</strong></p>
<p><strong>Enhancements</strong></p>
<ul>
<li><strong>Choose to Notify Membership Subscribers</strong> - SI: You are now able to choose whether new customers receive the DNN role assignment e-mail for membership product types (<a href="https://github.com/HotcakesCommerce/hotcakes-commerce-core/issues/184" target="_blank">Issue 184</a>)</li>
<li><strong>Updated E-Mail Address Validation</strong> - CI: E-mail address validation now supports newer top-level domain names (<a href="https://github.com/HotcakesCommerce/hotcakes-commerce-core/issues/63" target="_blank">Issue 63</a>)</li>
<li><strong>DNN 9.xx compatibility updates (more coming in the 03.03.00 release)</strong>
<ul>
Expand All @@ -23,7 +40,6 @@
<li><a href="https://github.com/HotcakesCommerce/hotcakes-commerce-core/issues/200" target="_blank">Issue 200</a> - Disabling the reviews/ratings still shows ratings in product details view.</li>
<li><a href="https://github.com/HotcakesCommerce/hotcakes-commerce-core/issues/173" target="_blank">Issue 173</a> - Pricing was not properly formatted in the drilldown category view.</li>
<li><a href="https://github.com/HotcakesCommerce/hotcakes-commerce-core/issues/180" target="_blank">Issue 180</a> - Removed remaining bits of Shift4 from the code base.</li>
<li><a href="" target="_blank">Issue </a> - </li>
</ul>
<h5>Thank you to the following community members for participating in this release!</h5>
<ul>
Expand Down

0 comments on commit f04fe6d

Please sign in to comment.