platform/framework/web/crosswalk-tizen.git
8 years agoMerge pull request #2535 from atom/jl-br-win
Jessica Lord [Fri, 28 Aug 2015 18:31:08 +0000 (11:31 -0700)]
Merge pull request #2535 from atom/jl-br-win

Updating Browser Window Documentation

8 years agoMerge pull request #2602 from atom/jl-std-docs-3
Jessica Lord [Fri, 28 Aug 2015 18:30:18 +0000 (11:30 -0700)]
Merge pull request #2602 from atom/jl-std-docs-3

Standardize Docs: dialog, file-object, frameless-window

8 years agoMerge pull request #2619 from etiktin/ignore_native_modules_in_debug_tests_windows
Cheng Zhao [Fri, 28 Aug 2015 02:43:32 +0000 (10:43 +0800)]
Merge pull request #2619 from etiktin/ignore_native_modules_in_debug_tests_windows

Skip native modules in debug tests on Windows

8 years agoMerge pull request #2614 from timruffles/patch-3
Cheng Zhao [Fri, 28 Aug 2015 02:19:35 +0000 (10:19 +0800)]
Merge pull request #2614 from timruffles/patch-3

[docs] improve advice on callbacks passed from renderer to main

8 years agoIgnore native module tests on Windows debug build
Eran Tiktin [Thu, 27 Aug 2015 20:05:06 +0000 (23:05 +0300)]
Ignore native module tests on Windows debug build

This resolves #2558. There are no more errors when running test.py on
the debug build in Windows. When running the release build the tests
will be executed as usual.

8 years agoMerge pull request #1 from atom/master
Eran Tiktin [Thu, 27 Aug 2015 17:31:20 +0000 (20:31 +0300)]
Merge pull request #1 from atom/master

Update from original

8 years agoimprove advice on callbacks passed from renderer to main
Tim Ruffles [Thu, 27 Aug 2015 16:10:02 +0000 (17:10 +0100)]
improve advice on callbacks passed from renderer to main

Remote is a great feature, it's a shame to put people off unnecessarily. I think the original warnings given are too extreme

The potential bugs that stem from not cleaning up event handlers (or any reference) are present in any Javascript code. We don't avoid using event-handlers in the DOM because we might forget to clean them up!

I've added an example of the behaviour of return values from synchronously called callbacks from renderer, and have changed the advice from 'you shouldn't do this' to 'be careful when you do this'.

8 years agoMerge pull request #2613 from atom/fix-geolocation
Cheng Zhao [Thu, 27 Aug 2015 15:01:22 +0000 (23:01 +0800)]
Merge pull request #2613 from atom/fix-geolocation

Opt into location services

8 years agoMerge pull request #2612 from atom/disable-pinch
Cheng Zhao [Thu, 27 Aug 2015 14:52:10 +0000 (22:52 +0800)]
Merge pull request #2612 from atom/disable-pinch

Add webFrame.setZoomLevelLimits API

8 years agoOpt into location services
Cheng Zhao [Thu, 27 Aug 2015 14:50:40 +0000 (22:50 +0800)]
Opt into location services

8 years agoAdd webFrame.setZoomLevelLimits API
Cheng Zhao [Thu, 27 Aug 2015 14:08:25 +0000 (22:08 +0800)]
Add webFrame.setZoomLevelLimits API

8 years agoMerge pull request #2611 from atom/pod-optimize
Cheng Zhao [Thu, 27 Aug 2015 12:51:02 +0000 (20:51 +0800)]
Merge pull request #2611 from atom/pod-optimize

Optimize memory usage when using remote module

8 years agoRemove extra output
Cheng Zhao [Thu, 27 Aug 2015 12:35:04 +0000 (20:35 +0800)]
Remove extra output

8 years agoSuppress the heap snapshot test
Cheng Zhao [Thu, 27 Aug 2015 12:21:05 +0000 (20:21 +0800)]
Suppress the heap snapshot test

It is failing in Travis CI but not in GitHub CI or my own machine,
ignore it for now.

8 years agoIDWeakMap is not used anly more in JS
Cheng Zhao [Thu, 27 Aug 2015 11:48:55 +0000 (19:48 +0800)]
IDWeakMap is not used anly more in JS

8 years agoDon't rely on IDWeakMap for bookkeeping remote objects
Cheng Zhao [Thu, 27 Aug 2015 11:01:34 +0000 (19:01 +0800)]
Don't rely on IDWeakMap for bookkeeping remote objects

It frees us from using C++ to track JS objects, thus improves the
performance of collecting memory.

8 years agoUse V8's new SetWeak method
Cheng Zhao [Thu, 27 Aug 2015 08:41:51 +0000 (16:41 +0800)]
Use V8's new SetWeak method

8 years agoDo not create remote object for simple return values of APIs
Cheng Zhao [Thu, 27 Aug 2015 07:23:23 +0000 (15:23 +0800)]
Do not create remote object for simple return values of APIs

8 years agoFix leak of handle when emitting events
Cheng Zhao [Thu, 27 Aug 2015 07:22:02 +0000 (15:22 +0800)]
Fix leak of handle when emitting events

8 years agoMerge pull request #2608 from atom/fix-debugger
Cheng Zhao [Thu, 27 Aug 2015 06:28:30 +0000 (14:28 +0800)]
Merge pull request #2608 from atom/fix-debugger

Fix debugger not working for main process

8 years agoUpdate node: Remove unneeded exports
Cheng Zhao [Thu, 27 Aug 2015 05:51:46 +0000 (13:51 +0800)]
Update node: Remove unneeded exports

8 years agoUse libuv to wake up main thread
Cheng Zhao [Thu, 27 Aug 2015 05:30:04 +0000 (13:30 +0800)]
Use libuv to wake up main thread

8 years agoUse our debugger implementation in Node
Cheng Zhao [Thu, 27 Aug 2015 05:16:19 +0000 (13:16 +0800)]
Use our debugger implementation in Node

8 years agoImport the TCPListenSocket removed by Chromium
Cheng Zhao [Thu, 27 Aug 2015 04:59:54 +0000 (12:59 +0800)]
Import the TCPListenSocket removed by Chromium

8 years agoRevert "Remove our own debugger implementation"
Cheng Zhao [Thu, 27 Aug 2015 04:25:28 +0000 (12:25 +0800)]
Revert "Remove our own debugger implementation"

This reverts commit 1d148fe2fb0d7013d7d6633539de952e71d756f1.

8 years agoMerge pull request #2607 from atom/fix-quit
Cheng Zhao [Thu, 27 Aug 2015 03:56:58 +0000 (11:56 +0800)]
Merge pull request #2607 from atom/fix-quit

win: Delay quitting until next tick of message loop

8 years agowin: Delay quitting until next tick of message loop
Cheng Zhao [Thu, 27 Aug 2015 03:42:06 +0000 (11:42 +0800)]
win: Delay quitting until next tick of message loop

This fixes app.quit() not working when it is called before the message
loop starts to run.

8 years agoMerge pull request #2606 from atom/win-manifest
Cheng Zhao [Thu, 27 Aug 2015 02:58:06 +0000 (10:58 +0800)]
Merge pull request #2606 from atom/win-manifest

win: Add compatibility information in manifest file

8 years agowin: Add compatibility information in manifest
Cheng Zhao [Thu, 27 Aug 2015 02:45:39 +0000 (10:45 +0800)]
win: Add compatibility information in manifest

8 years agoMerge pull request #2596 from deepak1556/value_converter_patch
Cheng Zhao [Thu, 27 Aug 2015 02:35:31 +0000 (10:35 +0800)]
Merge pull request #2596 from deepak1556/value_converter_patch

nativemate: increase recursion depth

