nw-builder 3.7.3 → 3.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [3.7.4] - 2022-06-06
11
+
12
+ ## Removed
13
+
14
+ - Remove `Version` from `CFBundleShortVersionString` [#576](https://github.com/nwjs-community/nw-builder/pull/576)
15
+
10
16
  ## [3.7.2] - 2022-06-02
11
17
 
12
18
  ## Added
package/lib/utils.cjs CHANGED
@@ -202,7 +202,7 @@ module.exports = {
202
202
  }
203
203
  if (parsedParams.version) {
204
204
  obj.CFBundleVersion = parsedParams.version;
205
- obj.CFBundleShortVersionString = "Version " + parsedParams.version;
205
+ obj.CFBundleShortVersionString = parsedParams.version;
206
206
  }
207
207
  if (parsedParams.copyright) {
208
208
  obj.NSHumanReadableCopyright = parsedParams.copyright;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nw-builder",
3
- "version": "3.7.3",
3
+ "version": "3.7.4",
4
4
  "description": "Build NW.js desktop applications for Mac, Windows and Linux.",
5
5
  "keywords": [
6
6
  "NW.js",
@@ -21,7 +21,7 @@
21
21
  <key>CFBundlePackageType</key>
22
22
  <string>APPL</string>
23
23
  <key>CFBundleShortVersionString</key>
24
- <string>Version 1.3.3.7</string>
24
+ <string>1.3.3.7</string>
25
25
  <key>CFBundleVersion</key>
26
26
  <string>1.3.3.7</string>
27
27
  <key>LSFileQuarantineEnabled</key>
@@ -21,7 +21,7 @@
21
21
  <key>CFBundlePackageType</key>
22
22
  <string>APPL</string>
23
23
  <key>CFBundleShortVersionString</key>
24
- <string>Version 1.3.3.7</string>
24
+ <string>1.3.3.7</string>
25
25
  <key>CFBundleVersion</key>
26
26
  <string>1.3.3.7</string>
27
27
  <key>LSFileQuarantineEnabled</key>