File tree Expand file tree Collapse file tree 4 files changed +14
-6
lines changed
content/docs/app-developer-guide
themes/buildpacks/layouts/shortcodes Expand file tree Collapse file tree 4 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ weight=2
4
4
summary =" The basics of taking your Windows app from source code to runnable image."
5
5
+++
6
6
7
+ > ** EXPERIMENTAL** Windows support is experiment!
8
+ >
9
+ > Enable experimental mode by running: ` pack config experimental true `
10
+
7
11
### Precursor
8
12
9
13
#### Recommended reading
@@ -36,8 +40,9 @@ Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion" | Format-T
36
40
37
41
Select the output that best matches your environment:
38
42
{{< page-replace-toggle >}}
39
- {{< page-replace-toggle-option search="2004" replace="1809" >}} Release ID: 1809, Build: <i >any</i > {{< /page-replace-toggle-option >}}
40
- {{< page-replace-toggle-option search="1809" replace="2004" >}} Release ID: 2009, Build: 1904<i >x</i > {{< /page-replace-toggle-option >}}
43
+ {{< page-replace-toggle-option search="1809|2004|2022" replace="1809" >}} Release ID: 1809, Build: <i >any</i > {{< /page-replace-toggle-option >}}
44
+ {{< page-replace-toggle-option search="1809|2004|2022" replace="2004" >}} Release ID: 2009, Build: 1904<i >x</i > {{< /page-replace-toggle-option >}}
45
+ {{< page-replace-toggle-option search="1809|2004|2022" replace="2022" >}} Release ID: 2009, Build: 2200<i >x</i > {{< /page-replace-toggle-option >}}
41
46
{{< /page-replace-toggle >}}
42
47
43
48
<small >[ Learn more about compatibility] [ compatibility ] .</small >
Original file line number Diff line number Diff line change 2
2
{{- .Inner -}}
3
3
</ div >
4
4
< script type ="application/javascript ">
5
- jQuery ( '#page-replacer button' ) . on ( 'click' , function ( ) {
5
+ jQuery ( '#page-replacer button' ) . on ( 'click' , function ( ) {
6
6
jQuery ( '#page-replacer button' ) . removeClass ( 'active' ) ;
7
7
let el = this ;
8
8
jQuery ( el ) . addClass ( 'active' ) ;
9
- jQuery ( '.docs-content *:not([data-search])' ) . replaceText ( el . dataset . search , el . dataset . replace ) ;
9
+ for ( const search of el . dataset . search . split ( "|" ) ) {
10
+ jQuery ( '.docs-content *:not([data-search])' ) . replaceText ( search , el . dataset . replace ) ;
11
+ }
10
12
} ) ;
11
13
jQuery ( '#page-replacer button:first' ) . click ( ) ;
12
14
</ script >
13
-
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module github.com/buildpacks/docs/tools
3
3
go 1.14
4
4
5
5
require (
6
- github.com/buildpacks/pack v0.24.0
6
+ github.com/buildpacks/pack v0.24.1
7
7
github.com/gohugoio/hugo v0.82.0
8
8
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect
9
9
github.com/sabhiram/go-gitignore v0.0.0-20201211210132-54b8a0bf510f // indirect
Original file line number Diff line number Diff line change @@ -241,6 +241,8 @@ github.com/buildpacks/pack v0.23.0 h1:VYeHWwR7TV0NWfb8dOmRM7YsjuF8pBmQ+/5GPr6+19
241
241
github.com/buildpacks/pack v0.23.0 /go.mod h1:eNVcFMwQ4INr/ZBU+L5SFVZWCr2eU3nv3aBxzhqmsrk =
242
242
github.com/buildpacks/pack v0.24.0 h1:Oeq7DImb7PLX5z/11h5kWJC/YZtgCAxJiEBTU/XsnNo =
243
243
github.com/buildpacks/pack v0.24.0 /go.mod h1:3BMdtlXEXTHUGAv31eeuPAebXq+JYZhFrAd7tEi6m0g =
244
+ github.com/buildpacks/pack v0.24.1 h1:CkrdFCWCk/I71E3noNmKtcPha1s+1F9j8ykhbxHLV04 =
245
+ github.com/buildpacks/pack v0.24.1 /go.mod h1:3BMdtlXEXTHUGAv31eeuPAebXq+JYZhFrAd7tEi6m0g =
244
246
github.com/cenkalti/backoff/v4 v4.1.1 /go.mod h1:scbssz8iZGpm3xbr14ovlUdkxfGXNInqkPWOWmG2CLw =
245
247
github.com/census-instrumentation/opencensus-proto v0.2.0 /go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU =
246
248
github.com/census-instrumentation/opencensus-proto v0.2.1 /go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU =
You can’t perform that action at this time.
0 commit comments