8 years agoMerge pull request #2603 from preco21/master
Jessica Lord [Thu, 27 Aug 2015 01:23:58 +0000 (18:23 -0700)]
Merge pull request #2603 from preco21/master

Fix important typo and update as upstream

8 years agoUpdate as upstream
Plusb Preco [Thu, 27 Aug 2015 00:19:24 +0000 (09:19 +0900)]
Update as upstream

8 years agoFix IMPORTANT Typos and update as upstream
Plusb Preco [Thu, 27 Aug 2015 00:06:12 +0000 (09:06 +0900)]
Fix IMPORTANT Typos and update as upstream

8 years agoSmall edits and line wrap
Jessica Lord [Wed, 26 Aug 2015 23:41:25 +0000 (16:41 -0700)]
Small edits and line wrap

8 years agoNote about platform specific apis
Jessica Lord [Wed, 26 Aug 2015 21:14:59 +0000 (14:14 -0700)]
Note about platform specific apis

8 years agoAdd platform labels
Jessica Lord [Wed, 26 Aug 2015 21:05:47 +0000 (14:05 -0700)]
Add platform labels

8 years agoEdits, grammar, punctuation and merge conflicts
Jessica Lord [Wed, 26 Aug 2015 20:57:42 +0000 (13:57 -0700)]
Edits, grammar, punctuation and merge conflicts

8 years agoAdd (optional) notation
Jessica Lord [Mon, 24 Aug 2015 22:55:53 +0000 (15:55 -0700)]
Add (optional) notation

8 years agoAdd platform label where applicable
Jessica Lord [Mon, 24 Aug 2015 22:45:54 +0000 (15:45 -0700)]
Add platform label where applicable

8 years agoLine wrap 80-col
Jessica Lord [Mon, 24 Aug 2015 22:41:02 +0000 (15:41 -0700)]
Line wrap 80-col

8 years agoText edits per commit comments
Jessica Lord [Thu, 20 Aug 2015 17:03:53 +0000 (19:03 +0200)]
Text edits per commit comments

8 years agoAdd new files to readme
Jessica Lord [Thu, 20 Aug 2015 13:25:22 +0000 (15:25 +0200)]
Add new files to readme

8 years agoBreak out methods, standardize
Jessica Lord [Thu, 20 Aug 2015 13:17:53 +0000 (15:17 +0200)]
Break out methods, standardize

8 years agonativemate: increase recursion depth
Robo [Wed, 26 Aug 2015 10:22:28 +0000 (15:52 +0530)]
nativemate: increase recursion depth

8 years agoMerge pull request #2595 from atom/mac-tray-quick-click
Cheng Zhao [Wed, 26 Aug 2015 09:18:51 +0000 (17:18 +0800)]
Merge pull request #2595 from atom/mac-tray-quick-click

mac: make tray's behavior more official when getting clicked quickly multiple times.

8 years agoMerge pull request #2594 from atom/fix-rounded-corner
Cheng Zhao [Wed, 26 Aug 2015 08:36:50 +0000 (16:36 +0800)]
Merge pull request #2594 from atom/fix-rounded-corner

mac: Do not set rounded corner by adding layer

8 years agomac: make tray's behavior more official when getting clicked quickly
Haojian Wu [Wed, 26 Aug 2015 08:28:22 +0000 (16:28 +0800)]
mac: make tray's behavior more official when getting clicked quickly
multiple times.

8 years agomac: Do not set rounded corner by adding layer
Cheng Zhao [Wed, 26 Aug 2015 07:45:38 +0000 (15:45 +0800)]
mac: Do not set rounded corner by adding layer

8 years agoMerge pull request #2571 from atom/index-entry-startup
Cheng Zhao [Wed, 26 Aug 2015 04:35:24 +0000 (12:35 +0800)]
Merge pull request #2571 from atom/index-entry-startup

Support index.js module resolution at startup of Electron.

8 years agoMerge pull request #2589 from etiktin/patch-5
Cheng Zhao [Wed, 26 Aug 2015 04:22:10 +0000 (12:22 +0800)]
Merge pull request #2589 from etiktin/patch-5

Update build-instructions-windows

8 years agoMerge pull request #2533 from atom/jl-snd-docs
Jessica Lord [Tue, 25 Aug 2015 21:37:48 +0000 (14:37 -0700)]
Merge pull request #2533 from atom/jl-snd-docs

Standardize Docs: app, auto-updater, styleguide

8 years agoUpdate build-instructions-windows
Eran Tiktin [Tue, 25 Aug 2015 20:28:41 +0000 (23:28 +0300)]
Update build-instructions-windows

The build instructions mistakenly said that you can find `atom.exe` under `out\D` instead of `electron.exe`. I fixed that and mentioned that the release build will be to `out\R`.

8 years agoReplace platform notes with one general note
Jessica Lord [Tue, 25 Aug 2015 17:12:21 +0000 (10:12 -0700)]
Replace platform notes with one general note

8 years agoMac → OS X
Jessica Lord [Tue, 25 Aug 2015 17:05:48 +0000 (10:05 -0700)]
Mac → OS X

8 years agoMerge remote-tracking branch 'atom/master'
Plusb Preco [Tue, 25 Aug 2015 13:46:41 +0000 (22:46 +0900)]
Merge remote-tracking branch 'atom/master'

8 years agoUpdate as upstream
Plusb Preco [Tue, 25 Aug 2015 13:46:28 +0000 (22:46 +0900)]
Update as upstream

8 years agoMerge pull request #2577 from preco21/master
Cheng Zhao [Tue, 25 Aug 2015 13:43:01 +0000 (21:43 +0800)]
Merge pull request #2577 from preco21/master

Add more translations and fixes, remove outdated comments

8 years agoReset and remove unrelated files
Plusb Preco [Tue, 25 Aug 2015 13:28:27 +0000 (22:28 +0900)]
Reset and remove unrelated files

8 years agoRevert "Rename xx-ko.md to xx.md"
Plusb Preco [Tue, 25 Aug 2015 13:17:24 +0000 (22:17 +0900)]
Revert "Rename xx-ko.md to xx.md"

This reverts commit 638bb9b0b16f24537f0af8059fe21eb7183d1e54.

8 years agoRevert "Revert "Rename xx-ko.md to xx.md""
Plusb Preco [Tue, 25 Aug 2015 13:17:01 +0000 (22:17 +0900)]
Revert "Revert "Rename xx-ko.md to xx.md""

This reverts commit aef4acb2e65bb1de43c2e98f010c4d4cae3780d6.

8 years agoRevert "Fix link target in README.md"
Plusb Preco [Tue, 25 Aug 2015 13:15:43 +0000 (22:15 +0900)]
Revert "Fix link target in README.md"

This reverts commit c9965f0ffddf174d26ad52489f2a47ce938723c1.

8 years agoRevert "Rename xx-ko.md to xx.md"
Plusb Preco [Tue, 25 Aug 2015 13:14:33 +0000 (22:14 +0900)]
Revert "Rename xx-ko.md to xx.md"

This reverts commit 638bb9b0b16f24537f0af8059fe21eb7183d1e54.

8 years agoMerge branch 'master' into jl-std-docs-3
Jessica Lord [Tue, 25 Aug 2015 13:09:45 +0000 (06:09 -0700)]
Merge branch 'master' into jl-std-docs-3

8 years agoStandardize frameless-window
Jessica Lord [Tue, 25 Aug 2015 12:56:38 +0000 (05:56 -0700)]
Standardize frameless-window

8 years agoMerge remote-tracking branch 'atom/master'
Plusb Preco [Tue, 25 Aug 2015 12:56:37 +0000 (21:56 +0900)]
Merge remote-tracking branch 'atom/master'

8 years agoUpdate brightray and node
Cheng Zhao [Tue, 25 Aug 2015 12:55:35 +0000 (20:55 +0800)]
Update brightray and node

