Skip to content

Commit bea475f

Browse files
BeniGemperleBeniGemperle
authored andcommitted
Updated to Version 1.30 for nopCommerce 3.70
1 parent 8101144 commit bea475f

File tree

6 files changed

+312
-82
lines changed

6 files changed

+312
-82
lines changed

DependencyRegistrar.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using Autofac;
2+
using Nop.Core.Configuration;
23
using Nop.Core.Infrastructure;
34
using Nop.Core.Infrastructure.DependencyManagement;
45
using Nop.Services.Messages;
@@ -7,7 +8,7 @@ namespace ToSic.Nop.Plugins.RazorMessageService
78
{
89
public class DependencyRegistrar : IDependencyRegistrar
910
{
10-
public virtual void Register(ContainerBuilder builder, ITypeFinder typeFinder)
11+
public void Register(ContainerBuilder builder, ITypeFinder typeFinder, NopConfig config)
1112
{
1213
builder.RegisterType<RazorWorkflowMessageService>().As<IWorkflowMessageService>().InstancePerLifetimeScope();
1314
}

Description.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
FriendlyName: Razor MessageService
33
SystemName: ToSIC.RazorMessageService
44
Version: 1.20
5-
SupportedVersions: 3.50
5+
SupportedVersions: 3.70
66
Author: 2sic Internet Solutions
77
DisplayOrder: 1
88
FileName: ToSic.Nop.Plugins.RazorMessageService.dll

Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("2sic Internet Solutions GmbH")]
1212
[assembly: AssemblyProduct("ToSic.Nop.Plugins.WorkflowMessageService")]
13-
[assembly: AssemblyCopyright("Copyright © 2sic 2015")]
13+
[assembly: AssemblyCopyright("Copyright © 2sic 2016")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.2.0.0")]
36-
[assembly: AssemblyFileVersion("1.2.0.0")]
35+
[assembly: AssemblyVersion("1.3.0.0")]
36+
[assembly: AssemblyFileVersion("1.3.0.0")]

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ NewCustomer.Notification | Store, Customer
6666
NewReturnRequest.StoreOwnerNotification | Store, Customer, ReturnRequest, OrderItem
6767
News.NewsComment | Store, NewsComment
6868
NewsLetterSubscription.ActivationMessage | Store, Subscription
69+
NewsLetterSubscription.DeactivationMessage | Store, Subscription
6970
NewVATSubmitted.StoreOwnerNotification | Store, Customer, VatName, VatAddress
7071
OrderCancelled.CustomerNotification | Store, Order, Customer
7172
OrderCompleted.CustomerNotification | Store, Order, Customer
@@ -74,13 +75,16 @@ OrderPaid.StoreOwnerNotification | Store, Order, Customer
7475
OrderPlaced.CustomerNotification | Store, Order, Customer
7576
OrderPlaced.StoreOwnerNotification | Store, Order, Customer
7677
OrderPlaced.VendorNotification | Store, Order, Customer, Vendor
78+
OrderRefunded.CustomerNotification | Store, Order, Customer, RefundedAmount
79+
OrderRefunded.StoreOwnerNotification | Store, Order, Customer, RefundedAmount
7780
Product.ProductReview | Store, ProductReview
7881
QuantityBelow.StoreOwnerNotification | Store, Product
7982
RecurringPaymentCancelled.StoreOwnerNotification | Store, Order, Customer, RecurringPayment
8083
ReturnRequestStatusChanged.CustomerNotification | Store, Customer, ReturnRequest, OrderItem
8184
Service.EmailAFriend | Store, Customer, Product, PersonalMessage, CustomerEmail
8285
ShipmentDelivered.CustomerNotification | Store, Shipment, Order, Customer
8386
ShipmentSent.CustomerNotification | Store, Shipment, Order, Customer
87+
VendorAccountApply.StoreOwnerNotification | Store, Customer, Vendor
8488
Wishlist.EmailAFriend | Store, Customer, PersonalMessage, CustomerEmail
8589
8690
@@ -101,6 +105,9 @@ How to Install
101105
102106
Version
103107
----
108+
###1.30
109+
* Works with nopCommerce 3.70
110+
104111
###1.20
105112
* Works with nopCommerce 3.50
106113

0 commit comments

Comments
 (0)