Skip to content

Commit

Permalink
Set version to 4.40
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanovM authored and rock007 committed Jun 13, 2020
1 parent 32b190f commit f0ed46c
Show file tree
Hide file tree
Showing 41 changed files with 150 additions and 58 deletions.
2 changes: 1 addition & 1 deletion src/Libraries/Nop.Core/Nop.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Copyright>Copyright © Nop Solutions, Ltd</Copyright>
<Company>Nop Solutions, Ltd</Company>
<Authors>Nop Solutions, Ltd</Authors>
<Version>4.3.0.0</Version>
<Version>4.4.0.0</Version>
<Description>The Nop.Core project contains a set of core classes for nopCommerce, such as caching, events, helpers, and business objects (for example, Order and Customer entities).</Description>
<PackageLicenseUrl>https://www.nopcommerce.com/license</PackageLicenseUrl>
<PackageProjectUrl>https://www.nopcommerce.com/</PackageProjectUrl>
Expand Down
6 changes: 3 additions & 3 deletions src/Libraries/Nop.Core/NopVersion.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
namespace Nop.Core
{
/// <summary>
/// nopCommere version
/// Represents nopCommerce version
/// </summary>
public static class NopVersion
{
/// <summary>
/// Gets or sets the store version
/// </summary>
public static string CurrentVersion { get; } = "4.30";
public static string CurrentVersion => "4.40";
}
}
}
4 changes: 2 additions & 2 deletions src/Libraries/Nop.Data/Nop.Data.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<Copyright>Copyright © Nop Solutions, Ltd</Copyright>
<Company>Nop Solutions, Ltd</Company>
<Authors>Nop Solutions, Ltd</Authors>
<Version>4.3.0.0</Version>
<Description>The Nop.Data project contains a set of classes and functions for reading from and writing to a database or other data store. It helps separate data-access logic from your business objects. nopCommerce uses the Entity Framework (EF) Code-First approach. It allows you to define entities in the source code (all core entities are defined into Nop.Core project), and then get EF to generate the database from that. That's why it's called Code-First. You can then query your objects using LINQ, which gets translated to SQL behind the scenes and executed against the database. nopCommerces use a fluent code API to fully customize the persistence mapping.</Description>
<Version>4.4.0.0</Version>
<Description>The Nop.Data project contains a set of classes and functions for reading from and writing to a database or other data store. It helps separate data-access logic from your business objects.</Description>
<PackageLicenseUrl>https://www.nopcommerce.com/license</PackageLicenseUrl>
<PackageProjectUrl>https://www.nopcommerce.com/</PackageProjectUrl>
<RepositoryUrl>https://github.com/nopSolutions/nopCommerce</RepositoryUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/Libraries/Nop.Services/Nop.Services.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Copyright>Copyright © Nop Solutions, Ltd</Copyright>
<Company>Nop Solutions, Ltd</Company>
<Authors>Nop Solutions, Ltd</Authors>
<Version>4.3.0.0</Version>
<Version>4.4.0.0</Version>
<Description>This project contains a set of core services, business logic, validations or calculations related with the data, if needed. Some people call it Business Access Layer (BAL).</Description>
<PackageLicenseUrl>https://www.nopcommerce.com/license</PackageLicenseUrl>
<PackageProjectUrl>https://www.nopcommerce.com/</PackageProjectUrl>
Expand Down
16 changes: 8 additions & 8 deletions src/Libraries/Nop.Services/Plugins/Samples/uploadedItems.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,27 @@
"SourceDirectoryPath": "DiscountRules.CustomerRoles/nopCommerce 3.90/Nop.Plugin.DiscountRules.CustomerRoles/"
},

//"Must be assigned to customer role" discount rule for version 4.30
//"Must be assigned to customer role" discount rule for version 4.40
{
"Type": "Plugin",
"SupportedVersion": "4.30",
"DirectoryPath": "DiscountRules.CustomerRoles/nopCommerce 4.30/DiscountRules.CustomerRoles/",
"SupportedVersion": "4.40",
"DirectoryPath": "DiscountRules.CustomerRoles/nopCommerce 4.40/DiscountRules.CustomerRoles/",
"SystemName": "DiscountRequirement.MustBeAssignedToCustomerRole",
"SourceDirectoryPath": "DiscountRules.CustomerRoles/nopCommerce 4.30/Nop.Plugin.DiscountRules.CustomerRoles/"
"SourceDirectoryPath": "DiscountRules.CustomerRoles/nopCommerce 4.40/Nop.Plugin.DiscountRules.CustomerRoles/"
},

//"Has one product" discount rule for version 4.30
//"Has one product" discount rule for version 4.40
{
"Type": "Plugin",
"SupportedVersion": "4.30",
"SupportedVersion": "4.40",
"DirectoryPath": "DiscountRules.HasOneProduct/",
"SystemName": "DiscountRequirement.HasOneProduct"
},