* brightray: fix building on OS X
* node: remove a not used patch

8 years agoRename xx-ko.md to xx.md
Plusb Preco [Tue, 25 Aug 2015 12:54:20 +0000 (21:54 +0900)]
Rename xx-ko.md to xx.md

8 years agoStandardize file-object
Jessica Lord [Tue, 25 Aug 2015 12:48:24 +0000 (05:48 -0700)]
Standardize file-object

8 years agoStandardize dialog
Jessica Lord [Tue, 25 Aug 2015 12:46:06 +0000 (05:46 -0700)]
Standardize dialog

8 years agoMerge pull request #2578 from christian-bromann/patch-1
Cheng Zhao [Tue, 25 Aug 2015 12:40:35 +0000 (20:40 +0800)]
Merge pull request #2578 from christian-bromann/patch-1

minor wording fix, updated example

8 years agoUpdate brightray
Cheng Zhao [Tue, 25 Aug 2015 12:30:50 +0000 (20:30 +0800)]
Update brightray

8 years agoFix link target in README.md
Plusb Preco [Tue, 25 Aug 2015 08:06:16 +0000 (17:06 +0900)]
Fix link target in README.md

8 years agominor wording fix, updated example
Christian Bromann [Tue, 25 Aug 2015 06:15:59 +0000 (23:15 -0700)]
minor wording fix, updated example

8 years agoMerge pull request #2559 from etiktin/fix_test.py_errors_on_windows
Cheng Zhao [Tue, 25 Aug 2015 06:12:11 +0000 (14:12 +0800)]
Merge pull request #2559 from etiktin/fix_test.py_errors_on_windows

Fix path comparison in api-ipc-spec

8 years agoMerge pull request #2556 from etiktin/fix_msg_box_no_close_btn
Cheng Zhao [Tue, 25 Aug 2015 05:57:24 +0000 (13:57 +0800)]
Merge pull request #2556 from etiktin/fix_msg_box_no_close_btn

Fix message box missing a close button on Windows

8 years agoFix typos and improve grammer, translate more files
Plusb Preco [Tue, 25 Aug 2015 05:43:37 +0000 (14:43 +0900)]
Fix typos and improve grammer, translate more files

Translate content-tracing-ko.md file.
Fix typos, improve grammer in tutorials and update as upstream.

8 years agoMerge pull request #2554 from etiktin/patch-4
Cheng Zhao [Tue, 25 Aug 2015 05:41:54 +0000 (13:41 +0800)]
Merge pull request #2554 from etiktin/patch-4

Update coding-style with info about Chromium's types

8 years agoMerge pull request #2550 from LeMoussel/patch-1
Cheng Zhao [Tue, 25 Aug 2015 05:32:06 +0000 (13:32 +0800)]
Merge pull request #2550 from LeMoussel/patch-1

Update using-selenium-and-webdriver.md

8 years agoMerge pull request #2553 from etiktin/patch-3
Cheng Zhao [Tue, 25 Aug 2015 04:49:13 +0000 (12:49 +0800)]
Merge pull request #2553 from etiktin/patch-3

Update dialog.md with info about filter extensions

8 years agoMerge pull request #2547 from atom/dialog-asterisk-extension
Cheng Zhao [Tue, 25 Aug 2015 04:46:36 +0000 (12:46 +0800)]
Merge pull request #2547 from atom/dialog-asterisk-extension

Make dialog works on "*" file extension.

8 years agoMerge pull request #2521 from deepak1556/webcontents_fullscreen_patch
Cheng Zhao [Tue, 25 Aug 2015 04:39:14 +0000 (12:39 +0800)]
Merge pull request #2521 from deepak1556/webcontents_fullscreen_patch

webContents: exit tabbed fullscreen when esc key is pressed

8 years agowebContents: exit tabbed fullscreen when esc key is pressed
Robo [Tue, 18 Aug 2015 17:02:34 +0000 (22:32 +0530)]
webContents: exit tabbed fullscreen when esc key is pressed

