Skip to content

Commit

Permalink
v3: refactoring bali, more modern
Browse files Browse the repository at this point in the history
  • Loading branch information
fcharlie committed Aug 26, 2024
1 parent 5f130e8 commit 431e0e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ CharsetID = "04B0"
```


Bali integrates [`goversioninfo`](https://github.com/josephspurrier/goversioninfo). When the target is Windows, it can embed version information into the executable program. The `versioninfo` field is similar to the `goversioninfo` project. But more loosely, some specific values, such as version, description will be filled with the value of `bali.toml/balisrc.toml`, and `icon`/`manifest` will override `versioninfo.json`.
Bali integrates [`goversioninfo`](https://github.com/josephspurrier/goversioninfo). When the target is Windows, it can embed version information (`winres.toml`) into the executable program.

The benefits of adding a reference program manifest are self-evident. For example, Windows UAC privilege escalation, Windows 10 long path support (ie path support> 260 characters), Windows Vista style controls, TaskDialog, DPI settings, etc. all need to modify the application manifest.

Expand Down
2 changes: 1 addition & 1 deletion script/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ go build
cp "bali" "$TOPLEVEL/bali"

cd "${TOPLEVEL}" || exit 1
if ! "${TOPLEVEL}/bali" --pack=tgz; then
if ! "${TOPLEVEL}/bali" --pack=tar; then
echo "bootstrap bali failed"
exit 1
fi
Expand Down

0 comments on commit 431e0e7

Please sign in to comment.