Artur de Oliveira Tsuda
45e9ed5f0c
Update 'Estilo de código' link.
...
'Estilo de código' in 'Desenvolvimento' section now points to the translated coding-style.md
2015-11-29 23:25:16 -02:00
Paul Betts
b67e70334a
Merge pull request #3621 from lukewestby/patch-1
...
fix misspelling in "rotation" string
2015-11-29 15:33:55 -08:00
Luke Westby
df9ecefe01
fix typo in "rotation" string
2015-11-29 12:22:53 -06:00
Cheng Zhao
62add3abcc
Bump v0.35.2
2015-11-27 22:23:19 +08:00
Cheng Zhao
b529efcd8e
Merge pull request #3608 from atom/cp-execfile
...
Add docs and tests for child_process.execFile
2015-11-27 22:21:33 +08:00
Cheng Zhao
cfdcfcbd80
Add executable permission in CopyFileOut
2015-11-27 22:06:37 +08:00
Cheng Zhao
6ef6a83042
spec: Test execFile and execFileSync
2015-11-27 21:38:43 +08:00
Cheng Zhao
a1fdc701ee
docs: Add notes on spawn and exec
2015-11-27 21:29:31 +08:00
Cheng Zhao
6fb944c842
Merge pull request #3604 from niedzielski/patch-2
...
Update docs for webContents.addWorkSpace
2015-11-27 18:39:11 +08:00
Cheng Zhao
8472528909
Merge pull request #3603 from niedzielski/patch-1
...
Update docs for globalShortcut.register
2015-11-27 18:38:39 +08:00
Cheng Zhao
628ee93b0b
Merge pull request #3606 from preco21/master
...
Update as upstream
2015-11-27 18:38:13 +08:00
Plusb Preco
a96c408df5
Update as upstream
2015-11-27 17:28:09 +09:00
Plusb Preco
8a7aa0171b
Merge remote-tracking branch 'refs/remotes/atom/master'
2015-11-27 17:27:58 +09:00
Stephen Niedzielski
62c65280a1
Update docs for webContents.addWorkSpace
...
Specify that webContents.addWorkSpace cannot be called before DevTools
creation and include example.
Fix : #3536
2015-11-26 23:16:00 -07:00
Stephen Niedzielski
0b245b96e4
Update docs for globalShortcut.register
...
Document return value for globalShortcut.register and common failure scenario.
Fix : #3600
2015-11-26 22:38:47 -07:00
Cheng Zhao
42454b07d0
Merge pull request #3595 from jviotti/jviotti/fix/3512/execFile-override-exec-permissions
...
🐛 Fix missing execution permission bit in execFile override
2015-11-27 11:39:45 +08:00
Juan Cruz Viotti
585ff9062c
🐛 Fix missing execution permission bit in execFile override
...
Consider an electron application that uses `execFile` to run a script
that lives within the application code base:
```coffee
child_process = require 'child_process'
child_process.execFile __dirname + '/script.sh', (error) ->
throw error if error?
```
An application like this will fail when being packaged in an `asar` with
an following error:
```
Error: spawn EACCES
```
Electron overrides certain `fs` functions to make them work within an
`asar` package. In the case of `execFile`, the file to be executed is
extracted from the `asar` package into a temporary file and ran from
there.
The problem is that during the extraction, the original permissions of
the file are lost.
We workaround this by:
1. Extending `asar.stat` to return whether a file is executable or not,
which is information that's already saved in the `asar` header.
2. Setting execution permissions on the extracted file if the above
property holds true.
Fixes: https://github.com/atom/electron/issues/3512
2015-11-26 23:30:23 -04:00
Plusb Preco
43b73a0ced
Merge remote-tracking branch 'refs/remotes/atom/master'
2015-11-27 12:19:47 +09:00
Cheng Zhao
932cd92bf6
Fix wrong deprecation wrappers of BrowserWindow
2015-11-27 10:30:51 +08:00
Cheng Zhao
ed866900e7
Merge pull request #3594 from atom/public-env
...
Add ELECTRON_RUN_AS_NODE environment variable
2015-11-26 21:51:35 +08:00
Cheng Zhao
59402eb23f
Add ELECTRON_NO_ATTACH_CONSOLE env var
...
Close #1556 .
2015-11-26 21:11:28 +08:00
Cheng Zhao
682b48095a
docs: Add example
2015-11-26 20:44:07 +08:00
Cheng Zhao
6534a0e616
docs: Add Environment Variables
2015-11-26 20:37:48 +08:00
Cheng Zhao
b1e6d4f64c
Check ELECTRON_RUN_AS_NODE env var
2015-11-26 20:37:21 +08:00
Cheng Zhao
5ee9e61445
Update brightray for #1369
2015-11-26 19:10:43 +08:00
Cheng Zhao
a551b8eaaa
Merge pull request #3590 from vQuagliaro/doc-windows-open-file
...
[doc] open-file and open-url events are only available on OS X
2015-11-26 18:34:12 +08:00
Vincent Quagliaro
fe4638ef33
📝 open-file and open-url events are only available on OS X
2015-11-26 09:09:45 +01:00
Cheng Zhao
086734cb57
Merge pull request #3588 from atom/fix-fullscreen-crash
...
Clears the delegate when window is going to be closed
2015-11-26 14:10:17 +08:00
Cheng Zhao
b0d4aa211d
Fix compatibility with activate-with-no-open-windows event
2015-11-26 13:57:48 +08:00
Cheng Zhao
6c1878d15b
mac: Clears the delegate when window is going to be closed
...
Since EL Capitan it is possible that the methods of delegate would get
called after the window has been closed.
Refs atom/atom#9584 .
2015-11-26 13:56:56 +08:00
Cheng Zhao
8ce19d8059
Merge pull request #3586 from atom/ipc-fasterer
...
Ensure calling webview.send will not block the renderer
2015-11-26 13:15:08 +08:00
Cheng Zhao
9c62be8fc9
Improve the deprecation notice for ipc module
...
Close #3577 .
2015-11-26 11:06:56 +08:00
Cheng Zhao
873bfd0538
Merge pull request #3574 from preco21/master
...
Update as upstream
2015-11-26 11:02:01 +08:00
Cheng Zhao
ec88567683
Merge pull request #3573 from rprichard/fix_3565
...
Fix https://github.com/atom/electron/issues/3565 by adding a typeof
2015-11-26 11:00:29 +08:00
Paul Betts
789380dfad
Ensure calling webview.send will not block the renderer
...
When the browser process is busy, calling webview.send (a method that appears
on its face to be non-blocking) will actually block, because most webview methods
are remoted to a guest view instance in the browser. Instead, define a few methods
which will instead send its call over an async IPC message.
2015-11-25 15:54:30 -08:00
Plusb Preco
34aecc9327
Update as upstream
2015-11-25 08:55:04 +09:00
Ryan Prichard
0f5a3baff4
Fix https://github.com/atom/electron/issues/3565 by adding a typeof
2015-11-24 16:49:52 -06:00
Cheng Zhao
bf5e9e4f4d
Merge pull request #3568 from laiso/fix_docs
...
docs: s/loadUrl/loadURL/g in docs-translations/
2015-11-24 22:03:46 +08:00
laiso
4acbd3e03f
s/loadUrl/loadURL/g in docs-translations/
2015-11-24 21:02:14 +09:00
Cheng Zhao
b9fd095b04
docs: Mark code blocks
2015-11-24 18:40:50 +08:00
Cheng Zhao
24e892dd17
Update brightray for #3550
2015-11-24 18:39:16 +08:00
Cheng Zhao
bab603d33a
Merge pull request #3550 from etiktin/support_proxy_bypass_list
...
Add support for --proxy-bypass-list command line argument
2015-11-24 18:38:33 +08:00
Cheng Zhao
fe88cb01fc
Merge pull request #3531 from deepak1556/fetch_job_nocontent_patch
...
protocol: handle http responses with no content
2015-11-24 15:45:07 +08:00
Cheng Zhao
a4a14a5f0e
Update brightray for #3458
2015-11-24 15:14:48 +08:00
Cheng Zhao
e634dc567e
Merge pull request #3561 from preco21/master
...
Update as upstream
2015-11-24 13:40:16 +08:00
Plusb Preco
6e6cee3ac6
Small fixes
2015-11-24 10:23:52 +09:00
Plusb Preco
6636effb1d
Update as upstream
...
* Update as upstream
* Add caution of translation version
2015-11-24 10:21:30 +09:00
Plusb Preco
d353a3a204
Merge remote-tracking branch 'refs/remotes/atom/master'
2015-11-23 20:34:00 +09:00
Cheng Zhao
c2197d8a05
Merge pull request #3554 from meowlab/docs-fix
...
docs: Fix deprecated usage tips
2015-11-23 18:19:37 +08:00
Cheng Zhao
9e74b10825
Merge pull request #3548 from dongjoon-hyun/fix_typos_in_koKR_api_ipc_main
...
Fix typos in Korean api/ipc-main.md
2015-11-23 17:45:48 +08:00