-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Windows application manifest (#620)
Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
- Loading branch information
Showing
9 changed files
with
80 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
pkg/operator/crds/*.yaml linguist-generated=true | ||
|
||
*.txtar text eol=lf | ||
*.txtar text eol=lf | ||
Makefile text eol=lf | ||
tools/make/*.mk text eol=lf | ||
tools/image-tag text eol=lf | ||
tools/release text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ buildx-v* | |
cover*.out | ||
.uptodate | ||
node_modules | ||
*.syso | ||
|
||
/docs/variables.mk.local | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// Package winmanifest provides a basic manifest. | ||
// | ||
// You import it for its side effects only, as | ||
// | ||
// import _ "github.com/grafana/alloy/internal/winmanifest" | ||
// | ||
// On non-Windows platforms this package does nothing. | ||
|
||
package winmanifest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
package winmanifest | ||
|
||
//go:generate go run github.com/tc-hib/go-winres@v0.3.3 make --product-version=git-tag --file-version=git-tag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"RT_GROUP_ICON": { | ||
"#1": { | ||
"0000": "../../../packaging/windows/logo.ico" | ||
} | ||
}, | ||
"RT_MANIFEST": { | ||
"#1": { | ||
"0409": { | ||
"description": "OpenTelemetry Collector distribution with programmable pipelines", | ||
"minimum-os": "win7", | ||
"execution-level": "as invoker", | ||
"ui-access": false, | ||
"long-path-aware": true | ||
} | ||
} | ||
}, | ||
"RT_VERSION": { | ||
"#1": { | ||
"0000": { | ||
"fixed": { | ||
"file_version": "0.0.0.0", | ||
"product_version": "0.0.0.0" | ||
}, | ||
"info": { | ||
"0409": { | ||
"Comments": "", | ||
"CompanyName": "Grafana Labs", | ||
"FileDescription": "OpenTelemetry Collector distribution with programmable pipelines", | ||
"FileVersion": "", | ||
"InternalName": "", | ||
"LegalCopyright": "Grafana Labs", | ||
"LegalTrademarks": "", | ||
"OriginalFilename": "", | ||
"PrivateBuild": "", | ||
"ProductName": "Grafana Alloy", | ||
"ProductVersion": "", | ||
"SpecialBuild": "" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters