We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e030694 commit 4a39c6aCopy full SHA for 4a39c6a
buildAssets/builder/config.js
@@ -84,7 +84,11 @@ const baseConfig = {
84
{
85
target: 'rpm',
86
arch: 'x64'
87
- }
+ },
88
+ {
89
+ target: 'tar.gz',
90
+ arch: 'x64'
91
92
]
93
}
94
src/main/aid/automation.ts
@@ -14,7 +14,7 @@ const kWriteTextTimeout = 1000
14
export default class Automation {
15
static grabSelectedText = async (
16
automator: Automator,
17
- timeout: number = 500
+ timeout: number = 1000
18
): Promise<string> => {
19
// wait for focus
20
await wait(10)
@@ -34,7 +34,7 @@ export default class Automation {
34
console.log(`Grab text timeout after ${timeout}ms`)
35
break
36
37
- await wait(50)
+ await wait(100)
38
39
40
// log
0 commit comments