From 1b8eb354371520af741e533a98c6810d0ba40435 Mon Sep 17 00:00:00 2001 From: dfinke Date: Fri, 20 Jul 2018 15:12:10 -0400 Subject: [PATCH 1/2] added badge --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 3dbd5c7..fdb5420 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,16 @@ +## Donation + +If this project helped you reduce the time to get your job done, let me know. + + +[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UCSB9YVPFSNCY) + +![](https://media.giphy.com/media/hpXxJ78YtpT0s/giphy.gif) + + +
+
+

@@ -11,6 +24,8 @@ src="https://img.shields.io/powershellgallery/dt/ImportExcel.svg"> src="https://img.shields.io/powershellgallery/v/ImportExcel.svg">

+ + PowerShell Import-Excel - From 51a32fb23ef9f9b47507145b5fd056c442f7700b Mon Sep 17 00:00:00 2001 From: dfinke Date: Fri, 20 Jul 2018 15:24:48 -0400 Subject: [PATCH 2/2] Removed the downloadstring --- README.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/README.md b/README.md index fdb5420..4f2380b 100644 --- a/README.md +++ b/README.md @@ -52,13 +52,6 @@ Install-Module ImportExcel -scope CurrentUser Install-Module ImportExcel ``` -#### PowerShell V4 and Earlier -To install to your personal modules folder (e.g. ~\Documents\WindowsPowerShell\Modules), run: - -```PowerShell -iex (new-object System.Net.WebClient).DownloadString('https://raw.github.com/dfinke/ImportExcel/master/Install.ps1') -``` - # What's new to 18th July 18 - Moved chart creation into its own function (Add-Excel chart) within Export-Excel.ps1. Renamed New-Excelchart to New-ExcelChartDefinition to make it clearer that it is not making anything in the workbook (but for compatibility put an alias of New-ExcelChart in so existing code does not break). Found that -Header does nothing, so it isn't Add-Excel chart and there is a message that does nothing in New-ExcelChartDefinition . - Added -BarChart -ColumnChart -LineChart -PieChart parameters to Export-Excel for quick charts without giving a full chart definition.