Skip to content

Commit

Permalink
To Version: 0.1.19.2
Browse files Browse the repository at this point in the history
  • Loading branch information
smitpi committed Sep 9, 2022
1 parent 4e2db28 commit 9e7fd42
Show file tree
Hide file tree
Showing 80 changed files with 30,116 additions and 11,260 deletions.
2 changes: 1 addition & 1 deletion Output/0.1.19.2/PSLauncher.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Pierre Smit
#
# Generated on: 2022-09-01 20:30:36Z
# Generated on: 2022-09-09 03:12:32Z
#

@{
Expand Down
842 changes: 421 additions & 421 deletions Output/0.1.19.2/PSLauncher.psm1

Large diffs are not rendered by default.

556 changes: 556 additions & 0 deletions Output/0.1.19.2/en-US/PSLauncher-help.xml

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions Output/0.1.19.2/en-US/about_PSLauncher.help.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

PSLauncher
about_PSLauncher

SHORT DESCRIPTION
A GUI to launch any PowerShell script, function, or any other executables. You have the option to run any of these options as a normal user or as an Admin. Everything is saved in a json config file. Also created menu items that assists in creating the buttons, panels, and colour schemes. There is no need to manually edit the config file.


NOTES
Functions in this module:
Edit-PSLauncherConfig -- Add a button or panel to the config.
New-PSLauncherConfigFile -- Creates the config file with the provided settings
Start-PSLauncher -- Reads the config file and launches the GUI
Start-PSLauncherColorPicker -- Launches a GUI form to test and change the Color of PSLauncher.

SEE ALSO
https://github.com/smitpi/PSLauncher

https://smitpi.github.io/PSLauncher/

2 changes: 1 addition & 1 deletion PSLauncher/PSLauncher.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Pierre Smit
#
# Generated on: 2022-09-01 20:30:36Z
# Generated on: 2022-09-09 03:12:32Z
#

@{
Expand Down
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@ A GUI to launch any PowerShell script, function, or any other executables. You h
```
Install-Module -Name PSLauncher -Verbose
```
- or from GitHub [GitHub Repo](https://github.com/smitpi/PSLauncher)
```
git clone https://github.com/smitpi/PSLauncher (Join-Path (get-item (Join-Path (Get-Item $profile).Directory 'Modules')).FullName -ChildPath PSLauncher)
- or run this script to install from GitHub [GitHub Repo](https://github.com/smitpi/PSLauncher)
```
$CurrentLocation = Get-Item .
$ModuleDestination = (Join-Path (Get-Item (Join-Path (Get-Item $profile).Directory 'Modules')).FullName -ChildPath PSLauncher)
git clone --depth 1 https://github.com/smitpi/PSLauncher $ModuleDestination 2>&1 | Write-Host -ForegroundColor Yellow
Set-Location $ModuleDestination
git filter-branch --prune-empty --subdirectory-filter Output HEAD 2>&1 | Write-Host -ForegroundColor Yellow
Set-Location $CurrentLocation
```
- Then import the module into your session
```
Expand Down
4 changes: 2 additions & 2 deletions Version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.1.25",
"version": "0.1.19.2",
"Author": "Pierre Smit",
"Date": "2022-08-21 00:13:30Z"
"Date": "2022-09-09 03:12:33Z"
}
11 changes: 8 additions & 3 deletions docs/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@ A GUI to launch any PowerShell script, function, or any other executables. You h
```
Install-Module -Name PSLauncher -Verbose
```
- or from GitHub [GitHub Repo](https://github.com/smitpi/PSLauncher)
```
git clone https://github.com/smitpi/PSLauncher (Join-Path (get-item (Join-Path (Get-Item $profile).Directory 'Modules')).FullName -ChildPath PSLauncher)
- or run this script to install from GitHub [GitHub Repo](https://github.com/smitpi/PSLauncher)
```
$CurrentLocation = Get-Item .
$ModuleDestination = (Join-Path (Get-Item (Join-Path (Get-Item $profile).Directory 'Modules')).FullName -ChildPath PSLauncher)
git clone --depth 1 https://github.com/smitpi/PSLauncher $ModuleDestination 2>&1 | Write-Host -ForegroundColor Yellow
Set-Location $ModuleDestination
git filter-branch --prune-empty --subdirectory-filter Output HEAD 2>&1 | Write-Host -ForegroundColor Yellow
Set-Location $CurrentLocation
```
- Then import the module into your session
```
Expand Down
23 changes: 1 addition & 22 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,4 @@ markdown_extensions:
- pymdownx.snippets
- pymdownx.superfences

theme:
name: material
features:
- navigation.instant
language: en
favicon: ''
logo: ''
palette:
- media: "(prefers-color-scheme: light)"
primary: blue grey
accent: indigo
scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
primary: blue grey
accent: indigo
scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
theme: windmill
Loading

0 comments on commit 9e7fd42

Please sign in to comment.