From 5d3e1706c752e4f650c513bfbb7350995e754611 Mon Sep 17 00:00:00 2001 From: Liban Velazquez Silva Date: Tue, 12 Dec 2023 01:05:52 +0100 Subject: [PATCH 1/7] Update RestPaypalApi.cs - Apply the formatAmount method to the amounts within the methods doDirectCheckout, CaptureAuthorizedOrder and CapturesRefund. --- Libraries/Hotcakes.PaypalWebServices/RestPaypalApi.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Libraries/Hotcakes.PaypalWebServices/RestPaypalApi.cs b/Libraries/Hotcakes.PaypalWebServices/RestPaypalApi.cs index 6c88bd1f..c1ffb681 100644 --- a/Libraries/Hotcakes.PaypalWebServices/RestPaypalApi.cs +++ b/Libraries/Hotcakes.PaypalWebServices/RestPaypalApi.cs @@ -121,13 +121,13 @@ public async Task doDirectCheckout(string paymentAmount, AmountWithBreakdown = new AmountWithBreakdown { CurrencyCode = storeCurrency, - Value = paymentAmount, + Value = formatAmount(paymentAmount), AmountBreakdown = new AmountBreakdown { ItemTotal = new Money { CurrencyCode = storeCurrency, - Value = paymentAmount + Value = formatAmount(paymentAmount) }, } @@ -351,7 +351,7 @@ public async Task CaptureAuthorizedOrder(string AuthorizationId,st { Amount = new PayPalCheckoutSdk.Payments.Money() { - Value = value, + Value = formatAmount(value), CurrencyCode = currencyId }, InvoiceId = invoiceId, @@ -375,7 +375,7 @@ public async Task CapturesRefund(string CaptureId, string amount, { Amount = new PayPalCheckoutSdk.Payments.Money() { - Value = amount, + Value = formatAmount(amount), CurrencyCode = storeCurrency } }; From 4aab1dd98050e84a871cafc76c4768c0226e4d0b Mon Sep 17 00:00:00 2001 From: Will Strohl Date: Tue, 29 Oct 2024 10:01:10 -0700 Subject: [PATCH 2/7] Updating version number for release --- Build.proj | 170 +- CommonAssemblyInfo.cs | 36 +- GlobalAssemblyInfo.cs | 8 +- Website/DesktopModules/Hotcakes/Hotcakes.dnn | 4190 ++++++++--------- .../Hotcakes/Hotcakes_Symbols.dnn | 64 +- Website/DesktopModules/Hotcakes/License.txt | 34 +- .../DesktopModules/Hotcakes/ReleaseNotes.txt | 122 +- 7 files changed, 2312 insertions(+), 2312 deletions(-) diff --git a/Build.proj b/Build.proj index f92ec0f1..af2ce253 100644 --- a/Build.proj +++ b/Build.proj @@ -1,86 +1,86 @@ - - - - C# 10.0 - - - - $(MSBuildProjectDirectory)\.build - - - - - - - 03.08.01 - 01.00.00 - 01.00.00 - - - - - 03.08.01 - $(BUILD_NUMBER) - $(BUILD_NUMBER) - - - - Release - - - Any CPU - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + C# 10.0 + + + + $(MSBuildProjectDirectory)\.build + + + + + + + 03.08.02 + 01.00.00 + 01.00.00 + + + + + 03.08.02 + $(BUILD_NUMBER) + $(BUILD_NUMBER) + + + + Release + + + Any CPU + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/CommonAssemblyInfo.cs b/CommonAssemblyInfo.cs index 12540af7..3e8b300e 100644 --- a/CommonAssemblyInfo.cs +++ b/CommonAssemblyInfo.cs @@ -1,19 +1,19 @@ -using System; -using System.Reflection; -using System.Resources; -using System.Runtime.InteropServices; - -[assembly: AssemblyCompany("Upendo Ventures, LLC")] -[assembly: AssemblyProduct("Hotcakes Commerce")] -[assembly: AssemblyCopyright("Copyright © Upendo Ventures, LLC")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: CLSCompliant(false)] -[assembly: ComVisible(false)] - -[assembly: AssemblyVersion("3.08.01")] -[assembly: AssemblyDelaySign(false)] -[assembly: AssemblyKeyFile("")] -[assembly: AssemblyKeyName("")] - +using System; +using System.Reflection; +using System.Resources; +using System.Runtime.InteropServices; + +[assembly: AssemblyCompany("Upendo Ventures, LLC")] +[assembly: AssemblyProduct("Hotcakes Commerce")] +[assembly: AssemblyCopyright("Copyright © Upendo Ventures, LLC")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] +[assembly: CLSCompliant(false)] +[assembly: ComVisible(false)] + +[assembly: AssemblyVersion("3.08.02")] +[assembly: AssemblyDelaySign(false)] +[assembly: AssemblyKeyFile("")] +[assembly: AssemblyKeyName("")] + [assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.MainAssembly)] \ No newline at end of file diff --git a/GlobalAssemblyInfo.cs b/GlobalAssemblyInfo.cs index f8f91fd6..e5dd8621 100644 --- a/GlobalAssemblyInfo.cs +++ b/GlobalAssemblyInfo.cs @@ -10,9 +10,9 @@ [assembly: System.Reflection.AssemblyInformationalVersion("01.00.00")] [assembly: System.Reflection.AssemblyConfiguration("Release")] -[assembly: System.Reflection.AssemblyCopyright("Copyright © 2023. All rights reserved.")] +[assembly: System.Reflection.AssemblyCopyright("Copyright © 2024. All rights reserved.")] [assembly: System.Reflection.AssemblyFileVersion("01.00.00")] -[assembly: System.Reflection.AssemblyVersion("03.08.00")] +[assembly: System.Reflection.AssemblyVersion("03.08.02")] @@ -22,11 +22,11 @@ internal sealed partial class ThisAssembly { internal const string AssemblyConfiguration = "Release"; - internal const string AssemblyCopyright = "Copyright © 2023. All rights reserved."; + internal const string AssemblyCopyright = "Copyright © 2024. All rights reserved."; internal const string AssemblyFileVersion = "01.00.00"; - internal const string AssemblyVersion = "03.08.00"; + internal const string AssemblyVersion = "03.08.02"; private ThisAssembly() { } diff --git a/Website/DesktopModules/Hotcakes/Hotcakes.dnn b/Website/DesktopModules/Hotcakes/Hotcakes.dnn index e29cf80f..f1b35b82 100644 --- a/Website/DesktopModules/Hotcakes/Hotcakes.dnn +++ b/Website/DesktopModules/Hotcakes/Hotcakes.dnn @@ -1,2096 +1,2096 @@ - - - - Hotcakes Commerce - - ~/DesktopModules/Hotcakes/Core/Images/hcc-logo.png - - Hotcakes Commerce - Upendo Ventures, LLC - https://hotcakes.org - support@upendoventures.com - - - - true - - 09.08.00 - - - - - Hotcakes.Core - Hotcakes/Core - - - Hotcakes Commerce - Hotcakes Commerce - 0 - - - - DesktopModules/Hotcakes/CategoryViewer/CategoryViewerView.ascx - False - - View - - - False - 0 - - - Settings - DesktopModules/Hotcakes/CategoryViewer/Settings.ascx - False - Hotcakes Category Viewer Settings - Edit - - - False - - - - - - - DotNetNuke.Entities.Modules.EventMessageProcessor, DotNetNuke - UpgradeModule - - Hotcakes.Modules.Core.HotcakesController, Hotcakes.Modules - [DESKTOPMODULEID] - 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,03.03.00,03.04.00,03.04.01,03.05.00,03.06.00,03.07.00,03.08.00,03.08.01 - - - - - - DesktopModules\Hotcakes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - DesktopModules\Hotcakes - - ExtensionUrlProvider - Settings.ascx - - - ExtensionUrlProvider\App_LocalResources - Settings.ascx.resx - - - HotcakesViews.zip - - - ReleaseNotes.txt - - - License.txt - - - hotcakes.config - - - module.css - - - - - - DesktopModules\Hotcakes\Core - - Core.zip - - - - - - Portals\_default\HotcakesViews\_default - - HotcakesViews.zip - - - - - - Portals\_default\HotcakesViews\Bootstrap4 - - Bootstrap4Views.zip - - - - - - Portals\_default\HotcakesViews\_default-Legacy - - LegacyViews.zip - - - - - - Portals\_default\HotcakesViews\Porto5 - - Porto5Views.zip - - - - - - - bin - Hotcakes.Common.Dnn.dll - bin\Hotcakes.Common.Dnn.dll - - - bin - Hotcakes.Commerce.Dnn.dll - bin\Hotcakes.Commerce.Dnn.dll - - - bin - Hotcakes.Modules.dll - bin\Hotcakes.Modules.dll - - - bin - Hotcakes.Commerce.dll - bin\Hotcakes.Commerce.dll - - - bin - Hotcakes.CommerceDTO.dll - bin\Hotcakes.CommerceDTO.dll - - - bin - Hotcakes.Payment.dll - bin\Hotcakes.Payment.dll - - - bin - Hotcakes.PaypalWebServices.dll - bin\Hotcakes.PaypalWebServices.dll - - - bin - Hotcakes.Shipping.dll - bin\Hotcakes.Shipping.dll - - - bin - Hotcakes.Shipping.FedEx.dll - bin\Hotcakes.Shipping.FedEx.dll - - - bin - Hotcakes.Shipping.FedEx.XmlSerializers.dll - bin\Hotcakes.Shipping.FedEx.XmlSerializers.dll - - - bin - Hotcakes.Shipping.Ups.dll - bin\Hotcakes.Shipping.Ups.dll - - - bin - Hotcakes.Shipping.UpsFreight.dll - bin\Hotcakes.Shipping.UpsFreight.dll - - - bin - Hotcakes.Shipping.USPostal.dll - bin\Hotcakes.Shipping.USPostal.dll - - - bin - Hotcakes.Web.dll - bin\Hotcakes.Web.dll - - - bin - Avalara.AvaTax.Adapter.dll - bin\Avalara.AvaTax.Adapter.dll - - - bin - log4net.dll - bin\log4net.dll - 01.02.00 - - - bin - PayPalCheckoutSdk.dll - bin\PayPalCheckoutSdk.dll - 01.00.00.00 - - - bin - PayPalHttp-Dotnet.dll - bin\PayPalHttp-Dotnet.dll - 01.00.01.00 - - - bin - Microsoft.Bcl.AsyncInterfaces.dll - bin\Microsoft.Bcl.AsyncInterfaces.dll - 04.700.19.56404 - - - bin - Stripe.net.dll - bin\Stripe.net.dll - 41.02.00 - - - bin - DocumentFormat.OpenXml.dll - bin\DocumentFormat.OpenXml.dll - 02.00.5022.00 - - - bin - DocumentFormat.OpenXml.Extensions.dll - bin\DocumentFormat.OpenXml.Extensions.dll - 02.01.3842.34318 - - - bin - EntityFramework.dll - bin\EntityFramework.dll - 06.01.01 - - - bin - EntityFramework.SqlServer.dll - bin\EntityFramework.SqlServer.dll - 06.01.01 - - - bin - ImageResizer.dll - bin\ImageResizer.dll - 03.04.02.549 - - - bin - MiniProfiler.dll - bin\MiniProfiler.dll - 03.01.00 - - - bin - MiniProfiler.EntityFramework6.dll - bin\MiniProfiler.EntityFramework6.dll - 03.00.11 - - - bin - BrandonHaynes.ModelAdapter.EntityFramework.dll - bin\BrandonHaynes.ModelAdapter.EntityFramework.dll - 01.00.00 - - - - - - web.config - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Hotcakes Extension Url Provider - - ~/DesktopModules/Hotcakes/Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - - - - Hotcakes Url Extension Provider - Hotcakes.Modules.ExtensionUrlProvider.HccExtensionUrlProvider - DesktopModules/Hotcakes/ExtensionUrlProvider/Settings.ascx - false - true - true - - - - - - - Hotcakes Address Book - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.AddressBook - Hotcakes/AddressBook - - - - - Hotcakes Address Book - Hotcakes Address Book - 0 - - - - DesktopModules/Hotcakes/AddressBook/AddressBookView.ascx - False - - View - - - False - 0 - - - - - - - - - DesktopModules\Hotcakes - - AddressBook - AddressBookView.ascx - - - - - - - - Hotcakes Cart - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.Cart - Hotcakes/Cart - - - - - Hotcakes Cart - Hotcakes Cart - 0 - - - - DesktopModules/Hotcakes/Cart/CartView.ascx - False - - View - - - False - 0 - - - Settings - DesktopModules/Hotcakes/Cart/Settings.ascx - False - Hotcakes Cart Settings - Edit - - - False - - - - - - - - - DesktopModules\Hotcakes - - Cart\App_LocalResources - Settings.ascx.resx - - - Cart - CartView.ascx - - - Cart - Settings.ascx - - - - - - - - Hotcakes Category Menu - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.CategoryMenu - Hotcakes/CategoryMenu - - - - - Hotcakes Category Menu - Hotcakes Category Menu - 0 - - - - DesktopModules/Hotcakes/CategoryMenu/CategoryMenuView.ascx - False - - View - - - False - 0 - - - Settings - DesktopModules/Hotcakes/CategoryMenu/Settings.ascx - False - Hotcakes Category Menu Settings - Edit - - - False - - - - - - - - - DesktopModules\Hotcakes - - CategoryMenu\App_LocalResources - Settings.ascx.resx - - - CategoryMenu - CategoryMenuView.ascx - - - CategoryMenu - Settings.ascx - - - - - - - - Hotcakes Category Viewer - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.CategoryViewer - Hotcakes/CategoryViewer - - - - - - - Hotcakes Category Viewer - Hotcakes Category Viewer - 0 - - - - DesktopModules/Hotcakes/CategoryViewer/CategoryViewerView.ascx - False - - View - - - False - 0 - - - Settings - DesktopModules/Hotcakes/CategoryViewer/Settings.ascx - False - Hotcakes Category Viewer Settings - Edit - - - False - - - - - - - - - DesktopModules\Hotcakes - - CategoryViewer\App_LocalResources - Settings.ascx.resx - - - CategoryViewer - CategoryViewerView.ascx - - - CategoryViewer - Settings.ascx - - - - - - - - Hotcakes Checkout - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.Checkout - Hotcakes/Checkout - - - - - Hotcakes Checkout - Hotcakes Checkout - 0 - - - - DesktopModules/Hotcakes/Checkout/CheckoutView.ascx - False - - View - - - False - 0 - - - PayPalCheckout - DesktopModules/Hotcakes/Checkout/PayPalCheckoutView.ascx - False - - View - - - False - 0 - - - ThirdPartyPayment - DesktopModules/Hotcakes/Checkout/ThirdPartyPaymentView.ascx - False - - View - - - False - 0 - - - Settings - DesktopModules/Hotcakes/Checkout/Settings.ascx - False - Hotcakes Checkout Settings - Edit - - - False - - - - - - - - - DesktopModules\Hotcakes - - Checkout\App_LocalResources - Settings.ascx.resx - - - Checkout - CheckoutView.ascx - - - Checkout - PayPalCheckoutView.ascx - - - Checkout - ThirdPartyPaymentView.ascx - - - Checkout - Settings.ascx - - - - - - - - Hotcakes Featured Products - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.FeaturedProducts - Hotcakes/FeaturedProducts - - - - - Hotcakes Featured Products - Hotcakes Featured Products - 0 - - - - DesktopModules/Hotcakes/FeaturedProducts/FeaturedProductsView.ascx - False - - View - - - False - 0 - - - Settings - DesktopModules/Hotcakes/FeaturedProducts/Settings.ascx - False - Hotcakes Featured Products Settings - Edit - - - False - - - - - - - - - DesktopModules\Hotcakes - - FeaturedProducts\App_LocalResources - Settings.ascx.resx - - - FeaturedProducts - FeaturedProductsView.ascx - - - FeaturedProducts - Settings.ascx - - - - - - - - Hotcakes Last Products Viewed - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.LastProductsViewed - Hotcakes/LastProductsViewed - - - - - Hotcakes Last Products Viewed - Hotcakes Last Products Viewed - 0 - - - - DesktopModules/Hotcakes/LastProductsViewed/LastProductsViewed.ascx - False - - View - - - False - 0 - - - Settings - DesktopModules/Hotcakes/LastProductsViewed/Settings.ascx - False - Hotcakes Last Products Viewed Settings - Edit - - - False - - - - - - - - - DesktopModules\Hotcakes - - LastProductsViewed\App_LocalResources - Settings.ascx.resx - - - LastProductsViewed - LastProductsViewed.ascx - - - LastProductsViewed - Settings.ascx - - - - - - - - Hotcakes Mini Cart - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.MiniCart - Hotcakes/MiniCart - - - - - Hotcakes Mini Cart - Hotcakes Mini Cart - 0 - - - - DesktopModules/Hotcakes/MiniCart/MiniCartView.ascx - False - - View - - - False - 0 - - - Settings - DesktopModules/Hotcakes/MiniCart/Settings.ascx - False - Hotcakes MiniCart Settings - Edit - - - False - - - - - - - - - DesktopModules\Hotcakes - - MiniCart\App_LocalResources - Settings.ascx.resx - - - MiniCart - MiniCartView.ascx - - - MiniCart - Settings.ascx - - - - - - - - Hotcakes Mini Cart SPA SkinObject - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - - - DesktopModules/Hotcakes/MiniCartSkinObject/MiniCartView.ascx - False - - View - - - False - 0 - - - - - - DesktopModules\Hotcakes - - MiniCartSkinObject - MiniCartView.ascx - - - - - - - - Hotcakes Search Input - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.SearchInput - Hotcakes/SearchInput - - - - - Hotcakes Search Input - Hotcakes Search Input - 0 - - - - DesktopModules/Hotcakes/SearchInput/SearchInputView.ascx - False - - View - - - False - 0 - - - Settings - DesktopModules/Hotcakes/SearchInput/Settings.ascx - False - Hotcakes SearchInput Settings - Edit - - - False - - - - - - - - - DesktopModules\Hotcakes - - SearchInput\App_LocalResources - Settings.ascx.resx - - - SearchInput - SearchInputView.ascx - - - SearchInput - Settings.ascx - - - - - - - - HCSKINAFFILIATE SkinObject - - ~/DesktopModules/Hotcakes/Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - HCSKINAFFILIATE - DesktopModules/Hotcakes/SkinAffiliate/SkinAffiliateView.ascx - False - - - - - DesktopModules\Hotcakes - - SkinAffiliate - SkinAffiliateView.ascx - - - - - - - - HCSKINSEARCH SkinObject - - ~/DesktopModules/Hotcakes/Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - HCSKINSEARCH - DesktopModules/Hotcakes/SkinSearch/Search.ascx - False - - - - - DesktopModules\Hotcakes - - SkinSearch - Search.ascx - - - - - - - - Hotcakes Order History - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.OrderHistory - Hotcakes/OrderHistory - - - - - Hotcakes Order History - Hotcakes Order History - 0 - - - - DesktopModules/Hotcakes/OrderHistory/OrderHistoryView.ascx - False - - View - - - False - 0 - - - Settings - DesktopModules/Hotcakes/OrderHistory/Settings.ascx - False - Hotcakes Order History Settings - Edit - - - False - - - - - - - - - DesktopModules\Hotcakes - - OrderHistory\App_LocalResources - Settings.ascx.resx - - - OrderHistory - OrderHistoryView.ascx - - - OrderHistory - Settings.ascx - - - - - - - - Hotcakes Product Grid - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.ProductGrid - Hotcakes/ProductGrid - - - - - Hotcakes Product Grid - Hotcakes Product Grid - 0 - - - - DesktopModules/Hotcakes/ProductGrid/ProductGridView.ascx - False - - View - - - False - 0 - - - Settings - DesktopModules/Hotcakes/ProductGrid/Settings.ascx - False - - Edit - - - False - - - - - - - - - DesktopModules\Hotcakes - - ProductGrid\App_LocalResources - Settings.ascx.resx - - - ProductGrid\ProductGridView.ascx - - - ProductGrid\Settings.ascx - - - - - - - - Hotcakes Product Viewer - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.ProductViewer - Hotcakes/ProductViewer - - - - - - - Hotcakes Product Viewer - Hotcakes Product Viewer - 0 - - - - DesktopModules/Hotcakes/ProductViewer/ProductViewerView.ascx - False - - View - - - False - 0 - - - Settings - DesktopModules/Hotcakes/ProductViewer/Settings.ascx - False - Hotcakes Product Viewer Settings - Edit - - - False - - - - - - - - - DesktopModules\Hotcakes - - ProductViewer\App_LocalResources - Settings.ascx.resx - - - ProductViewer - ProductViewerView.ascx - - - ProductViewer - Settings.ascx - - - - - - - - Hotcakes Product Reviews - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.ProductReviews - Hotcakes/ProductReviews - - - - - Hotcakes Product Reviews - Hotcakes Product Reviews - 0 - - - - DesktopModules/Hotcakes/ProductReviews/ProductReviewsView.ascx - False - - View - - - False - 0 - - - Settings - DesktopModules/Hotcakes/ProductReviews/Settings.ascx - False - Hotcakes Product Reviews Settings - Edit - - - False - - - - - - - - - DesktopModules\Hotcakes - - ProductReviews\App_LocalResources - Settings.ascx.resx - - - ProductReviews - ProductReviewsView.ascx - - - ProductReviews - Settings.ascx - - - - - - - - Hotcakes Content Blocks - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.ContentBlocks - Hotcakes/ContentBlocks - - - - - Hotcakes Content Blocks - Hotcakes Content Blocks - 0 - - - - DesktopModules/Hotcakes/ContentBlocks/ContentBlocksView.ascx - False - - View - - - False - 0 - - - Settings - DesktopModules/Hotcakes/ContentBlocks/Settings.ascx - False - Hotcakes Content Blocks Settings - Edit - - - False - - - - - - - - - DesktopModules\Hotcakes - - ContentBlocks\App_LocalResources - Settings.ascx.resx - - - ContentBlocks - ContentBlocksView.ascx - - - ContentBlocks - Settings.ascx - - - - - - - - Hotcakes Search - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.Search - Hotcakes/Search - - - - - Hotcakes Search - Hotcakes Search - 0 - - - - DesktopModules/Hotcakes/Search/SearchView.ascx - False - - View - - - False - 0 - - - Settings - DesktopModules/Hotcakes/Search/Settings.ascx - False - Hotcakes Search Settings - Edit - - - False - - - - - - - - - DesktopModules\Hotcakes - - Search\App_LocalResources - Settings.ascx.resx - - - Search - SearchView.ascx - - - Search - Settings.ascx - - - - - - - - Hotcakes Top Weekly Sellers - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.TopWeeklySellers - Hotcakes/TopWeeklySellers - - - - - Hotcakes Top Weekly Sellers - Hotcakes Top Weekly Sellers - 0 - - - - DesktopModules/Hotcakes/TopWeeklySellers/TopWeeklySellersView.ascx - False - - View - - - False - 0 - - - Settings - DesktopModules/Hotcakes/TopWeeklySellers/Settings.ascx - False - Hotcakes Top Weekly Sellers Settings - Edit - - - False - - - - - - - - - DesktopModules\Hotcakes - - TopWeeklySellers\App_LocalResources - Settings.ascx.resx - - - TopWeeklySellers - TopWeeklySellersView.ascx - - - TopWeeklySellers - Settings.ascx - - - - - - - - Hotcakes Top 10 Products - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.Top10Products - Hotcakes/Top10Products - - - - - Hotcakes Top 10 Products - Hotcakes Top 10 Products - 0 - - - - DesktopModules/Hotcakes/Top10Products/Top10ProductsView.ascx - False - - View - - - False - 0 - - - Settings - DesktopModules/Hotcakes/Top10Products/Settings.ascx - False - Hotcakes Top 10 Products Settings - Edit - - - False - - - - - - - - - DesktopModules\Hotcakes - - Top10Products\App_LocalResources - Settings.ascx.resx - - - Top10Products - Top10ProductsView.ascx - - - Top10Products - Settings.ascx - - - - - - - - Hotcakes Wish List - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.WishList - Hotcakes/WishList - - - - - Hotcakes Wish List - Hotcakes Wish List - 0 - - - - DesktopModules/Hotcakes/WishList/WishListView.ascx - False - - View - - - False - 0 - - - - - - - - - DesktopModules\Hotcakes - - WishList - WishListView.ascx - - - - - - - - Hotcakes Affiliate Registration - Hotcakes Wish List - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.AffiliateRegistration - Hotcakes/AffiliateRegistration - - - - - Hotcakes Affiliate Registration - Hotcakes Affiliate Registration - 0 - - - - DesktopModules/Hotcakes/AffiliateRegistration/AffiliateRegistrationView.ascx - False - - View - - - False - 0 - - - - - - - - - DesktopModules\Hotcakes - - AffiliateRegistration - AffiliateRegistrationView.ascx - - - - - - - - Hotcakes Affiliate Dashboard - - Core/Images/hcc-logo.png - - Hotcakes Commerce - Hotcakes Commerce, LLC - https://hotcakes.org - support@HotcakesCommerce.com - - - - true - - - - Hotcakes.AffiliateDashboard - Hotcakes/AffiliateDashboard - - - - - Hotcakes Affiliate Dashboard - Hotcakes Affiliate Dashboard - 0 - - - - DesktopModules/Hotcakes/AffiliateDashboard/AffiliateDashboardView.ascx - False - - View - - - False - 0 - - - - - - - - - DesktopModules\Hotcakes - - AffiliateDashboard - AffiliateDashboardView.ascx - - - - - - - + + + + Hotcakes Commerce + + ~/DesktopModules/Hotcakes/Core/Images/hcc-logo.png + + Hotcakes Commerce + Upendo Ventures, LLC + https://www.mmmcommerce.com + solutions@upendoventures.com + + + + true + + 09.08.00 + + + + + Hotcakes.Core + Hotcakes/Core + + + Hotcakes Commerce + Hotcakes Commerce + 0 + + + + DesktopModules/Hotcakes/CategoryViewer/CategoryViewerView.ascx + False + + View + + + False + 0 + + + Settings + DesktopModules/Hotcakes/CategoryViewer/Settings.ascx + False + Hotcakes Category Viewer Settings + Edit + + + False + + + + + + + DotNetNuke.Entities.Modules.EventMessageProcessor, DotNetNuke + UpgradeModule + + Hotcakes.Modules.Core.HotcakesController, Hotcakes.Modules + [DESKTOPMODULEID] + 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,03.03.00,03.04.00,03.04.01,03.05.00,03.06.00,03.07.00,03.08.00,03.08.01,03.08.02 + + + + + + DesktopModules\Hotcakes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + DesktopModules\Hotcakes + + ExtensionUrlProvider + Settings.ascx + + + ExtensionUrlProvider\App_LocalResources + Settings.ascx.resx + + + HotcakesViews.zip + + + ReleaseNotes.txt + + + License.txt + + + hotcakes.config + + + module.css + + + + + + DesktopModules\Hotcakes\Core + + Core.zip + + + + + + Portals\_default\HotcakesViews\_default + + HotcakesViews.zip + + + + + + Portals\_default\HotcakesViews\Bootstrap4 + + Bootstrap4Views.zip + + + + + + Portals\_default\HotcakesViews\_default-Legacy + + LegacyViews.zip + + + + + + Portals\_default\HotcakesViews\Porto5 + + Porto5Views.zip + + + + + + + bin + Hotcakes.Common.Dnn.dll + bin\Hotcakes.Common.Dnn.dll + + + bin + Hotcakes.Commerce.Dnn.dll + bin\Hotcakes.Commerce.Dnn.dll + + + bin + Hotcakes.Modules.dll + bin\Hotcakes.Modules.dll + + + bin + Hotcakes.Commerce.dll + bin\Hotcakes.Commerce.dll + + + bin + Hotcakes.CommerceDTO.dll + bin\Hotcakes.CommerceDTO.dll + + + bin + Hotcakes.Payment.dll + bin\Hotcakes.Payment.dll + + + bin + Hotcakes.PaypalWebServices.dll + bin\Hotcakes.PaypalWebServices.dll + + + bin + Hotcakes.Shipping.dll + bin\Hotcakes.Shipping.dll + + + bin + Hotcakes.Shipping.FedEx.dll + bin\Hotcakes.Shipping.FedEx.dll + + + bin + Hotcakes.Shipping.FedEx.XmlSerializers.dll + bin\Hotcakes.Shipping.FedEx.XmlSerializers.dll + + + bin + Hotcakes.Shipping.Ups.dll + bin\Hotcakes.Shipping.Ups.dll + + + bin + Hotcakes.Shipping.UpsFreight.dll + bin\Hotcakes.Shipping.UpsFreight.dll + + + bin + Hotcakes.Shipping.USPostal.dll + bin\Hotcakes.Shipping.USPostal.dll + + + bin + Hotcakes.Web.dll + bin\Hotcakes.Web.dll + + + bin + Avalara.AvaTax.Adapter.dll + bin\Avalara.AvaTax.Adapter.dll + + + bin + log4net.dll + bin\log4net.dll + 01.02.00 + + + bin + PayPalCheckoutSdk.dll + bin\PayPalCheckoutSdk.dll + 01.00.00.00 + + + bin + PayPalHttp-Dotnet.dll + bin\PayPalHttp-Dotnet.dll + 01.00.01.00 + + + bin + Microsoft.Bcl.AsyncInterfaces.dll + bin\Microsoft.Bcl.AsyncInterfaces.dll + 04.700.19.56404 + + + bin + Stripe.net.dll + bin\Stripe.net.dll + 41.02.00 + + + bin + DocumentFormat.OpenXml.dll + bin\DocumentFormat.OpenXml.dll + 02.00.5022.00 + + + bin + DocumentFormat.OpenXml.Extensions.dll + bin\DocumentFormat.OpenXml.Extensions.dll + 02.01.3842.34318 + + + bin + EntityFramework.dll + bin\EntityFramework.dll + 06.01.01 + + + bin + EntityFramework.SqlServer.dll + bin\EntityFramework.SqlServer.dll + 06.01.01 + + + bin + ImageResizer.dll + bin\ImageResizer.dll + 03.04.02.549 + + + bin + MiniProfiler.dll + bin\MiniProfiler.dll + 03.01.00 + + + bin + MiniProfiler.EntityFramework6.dll + bin\MiniProfiler.EntityFramework6.dll + 03.00.11 + + + bin + BrandonHaynes.ModelAdapter.EntityFramework.dll + bin\BrandonHaynes.ModelAdapter.EntityFramework.dll + 01.00.00 + + + + + + web.config + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hotcakes Extension Url Provider + + ~/DesktopModules/Hotcakes/Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + + + + Hotcakes Url Extension Provider + Hotcakes.Modules.ExtensionUrlProvider.HccExtensionUrlProvider + DesktopModules/Hotcakes/ExtensionUrlProvider/Settings.ascx + false + true + true + + + + + + + Hotcakes Address Book + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.AddressBook + Hotcakes/AddressBook + + + + + Hotcakes Address Book + Hotcakes Address Book + 0 + + + + DesktopModules/Hotcakes/AddressBook/AddressBookView.ascx + False + + View + + + False + 0 + + + + + + + + + DesktopModules\Hotcakes + + AddressBook + AddressBookView.ascx + + + + + + + + Hotcakes Cart + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.Cart + Hotcakes/Cart + + + + + Hotcakes Cart + Hotcakes Cart + 0 + + + + DesktopModules/Hotcakes/Cart/CartView.ascx + False + + View + + + False + 0 + + + Settings + DesktopModules/Hotcakes/Cart/Settings.ascx + False + Hotcakes Cart Settings + Edit + + + False + + + + + + + + + DesktopModules\Hotcakes + + Cart\App_LocalResources + Settings.ascx.resx + + + Cart + CartView.ascx + + + Cart + Settings.ascx + + + + + + + + Hotcakes Category Menu + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.CategoryMenu + Hotcakes/CategoryMenu + + + + + Hotcakes Category Menu + Hotcakes Category Menu + 0 + + + + DesktopModules/Hotcakes/CategoryMenu/CategoryMenuView.ascx + False + + View + + + False + 0 + + + Settings + DesktopModules/Hotcakes/CategoryMenu/Settings.ascx + False + Hotcakes Category Menu Settings + Edit + + + False + + + + + + + + + DesktopModules\Hotcakes + + CategoryMenu\App_LocalResources + Settings.ascx.resx + + + CategoryMenu + CategoryMenuView.ascx + + + CategoryMenu + Settings.ascx + + + + + + + + Hotcakes Category Viewer + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.CategoryViewer + Hotcakes/CategoryViewer + + + + + + + Hotcakes Category Viewer + Hotcakes Category Viewer + 0 + + + + DesktopModules/Hotcakes/CategoryViewer/CategoryViewerView.ascx + False + + View + + + False + 0 + + + Settings + DesktopModules/Hotcakes/CategoryViewer/Settings.ascx + False + Hotcakes Category Viewer Settings + Edit + + + False + + + + + + + + + DesktopModules\Hotcakes + + CategoryViewer\App_LocalResources + Settings.ascx.resx + + + CategoryViewer + CategoryViewerView.ascx + + + CategoryViewer + Settings.ascx + + + + + + + + Hotcakes Checkout + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.Checkout + Hotcakes/Checkout + + + + + Hotcakes Checkout + Hotcakes Checkout + 0 + + + + DesktopModules/Hotcakes/Checkout/CheckoutView.ascx + False + + View + + + False + 0 + + + PayPalCheckout + DesktopModules/Hotcakes/Checkout/PayPalCheckoutView.ascx + False + + View + + + False + 0 + + + ThirdPartyPayment + DesktopModules/Hotcakes/Checkout/ThirdPartyPaymentView.ascx + False + + View + + + False + 0 + + + Settings + DesktopModules/Hotcakes/Checkout/Settings.ascx + False + Hotcakes Checkout Settings + Edit + + + False + + + + + + + + + DesktopModules\Hotcakes + + Checkout\App_LocalResources + Settings.ascx.resx + + + Checkout + CheckoutView.ascx + + + Checkout + PayPalCheckoutView.ascx + + + Checkout + ThirdPartyPaymentView.ascx + + + Checkout + Settings.ascx + + + + + + + + Hotcakes Featured Products + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.FeaturedProducts + Hotcakes/FeaturedProducts + + + + + Hotcakes Featured Products + Hotcakes Featured Products + 0 + + + + DesktopModules/Hotcakes/FeaturedProducts/FeaturedProductsView.ascx + False + + View + + + False + 0 + + + Settings + DesktopModules/Hotcakes/FeaturedProducts/Settings.ascx + False + Hotcakes Featured Products Settings + Edit + + + False + + + + + + + + + DesktopModules\Hotcakes + + FeaturedProducts\App_LocalResources + Settings.ascx.resx + + + FeaturedProducts + FeaturedProductsView.ascx + + + FeaturedProducts + Settings.ascx + + + + + + + + Hotcakes Last Products Viewed + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.LastProductsViewed + Hotcakes/LastProductsViewed + + + + + Hotcakes Last Products Viewed + Hotcakes Last Products Viewed + 0 + + + + DesktopModules/Hotcakes/LastProductsViewed/LastProductsViewed.ascx + False + + View + + + False + 0 + + + Settings + DesktopModules/Hotcakes/LastProductsViewed/Settings.ascx + False + Hotcakes Last Products Viewed Settings + Edit + + + False + + + + + + + + + DesktopModules\Hotcakes + + LastProductsViewed\App_LocalResources + Settings.ascx.resx + + + LastProductsViewed + LastProductsViewed.ascx + + + LastProductsViewed + Settings.ascx + + + + + + + + Hotcakes Mini Cart + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.MiniCart + Hotcakes/MiniCart + + + + + Hotcakes Mini Cart + Hotcakes Mini Cart + 0 + + + + DesktopModules/Hotcakes/MiniCart/MiniCartView.ascx + False + + View + + + False + 0 + + + Settings + DesktopModules/Hotcakes/MiniCart/Settings.ascx + False + Hotcakes MiniCart Settings + Edit + + + False + + + + + + + + + DesktopModules\Hotcakes + + MiniCart\App_LocalResources + Settings.ascx.resx + + + MiniCart + MiniCartView.ascx + + + MiniCart + Settings.ascx + + + + + + + + Hotcakes Mini Cart SPA SkinObject + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + + + DesktopModules/Hotcakes/MiniCartSkinObject/MiniCartView.ascx + False + + View + + + False + 0 + + + + + + DesktopModules\Hotcakes + + MiniCartSkinObject + MiniCartView.ascx + + + + + + + + Hotcakes Search Input + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.SearchInput + Hotcakes/SearchInput + + + + + Hotcakes Search Input + Hotcakes Search Input + 0 + + + + DesktopModules/Hotcakes/SearchInput/SearchInputView.ascx + False + + View + + + False + 0 + + + Settings + DesktopModules/Hotcakes/SearchInput/Settings.ascx + False + Hotcakes SearchInput Settings + Edit + + + False + + + + + + + + + DesktopModules\Hotcakes + + SearchInput\App_LocalResources + Settings.ascx.resx + + + SearchInput + SearchInputView.ascx + + + SearchInput + Settings.ascx + + + + + + + + HCSKINAFFILIATE SkinObject + + ~/DesktopModules/Hotcakes/Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + HCSKINAFFILIATE + DesktopModules/Hotcakes/SkinAffiliate/SkinAffiliateView.ascx + False + + + + + DesktopModules\Hotcakes + + SkinAffiliate + SkinAffiliateView.ascx + + + + + + + + HCSKINSEARCH SkinObject + + ~/DesktopModules/Hotcakes/Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + HCSKINSEARCH + DesktopModules/Hotcakes/SkinSearch/Search.ascx + False + + + + + DesktopModules\Hotcakes + + SkinSearch + Search.ascx + + + + + + + + Hotcakes Order History + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.OrderHistory + Hotcakes/OrderHistory + + + + + Hotcakes Order History + Hotcakes Order History + 0 + + + + DesktopModules/Hotcakes/OrderHistory/OrderHistoryView.ascx + False + + View + + + False + 0 + + + Settings + DesktopModules/Hotcakes/OrderHistory/Settings.ascx + False + Hotcakes Order History Settings + Edit + + + False + + + + + + + + + DesktopModules\Hotcakes + + OrderHistory\App_LocalResources + Settings.ascx.resx + + + OrderHistory + OrderHistoryView.ascx + + + OrderHistory + Settings.ascx + + + + + + + + Hotcakes Product Grid + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.ProductGrid + Hotcakes/ProductGrid + + + + + Hotcakes Product Grid + Hotcakes Product Grid + 0 + + + + DesktopModules/Hotcakes/ProductGrid/ProductGridView.ascx + False + + View + + + False + 0 + + + Settings + DesktopModules/Hotcakes/ProductGrid/Settings.ascx + False + + Edit + + + False + + + + + + + + + DesktopModules\Hotcakes + + ProductGrid\App_LocalResources + Settings.ascx.resx + + + ProductGrid\ProductGridView.ascx + + + ProductGrid\Settings.ascx + + + + + + + + Hotcakes Product Viewer + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.ProductViewer + Hotcakes/ProductViewer + + + + + + + Hotcakes Product Viewer + Hotcakes Product Viewer + 0 + + + + DesktopModules/Hotcakes/ProductViewer/ProductViewerView.ascx + False + + View + + + False + 0 + + + Settings + DesktopModules/Hotcakes/ProductViewer/Settings.ascx + False + Hotcakes Product Viewer Settings + Edit + + + False + + + + + + + + + DesktopModules\Hotcakes + + ProductViewer\App_LocalResources + Settings.ascx.resx + + + ProductViewer + ProductViewerView.ascx + + + ProductViewer + Settings.ascx + + + + + + + + Hotcakes Product Reviews + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.ProductReviews + Hotcakes/ProductReviews + + + + + Hotcakes Product Reviews + Hotcakes Product Reviews + 0 + + + + DesktopModules/Hotcakes/ProductReviews/ProductReviewsView.ascx + False + + View + + + False + 0 + + + Settings + DesktopModules/Hotcakes/ProductReviews/Settings.ascx + False + Hotcakes Product Reviews Settings + Edit + + + False + + + + + + + + + DesktopModules\Hotcakes + + ProductReviews\App_LocalResources + Settings.ascx.resx + + + ProductReviews + ProductReviewsView.ascx + + + ProductReviews + Settings.ascx + + + + + + + + Hotcakes Content Blocks + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.ContentBlocks + Hotcakes/ContentBlocks + + + + + Hotcakes Content Blocks + Hotcakes Content Blocks + 0 + + + + DesktopModules/Hotcakes/ContentBlocks/ContentBlocksView.ascx + False + + View + + + False + 0 + + + Settings + DesktopModules/Hotcakes/ContentBlocks/Settings.ascx + False + Hotcakes Content Blocks Settings + Edit + + + False + + + + + + + + + DesktopModules\Hotcakes + + ContentBlocks\App_LocalResources + Settings.ascx.resx + + + ContentBlocks + ContentBlocksView.ascx + + + ContentBlocks + Settings.ascx + + + + + + + + Hotcakes Search + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.Search + Hotcakes/Search + + + + + Hotcakes Search + Hotcakes Search + 0 + + + + DesktopModules/Hotcakes/Search/SearchView.ascx + False + + View + + + False + 0 + + + Settings + DesktopModules/Hotcakes/Search/Settings.ascx + False + Hotcakes Search Settings + Edit + + + False + + + + + + + + + DesktopModules\Hotcakes + + Search\App_LocalResources + Settings.ascx.resx + + + Search + SearchView.ascx + + + Search + Settings.ascx + + + + + + + + Hotcakes Top Weekly Sellers + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.TopWeeklySellers + Hotcakes/TopWeeklySellers + + + + + Hotcakes Top Weekly Sellers + Hotcakes Top Weekly Sellers + 0 + + + + DesktopModules/Hotcakes/TopWeeklySellers/TopWeeklySellersView.ascx + False + + View + + + False + 0 + + + Settings + DesktopModules/Hotcakes/TopWeeklySellers/Settings.ascx + False + Hotcakes Top Weekly Sellers Settings + Edit + + + False + + + + + + + + + DesktopModules\Hotcakes + + TopWeeklySellers\App_LocalResources + Settings.ascx.resx + + + TopWeeklySellers + TopWeeklySellersView.ascx + + + TopWeeklySellers + Settings.ascx + + + + + + + + Hotcakes Top 10 Products + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.Top10Products + Hotcakes/Top10Products + + + + + Hotcakes Top 10 Products + Hotcakes Top 10 Products + 0 + + + + DesktopModules/Hotcakes/Top10Products/Top10ProductsView.ascx + False + + View + + + False + 0 + + + Settings + DesktopModules/Hotcakes/Top10Products/Settings.ascx + False + Hotcakes Top 10 Products Settings + Edit + + + False + + + + + + + + + DesktopModules\Hotcakes + + Top10Products\App_LocalResources + Settings.ascx.resx + + + Top10Products + Top10ProductsView.ascx + + + Top10Products + Settings.ascx + + + + + + + + Hotcakes Wish List + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.WishList + Hotcakes/WishList + + + + + Hotcakes Wish List + Hotcakes Wish List + 0 + + + + DesktopModules/Hotcakes/WishList/WishListView.ascx + False + + View + + + False + 0 + + + + + + + + + DesktopModules\Hotcakes + + WishList + WishListView.ascx + + + + + + + + Hotcakes Affiliate Registration + Hotcakes Wish List + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.AffiliateRegistration + Hotcakes/AffiliateRegistration + + + + + Hotcakes Affiliate Registration + Hotcakes Affiliate Registration + 0 + + + + DesktopModules/Hotcakes/AffiliateRegistration/AffiliateRegistrationView.ascx + False + + View + + + False + 0 + + + + + + + + + DesktopModules\Hotcakes + + AffiliateRegistration + AffiliateRegistrationView.ascx + + + + + + + + Hotcakes Affiliate Dashboard + + Core/Images/hcc-logo.png + + Hotcakes Commerce + Hotcakes Commerce, LLC + https://hotcakes.org + support@HotcakesCommerce.com + + + + true + + + + Hotcakes.AffiliateDashboard + Hotcakes/AffiliateDashboard + + + + + Hotcakes Affiliate Dashboard + Hotcakes Affiliate Dashboard + 0 + + + + DesktopModules/Hotcakes/AffiliateDashboard/AffiliateDashboardView.ascx + False + + View + + + False + 0 + + + + + + + + + DesktopModules\Hotcakes + + AffiliateDashboard + AffiliateDashboardView.ascx + + + + + + + \ No newline at end of file diff --git a/Website/DesktopModules/Hotcakes/Hotcakes_Symbols.dnn b/Website/DesktopModules/Hotcakes/Hotcakes_Symbols.dnn index a03c41ad..c45e9cf7 100644 --- a/Website/DesktopModules/Hotcakes/Hotcakes_Symbols.dnn +++ b/Website/DesktopModules/Hotcakes/Hotcakes_Symbols.dnn @@ -1,32 +1,32 @@ - - - - Hotcakes Commerce Symbols - - ~/DesktopModules/Hotcakes/Core/Images/hcc-logo.png - - Hotcakes Commerce - Upendo Ventures, LLC - https://hotcakes.org - support@upendoventures.com - - - - true - - 09.08.00 - Hotcakes.Core - - - - - - - Resources.zip - - - - - - - + + + + Hotcakes Commerce Symbols + + ~/DesktopModules/Hotcakes/Core/Images/hcc-logo.png + + Hotcakes Commerce + Upendo Ventures, LLC + https://www.mmmcommerce.com + solutions@upendoventures.com + + + + true + + 09.08.00 + Hotcakes.Core + + + + + + + Resources.zip + + + + + + + diff --git a/Website/DesktopModules/Hotcakes/License.txt b/Website/DesktopModules/Hotcakes/License.txt index a12f81e3..b5f6d8d2 100644 --- a/Website/DesktopModules/Hotcakes/License.txt +++ b/Website/DesktopModules/Hotcakes/License.txt @@ -1,18 +1,18 @@ - -
-

The MIT License (MIT)

- -

Copyright (c) 2013-2019 Hotcakes Commerce, LLC (https://mmmcommerce.com)

- -

Copyright (c) 2020-2023 Upendo Ventures, LLC (https://upendoventures.com/What/CMS/DNN)

- -

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

- -

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

- -

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+ +
+

The MIT License (MIT)

+ +

Copyright (c) 2013-2019 Hotcakes Commerce, LLC (https://mmmcommerce.com)

+ +

Copyright (c) 2020-2024 Upendo Ventures, LLC (https://upendoventures.com/What/CMS/DNN)

+ +

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

+ +

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

+ +

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

\ No newline at end of file diff --git a/Website/DesktopModules/Hotcakes/ReleaseNotes.txt b/Website/DesktopModules/Hotcakes/ReleaseNotes.txt index 94dc7bde..fd9c84d8 100644 --- a/Website/DesktopModules/Hotcakes/ReleaseNotes.txt +++ b/Website/DesktopModules/Hotcakes/ReleaseNotes.txt @@ -1,62 +1,62 @@ - -
-

Hotcakes Commerce: Version 03.08.01

- -

The release notes continue after the Sponsors and Contributors below.

- -

Sponsors

-

Open-source is not free. We're so GRATEFUL for the following people/organizations for sponsoring developers to work on this release!

-

Sponsorship is Powered by GitHub Sponsors and ensures that this project lives and thrives. Please consider contributing any amount.

-

THANK YOU to the following rockstars!

- - -

Contributors

-

THANK YOU to the following community members for participating in this release!

- - -

Partners

-

THANK YOU to the following partners for participating in this release!

- - -

Release Note Prefixes

-

The following prefixes are defined as:

- - -

Enhancements

-
    -
  • None at this time.
  • - -
- -

Maintenance Updates

- + +
+

Hotcakes Commerce: Version 03.08.02

+ +

The release notes continue after the Sponsors and Contributors below.

+ +

Sponsors

+

Open-source is not free. We're so GRATEFUL for the following people/organizations for sponsoring developers to work on this release!

+

Sponsorship is Powered by GitHub Sponsors and ensures that this project lives and thrives. Please consider contributing any amount.

+

THANK YOU to the following rockstars!

+ + +

Contributors

+

THANK YOU to the following community members for participating in this release!

+ + +

Partners

+

THANK YOU to the following partners for participating in this release!

+ + +

Release Note Prefixes

+

The following prefixes are defined as:

+ + +

Enhancements

+
    +
  • None at this time.
  • + +
+ +

Maintenance Updates

+
\ No newline at end of file From de2ec138a0d3acd66d7c0be88c6f7d0856ad5468 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Liban=20Vel=C3=A1zquez=20Silva?= Date: Wed, 6 Nov 2024 11:51:03 -0500 Subject: [PATCH 3/7] Update Index.cshtml Update ViewSet _default --- .../_default/HotcakesViews/_default/Views/Search/Index.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Website/Portals/_default/HotcakesViews/_default/Views/Search/Index.cshtml b/Website/Portals/_default/HotcakesViews/_default/Views/Search/Index.cshtml index 5e7e6967..5fed9ff7 100644 --- a/Website/Portals/_default/HotcakesViews/_default/Views/Search/Index.cshtml +++ b/Website/Portals/_default/HotcakesViews/_default/Views/Search/Index.cshtml @@ -18,7 +18,7 @@
- @Model.Products.Count + @Model.PagerData.TotalItems @if (Model.Products.Count > 1){ @Localization.GetString("ProductsFound") }else{ From e3dcab7b068ee08c8dd2283bbad02b6080cb16de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Liban=20Vel=C3=A1zquez=20Silva?= Date: Wed, 6 Nov 2024 11:51:23 -0500 Subject: [PATCH 4/7] Update Index.cshtml Update ViewSet Bootstrap4 --- .../_default/HotcakesViews/Bootstrap4/Views/Search/Index.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Website/Portals/_default/HotcakesViews/Bootstrap4/Views/Search/Index.cshtml b/Website/Portals/_default/HotcakesViews/Bootstrap4/Views/Search/Index.cshtml index 7a6930d0..b3382a5c 100644 --- a/Website/Portals/_default/HotcakesViews/Bootstrap4/Views/Search/Index.cshtml +++ b/Website/Portals/_default/HotcakesViews/Bootstrap4/Views/Search/Index.cshtml @@ -19,7 +19,7 @@
- @Model.Products.Count + @Model.PagerData.TotalItems @if (Model.Products.Count > 1){ @Localization.GetString("ProductsFound") }else{ From 65e84f136609d15d697cc4ab941dd89e1fe52446 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Liban=20Vel=C3=A1zquez=20Silva?= Date: Wed, 6 Nov 2024 11:51:42 -0500 Subject: [PATCH 5/7] Update Index.cshtml Update ViewSet Porto5 --- .../_default/HotcakesViews/Porto5/Views/Search/Index.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Website/Portals/_default/HotcakesViews/Porto5/Views/Search/Index.cshtml b/Website/Portals/_default/HotcakesViews/Porto5/Views/Search/Index.cshtml index 2c02c425..38fbf19f 100644 --- a/Website/Portals/_default/HotcakesViews/Porto5/Views/Search/Index.cshtml +++ b/Website/Portals/_default/HotcakesViews/Porto5/Views/Search/Index.cshtml @@ -15,7 +15,7 @@
- @Model.Products.Count + @Model.PagerData.TotalItems @if (Model.Products.Count > 1){ @Localization.GetString("ProductsFound") }else{ From 7e6f421835fde7efea1e5c28f93b6d113acb0a9d Mon Sep 17 00:00:00 2001 From: Will Strohl Date: Mon, 18 Nov 2024 13:39:29 -0800 Subject: [PATCH 6/7] Resolved build issue by adding missing references --- Libraries/Hotcakes.Commerce.Dnn/App.Config | 12 +++++++++ Libraries/Hotcakes.Commerce.NoCms/App.config | 12 +++++++++ .../Hotcakes.Commerce.csproj | 26 +++++++++++++------ Libraries/Hotcakes.Commerce/packages.config | 4 +++ Website/DesktopModules/Hotcakes/web.config | 12 +++++++++ 5 files changed, 58 insertions(+), 8 deletions(-) diff --git a/Libraries/Hotcakes.Commerce.Dnn/App.Config b/Libraries/Hotcakes.Commerce.Dnn/App.Config index 320fbc8f..e6f15a71 100644 --- a/Libraries/Hotcakes.Commerce.Dnn/App.Config +++ b/Libraries/Hotcakes.Commerce.Dnn/App.Config @@ -47,6 +47,18 @@ + + + + + + + + + + + + diff --git a/Libraries/Hotcakes.Commerce.NoCms/App.config b/Libraries/Hotcakes.Commerce.NoCms/App.config index 9389e00b..24ce9df7 100644 --- a/Libraries/Hotcakes.Commerce.NoCms/App.config +++ b/Libraries/Hotcakes.Commerce.NoCms/App.config @@ -24,6 +24,18 @@ + + + + + + + + + + + + diff --git a/Libraries/Hotcakes.Commerce/Hotcakes.Commerce.csproj b/Libraries/Hotcakes.Commerce/Hotcakes.Commerce.csproj index 946092f6..4f3093b4 100644 --- a/Libraries/Hotcakes.Commerce/Hotcakes.Commerce.csproj +++ b/Libraries/Hotcakes.Commerce/Hotcakes.Commerce.csproj @@ -85,6 +85,9 @@ ..\..\packages\log4net.1.2.10\lib\2.0\log4net.dll True + + ..\..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll + ..\..\packages\MiniProfiler.3.1.1.140\lib\net40\MiniProfiler.dll @@ -116,19 +119,26 @@ + - - False - ..\..\References\Dnn\System.Web.Helpers.dll + + ..\..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.Helpers.dll - - False + ..\..\packages\Microsoft.AspNet.Mvc.4.0.40804.0\lib\net40\System.Web.Mvc.dll + + ..\..\packages\Microsoft.AspNet.Razor.2.0.20710.0\lib\net40\System.Web.Razor.dll + - - False - ..\..\References\Dnn\System.Web.WebPages.dll + + ..\..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.WebPages.dll + + + ..\..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.WebPages.Deployment.dll + + + ..\..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.WebPages.Razor.dll diff --git a/Libraries/Hotcakes.Commerce/packages.config b/Libraries/Hotcakes.Commerce/packages.config index 60e4833f..34f2accc 100644 --- a/Libraries/Hotcakes.Commerce/packages.config +++ b/Libraries/Hotcakes.Commerce/packages.config @@ -2,6 +2,10 @@ + + + + diff --git a/Website/DesktopModules/Hotcakes/web.config b/Website/DesktopModules/Hotcakes/web.config index b4d09018..7913fbb1 100644 --- a/Website/DesktopModules/Hotcakes/web.config +++ b/Website/DesktopModules/Hotcakes/web.config @@ -54,6 +54,18 @@ + + + + + + + + + + + + From 834c9f05afc202f569f128267bc64d10ec2b27a1 Mon Sep 17 00:00:00 2001 From: Will Strohl Date: Mon, 18 Nov 2024 13:39:44 -0800 Subject: [PATCH 7/7] Updated release notes for added PR --- Website/DesktopModules/Hotcakes/ReleaseNotes.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Website/DesktopModules/Hotcakes/ReleaseNotes.txt b/Website/DesktopModules/Hotcakes/ReleaseNotes.txt index fd9c84d8..cabeef8d 100644 --- a/Website/DesktopModules/Hotcakes/ReleaseNotes.txt +++ b/Website/DesktopModules/Hotcakes/ReleaseNotes.txt @@ -53,7 +53,9 @@

Maintenance Updates