Skip to content

Commit 9d40de5

Browse files
authored
More buttons (#44)
* just dropping things * re-org-ed * rearranged icons * thats it
1 parent 3da0a9a commit 9d40de5

File tree

3 files changed

+20
-12
lines changed

3 files changed

+20
-12
lines changed

ChangeLog.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,16 @@
22

33
Date: TBA
44

5-
## new features in 1.1.0
5+
## 🆕 new features in 1.1.0
66
- new command Update-GitModule which installs module only if local version exists and if older than remote
7+
- both Get-GitModule and Update-GitModule support parameter -Name which extracts url from already installed module
78

8-
## bug fixes in 1.1.0
9+
## 🛠️ bug fixes in 1.1.0
10+
- n/a
11+
12+
For a full feature list, check [GitHub milestone link](https://github.com/iricigor/InstallModuleFromGit/milestone/4?closed=1).
13+
14+
- - -
915

1016
# v.1.0.1
1117

@@ -22,6 +28,7 @@ For a full feature list, check [GitHub milestone link](https://github.com/iricig
2228
## bug fixes in 1.0.1
2329
- returned module name is evaluated against manifest name and repository name
2430

31+
- - -
2532

2633
# v.1.0.0
2734

InstallModuleFromGit.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ PrivateData = @{
9595
PSData = @{
9696

9797
# Tags applied to this module. These help with module discovery in online galleries.
98-
Tags = @('Azure','DevOps','ADO','VSTS','GitHub','Install-Module','git-clone','git','git-client','PowerShellGet')
98+
Tags = @('Azure','DevOps','ADO','VSTS','GitHub','Install-Module','git-clone','git','git-client','PowerShellGet', 'Windows', 'Linux')
9999

100100
# A URL to the license for this module.
101101
LicenseUri = 'https://github.com/iricigor/InstallModuleFromGit/blob/master/LICENSE'

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<img align="right" width="203" height="294" src="img/InstallModuleFromGit.logo.png">
22

3+
![github/release](https://img.shields.io/github/release/iricigor/InstallModuleFromGit.svg) ![last-release-date](https://img.shields.io/github/release-date/iricigor/InstallModuleFromGit.svg) ![commits-since-latest](https://img.shields.io/github/commits-since/iricigor/InstallModuleFromGit/latest.svg) ![last-commit](https://img.shields.io/github/last-commit/iricigor/InstallModuleFromGit.svg)
4+
35
# Install Module from Git
46

57
:bowtie: This PowerShell module will help you to easily instal PowerShell modules directly from [Azure DevOps](https://azure.microsoft.com/en-us/services/devops/repos/) (_aka VSTS_) or [GitHub](https://github.com/) or any other git repository.
@@ -17,13 +19,11 @@ You can check if you have it by running `Get-Command git` in your PowerShell.
1719

1820
### From PowerShell gallery
1921

20-
This is recommended way how to install module.
22+
This is recommended way how to install module. [![downloads](https://img.shields.io/powershellgallery/dt/InstallModuleFromGit.svg?label=downloads&logo=PowerShell)](https://www.powershellgallery.com/packages/InstallModuleFromGit)
2123

2224
```PowerShell
2325
Install-Module InstallModuleFromGit -Scope CurrentUser
2426
```
25-
[![downloads](https://img.shields.io/powershellgallery/dt/InstallModuleFromGit.svg?label=downloads)](https://www.powershellgallery.com/packages/InstallModuleFromGit)
26-
[![latest version](https://img.shields.io/powershellgallery/v/InstallModuleFromGit.svg?label=latest+version)](https://www.powershellgallery.com/packages/InstallModuleFromGit)
2727

2828
### Clone GitHub repository
2929

@@ -81,9 +81,7 @@ Update-Help -Module InstallModuleFromGit -Force
8181

8282
:smirk: Module has testing against two platforms - Linux and Windows. Code is verified before and after merging to master branch. Tests results are available on the Tests tab ([example here](/img/TestResults-AzureDevops.png)).
8383

84-
Windows build status [![Build Status](https://dev.azure.com/iiric/PS1/_apis/build/status/InstallModuleFromGit%20-%20Win%20CI?branchName=master)](https://dev.azure.com/iiric/PS1/_build/latest?definitionId=16&branchName=master)
85-
86-
Linux build status [![Build Status](https://dev.azure.com/iiric/PS1/_apis/build/status/InstallModuleFromGit%20-%20Linux%20CI?branchName=master)](https://dev.azure.com/iiric/PS1/_build/latest?definitionId=17&branchName=master)
84+
[![test-details](https://img.shields.io/azure-devops/tests/iiric/PS1/16.svg?style=popout&logo=Windows&logoColor=blue)](https://dev.azure.com/iiric/PS1/_build/latest?definitionId=16&branchName=master) [![test-details](https://img.shields.io/azure-devops/tests/iiric/PS1/17.svg?style=popout&logo=Linux&logoColor=black)](https://dev.azure.com/iiric/PS1/_build/latest?definitionId=17&branchName=master)
8785

8886
_Click on images to see details about the latest build runs._
8987

@@ -95,16 +93,19 @@ _Click on images to see details about the latest build runs._
9593

9694
You can chat about this commandlet via [Skype](https://www.skype.com) _(no Skype ID required)_, by clicking a link below.
9795

98-
[![chat on Skype](https://img.shields.io/badge/chat-on%20Skype-blue.svg?style=flat)](https://join.skype.com/hQMRyp7kwjd2)
96+
[![chat on Skype](https://img.shields.io/badge/chat-on%20Skype-blue.svg?style=popout&logo=Skype)](https://join.skype.com/hQMRyp7kwjd2)
9997

10098
## Contributing
10199

102-
If you find any problems, feel free to [open a new issue](https://github.com/iricigor/InstallModuleFromGit/issues/new).
100+
If you find any problems, feel free to open a new issue.
103101

102+
[![open a new issue](https://img.shields.io/badge/open%20new-issue-success.svg?logo=GitHub&logoColor=black)](https://github.com/iricigor/InstallModuleFromGit/issues/new)
104103
![GitHub open issues](https://img.shields.io/github/issues/iricigor/InstallModuleFromGit.svg?style=flat)
105104
![GitHub closed issues](https://img.shields.io/github/issues-closed/iricigor/InstallModuleFromGit.svg?style=flat)
106105

107106
If you want to contribute, please fork the code and make a new PR after!
108107

109108
![GitHub](https://img.shields.io/github/license/iricigor/InstallModuleFromGit.svg?style=flat)
110-
![GitHub top language](https://img.shields.io/github/languages/top/iricigor/InstallModuleFromGit.svg?style=flat)
109+
![GitHub top language](https://img.shields.io/github/languages/top/iricigor/InstallModuleFromGit.svg?style=flat)
110+
![repo-stars](https://img.shields.io/github/stars/iricigor/InstallModuleFromGit.svg)
111+
![repo-watchers](https://img.shields.io/github/watchers/iricigor/InstallModuleFromGit.svg)

0 commit comments

Comments
 (0)