electron-findbar 0.1.0 → 0.2.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.
Files changed (3) hide show
  1. package/README.md +0 -4
  2. package/index.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,7 +1,3 @@
1
- ### Documentation Improvements and Report
2
-
3
- ---
4
-
5
1
  <p align='center'>
6
2
  <a href="https://github.com/ECRomaneli/handbook" style='text-decoration:none'>
7
3
  <img src="https://i.postimg.cc/0QR0s0Z1/findbar-light.png" alt='Findbar Light Theme'>
package/index.js CHANGED
@@ -54,7 +54,7 @@ class Findbar {
54
54
 
55
55
  this.#windowHandler && this.#windowHandler(this.#window)
56
56
 
57
- this.#window.loadFile(path.join('web', 'findbar.html'))
57
+ this.#window.loadFile(path.join(__dirname, 'web', 'findbar.html'))
58
58
  }
59
59
 
60
60
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "electron-findbar",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "description": "Chrome-like findbar for your Electron app.",
5
5
  "main": "index.js",
6
6
  "scripts": {