update Changelog, clink 0.3.4, fix ps fg color

This commit is contained in:
Dax T. Games 2019-09-26 18:07:25 -04:00
parent 81951a4a14
commit 45e5600249
3 changed files with 13 additions and 7 deletions

View File

@ -2,11 +2,10 @@
## [Unreleased] ## [Unreleased]
* Question issue: [#2094](https://github.com/cmderdev/cmder/issues/2094) * Update Clink to 0.3.4
* Pull Request : [#2096](https://github.com/cmderdev/cmder/pull/2096) * Fix powershell foreground color changingf to green
* New argument created to ConEmu forwarding arguments.
* Syntax: `/x [ConEmu extras arguments]` ## [1.3.12](https://github.com/cmderdev/cmder/tree/v1.3.11) (2019-08-18)
* e.g.: `Cmder.exe /x "-min -tsa"`
### Fixes ### Fixes
@ -35,6 +34,12 @@
### Adds ### Adds
* Pull Request : [#2096](https://github.com/cmderdev/cmder/pull/2096)
* Question issue: [#2094](https://github.com/cmderdev/cmder/issues/2094)
* New argument created to ConEmu forwarding arguments.
* Syntax: `/x [ConEmu extras arguments]`
* e.g.: `Cmder.exe /x "-min -tsa"`
* Pull Request: [#2072](https://github.com/cmderdev/cmder/pull/2072) * Pull Request: [#2072](https://github.com/cmderdev/cmder/pull/2072)
* New alias create [alias] [alias command] syntax * New alias create [alias] [alias command] syntax
* Based on [#1750](https://github.com/cmderdev/cmder/pull/1750) * Based on [#1750](https://github.com/cmderdev/cmder/pull/1750)

1
vendor/profile.ps1 vendored
View File

@ -177,6 +177,7 @@ if ( $(get-command prompt).Definition -match 'PS \$\(\$executionContext.SessionS
[ScriptBlock]$PostPrompt = {} [ScriptBlock]$PostPrompt = {}
[ScriptBlock]$CmderPrompt = { [ScriptBlock]$CmderPrompt = {
$Host.UI.RawUI.ForegroundColor = "White" $Host.UI.RawUI.ForegroundColor = "White"
Write-Host -NoNewline "$([char]0x200B)"
Microsoft.PowerShell.Utility\Write-Host $pwd.ProviderPath -NoNewLine -ForegroundColor Green Microsoft.PowerShell.Utility\Write-Host $pwd.ProviderPath -NoNewLine -ForegroundColor Green
if (get-command git -erroraction silentlycontinue) { if (get-command git -erroraction silentlycontinue) {
checkGit($pwd.ProviderPath) checkGit($pwd.ProviderPath)

4
vendor/sources.json vendored
View File

@ -16,7 +16,7 @@
}, },
{ {
"name": "clink-completions", "name": "clink-completions",
"version": "0.3.3", "version": "0.3.4",
"url": "https://github.com/vladimir-kotikov/clink-completions/archive/0.3.3.zip" "url": "https://github.com/vladimir-kotikov/clink-completions/archive/0.3.4.zip"
} }
] ]