Merge remote-tracking branch 'refs/remotes/dfinke/master' into Test-Branch

This commit is contained in:
DarkLite1
2015-10-21 09:18:24 +02:00
4 changed files with 22 additions and 4 deletions

View File

@@ -200,7 +200,7 @@ Function Export-Excel {
foreach($format in $ConditionalFormat ) {
$target = "Add$($format.Formatter)"
$rule = ($ws.ConditionalFormatting).$target($format.Address, $format.IconType)
$rule = ($ws.ConditionalFormatting).$target.Invoke($format.Address, $format.IconType)
$rule.Reverse = $format.Reverse
}

View File

@@ -4,7 +4,7 @@
RootModule = 'ImportExcel.psm1'
# Version number of this module.
ModuleVersion = '1.83'
ModuleVersion = '1.90'
# ID used to uniquely identify this module
GUID = '60dd4136-feff-401a-ba27-a84458c57ede'

View File

@@ -4,7 +4,7 @@ $p = @{
NuGetApiKey = $NuGetApiKey
LicenseUri = "https://github.com/dfinke/ImportExcel/blob/master/LICENSE.txt"
Tag = "Excel","EPPlus","Export","Import"
ReleaseNote = "For Import-Excel: added -NoHeader parameter and returns .Value"
ReleaseNote = "Fixed v3.0 bug, added -HeaderRow, added Help for Export-Excel"
ProjectUri = "https://github.com/dfinke/ImportExcel"
}

View File

@@ -25,9 +25,27 @@ Know Issues
What's new
-
#### 10/19/2015
#### 10/20/2015
Big bug fix for version 3.0 PowerShell folks!
This technique fails in 3.0 and works in 4.0 and later.
```powershell
$m="substring"
"hello".$m(2,1)
```
Adding `.invoke` works in 3.0 and later.
```powershell
$m="substring"
"hello".$m.invoke(2,1)
```
A ***big thank you*** to [DarkLite1](https://github.com/DarkLite1) for adding the help to Export-Excel.
Added `-HeaderRow` parameter. Sometimes the heading does not start in Row 1.
#### 10/16/2015