platform/framework/web/crosswalk-tizen.git
8 years agoFix small typo
Plusb Preco [Wed, 7 Oct 2015 11:19:37 +0000 (20:19 +0900)]
Fix small typo

8 years agoUpdate as upstream
Plusb Preco [Tue, 6 Oct 2015 10:53:35 +0000 (19:53 +0900)]
Update as upstream

8 years agoMerge remote-tracking branch 'atom/master'
Plusb Preco [Tue, 6 Oct 2015 04:55:06 +0000 (13:55 +0900)]
Merge remote-tracking branch 'atom/master'

8 years agoUpdate as upstream
Plusb Preco [Tue, 6 Oct 2015 04:48:39 +0000 (13:48 +0900)]
Update as upstream

8 years agoMerge tag 'v0.33.6'
Cheng Zhao [Mon, 5 Oct 2015 11:58:47 +0000 (19:58 +0800)]
Merge tag 'v0.33.6'

8 years agoBump v0.33.6
Cheng Zhao [Mon, 5 Oct 2015 11:57:30 +0000 (19:57 +0800)]
Bump v0.33.6

8 years agoFix typo, closes #2990
Cheng Zhao [Mon, 5 Oct 2015 11:57:14 +0000 (19:57 +0800)]
Fix typo, closes #2990

8 years agoMerge pull request #2979 from etiktin/fix_calculating_min_max_4_frameless
Cheng Zhao [Mon, 5 Oct 2015 07:10:27 +0000 (15:10 +0800)]
Merge pull request #2979 from etiktin/fix_calculating_min_max_4_frameless

Fix calculating min/max size in frameless view

8 years agoMerge pull request #2985 from etiktin/fix_restore_size_windows
Cheng Zhao [Mon, 5 Oct 2015 07:09:24 +0000 (15:09 +0800)]
Merge pull request #2985 from etiktin/fix_restore_size_windows

[Windows] Fix restore/unmaximize wrong window size

8 years agoBump v0.33.5
Cheng Zhao [Mon, 5 Oct 2015 03:42:43 +0000 (11:42 +0800)]
Bump v0.33.5

8 years agodocs: "loaded" event of "process"
Cheng Zhao [Mon, 5 Oct 2015 03:41:36 +0000 (11:41 +0800)]
docs: "loaded" event of "process"

8 years agodocs: Removed unneeded changes from PR
Cheng Zhao [Mon, 5 Oct 2015 03:41:06 +0000 (11:41 +0800)]
docs: Removed unneeded changes from PR

8 years agoexample code didn't run
hansrwindhoff [Mon, 5 Oct 2015 02:14:52 +0000 (20:14 -0600)]
example code didn't run

8 years agoMake it work only on Windows
Eran Tiktin [Mon, 5 Oct 2015 01:01:25 +0000 (04:01 +0300)]
Make it work only on Windows

Limiting the solution to Windows only.

8 years agoFix restore/unmaximize wrong window size
Eran Tiktin [Mon, 5 Oct 2015 00:29:02 +0000 (03:29 +0300)]
Fix restore/unmaximize wrong window size

This resolves #2498.

8 years agoUpdate brightray for #877
Cheng Zhao [Sun, 4 Oct 2015 14:19:05 +0000 (22:19 +0800)]
Update brightray for #877

8 years agodocs: Remove `cache` and `userCache` dir
Cheng Zhao [Sun, 4 Oct 2015 13:19:44 +0000 (21:19 +0800)]
docs: Remove `cache` and `userCache` dir

Closes #1404.

8 years agoMerge pull request #2982 from atom/ctrl-c
Cheng Zhao [Sun, 4 Oct 2015 12:48:27 +0000 (20:48 +0800)]
Merge pull request #2982 from atom/ctrl-c

Quit gracefully when Ctrl-C is pressed

8 years agoFix crashing on Linux
Cheng Zhao [Sun, 4 Oct 2015 12:08:19 +0000 (20:08 +0800)]
Fix crashing on Linux

8 years agoFix cpplint warnings
Cheng Zhao [Sun, 4 Oct 2015 11:36:41 +0000 (19:36 +0800)]
Fix cpplint warnings

8 years agoQuit gracefully when Ctrl-C is pressed
Cheng Zhao [Sun, 4 Oct 2015 11:21:36 +0000 (19:21 +0800)]
Quit gracefully when Ctrl-C is pressed

8 years agoMake Browser::Quit more robust
Cheng Zhao [Sun, 4 Oct 2015 11:20:52 +0000 (19:20 +0800)]
Make Browser::Quit more robust

8 years agoMerge pull request #2980 from atom/linux-fix-dpi
Cheng Zhao [Sun, 4 Oct 2015 09:18:35 +0000 (17:18 +0800)]
Merge pull request #2980 from atom/linux-fix-dpi

Do not manually read DPI settings on Linux

8 years agolinux: No longer needs to manually read DPI settings
Cheng Zhao [Sun, 4 Oct 2015 08:53:20 +0000 (16:53 +0800)]
linux: No longer needs to manually read DPI settings

It is now done in brightray by reading the value from GTK+.

8 years agolinux: Enable force showing menubar
Cheng Zhao [Sun, 4 Oct 2015 08:33:03 +0000 (16:33 +0800)]
linux: Enable force showing menubar

This is for debugging purpose.

8 years agolinux: Fix pressing Alt not showing menubar
Cheng Zhao [Sun, 4 Oct 2015 08:32:08 +0000 (16:32 +0800)]
linux: Fix pressing Alt not showing menubar

8 years agoUpdate brightray for atom/brightray#149
Cheng Zhao [Sun, 4 Oct 2015 07:53:09 +0000 (15:53 +0800)]
Update brightray for atom/brightray#149

8 years agoMerge pull request #2978 from chriswmercer/patch-1
Thomas Johansen [Sat, 3 Oct 2015 20:19:57 +0000 (22:19 +0200)]
Merge pull request #2978 from chriswmercer/patch-1

Minor grammar correction

8 years agoFix calculating min/max size in frameless views
Eran Tiktin [Sat, 3 Oct 2015 19:09:57 +0000 (22:09 +0300)]
Fix calculating min/max size in frameless views

The minimum and maximum size that frameless windows had used, was
incorrect. It included the border, so when it was called it actually
added that to the size, so window increased in size. The fix makes sure
that the view will use the frameless size.

This fixes #2945 and partially fixes #1806 (it also refers to some other
issues with hidpi which might still exist).

8 years agoMinor grammar correction
chriswmercer [Sat, 3 Oct 2015 17:03:49 +0000 (18:03 +0100)]
Minor grammar correction

8 years agoMerge pull request #2976 from atom/node_modules_paths
Cheng Zhao [Sat, 3 Oct 2015 13:20:19 +0000 (21:20 +0800)]
Merge pull request #2976 from atom/node_modules_paths

Prevent Node from adding paths outside the app to search paths

8 years agoPrevent Node from adding paths outside this app to search paths
Cheng Zhao [Sat, 3 Oct 2015 12:38:39 +0000 (20:38 +0800)]
Prevent Node from adding paths outside this app to search paths

8 years agoMerge pull request #2975 from preco21/master
Cheng Zhao [Sat, 3 Oct 2015 12:18:59 +0000 (20:18 +0800)]
Merge pull request #2975 from preco21/master

Update as upstream

8 years agoClear node's global search paths
Cheng Zhao [Sat, 3 Oct 2015 11:55:59 +0000 (19:55 +0800)]
Clear node's global search paths

8 years agoNo need to add "app" to search paths
Cheng Zhao [Sat, 3 Oct 2015 09:52:46 +0000 (17:52 +0800)]
No need to add "app" to search paths

8 years agoUpdate as upstream
Plusb Preco [Sat, 3 Oct 2015 08:54:05 +0000 (17:54 +0900)]
Update as upstream

8 years agoMerge remote-tracking branch 'atom/master'
Plusb Preco [Sat, 3 Oct 2015 08:37:05 +0000 (17:37 +0900)]
Merge remote-tracking branch 'atom/master'

8 years agoMerge pull request #2974 from atom/disable-logging
Cheng Zhao [Sat, 3 Oct 2015 08:15:44 +0000 (16:15 +0800)]
Merge pull request #2974 from atom/disable-logging

Disable logging unless --enable-logging is specified

8 years agodocs: --enable-logging
Cheng Zhao [Sat, 3 Oct 2015 07:43:26 +0000 (15:43 +0800)]
docs: --enable-logging

8 years agoDisable logging unless --enable-logging is specified
Cheng Zhao [Sat, 3 Oct 2015 07:33:55 +0000 (15:33 +0800)]
Disable logging unless --enable-logging is specified

8 years agodocs: No leading slash in --url-base
Cheng Zhao [Sat, 3 Oct 2015 05:53:52 +0000 (13:53 +0800)]
docs: No leading slash in --url-base

Fixes #2968.

8 years agodocs: Add "Supported Platforms"
Cheng Zhao [Sat, 3 Oct 2015 05:42:34 +0000 (13:42 +0800)]
docs: Add "Supported Platforms"

8 years agosupported operating system list
Raphael [Sat, 3 Oct 2015 00:41:57 +0000 (17:41 -0700)]
supported operating system list

Proposed fix for issue #2964

8 years agoMerge pull request #7 from atom/master
Eran Tiktin [Fri, 2 Oct 2015 22:25:23 +0000 (01:25 +0300)]
Merge pull request #7 from atom/master

Update from original

8 years agoMerge pull request #2965 from jhen0409/patch-1
Cheng Zhao [Fri, 2 Oct 2015 17:15:33 +0000 (01:15 +0800)]
Merge pull request #2965 from jhen0409/patch-1

Fix typo for docs/api/menu-item.md

8 years agoFix typo for docs/api/menu-item.md
Jhen [Fri, 2 Oct 2015 13:53:55 +0000 (21:53 +0800)]
Fix typo for docs/api/menu-item.md

8 years agoBump v0.33.4
Cheng Zhao [Fri, 2 Oct 2015 05:41:50 +0000 (13:41 +0800)]
Bump v0.33.4

8 years agoMerge pull request #2960 from preco21/master
Cheng Zhao [Fri, 2 Oct 2015 04:33:43 +0000 (12:33 +0800)]
Merge pull request #2960 from preco21/master

Update as upstream, improve grammar

8 years agoUpdate as upstream
Plusb Preco [Fri, 2 Oct 2015 03:46:42 +0000 (12:46 +0900)]
Update as upstream

8 years agoMerge pull request #2950 from atom/revert-2879
Cheng Zhao [Thu, 1 Oct 2015 13:01:51 +0000 (21:01 +0800)]
Merge pull request #2950 from atom/revert-2879

Fix the regression of outerHeight and outerWidth being set to 0 in hidden window

8 years agoOverride document.hidden
Cheng Zhao [Thu, 1 Oct 2015 10:39:35 +0000 (18:39 +0800)]
Override document.hidden

8 years agoRevert #2879
Cheng Zhao [Thu, 1 Oct 2015 09:46:11 +0000 (17:46 +0800)]
Revert #2879

8 years agoUpdate brightray for atom/brightray#147
Cheng Zhao [Thu, 1 Oct 2015 09:31:44 +0000 (17:31 +0800)]
Update brightray for atom/brightray#147

8 years agoUpdate brightray for #2851
Cheng Zhao [Thu, 1 Oct 2015 09:03:45 +0000 (17:03 +0800)]
Update brightray for #2851

8 years agoMerge pull request #2948 from atom/devtools-popup-menu
Cheng Zhao [Thu, 1 Oct 2015 08:55:12 +0000 (16:55 +0800)]
Merge pull request #2948 from atom/devtools-popup-menu

Move devtools methods to WebContents

8 years agodocs: Move devtools methods to WebContents
Cheng Zhao [Thu, 1 Oct 2015 08:30:31 +0000 (16:30 +0800)]
docs: Move devtools methods to WebContents

8 years agoDon't show open dialog as sheet in devtools
Cheng Zhao [Thu, 1 Oct 2015 06:46:33 +0000 (14:46 +0800)]
Don't show open dialog as sheet in devtools

8 years agoInherit owner window in devtools
Cheng Zhao [Thu, 1 Oct 2015 06:41:01 +0000 (14:41 +0800)]
Inherit owner window in devtools

8 years agoDo not enumerate windows in remote.getCurrentWindow
Cheng Zhao [Thu, 1 Oct 2015 06:08:33 +0000 (14:08 +0800)]
Do not enumerate windows in remote.getCurrentWindow

8 years agoAdd WebContents.getOwnerBrowserWindow
Cheng Zhao [Thu, 1 Oct 2015 05:45:59 +0000 (13:45 +0800)]
Add WebContents.getOwnerBrowserWindow

8 years agoMove devtools API to WebContents
Cheng Zhao [Thu, 1 Oct 2015 03:14:19 +0000 (11:14 +0800)]
Move devtools API to WebContents

8 years agoMake Menu.popup accept no parameter
Cheng Zhao [Wed, 30 Sep 2015 15:41:23 +0000 (23:41 +0800)]
Make Menu.popup accept no parameter

8 years agoMerge pull request #2942 from arusakov/docs_update_0.33
Cheng Zhao [Wed, 30 Sep 2015 14:55:25 +0000 (22:55 +0800)]
Merge pull request #2942 from arusakov/docs_update_0.33

Update docs v0.33

8 years agoremove required width and height BrowserWindowOptions
Alexander Rusakov [Wed, 30 Sep 2015 14:13:20 +0000 (17:13 +0300)]
remove required width and height BrowserWindowOptions

8 years agoExit the process when unable to find a valid app
Cheng Zhao [Wed, 30 Sep 2015 09:29:38 +0000 (17:29 +0800)]
Exit the process when unable to find a valid app

Fixes #2583.

8 years agoMerge pull request #2939 from atom/webview-cache-webcontents
Cheng Zhao [Wed, 30 Sep 2015 09:30:16 +0000 (17:30 +0800)]
Merge pull request #2939 from atom/webview-cache-webcontents

Cache remote WebContents object of webview

8 years agoCache remote WebContents object of webview
Cheng Zhao [Wed, 30 Sep 2015 08:58:37 +0000 (16:58 +0800)]
Cache remote WebContents object of webview

8 years agoCode cleanup
Cheng Zhao [Wed, 30 Sep 2015 02:56:42 +0000 (10:56 +0800)]
Code cleanup

8 years agoMerge pull request #2933 from deepak1556/external_protocol_patch
Cheng Zhao [Wed, 30 Sep 2015 02:43:08 +0000 (10:43 +0800)]
Merge pull request #2933 from deepak1556/external_protocol_patch

protocol: allowing default clients to handle external unhandled protocols

8 years agoMerge remote-tracking branch 'atom/master'
Plusb Preco [Wed, 30 Sep 2015 02:01:08 +0000 (11:01 +0900)]
Merge remote-tracking branch 'atom/master'

8 years agoImprove grammar
Plusb Preco [Wed, 30 Sep 2015 01:54:18 +0000 (10:54 +0900)]
Improve grammar

8 years agoprotocol: allowing default clients to handle external unhandled protocols
Robo [Tue, 29 Sep 2015 12:17:26 +0000 (17:47 +0530)]
protocol: allowing default clients to handle external unhandled protocols

8 years agoMerge pull request #2930 from bitdop/patch-1
Cheng Zhao [Tue, 29 Sep 2015 05:58:37 +0000 (13:58 +0800)]
Merge pull request #2930 from bitdop/patch-1

Grammar modifications/fixes

8 years agoUpdate quick-start.md
My-khael Pierce [Tue, 29 Sep 2015 03:09:13 +0000 (23:09 -0400)]
Update quick-start.md

8 years agoMerge pull request #2929 from etiktin/fix_win_state_events
Cheng Zhao [Tue, 29 Sep 2015 01:37:10 +0000 (09:37 +0800)]
Merge pull request #2929 from etiktin/fix_win_state_events

Fix window state events on Windows

8 years agoMerge pull request #2926 from brenca/master
Cheng Zhao [Tue, 29 Sep 2015 01:25:51 +0000 (09:25 +0800)]
Merge pull request #2926 from brenca/master

Add more detailed documentation about the format of frameBuffer (FrameSubscription API)

8 years agoFix window state events on Windows
Eran Tiktin [Mon, 28 Sep 2015 23:20:09 +0000 (02:20 +0300)]
Fix window state events on Windows

This commit fixes the issue we had with window state events not firing
when triggered through Aero Snap.
Instead of listening to command from the system menu (SC_MAXIMIZE etc.),
we use the WM_SIZE event.

This resolves #1381.

8 years agoUpdate as upstream, small changes
Plusb Preco [Mon, 28 Sep 2015 20:35:33 +0000 (05:35 +0900)]
Update as upstream, small changes

8 years agoDetalied documentation about frameBuffer's format.
Heilig Benedek [Mon, 28 Sep 2015 20:33:43 +0000 (22:33 +0200)]
Detalied documentation about frameBuffer's format.

8 years agoMerge pull request #6 from atom/master
Eran Tiktin [Mon, 28 Sep 2015 17:33:24 +0000 (20:33 +0300)]
Merge pull request #6 from atom/master

Update from original

8 years agoMerge pull request #2914 from deepak1556/network_emulation_api_patch
Cheng Zhao [Mon, 28 Sep 2015 09:02:23 +0000 (17:02 +0800)]
Merge pull request #2914 from deepak1556/network_emulation_api_patch

