Skip to content

Commit 1814a27

Browse files
committed
!deploy v0.6.3 to resolve #37
1 parent f4bbca8 commit 1814a27

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# PSProfile - ChangeLog
22

33
* [PSProfile - ChangeLog](#psprofile---changelog)
4+
* [0.6.3 - 2020-06-27](#063---2020-06-27)
45
* [0.6.2 - 2020-05-14](#062---2020-05-14)
56
* [0.6.1 - 2019-11-04](#061---2019-11-04)
67
* [0.6.0 - 2019-11-02](#060---2019-11-02)
@@ -22,6 +23,12 @@
2223

2324
***
2425

26+
## 0.6.3 - 2020-06-27
27+
28+
* [Issue #37](https://github.com/SCRT-HQ/PSProfile/issues/37)
29+
* Fixed: Machine-specific environment variables set by PSProfile are now set after profile load to prevent issues when syncing configurations across machines.
30+
* Added: `$PSProfile.ConfigurationPaths` and the surrounding functions to support management of this new property: `Add-PSProfileConfigurationPath`, `Get-PSProfileConfigurationPath`, `Remove-PSProfileConfigurationPath`.
31+
2532
## 0.6.2 - 2020-05-14
2633

2734
* Miscellaneous

PSProfile/en-US/about_PSProfile_Configuration.help.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,21 @@ LONG DESCRIPTION
1010
object directly for convenience.
1111

1212
COMMANDS
13+
* `Add-PSProfileConfigurationPath`
14+
Adds an external Configuration Path to `$PSProfile.ConfigurationPaths`.
15+
Configurations added here will be layered on top of the machine-specific
16+
config during module import.
17+
1318
* `Export-PSProfileConfiguration`
1419
Exports the PSProfile configuration to the desired path for portability.
1520

1621
*Any secrets stored in the `$PSProfile.Vault` will be exported, but
1722
will be unable to be decrypted on another machine or by another user on
1823
the same machine due to encryption via Data Protection API.*
1924

25+
* `Get-PSProfileConfigurationPath`
26+
Gets a specified path or list of paths from `$PSProfile.ConfigurationPaths`.
27+
2028
* `Import-PSProfile`
2129
Invokes `$PSProfile.Load()` to run through the actions typically performed
2230
during the initial import of PSProfile. Useful when adding new items to
@@ -26,6 +34,9 @@ COMMANDS
2634
Used when importing a non-standard configuration from a specific path,
2735
e.g. one you have migrated from another machine.
2836

37+
* `Remove-PSProfileConfigurationPath`
38+
Removes a configuration path from `$PSProfile.ConfigurationPaths`.
39+
2940
* `Save-PSProfile`
3041
Invokes `$PSProfile.Save()` to save your current PSProfile object back
3142
to the Configuration file.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ PSProfile is a cross-platform PowerShell module built for profile customization.
77
<div align="center">
88
<!-- Azure Pipelines -->
99
<a href="https://dev.azure.com/scrthq/SCRT%20HQ/_build/latest?definitionId=8">
10-
<img src="https://dev.azure.com/scrthq/SCRT%20HQ/_apis/build/status/scrthq.PSProfile"
10+
<img src="https://dev.azure.com/scrthq/SCRT%20HQ/_apis/build/status/scrthq.PSProfile?branchName=main"
1111
alt="Azure Pipelines" title="Azure Pipelines" />
1212
</a>&nbsp;&nbsp;&nbsp;&nbsp;
1313
<!-- Discord -->

0 commit comments

Comments
 (0)