Skip to content

Commit 5f6559a

Browse files
author
Brian Baker
committed
* 'master' of https://github.com/HolisticDeveloper/boxstarter: (58 commits) Update chocolatey uninstall url Fix chocolatey links (chocolateyGH-446) Updates documentation with important info (chocolateyGH-443) Adds Windows Explorer item check box view Even though Boxstarter has existing functionality to modify Windows Explorer's settings, the existing functionality did not allow for user's to configure the "Use check boxes to select items" setting. This commit adds that functionality to the existing set-windowsexploreroptions function. (chocolateyGH-451) more accurate regex (chocolateyGH-451) StopOnPackageFailiure not stripped without RebootCodes (release v2.13.0) Updated version numbers chocolateyGH-444 do not pass StopOnPackageFailure to choco Merge pull request from GHSA-rpgx-h675-r3jf (chocolateyGH-405) Fix package parameter handling (chocolatey#412) (chocolateyGH-434) Fix disabling bing search for Win release 2004+ (chocolatey#438) chocolateygh-435 docs for DelegateChocoSources (build) Replace direct usage of cinst (build) Pin all packages to specific version (build) Remove deprecated package (build) Make project files consistent (build) Pin to specific version of nuget.commandline (build) Remove VS import for web targets (build) Trying to fix AppVeyor build (doc) Update template ...
2 parents afd049a + c28b044 commit 5f6559a

File tree

67 files changed

+2585
-1735
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+2585
-1735
lines changed

.github/ISSUE_TEMPLATE/aAskQuestion.md

-15
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Boxstarter Gitter Community Support
4+
url: https://gitter.im/chocolatey/boxstarter/
5+
about: Please ask and answer questions here.
6+
- name: Boxstarter Google Groups Community Support
7+
url: https://groups.google.com/forum/#!forum/boxstarter
8+
about: Please ask and answer questions here (very low traffic).
9+
- name: Report Chocolatey Package Issues
10+
url: https://chocolatey.org/docs/package-triage-process
11+
about: This is Boxstarter and not where you should report package issues.
12+
- name: Security Disclosure / Report
13+
url: https://chocolatey.org/security
14+
about: Please do not raise Security issue in this repository. Use the link to report them responsibly. Thank you.

.github/ISSUE_TEMPLATE/dReportPackageIssue.md

-10
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: Enhancement / Feature Request
3+
about: How can we make Boxstarter work better for you? Is there additional functionality
4+
you would love us to consider?
5+
title: ''
6+
labels: 0 - _Triaging, Enhancement
7+
assignees: ''
8+
9+
---
10+
11+
<!--
12+
Please observe https://github.com/chocolatey/boxstarter/blob/master/CONTRIBUTING.md guidelines prior to creating your issue.
13+
14+
NOTE: Keep in mind we have an etiquette regarding communication that we expect folks to observe when they are looking for support in the Boxstarter community. https://github.com/chocolatey/boxstarter/blob/master/README.md#etiquette-regarding-communication
15+
-->
16+
17+
**Is your feature request related to a problem? Please describe.**
18+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
19+
20+
**Describe the solution you'd like**
21+
A clear and concise description of what you want to happen.
22+
23+
**Describe alternatives you've considered**
24+
A clear and concise description of any alternative solutions or features you've considered.
25+
26+
**Additional context**
27+
Add any other context or screenshots about the feature request here.
+57-54
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,57 @@
1-
---
2-
name: Report Issue With Boxstarter
3-
about: Did you find unexpected behavior?
4-
---
5-
6-
<!--
7-
Ensure you have read over Submitting Issues -
8-
https://github.com/chocolatey/boxstarter#submitting-issues
9-
10-
Please check to see if your issue already exists with a quick search of the issues. Start with one relevant term and then add if you get too many results.
11-
12-
NOTE: Keep in mind we have an etiquette regarding communication that we expect folks to observe when they are looking for support in the Boxstarter community. https://github.com/chocolatey/boxstarter/blob/master/README.md#etiquette-regarding-communication
13-
-->
14-
15-
### What You Are Seeing?
16-
17-
<!-- This is a SUMMARY of the issue is and how it happens -->
18-
19-
### What Is Expected?
20-
21-
<!-- Now you've told us what the issue, what did you expect to see -->
22-
23-
### How Did You Get This To Happen? (Steps to Reproduce)
24-
25-
<!--
26-
A simple step by step on how we can reproduce this. This is very important. If we cannot reproduce the issue we can help to resolve it.
27-
28-
1. Step 1
29-
2. Step 2
30-
3. Step 3
31-
-->
32-
33-
### Output Log
34-
35-
<!--
36-
When including the log information, please ensure you have run the command with --debug --verbose. It provides important information for determining an issue.
37-
38-
- Make sure there is no sensitive data shared.
39-
- We need ALL output, not just what you may believe is relevant.
40-
- We need ALL OUTPUT (including the configuration information)
41-
42-
43-
<details>
44-
<summary>Full Log Output</summary>
45-
46-
<p>
47-
48-
~~~sh
49-
PLACE LOG CONTENT HERE IF LESS THAN FIFTY LINES between the `=====`, OR POST A LINK TO A GIST IF MORE THAN 50 LINES using https://gist.github.com/
50-
~~~
51-
52-
</p>
53-
54-
</details>
1+
---
2+
name: Report Issue With Boxstarter
3+
about: Did you find unexpected behavior?
4+
title: ''
5+
labels: 0 - _Triaging, Bug
6+
assignees: ''
7+
8+
---
9+
10+
<!--
11+
Ensure you have read over Submitting Issues -
12+
https://github.com/chocolatey/boxstarter#submitting-issues
13+
14+
Please check to see if your issue already exists with a quick search of the issues. Start with one relevant term and then add if you get too many results.
15+
16+
NOTE: Keep in mind we have an etiquette regarding communication that we expect folks to observe when they are looking for support in the Boxstarter community. https://github.com/chocolatey/boxstarter/blob/master/README.md#etiquette-regarding-communication
17+
-->
18+
19+
### What You Are Seeing?
20+
21+
<!-- This is a SUMMARY of the issue is and how it happens -->
22+
23+
### What Is Expected?
24+
25+
<!-- Now you've told us what the issue, what did you expect to see -->
26+
27+
### How Did You Get This To Happen? (Steps to Reproduce)
28+
29+
<!--
30+
A simple step by step on how we can reproduce this. This is very important. If we cannot reproduce the issue we can help to resolve it.
31+
32+
1. Step 1
33+
2. Step 2
34+
3. Step 3
35+
-->
36+
37+
### Output Log
38+
39+
<!--
40+
When including the log information, please ensure you have run the command with --debug --verbose. It provides important information for determining an issue.
41+
42+
- Make sure there is no sensitive data shared.
43+
- We need ALL output, not just what you may believe is relevant.
44+
- We need ALL OUTPUT (including the configuration information)
45+
46+
<details>
47+
<summary>Full Log Output</summary>
48+
49+
<p>
50+
51+
~~~sh
52+
PLACE LOG CONTENT HERE IF LESS THAN FIFTY LINES between the `=====`, OR POST A LINK TO A GIST IF MORE THAN 50 LINES using https://gist.github.com/
53+
~~~
54+
55+
</p>
56+
57+
</details>

