This repository has been archived by the owner on Oct 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Plugin docs updated and synced with wiki.
- Loading branch information
1 parent
3c77aef
commit cbdddc8
Showing
4 changed files
with
41 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
# Author: Miodrag Milic <[email protected]> | ||
# Last Change: 07-Nov-2016. | ||
|
||
# Last Change: 10-Nov-2016. | ||
<# | ||
.SYNOPSIS | ||
Create update history as markdown report using git commit log. | ||
.DESCRIPTION | ||
Shows one date per line and all of the packages pushed to the Chocolatey community repository during that day. | ||
First letter of the package name links to report (produced by the Report plugin), the rest links to actuall | ||
commit (produced by the Git plugin). | ||
#> | ||
param( | ||
$Info, | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,25 @@ | ||
# Author: Miodrag Milic <[email protected]> | ||
# Last Change: 10-Nov-2016. | ||
|
||
<# | ||
.SYNOPSIS | ||
Create update history as markdown report | ||
.DESCRIPTION | ||
Shows one date per line and all of the packages pushed to the Chocolatey community | ||
repository during that day. First letter of the package name links to report | ||
(produced by the Report plugin), the rest links to the actuall commit (produced by the Git plugin). | ||
#> | ||
param( | ||
$Info, | ||
|
||
#Number of dates to show in the report | ||
$Lines=30, | ||
|
||
#Github user repository, used to create commit links | ||
$Github_UserRepo = 'chocolatey/chocolatey-coreteampackages', | ||
|
||
#File path where to save the markdown report | ||
$Path = "UpdateHistory.md" | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,24 @@ | ||
# Author: Miodrag Milic <[email protected]> | ||
# Last Change: 24-Sep-2016. | ||
# Last Change: 10-Nov-2016. | ||
<# | ||
.SYNOPSIS | ||
Create different types of reports about the current run. | ||
.DESCRIPTION | ||
The plugin saves state of all packages in a file that can be used locally or | ||
uploaded via other plugins to remote (such as Gist or Mail). | ||
#> | ||
|
||
param( | ||
$Info, | ||
|
||
# Type of the report, currently 'markdown' or 'text' | ||
[string] $Type = 'markdown', | ||
|
||
# Path where to save the report | ||
[string] $Path = 'Update-AUPackages.md', | ||
|
||
# Report parameters | ||
[HashTable] $Params | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters