electron-findbar 0.6.4 → 0.6.5
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/LICENSE +1 -1
- package/README.md +4 -12
- package/index.js +2 -1
- package/package.json +1 -1
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -8,18 +8,10 @@
|
|
|
8
8
|
Chrome-like findbar for your Electron application
|
|
9
9
|
</p>
|
|
10
10
|
<p align='center'>
|
|
11
|
-
<a href="https://github.com/ECRomaneli/electron-findbar/tags" style=
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
<a href="https://github.com/ECRomaneli/electron-findbar/
|
|
15
|
-
<img src="https://img.shields.io/github/last-commit/ecromaneli/electron-findbar?style=for-the-badge" alt="Last Commit">
|
|
16
|
-
</a>
|
|
17
|
-
<a href="https://github.com/ECRomaneli/electron-findbar/blob/master/LICENSE" style='text-decoration:none'>
|
|
18
|
-
<img src="https://img.shields.io/github/license/ecromaneli/electron-findbar?style=for-the-badge" alt="License">
|
|
19
|
-
</a>
|
|
20
|
-
<a href="https://github.com/ECRomaneli/electron-findbar/issues" style='text-decoration:none'>
|
|
21
|
-
<img src="https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=for-the-badge" alt="Contributions Welcome">
|
|
22
|
-
</a>
|
|
11
|
+
<a href="https://github.com/ECRomaneli/electron-findbar/tags"><img src="https://img.shields.io/github/v/tag/ecromaneli/electron-findbar?label=version&sort=semver&style=for-the-badge" alt="Version"></a>
|
|
12
|
+
<a href="https://github.com/ECRomaneli/electron-findbar/commits/master"><img src="https://img.shields.io/github/last-commit/ecromaneli/electron-findbar?style=for-the-badge" alt="Last Commit"></a>
|
|
13
|
+
<a href="https://github.com/ECRomaneli/electron-findbar/blob/master/LICENSE"><img src="https://img.shields.io/github/license/ecromaneli/electron-findbar?style=for-the-badge" alt="License"></a>
|
|
14
|
+
<a href="https://github.com/ECRomaneli/electron-findbar/issues"><img src="https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=for-the-badge" alt="Contributions Welcome"></a>
|
|
23
15
|
</p>
|
|
24
16
|
|
|
25
17
|
## Installation
|
package/index.js
CHANGED
|
@@ -260,7 +260,8 @@ class Findbar {
|
|
|
260
260
|
options.acceptFirstMouse = options.acceptFirstMouse ?? true
|
|
261
261
|
options.parent = parent
|
|
262
262
|
options.frame = false
|
|
263
|
-
options.
|
|
263
|
+
options.roundedCorners = true
|
|
264
|
+
options.transparent = process.platform === 'linux'
|
|
264
265
|
options.maximizable = false
|
|
265
266
|
options.minimizable = false
|
|
266
267
|
options.skipTaskbar = true
|