.github/ISSUE_TEMPLATE/kFeatureRequest.md

-10
This file was deleted.

.github/ISSUE_TEMPLATE/vSecurityDisclosure.md

-8
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

+38
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,41 @@ THANKS! We appreciate you reading the entire [Contributing document](https://git
1212
1313
DELETE EVERYTHING IN THIS COMMENT BLOCK
1414
-->
15+
<!--- Please ensure you have raised an issue for discussion before creating a Pull Request -->
16+
<!--- Provide a general summary of your changes in the Title above with the format `(GH-<ISSUE #>) Title` -->
17+
18+
## Description
19+
<!--- Describe your changes in detail -->
20+
21+
## Related Issue
22+
<!--- This project only accepts pull requests related to open issues -->
23+
<!--- If suggesting a new feature or change, please discuss it in an issue first -->
24+
<!--- If fixing a bug, there should be an issue describing it with steps to reproduce -->
25+
<!--- Please link to the issue here: -->
26+
Fixes #
27+
28+
## Motivation and Context
29+
<!--- Why is this change required? What problem does it solve? -->
30+
31+
## How Has This Been Tested?
32+
<!--- Please describe in detail how you tested your changes. -->
33+
<!--- Include details of your testing environment, and the tests you ran to -->
34+
<!--- see how your change affects other areas of the code, etc. -->
35+
36+
## Screenshots (if appropriate):
37+
38+
## Types of changes
39+
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
40+
- [ ] Bug fix (non-breaking change which fixes an issue)
41+
- [ ] New feature (non-breaking change which adds functionality)
42+
- [ ] Breaking change (fix or feature that would cause existing functionality to change)
43+
44+
## Checklist:
45+
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
46+
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
47+
- [ ] My code follows the code style of this project.
48+
- [ ] My change requires a change to the documentation.
49+
- [ ] I have updated the documentation accordingly.
50+
- [ ] I have read the [**CONTRIBUTING**](https://github.com/chocolatey/boxstarter/blob/master/CONTRIBUTING.md) document.
51+
- [ ] I have added tests to cover my changes.
52+
- [ ] All new and existing tests passed.

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ PublishProfiles
2929
.vs
3030
Backup/
3131
UpgradeLog*.htm
32+
.metals/

BoxStarter.Common/Boxstarter.Common.pssproj

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
56
<SchemaVersion>2.0</SchemaVersion>
67
<ProjectGuid>{8c57df4b-e993-4e7d-a531-5e1f2f4223ad}</ProjectGuid>
78
<OutputType>Exe</OutputType>

BoxStarter.Common/boxstarter.common.psd1

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Description = 'Provides common functionality used by multiple Boxstarter Modules
44
ModuleToProcess = './boxstarter.common.psm1'
55

66
# Version number of this module.
7-
ModuleVersion = '2.12.0'
7+
ModuleVersion = '2.13.0'
88

99
# ID used to uniquely identify this module
1010
GUID = 'bbdb3e8b-9daf-4c00-a553-4f3f88fb6e51'
@@ -43,7 +43,7 @@ AliasesToExport = '*'
4343
# FileList = @()
4444

4545
# Private data to pass to the module specified in RootModule/ModuleToProcess
46-
PrivateData = 'c820c2ba7b7cc41015c3f7487b7f09d5b47b8310'
46+
PrivateData = '8459d49a8d5a049d8936519ccf045706c7b3eb23'
4747

4848
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
4949
# DefaultCommandPrefix = ''

Boxstarter.Azure/Boxstarter.Azure.psd1

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Description = 'Provides Cmdlets that will install a boxstarter package on a Wind
44
ModuleToProcess = './boxstarter.Azure.psm1'
55

66
# Version number of this module.
7-
ModuleVersion = '2.12.0'
7+
ModuleVersion = '2.13.0'
88

99
# ID used to uniquely identify this module
1010
GUID = 'bbdb3e8b-9daf-4c00-a553-4f3f88fb6e59'
@@ -45,7 +45,7 @@ AliasesToExport = '*'
4545
# FileList = @()
4646

4747
# Private data to pass to the module specified in RootModule/ModuleToProcess
48-
PrivateData = 'c820c2ba7b7cc41015c3f7487b7f09d5b47b8310'
48+
PrivateData = '8459d49a8d5a049d8936519ccf045706c7b3eb23'
4949

5050
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
5151
# DefaultCommandPrefix = ''

Boxstarter.Azure/Boxstarter.Azure.pssproj

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
56
<SchemaVersion>2.0</SchemaVersion>
67
<ProjectGuid>{afe71b90-0cd1-42b8-9e7a-ffb2791ab326}</ProjectGuid>
78
<OutputType>Exe</OutputType>

Boxstarter.Bootstrapper/Boxstarter.Bootstrapper.pssproj

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
56
<SchemaVersion>2.0</SchemaVersion>
67
<ProjectGuid>{5e1cddbb-95bc-4f9d-8491-d7ad6c497d2c}</ProjectGuid>
78
<OutputType>Exe</OutputType>

Boxstarter.Bootstrapper/Boxstarter.bootstrapper.psd1

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Description = 'Provides an unattended installation environment supporting automa
44
ModuleToProcess = './boxstarter.bootstrapper.psm1'
55

66
# Version number of this module.
7-
ModuleVersion = '2.12.0'
7+
ModuleVersion = '2.13.0'
88

99
# ID used to uniquely identify this module
1010
GUID = 'bbdb3e8b-9daf-4c00-a553-4f3f88fb6e50'
@@ -43,7 +43,7 @@ AliasesToExport = '*'
4343
# FileList = @()
4444

4545
# Private data to pass to the module specified in RootModule/ModuleToProcess
46-
PrivateData = 'c820c2ba7b7cc41015c3f7487b7f09d5b47b8310'
46+
PrivateData = '8459d49a8d5a049d8936519ccf045706c7b3eb23'
4747

4848
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
4949
# DefaultCommandPrefix = ''

Boxstarter.Bootstrapper/Init-Settings.ps1

+14-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
if(!$Global:Boxstarter) { $Global:Boxstarter = @{} }
2-
if(!$Boxstarter.ContainsKey('Log')) {
3-
$Boxstarter.Log="$(Get-BoxstarterTempDir)\boxstarter.log"
1+
if (!$Global:Boxstarter) {
2+
$Global:Boxstarter = @{ }
3+
}
4+
if (!$Boxstarter.ContainsKey('Log')) {
5+
$Boxstarter.Log = "$(Get-BoxstarterTempDir)\boxstarter.log"
6+
}
7+
if (!$Boxstarter.ContainsKey('RebootOk')) {
8+
$Boxstarter.RebootOk = $false
9+
}
10+
if (!$Boxstarter.ContainsKey('IsRebooting')) {
11+
$Boxstarter.IsRebooting = $false
12+
}
13+
if (!$Boxstarter.ContainsKey('StopOnPackageFailure')) {
14+
$Boxstarter.StopOnPackageFailure = $false
415
}
5-
if(!$Boxstarter.ContainsKey('RebootOk')) { $Boxstarter.RebootOk=$false }
6-
if(!$Boxstarter.ContainsKey('IsRebooting')) { $Boxstarter.IsRebooting=$false }

0 commit comments

Comments
 (0)