@overwolf/ow-electron 34.4.1-beta.0 → 34.4.1

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.
package/README.md CHANGED
@@ -7,7 +7,7 @@ We currently have these npm packages:
7
7
  few features to it
8
8
  - [@overwolf/ow-electron-builder](https://www.npmjs.com/package/@overwolf/ow-electron-builder) is a packaged based on electron-builder which
9
9
  supports building ow-electron
10
- - @overwolf/electron-is-overwolf - similar to
10
+ - [@overwolf/electron-is-overwolf](https://www.npmjs.com/package/@overwolf/electron-is-overwolf) - similar to
11
11
  [electron-is-dev](https://www.npmjs.com/package/electron-is-dev)
12
12
 
13
13
  There is no problem that both packages reside side-by-side with the original
@@ -23,24 +23,24 @@ async function validateChecksums(folderPath) {
23
23
  // Check each file
24
24
  for (const [fileName, expectedHash] of Object.entries(checksums)) {
25
25
  const filePath = path.join(folderPath, fileName);
26
-
27
- console.log(`\nFile: ${fileName}`);
28
- console.log(`Expected hash: ${expectedHash}`);
29
26
 
30
27
  if (fs.existsSync(filePath)) {
31
28
  const actualHash = await calculateFileHash(filePath);
32
- console.log(`Actual hash: ${actualHash}`);
33
29
  const matches = actualHash === expectedHash;
34
- console.log(`Match: ${matches}`);
35
-
36
- // Update checksums.json if hashes don't match
37
30
  if (!matches) {
31
+ console.log(`Actual hash: ${actualHash}`);
32
+ console.log(`File: ${fileName}`);
33
+ console.log(`Expected hash: ${expectedHash}`);
34
+ console.log(`Match: ${matches}`);
35
+ // Update checksums.json if hashes don't match
38
36
  console.log('Updating checksums.json with new hash...');
39
37
  checksums[fileName] = actualHash;
40
38
  hasUpdates = true;
39
+ } else {
40
+ console.log(`File: ${fileName} match`);
41
41
  }
42
42
  } else {
43
- console.log('File not found in specified directory');
43
+ console.log(`File: ${fileName} not found in specified directory`);
44
44
  }
45
45
  }
46
46
 
package/checksums.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "electron-api.json": "da620386690d47805ca1f61d3d48756b2e7cf9d8f5f439da00c8b3bff36d0932",
3
- "ow-electron-v34.4.1-beta.0-darwin-arm64.zip": "28400fc414337a5107476b6dfc5bc454a7d7201c4419106e6d6053b86f6c5691",
4
- "ow-electron-v34.4.1-beta.0-darwin-x64.zip": "9ad859ef67b956fde9b67c95b92e8e7acaf56b6a8d849e68b52751e7c96d58b9",
5
- "ow-electron-v34.4.1-beta.0-linux-x64.zip": "93edc4c4b213a40d7ad8eca1e2c90fe084c4841be5f63f30d4dd026fffe13591",
6
- "ow-electron-v34.4.1-beta.0-linux-arm64.zip": "2f391f8d334722f4924319d12a7d5a80b09a55108fbf83f3a1dc96f8653ae8f6",
7
- "ow-electron-v34.4.1-beta.0-linux-armv7l.zip": "29af72e24c74da70c85bfdce1ed6492b7efbe85f88cfb3da642844b51e5d7259",
8
- "ow-electron-v34.4.1-beta.0-win32-x64.zip": "591fbdbb4aa0d6286fe8a3b24b270cdac920379e820ef044a36dcf2076768f43",
9
- "ow-electron-v34.4.1-beta.0-win32-ia32.zip": "f72a0622a75d6aaf1e9b1289be15aac015fed8df42504fa90f799acd513b4d7e",
10
- "ow-electron-v34.4.1-beta.0-win32-arm64.zip": "c84fdea6841dc3cfc6b6b83398a80a9ea684c078ea2a2798bd62b1e31bbf26f4",
3
+ "ow-electron-v34.4.1-darwin-arm64.zip": "28400fc414337a5107476b6dfc5bc454a7d7201c4419106e6d6053b86f6c5691",
4
+ "ow-electron-v34.4.1-darwin-x64.zip": "9ad859ef67b956fde9b67c95b92e8e7acaf56b6a8d849e68b52751e7c96d58b9",
5
+ "ow-electron-v34.4.1-linux-x64.zip": "93edc4c4b213a40d7ad8eca1e2c90fe084c4841be5f63f30d4dd026fffe13591",
6
+ "ow-electron-v34.4.1-linux-arm64.zip": "2f391f8d334722f4924319d12a7d5a80b09a55108fbf83f3a1dc96f8653ae8f6",
7
+ "ow-electron-v34.4.1-linux-armv7l.zip": "29af72e24c74da70c85bfdce1ed6492b7efbe85f88cfb3da642844b51e5d7259",
8
+ "ow-electron-v34.4.1-win32-x64.zip": "885f665de038b2fc505c99136bcb32e6cd8ea312d1c389da0f85eb5d0e987324",
9
+ "ow-electron-v34.4.1-win32-ia32.zip": "f72a0622a75d6aaf1e9b1289be15aac015fed8df42504fa90f799acd513b4d7e",
10
+ "ow-electron-v34.4.1-win32-arm64.zip": "c84fdea6841dc3cfc6b6b83398a80a9ea684c078ea2a2798bd62b1e31bbf26f4",
11
11
  "electron.d.ts": "ce0562bab8e45bf0fb53b928dfbdbc7e497db6e42a96d05e8695643761aacdab"
12
12
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@overwolf/ow-electron",
3
- "version": "34.4.1-beta.0",
4
- "owElectronVersion": "34.4.1-beta.0",
3
+ "version": "34.4.1",
4
+ "owElectronVersion": "34.4.1",
5
5
  "electronVersion": "34.4.1",
6
6
  "repository": "https://github.com/electron/electron",
7
7
  "description": "Build cross platform desktop apps with JavaScript, HTML, and CSS",
@@ -26,8 +26,5 @@
26
26
  },
27
27
  "engines": {
28
28
  "node": ">= 10.17.0"
29
- },
30
- "publishConfig": {
31
- "tag": "beta"
32
29
  }
33
30
  }