Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP - updates to README for 1.0.0 release #529

Closed
wants to merge 23 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
9c37c76
WIP - updates to README for 1.0.0 release
rkeithhill Jan 13, 2018
31b0eb6
Add Travis build badge
rkeithhill Jan 13, 2018
059d440
Address PR feedback
rkeithhill Jan 15, 2018
2466027
Add choco badge and remove Travis macOS placeholder
rkeithhill Jan 15, 2018
6f2902a
Add info on new ways to customize prompt
rkeithhill Jan 24, 2018
32da673
Trying a minor re-org with a TOC
rkeithhill Jan 30, 2018
f63c68b
Fix section link
rkeithhill Jan 30, 2018
6593edb
Merge branch 'develop' into rkeithhill/update-readme
rkeithhill Feb 7, 2018
5b33e90
Try out images (from wiki)
rkeithhill Feb 7, 2018
c60c7b2
Use images for prompt display
rkeithhill Feb 10, 2018
aaf8ab6
Replace temp img urls w/actual urls
rkeithhill Feb 10, 2018
0606c27
Remove working dir status from all but one prompt image
rkeithhill Feb 12, 2018
a317ecb
Be clear that settings go after import command
rkeithhill Feb 12, 2018
ced492d
Adjust for defaulting abbrev home dir to $true
rkeithhill Feb 18, 2018
5896ed1
Promote prompt customization to 2nd level hdr, put in TOC
rkeithhill Feb 18, 2018
7d188a7
Fix paragraph in wrong place
rkeithhill Feb 18, 2018
1d6fe0c
Fix typo - variale -> variable
rkeithhill Feb 19, 2018
a1d4116
Merge branch 'develop' into rkeithhill/update-readme
rkeithhill Apr 15, 2018
e2d67a0
Update for setting name change - Middle -> BeforeSuffix
rkeithhill Apr 20, 2018
460094f
Remove develop branch from build results
rkeithhill May 5, 2018
e2ba32b
Change DefaultPromptMiddle to DefaultPromptBeforeSuffix
rkeithhill May 5, 2018
0602cc8
More wording/markdown cleanup
rkeithhill May 5, 2018
9f56670
Adopt "Versions" section from master README
rkeithhill May 5, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
// for the documentation about the extensions.json format
"recommendations": [
"EditorConfig.EditorConfig",
"ms-vscode.PowerShell"
"ms-vscode.PowerShell",
"DavidAnson.vscode-markdownlint"
]
}
7 changes: 6 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{
"editor.rulers": [ 120 ],
"powershell.scriptAnalysis.settingsPath": "PSScriptAnalyzerSettings.psd1"
"powershell.scriptAnalysis.settingsPath": "PSScriptAnalyzerSettings.psd1",
"markdownlint.config": {
"MD013": false,
"MD024": false,
"MD029": false
}
}
Loading