5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 17:52:29 +08:00

chore: update npm and docker package names for dnf package manager (#2790)

* chore: update package names for dnf package manager

* chore: update changelog
This commit is contained in:
Aranggi J. Toar 2023-07-24 16:53:24 +07:00 committed by GitHub
parent 7f402bf0c4
commit 48b35aaafe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -44,6 +44,7 @@ func (y *Dnf) Packages() packagemap {
},
"npm": []*Package{
{Name: "npm", SystemPackage: true},
{Name: "nodejs-npm", SystemPackage: true},
},
"upx": []*Package{
{Name: "upx", SystemPackage: true, Optional: true},
@ -57,6 +58,7 @@ func (y *Dnf) Packages() packagemap {
"fedora": "Follow the guide: https://docs.docker.com/engine/install/fedora/",
},
},
{Name: "moby-engine", SystemPackage: true, Optional: true},
},
}
}

View File

@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Added correct NodeJS and Docker package names for DNF package manager of Fedora 38. Added by @aranggitoar in [PR](https://github.com/wailsapp/wails/pull/2790)
- Added `-devtools` production build flag. Added by @mmghv in [PR](https://github.com/wailsapp/wails/pull/2725)
- Added `EnableDefaultContextMenu` option to allow enabling the browser's default context-menu in production . Added by @mmghv in [PR](https://github.com/wailsapp/wails/pull/2733)
- Added smart functionality for the default context-menu in production with CSS styles to control it. Added by @mmghv in [PR](https://github.com/wailsapp/wails/pull/2748)