session: api to emulate network conditions

8 years agoUpdate node, fixes #2916
Cheng Zhao [Mon, 28 Sep 2015 07:34:52 +0000 (15:34 +0800)]
Update node, fixes #2916

8 years agoadd examples
Robo [Mon, 28 Sep 2015 07:22:50 +0000 (12:52 +0530)]
add examples

8 years agoupdate brightray
Robo [Mon, 28 Sep 2015 07:09:55 +0000 (12:39 +0530)]
update brightray

8 years agoStyle fix for #2918
Cheng Zhao [Mon, 28 Sep 2015 04:48:33 +0000 (12:48 +0800)]
Style fix for #2918

8 years agoMerge pull request #2918 from brenca/master
Cheng Zhao [Mon, 28 Sep 2015 04:47:22 +0000 (12:47 +0800)]
Merge pull request #2918 from brenca/master

Option to specify button on a MouseEvent and text on a KeyboardEvent when using sendInputEvent

8 years agoMerge pull request #2917 from etiktin/win_dialog_set_default_ex
Cheng Zhao [Mon, 28 Sep 2015 04:17:05 +0000 (12:17 +0800)]
Merge pull request #2917 from etiktin/win_dialog_set_default_ex

Set default extension for Windows file dialogs

8 years agoStyle fix
Heilig Benedek [Mon, 28 Sep 2015 01:05:08 +0000 (03:05 +0200)]
Style fix

8 years agoAdded documentation about the changes
Heilig Benedek [Mon, 28 Sep 2015 00:52:16 +0000 (02:52 +0200)]
Added documentation about the changes

8 years agoAdded text and unmodifiedtext setting when sending char type keyboard events, and...
Heilig Benedek [Mon, 28 Sep 2015 00:41:06 +0000 (02:41 +0200)]
Added text and unmodifiedtext setting when sending char type keyboard events, and made the type of the character read char16, so I can simulate char events from non-english origins.

8 years agoSet default extension in Windows file dialog
Eran Tiktin [Sun, 27 Sep 2015 23:12:47 +0000 (02:12 +0300)]
Set default extension in Windows file dialog

On Windows when you open the save dialog and switch the filter, the
extension is supposed to change accordingly. It didn't happen with the
existing code, since the existing code didn't set the default extension
(should be set to the first filter).

This resolves #2915.

8 years agoMerge pull request #5 from atom/master
Eran Tiktin [Sun, 27 Sep 2015 18:33:37 +0000 (21:33 +0300)]
Merge pull request #5 from atom/master

Update from original

8 years agoMerge pull request #2912 from fscherwi/master
Cheng Zhao [Sun, 27 Sep 2015 14:40:46 +0000 (22:40 +0800)]
Merge pull request #2912 from fscherwi/master

standardize package.json

8 years agoMerge pull request #2910 from nekuz0r/module-preload-option
Cheng Zhao [Sun, 27 Sep 2015 14:32:12 +0000 (22:32 +0800)]
Merge pull request #2910 from nekuz0r/module-preload-option

Add ability to preload modules (--require, -r)

8 years agoMerge pull request #2913 from preco21/master
Cheng Zhao [Sun, 27 Sep 2015 14:23:31 +0000 (22:23 +0800)]
Merge pull request #2913 from preco21/master

Update as upstream, update example variable name prefix

8 years agosession: api to emulate network conditions
Robo [Sun, 27 Sep 2015 13:19:52 +0000 (18:49 +0530)]
session: api to emulate network conditions

8 years agoMerge remote-tracking branch 'atom/master'
Plusb Preco [Sun, 27 Sep 2015 13:20:51 +0000 (22:20 +0900)]
Merge remote-tracking branch 'atom/master'

8 years agoUpdate example variable name prefix (atom to electron)
Plusb Preco [Sun, 27 Sep 2015 13:20:35 +0000 (22:20 +0900)]
Update example variable name prefix (atom to electron)

* Update variable name prefix as `atom` to `electron`

8 years agostandardize package.json
fscherwi [Sun, 27 Sep 2015 12:44:28 +0000 (14:44 +0200)]
standardize package.json

8 years agoAdd ability to preload modules (--require, -r)
Gohy Leandre [Sat, 26 Sep 2015 15:23:34 +0000 (17:23 +0200)]
Add ability to preload modules (--require, -r)