//"Default clean" theme for version 4.30
//"Default clean" theme for version 4.40
{
"Type": "Theme",
"SupportedVersion": "4.30",
"SupportedVersion": "4.40",
"DirectoryPath": "DefaultClean/"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "Must be assigned to customer role",
"SystemName": "DiscountRequirement.MustBeAssignedToCustomerRole",
"Version": "1.34",
"SupportedVersions": [ "4.30" ],
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
"FileName": "Nop.Plugin.DiscountRules.CustomerRoles.dll",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "ECB exchange rate provider",
"SystemName": "CurrencyExchange.ECB",
"Version": "1.26",
"SupportedVersions": [ "4.30" ],
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
"FileName": "Nop.Plugin.ExchangeRate.EcbExchange.dll",
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/Nop.Plugin.ExternalAuth.Facebook/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "Facebook authentication",
"SystemName": "ExternalAuth.Facebook",
"Version": "1.63",
"SupportedVersions": [ "4.30" ],
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 5,
"FileName": "Nop.Plugin.ExternalAuth.Facebook.dll",
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/Nop.Plugin.Misc.SendinBlue/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "SendinBlue",
"SystemName": "Misc.SendinBlue",
"Version": "3.26",
"SupportedVersions": [ "4.30" ],
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
"FileName": "Nop.Plugin.Misc.SendinBlue.dll",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "Check / Money Order",
"SystemName": "Payments.CheckMoneyOrder",
"Version": "1.44",
"SupportedVersions": [ "4.30" ],
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
"FileName": "Nop.Plugin.Payments.CheckMoneyOrder.dll",
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/Nop.Plugin.Payments.Manual/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "Credit Card",
"SystemName": "Payments.Manual",
"Version": "1.53",
"SupportedVersions": [ "4.30" ],
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
"FileName": "Nop.Plugin.Payments.Manual.dll",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "PayPal Smart Payment Buttons",
"SystemName": "Payments.PayPalSmartPaymentButtons",
"Version": "1.13",
"SupportedVersions": [ "4.30" ],
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
"FileName": "Nop.Plugin.Payments.PayPalSmartPaymentButtons.dll",
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/Nop.Plugin.Payments.PayPalStandard/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "PayPal Standard",
"SystemName": "Payments.PayPalStandard",
"Version": "1.60",
"SupportedVersions": [ "4.30" ],
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
"FileName": "Nop.Plugin.Payments.PayPalStandard.dll",
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/Nop.Plugin.Pickup.PickupInStore/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "Pickup in store",
"SystemName": "Pickup.PickupInStore",
"Version": "1.34",
"SupportedVersions": [ "4.30" ],
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
"FileName": "Nop.Plugin.Pickup.PickupInStore.dll",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "Manual (Fixed or By Weight and By Total)",
"SystemName": "Shipping.FixedByWeightByTotal",
"Version": "2.23",
"SupportedVersions": [ "4.30" ],
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
"FileName": "Nop.Plugin.Shipping.FixedByWeightByTotal.dll",
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/Nop.Plugin.Shipping.ShipStation/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "ShipStation",
"SystemName": "Shipping.ShipStation",
"Version": "1.06",
"SupportedVersions": [ "4.30" ],
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
"FileName": "Nop.Plugin.Shipping.ShipStation.dll",
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/Nop.Plugin.Shipping.UPS/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "UPS (United Parcel Service)",
"SystemName": "Shipping.UPS",
"Version": "1.60",
"SupportedVersions": [ "4.30" ],
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
"FileName": "Nop.Plugin.Shipping.UPS.dll",
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/Nop.Plugin.Tax.Avalara/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "Avalara tax provider",
"SystemName": "Tax.Avalara",
"Version": "2.35",
"SupportedVersions": [ "4.30" ],
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
"FileName": "Nop.Plugin.Tax.Avalara.dll",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "Manual (Fixed or By Country/State/Zip)",
"SystemName": "Tax.FixedOrByCountryStateZip",
"Version": "1.33",
"SupportedVersions": [ "4.30" ],
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
"FileName": "Nop.Plugin.Tax.FixedOrByCountryStateZip.dll",
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/Nop.Plugin.Widgets.FacebookPixel/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "Facebook Pixel",
"SystemName": "Widgets.FacebookPixel",
"Version": "1.02",
"SupportedVersions": [ "4.30" ],
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
"FileName": "Nop.Plugin.Widgets.FacebookPixel.dll",
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/Nop.Plugin.Widgets.GoogleAnalytics/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "Google Analytics",
"SystemName": "Widgets.GoogleAnalytics",
"Version": "1.62",
"SupportedVersions": [ "4.30" ],
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team, Nicolas Muniere",
"DisplayOrder": 1,
"FileName": "Nop.Plugin.Widgets.GoogleAnalytics.dll",
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/Nop.Plugin.Widgets.NivoSlider/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "Nivo Slider",
"SystemName": "Widgets.NivoSlider",
"Version": "1.38",
"SupportedVersions": [ "4.30" ],
"SupportedVersions": [ "4.40" ],
"Author": "nopCommerce team",
"DisplayOrder": 1,
"FileName": "Nop.Plugin.Widgets.NivoSlider.dll",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Copyright>Copyright © Nop Solutions, Ltd</Copyright>
<Company>Nop Solutions, Ltd</Company>
<Authors>Nop Solutions, Ltd</Authors>
<Version>4.3.0.0</Version>
<Version>4.4.0.0</Version>
<Description>Nop.Web.Framework is a class library project containing some common presentation things for Nop.Web project</Description>
<PackageLicenseUrl>https://www.nopcommerce.com/license</PackageLicenseUrl>
<PackageProjectUrl>https://www.nopcommerce.com/</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/Presentation/Nop.Web/Nop.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Copyright>Copyright © Nop Solutions, Ltd</Copyright>
<Company>Nop Solutions, Ltd</Company>
<Authors>Nop Solutions, Ltd</Authors>
<Version>4.3.0.0</Version>
<Version>4.4.0.0</Version>
<Description>Nop.Web is also an MVC web application project, a presentation layer for public store and admin area.</Description>
<PackageLicenseUrl>https://www.nopcommerce.com/license</PackageLicenseUrl>
<PackageProjectUrl>https://www.nopcommerce.com/</PackageProjectUrl>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<browserconfig>
<msapplication>
<tile>
<square70x70logo src="/icons/icons_0/mstile-70x70.png?v=4.30"/>
<square150x150logo src="/icons/icons_0/mstile-150x150.png?v=4.30"/>
<square310x310logo src="/icons/icons_0/mstile-310x310.png?v=4.30"/>
<wide310x150logo src="/icons/icons_0/mstile-310x150.png?v=4.30"/>
<square70x70logo src="/icons/icons_0/mstile-70x70.png?v=4.40"/>
<square150x150logo src="/icons/icons_0/mstile-150x150.png?v=4.40"/>
<square310x310logo src="/icons/icons_0/mstile-310x310.png?v=4.40"/>
<wide310x150logo src="/icons/icons_0/mstile-310x150.png?v=4.40"/>
<TileColor>#2b5797</TileColor>
</tile>
</msapplication>
Expand Down
18 changes: 9 additions & 9 deletions src/Presentation/Nop.Web/wwwroot/icons/icons_0/html_code.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<link rel="apple-touch-icon" sizes="180x180" href="/icons/icons_0/apple-touch-icon.png?v=4.30">
<link rel="icon" type="image/png" sizes="32x32" href="/icons/icons_0/favicon-32x32.png?v=4.30">
<link rel="icon" type="image/png" sizes="192x192" href="/icons/icons_0/android-chrome-192x192.png?v=4.30">
<link rel="icon" type="image/png" sizes="16x16" href="/icons/icons_0/favicon-16x16.png?v=4.30">
<link rel="manifest" href="/icons/icons_0/site.webmanifest?v=4.30">
<link rel="mask-icon" href="/icons/icons_0/safari-pinned-tab.svg?v=4.30" color="#5bbad5">
<link rel="shortcut icon" href="/icons/icons_0/favicon.ico?v=4.30">
<link rel="apple-touch-icon" sizes="180x180" href="/icons/icons_0/apple-touch-icon.png?v=4.40">
<link rel="icon" type="image/png" sizes="32x32" href="/icons/icons_0/favicon-32x32.png?v=4.40">
<link rel="icon" type="image/png" sizes="192x192" href="/icons/icons_0/android-chrome-192x192.png?v=4.40">
<link rel="icon" type="image/png" sizes="16x16" href="/icons/icons_0/favicon-16x16.png?v=4.40">
<link rel="manifest" href="/icons/icons_0/site.webmanifest?v=4.40">
<link rel="mask-icon" href="/icons/icons_0/safari-pinned-tab.svg?v=4.40" color="#5bbad5">
<link rel="shortcut icon" href="/icons/icons_0/favicon.ico?v=4.40">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="msapplication-TileImage" content="/icons/icons_0/mstile-144x144.png?v=4.30">
<meta name="msapplication-config" content="/icons/icons_0/browserconfig.xml?v=4.30">
<meta name="msapplication-TileImage" content="/icons/icons_0/mstile-144x144.png?v=4.40">
<meta name="msapplication-config" content="/icons/icons_0/browserconfig.xml?v=4.40">
<meta name="theme-color" content="#ffffff">
14 changes: 7 additions & 7 deletions src/Presentation/Nop.Web/wwwroot/icons/icons_0/site.webmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,37 @@
"short_name": "",
"icons": [
{
"src": "/icons/icons_0/android-chrome-36x36.png?v=4.30",
"src": "/icons/icons_0/android-chrome-36x36.png?v=4.40",
"sizes": "36x36",
"type": "image/png"
},
{
"src": "/icons/icons_0/android-chrome-48x48.png?v=4.30",
"src": "/icons/icons_0/android-chrome-48x48.png?v=4.40",
"sizes": "48x48",
"type": "image/png"
},
{
"src": "/icons/icons_0/android-chrome-72x72.png?v=4.30",
"src": "/icons/icons_0/android-chrome-72x72.png?v=4.40",
"sizes": "72x72",
"type": "image/png"
},
{
"src": "/icons/icons_0/android-chrome-96x96.png?v=4.30",
"src": "/icons/icons_0/android-chrome-96x96.png?v=4.40",
"sizes": "96x96",
"type": "image/png"
},
{
"src": "/icons/icons_0/android-chrome-144x144.png?v=4.30",
"src": "/icons/icons_0/android-chrome-144x144.png?v=4.40",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "/icons/icons_0/android-chrome-192x192.png?v=4.30",
"src": "/icons/icons_0/android-chrome-192x192.png?v=4.40",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/icons/icons_0/android-chrome-256x256.png?v=4.30",
"src": "/icons/icons_0/android-chrome-256x256.png?v=4.40",
"sizes": "256x256",
"type": "image/png"
}
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion src/Tests/Nop.Core.Tests/Nop.Core.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Copyright>Copyright © Nop Solutions, Ltd</Copyright>
<Company>Nop Solutions, Ltd</Company>
<Authors>Nop Solutions, Ltd</Authors>
<Version>4.3.0.0</Version>
<Version>4.4.0.0</Version>
<Description>The project contains a set of classes for testing of Nop.Core</Description>
<PackageLicenseUrl>https://www.nopcommerce.com/license</PackageLicenseUrl>
<PackageProjectUrl>https://www.nopcommerce.com/</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/Tests/Nop.Services.Tests/Nop.Services.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Copyright>Copyright © Nop Solutions, Ltd</Copyright>
<Company>Nop Solutions, Ltd</Company>
<Authors>Nop Solutions, Ltd</Authors>
<Version>4.3.0.0</Version>
<Version>4.4.0.0</Version>
<Description>The project contains a set of classes for testing of Nop.Services</Description>
<PackageLicenseUrl>https://www.nopcommerce.com/license</PackageLicenseUrl>
<PackageProjectUrl>https://www.nopcommerce.com/</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/Tests/Nop.Tests/Nop.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Copyright>Copyright © Nop Solutions, Ltd</Copyright>
<Company>Nop Solutions, Ltd</Company>
<Authors>Nop Solutions, Ltd</Authors>
<Version>4.3.0.0</Version>
<Version>4.4.0.0</Version>
<Description>The project contains a set of core classes for testing</Description>
<PackageLicenseUrl>https://www.nopcommerce.com/license</PackageLicenseUrl>
<PackageProjectUrl>https://www.nopcommerce.com/</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/Tests/Nop.Web.MVC.Tests/Nop.Web.MVC.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Copyright>Copyright © Nop Solutions, Ltd</Copyright>
<Company>Nop Solutions, Ltd</Company>
<Authors>Nop Solutions, Ltd</Authors>
<Version>4.3.0.0</Version>
<Version>4.4.0.0</Version>
<Description>The project contains a set of classes for testing of web projects</Description>
<PackageLicenseUrl>https://www.nopcommerce.com/license</PackageLicenseUrl>
<PackageProjectUrl>https://www.nopcommerce.com/</PackageProjectUrl>
Expand Down
File renamed without changes.
File renamed without changes.
10 changes: 10 additions & 0 deletions upgradescripts/4.30-4.40 (under development)/Readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Steps:
1. Make a backup of everything on your site, including the database. This is extremely important so that you can roll back to a running site no matter what happens during migration.
2. Execute upgrade.sql script over your database
3. Remove all files from the previous version except \App_Data\dataSettings.json (Settings.txt) and \App_Data\plugins.json. Also \App_Data\installedPlugins.json or \App_Data\InstalledPlugins.txt (if exists)
4. Upload new site files
5. Copy back \App_Data\dataSettings.json and \App_Data\plugins.json files. And \App_Data\installedPlugins.json (if exists)
6. Ensure that everything is OK

Notes:
1. If you stored your pictures on the file system, then also backup them (\wwwroot\Images\) and copy back after upgrade
Loading

0 comments on commit f0ed46c

Please sign in to comment.