8 years agoRemove comments about remote buffer
Plusb Preco [Tue, 25 Aug 2015 01:14:52 +0000 (10:14 +0900)]
Remove comments about remote buffer

Remove comments about remote buffer in browser-window.md, because remote
buffer now supports in remote module.

8 years agoMerge branch 'master' of https://github.com/preco21/electron
Plusb Preco [Tue, 25 Aug 2015 00:44:04 +0000 (09:44 +0900)]
Merge branch 'master' of https://github.com/preco21/electron

8 years agoRemove remain sentences
Plusb Preco [Mon, 24 Aug 2015 23:04:07 +0000 (08:04 +0900)]
Remove remain sentences

8 years agoRemove remain sentences
Plusb Preco [Mon, 24 Aug 2015 23:04:07 +0000 (08:04 +0900)]
Remove remain sentences

8 years agoAdd platform label where applicable
Jessica Lord [Mon, 24 Aug 2015 22:33:07 +0000 (15:33 -0700)]
Add platform label where applicable

8 years agoAdd items to style guide list
Jessica Lord [Mon, 24 Aug 2015 22:18:40 +0000 (15:18 -0700)]
Add items to style guide list

8 years agoRevert "Add links to docs translations"
Jessica Lord [Mon, 24 Aug 2015 22:14:13 +0000 (15:14 -0700)]
Revert "Add links to docs translations"

This reverts commit d7fda9c8cc93cbc5bbe5863d93ad187a8a6fd421.

8 years agoSupport index.js module resolution at startup of Electron.
Haojian Wu [Mon, 24 Aug 2015 13:14:38 +0000 (21:14 +0800)]
Support index.js module resolution at startup of Electron.

8 years agoAdd optional notation
Jessica Lord [Mon, 24 Aug 2015 12:56:19 +0000 (14:56 +0200)]
Add optional notation

8 years agoLine wrap 80
Jessica Lord [Mon, 24 Aug 2015 12:38:29 +0000 (14:38 +0200)]
Line wrap 80

8 years agoMerge pull request #2568 from atom/first-crashed
Cheng Zhao [Mon, 24 Aug 2015 08:35:57 +0000 (16:35 +0800)]
Merge pull request #2568 from atom/first-crashed

Make sure guest view is destroyed immediately when embeder is closed

8 years agoMake sure guest view is destroyed immediately when embeder is closed
Cheng Zhao [Mon, 24 Aug 2015 08:17:15 +0000 (16:17 +0800)]
Make sure guest view is destroyed immediately when embeder is closed

8 years agoasar@0.7.x
Cheng Zhao [Mon, 24 Aug 2015 07:50:02 +0000 (15:50 +0800)]
asar@0.7.x

8 years agoMerge pull request #2557 from atom/jl-mv-translations
Cheng Zhao [Mon, 24 Aug 2015 05:49:10 +0000 (13:49 +0800)]
Merge pull request #2557 from atom/jl-mv-translations

Organize Documentation Translations

8 years agoAdd documentation translation links
Jessica Lord [Sun, 23 Aug 2015 15:19:37 +0000 (17:19 +0200)]
Add documentation translation links

8 years agoAdd links to docs translations
Jessica Lord [Sun, 23 Aug 2015 09:17:19 +0000 (11:17 +0200)]
Add links to docs translations

8 years agoFix path comparison in api-ipc-spec
Eran Tiktin [Sat, 22 Aug 2015 16:50:54 +0000 (19:50 +0300)]
Fix path comparison in api-ipc-spec

One of the tests failed because in one of the paths the drive letter was
upper case `C` and in the other it was lower case `c`.
Paths in Windows are case insensitive, so this shouldn't fail. The fix
was to lower case the paths before comparison (only on Windows).

8 years agoMove files to ES translation docs
Jessica Lord [Sat, 22 Aug 2015 12:24:43 +0000 (14:24 +0200)]
Move files to ES translation docs