Skip to content

Commit

Permalink
Releasing 4.2.0 including pr/7
Browse files Browse the repository at this point in the history
Better support for IE10, new Core project that can be used as a
reference project.
  • Loading branch information
evest committed Nov 19, 2015
1 parent 1c8400b commit 3f0aa9c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -160,3 +160,4 @@ $RECYCLE.BIN/
#src/Newsletter/pack.cmd
src/pack.cmd
src/Newsletter.SendGrid/pack.cmd
src/.vs/config/applicationhost.config
11 changes: 6 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Newsletter for EPiServer #
A free module for sending newsletters from your EPiServer CMS or Commerce site. You can send the content from pages based on one or more newsletter pagetypes to multiple recipients, using a cloud service or your own SMTP server.

>This is a port of the old EPiSendMail (BV Network Newsletter) module from EPiCode, rewritten to support EPiServer CMS and Commerce 7.5 and newer (including CMS 8).
>This is a port of the old EPiSendMail (BV Network Newsletter) module from EPiCode, rewritten to support EPiServer CMS and Commerce 7.5 and newer (including CMS 8 and 9).
## Features ##
* Create newsletters as pages in EPiServer
Expand All @@ -23,7 +23,7 @@ A free module for sending newsletters from your EPiServer CMS or Commerce site.
## Installation ##
The installation is done through Visual Studio using the EPiServer Nuget Feed (currently located on http://nuget.episerver.com/feed/packages.svc/)

Main Newsletter Add-on:
Main Newsletter Add-on (includes SMTP and Mailgun senders):
```
Install-Package EPiCode.Newsletter
```
Expand Down Expand Up @@ -193,7 +193,7 @@ Example setting up a virtual role (in `episerver.framework` section of web.confi
If you get an error during startup like this: `Cannot add duplicate collection entry of type 'add' with unique key attribute 'name' set to 'ExtensionlessUrlHandler-Integrated-4.0'` please check your web.config and remove any duplicate `ExtensionlessUrlHandler-Integrated-4.0` handlers (under `system.webServer`)

### Missing Assembly Redirects ###
In some cases, there are missing assembly redirects for some of the `System.Net` and `System.Web` assemblies. Make sure you have these in your web.config:
In some cases, there are missing assembly redirects for some of the `System.Net` and `System.Web` assemblies. Make sure you have these (or newer versions) in your web.config:
```xml
<assemblyBinding>
...
Expand Down Expand Up @@ -223,6 +223,7 @@ This module is open source and unsupported. Feel free to [register new issues](h

## Requirements ##
Runtime:

* EPiServer CMS 7.9 or newer
* .NET 4.5

Expand All @@ -235,5 +236,5 @@ Runtime:
* EPiServer Commerce 7.5 or newer for custom recipient lists

## Contributions by ##
BV Network AS
Departementenes sikkerhets- og serviceorganisasjon (DSS)
* BV Network AS
* Departementenes sikkerhets- og serviceorganisasjon (DSS)
1 change: 1 addition & 0 deletions src/Newsletter for EPiServer.sln
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Resources", "Solut
ProjectSection(SolutionItems) = preProject
packageTools.targets = packageTools.targets
packageVersion.targets = packageVersion.targets
..\readme.md = ..\readme.md
EndProjectSection
EndProject
Global
Expand Down
2 changes: 1 addition & 1 deletion src/Newsletter/AssemblyInfoVersion.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
using System.Reflection;

[assembly: AssemblyVersion("4.1.2")]
[assembly: AssemblyVersion("4.2.0")]
4 changes: 2 additions & 2 deletions src/Newsletter/EPiCode.Newsletter.Core.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<projectUrl>https://github.com/BVNetwork/Newsletter</projectUrl>
<iconUrl>http://www.coderesort.com/favicon.ico</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Package contains assembly BVNetwork.EPiSendMail.dll.</description>
<summary>Sends pages as newsletters through the EPiServer UI.</summary>
<description>Reference package for the Newsletter module, only containing the assembly.</description>
<summary>This package is not needed for a regular installation, it can be used in libraries or other projects where you have references to classes or interfaces in the assembly, but do not need the UI parts of the install.</summary>
<references>
<reference file="BVNetwork.EPiSendMail.dll" />
</references>
Expand Down
2 changes: 1 addition & 1 deletion src/packageVersion.targets
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PackageVersion>4.1.2</PackageVersion>
<PackageVersion>4.2.0</PackageVersion>
</PropertyGroup>
</Project>

0 comments on commit 3f0aa9c

Please sign in to comment.