platform/framework/web/tizen-extensions-crosswalk.git
10 years agoMerge pull request #156 from jeez/js-style-checker
Leandro A. F. Pereira [Thu, 19 Sep 2013 19:05:22 +0000 (12:05 -0700)]
Merge pull request #156 from jeez/js-style-checker

Add a Javascript style checker to our APIs

10 years agoMerge pull request #157 from cmarcelo/notification-js-api-fixes
cmarcelo [Thu, 19 Sep 2013 17:23:17 +0000 (10:23 -0700)]
Merge pull request #157 from cmarcelo/notification-js-api-fixes

Notification js api fixes

10 years ago[Notification] More default values for properties
Caio Marcelo de Oliveira Filho [Thu, 19 Sep 2013 15:27:51 +0000 (12:27 -0300)]
[Notification] More default values for properties

10 years agoAdd a README file.
Jesus Sanchez-Palencia [Thu, 19 Sep 2013 14:53:05 +0000 (11:53 -0300)]
Add a README file.

10 years ago[Notification] Throw when calling constructors without new
Caio Marcelo de Oliveira Filho [Thu, 19 Sep 2013 15:05:47 +0000 (12:05 -0300)]
[Notification] Throw when calling constructors without new

10 years ago[Notification] Make removal immediate, add NOT_FOUND_ERR
Caio Marcelo de Oliveira Filho [Thu, 19 Sep 2013 14:25:30 +0000 (11:25 -0300)]
[Notification] Make removal immediate, add NOT_FOUND_ERR

10 years ago[Bluetooth] Fix bluetooth_api.js according to our style
Jesus Sanchez-Palencia [Thu, 19 Sep 2013 14:27:21 +0000 (11:27 -0300)]
[Bluetooth] Fix bluetooth_api.js according to our style

10 years ago[Notification] Fixes default values of attributes
Caio Marcelo de Oliveira Filho [Wed, 18 Sep 2013 21:48:46 +0000 (18:48 -0300)]
[Notification] Fixes default values of attributes

10 years ago[Notification] Missing passing argument to NotificationCenter.get()
Caio Marcelo de Oliveira Filho [Wed, 18 Sep 2013 20:45:39 +0000 (17:45 -0300)]
[Notification] Missing passing argument to NotificationCenter.get()

10 years agoAdd a JavaScript Lint script that uses Google's Closure Lint.
Jesus Sanchez-Palencia [Thu, 19 Sep 2013 14:25:52 +0000 (11:25 -0300)]
Add a JavaScript Lint script that uses Google's Closure Lint.

It will simply run Google's closure Lint, but ignoring
the absence of JSDocs and extending max_line_length to 100 columns.

10 years agoMerge pull request #154 from vcgomes/bluetooth-service-handler
Kenneth Rohde Christiansen [Thu, 19 Sep 2013 10:35:28 +0000 (03:35 -0700)]
Merge pull request #154 from vcgomes/bluetooth-service-handler

[Bluetooth] Add registerRFCOMMServiceByUUID

10 years agoMerge pull request #153 from vcgomes/bluetooth-fixes
Kenneth Rohde Christiansen [Thu, 19 Sep 2013 10:29:46 +0000 (03:29 -0700)]
Merge pull request #153 from vcgomes/bluetooth-fixes

[Bluetooth] Fixes dealing with sync replies and the instance destruction

10 years agoMerge pull request #152 from vcgomes/bluetooth-set-powered-workaround
Kenneth Rohde Christiansen [Thu, 19 Sep 2013 10:27:58 +0000 (03:27 -0700)]
Merge pull request #152 from vcgomes/bluetooth-set-powered-workaround

bluetooth: Add a simple workaround for setPowered()

10 years agobluetooth: Add a simple workaround for setPowered()
Vinicius Costa Gomes [Wed, 18 Sep 2013 20:38:51 +0000 (17:38 -0300)]
bluetooth: Add a simple workaround for setPowered()

When the adapter is already powered we may just call the callback.

This is just a temporary solution until there is a proper solution for
the problem of the adapter exiting the USB bus, when it is powered down.

10 years agopackaging: Link with libbluetooth
Vinicius Costa Gomes [Fri, 23 Aug 2013 22:23:52 +0000 (19:23 -0300)]
packaging: Link with libbluetooth

Now that we are using functions provided by libbluetooth we need to
link against it.

10 years agobluetooth: Add support for notifying that a socket as data available
Vinicius Costa Gomes [Thu, 22 Aug 2013 18:40:49 +0000 (15:40 -0300)]
bluetooth: Add support for notifying that a socket as data available

This adds the SocketHasData message that has as parameters the data
that came from the socket and the socket file descriptor number on
which it came.

10 years agobluetooth: Add support for registerRFCOMMServiceByUUID
Vinicius Costa Gomes [Thu, 22 Aug 2013 19:51:29 +0000 (16:51 -0300)]
bluetooth: Add support for registerRFCOMMServiceByUUID

This will create a service handler (in BlueZ terms, a socket listening on
an RFCOMM channel and a SDP record identifying this service), which has a
callback that will be called when a remote device connects to this service.

10 years agobluetooth: Add handler for RFCOMMListen message
Vinicius Costa Gomes [Tue, 20 Aug 2013 22:20:41 +0000 (19:20 -0300)]
bluetooth: Add handler for RFCOMMListen message

This will allow for ServiceHandlers, the server side of RFCOMM, to be
created.

10 years agobluetooth: Cancel all pending calls on the destructor
Vinicius Costa Gomes [Thu, 5 Sep 2013 19:07:31 +0000 (16:07 -0300)]
bluetooth: Cancel all pending calls on the destructor

We explicitly leak the GCancellable, because the calls are cancelled
asynchronously and they may survive BluetoothContext. We will only
free them on the shutdown callback of the extension.

10 years agobluetooth: Fix replying to getDefaultAdapter() before it is ready
Vinicius Costa Gomes [Tue, 3 Sep 2013 23:27:54 +0000 (20:27 -0300)]
bluetooth: Fix replying to getDefaultAdapter() before it is ready

Before we can reply to that message we need to be sure that we have
all the information about the adapter (its path, address, for example)
or that information can't be obtained (BlueZ isn't running).

10 years agoMerge pull request #151 from cmarcelo/notification-use-v8tools
cmarcelo [Wed, 18 Sep 2013 21:46:40 +0000 (14:46 -0700)]
Merge pull request #151 from cmarcelo/notification-use-v8tools

[Notification] Use forceSetProperty to permit true readonly values

10 years ago[Notification] Use forceSetProperty to permit true readonly values
Caio Marcelo de Oliveira Filho [Wed, 18 Sep 2013 21:29:52 +0000 (18:29 -0300)]
[Notification] Use forceSetProperty to permit true readonly values

10 years agoMerge pull request #149 from ricardotk/wip
Kenneth Rohde Christiansen [Wed, 18 Sep 2013 21:03:37 +0000 (14:03 -0700)]
Merge pull request #149 from ricardotk/wip

Fix Time API

10 years agoMerge pull request #150 from cmarcelo/notification-fixes
cmarcelo [Wed, 18 Sep 2013 20:56:45 +0000 (13:56 -0700)]
Merge pull request #150 from cmarcelo/notification-fixes

Notification fixes

10 years ago[Notification] Fix wrong loop in OnDetailedChanged
Caio Marcelo de Oliveira Filho [Wed, 18 Sep 2013 20:19:13 +0000 (17:19 -0300)]
[Notification] Fix wrong loop in OnDetailedChanged

The loop was missing incrementing the iterator. This led to an infinite
loop, and then to crash in the extension process. This patch experiments
with std::find_if to avoid having to write the raw loop at all.

10 years ago[Time] Correctly calculate the difference and return in DAYS or MSECS
Ricardo de Almeida Gonzaga [Wed, 18 Sep 2013 19:58:23 +0000 (16:58 -0300)]
[Time] Correctly calculate the difference and return in DAYS or MSECS

10 years ago[Time] Fix toString()
Ricardo de Almeida Gonzaga [Wed, 18 Sep 2013 18:34:06 +0000 (15:34 -0300)]
[Time] Fix toString()

10 years ago[Time] Constructor now accepting JSDate as argument
Ricardo de Almeida Gonzaga [Wed, 18 Sep 2013 17:42:26 +0000 (14:42 -0300)]
[Time] Constructor now accepting JSDate as argument

10 years ago[Notification] Remove locking from NotificationManager in mobile
Caio Marcelo de Oliveira Filho [Wed, 18 Sep 2013 17:18:06 +0000 (14:18 -0300)]
[Notification] Remove locking from NotificationManager in mobile

Locking was necessary because each instance was running in a separated
thread, but now all of them share the same thread, so it's safe to
access shared state without locking.

10 years ago[Notification] Fix leaking ContextAPI object
Caio Marcelo de Oliveira Filho [Wed, 18 Sep 2013 17:12:50 +0000 (14:12 -0300)]
[Notification] Fix leaking ContextAPI object

10 years ago[Notification] Make constructor explicit
Caio Marcelo de Oliveira Filho [Wed, 18 Sep 2013 17:12:26 +0000 (14:12 -0300)]
[Notification] Make constructor explicit

10 years agoMerge pull request #147 from ricardotk/wip
Jesus Sanchez-Palencia [Wed, 18 Sep 2013 16:34:27 +0000 (09:34 -0700)]
Merge pull request #147 from ricardotk/wip

Fix Time API

10 years ago[Time] difference is now throwing exceptions
Ricardo de Almeida Gonzaga [Wed, 18 Sep 2013 15:22:35 +0000 (12:22 -0300)]
[Time] difference is now throwing exceptions

10 years ago[Time] Add _throwProperTizenException()
Ricardo de Almeida Gonzaga [Wed, 18 Sep 2013 14:06:05 +0000 (11:06 -0300)]
[Time] Add _throwProperTizenException()

10 years agoMerge pull request #141 from ricardotk/wip
Kenneth Rohde Christiansen [Wed, 18 Sep 2013 14:06:12 +0000 (07:06 -0700)]
Merge pull request #141 from ricardotk/wip

Time API fixes

10 years ago[Time] equalsTo, earlierThan and laterThan now are throwing exceptions
Ricardo de Almeida Gonzaga [Tue, 17 Sep 2013 17:00:51 +0000 (14:00 -0300)]
[Time] equalsTo, earlierThan and laterThan now are throwing exceptions

10 years ago[Time] Fix TZDate constructor
Ricardo de Almeida Gonzaga [Tue, 17 Sep 2013 14:03:45 +0000 (11:03 -0300)]
[Time] Fix TZDate constructor

Some of the arguments are optional

10 years ago[Time] Refactor TimeDuration
Ricardo de Almeida Gonzaga [Tue, 17 Sep 2013 13:40:11 +0000 (10:40 -0300)]
[Time] Refactor TimeDuration

Some tests needed to access its variables 'length' and 'unit'

10 years ago[Time] Fix getDay misunderstanding
Ricardo de Almeida Gonzaga [Tue, 17 Sep 2013 17:03:04 +0000 (14:03 -0300)]
[Time] Fix getDay misunderstanding

getDay() returns the day of the week (0 - 6)
getDate() returns the day of the month (1 - 31)

10 years ago[Time] Fix secondsFromUTC() and add getTime()
Ricardo de Almeida Gonzaga [Mon, 16 Sep 2013 19:14:13 +0000 (16:14 -0300)]
[Time] Fix secondsFromUTC() and add getTime()

10 years ago[Time] Add missing setFullYear, getSeconds, setSeconds
Ricardo de Almeida Gonzaga [Mon, 16 Sep 2013 19:11:19 +0000 (16:11 -0300)]
[Time] Add missing setFullYear, getSeconds, setSeconds

10 years agoMerge pull request #146 from legendlee1314/upstream_master
Kenneth Rohde Christiansen [Wed, 18 Sep 2013 09:14:09 +0000 (02:14 -0700)]
Merge pull request #146 from legendlee1314/upstream_master

[SystemInfo] Fix throwing exception with null callback

10 years agoMerge pull request #139 from legendlee1314/master
Kenneth Rohde Christiansen [Wed, 18 Sep 2013 09:13:36 +0000 (02:13 -0700)]
Merge pull request #139 from legendlee1314/master

[SystemInfo][WIFI-Network] Fix illogical error callback and uniform to use C-API listener

10 years ago[SystemInfo] Fix throwing exception with null callback
legendlee1314 [Wed, 18 Sep 2013 08:49:41 +0000 (16:49 +0800)]
[SystemInfo] Fix throwing exception with null callback

10 years agoMerge pull request #145 from fyraimar/master
Kenneth Rohde Christiansen [Wed, 18 Sep 2013 07:36:46 +0000 (00:36 -0700)]
Merge pull request #145 from fyraimar/master

[SystemInfo][CPU] Modify cpu usage calculation algorithm

10 years ago[SystemInfo][CPU] Modify cpu usage calculation algorithm
fyraimar [Thu, 19 Sep 2013 02:55:09 +0000 (10:55 +0800)]
[SystemInfo][CPU] Modify cpu usage calculation algorithm

10 years agoMerge pull request #142 from jeez/bt-fix
Kenneth Rohde Christiansen [Wed, 18 Sep 2013 07:33:16 +0000 (00:33 -0700)]
Merge pull request #142 from jeez/bt-fix

[Bluetooth] Remove unused variables

10 years ago[SystemInfo][WIFI-Network] Fix illogical error callback and uniform to use C-API...
legendlee1314 [Fri, 13 Sep 2013 07:55:01 +0000 (15:55 +0800)]
[SystemInfo][WIFI-Network] Fix illogical error callback and uniform to use C-API listener

10 years agoMerge pull request #143 from darktears/power-fixes
Jesus Sanchez-Palencia [Tue, 17 Sep 2013 19:05:04 +0000 (12:05 -0700)]
Merge pull request #143 from darktears/power-fixes

Power fixes

10 years ago[Power] Make test PowerManager_setScreenBrightness_brightness_TypeMismatch pass.
Alexis Menard [Tue, 17 Sep 2013 18:39:49 +0000 (15:39 -0300)]
[Power] Make test PowerManager_setScreenBrightness_brightness_TypeMismatch pass.

We need to throw the right error when the brightness passed is -Infinite,
+Infinite or NaN.

10 years ago[Power] Fix Power API failures on tct test suites.
Alexis Menard [Tue, 17 Sep 2013 18:21:50 +0000 (15:21 -0300)]
[Power] Fix Power API failures on tct test suites.

-Remove workaround of glib callback as it is not needed anymore : the
extensions run in a separate process.
-Remove commented code in the examples as now switching on and off doesn't
background crosswalk behind the launcher.

10 years ago[Bluetooth] Remove unused variables
Jesus Sanchez-Palencia [Tue, 17 Sep 2013 17:53:41 +0000 (14:53 -0300)]
[Bluetooth] Remove unused variables

10 years agoMerge pull request #140 from legendlee1314/new_master
Kenneth Rohde Christiansen [Tue, 17 Sep 2013 10:51:57 +0000 (03:51 -0700)]
Merge pull request #140 from legendlee1314/new_master

[SystemInfo][Network] Add WIFI network-type and uniform to use C-API listener

10 years ago[SystemInfo][Network] Add WIFI network-type and uniform to use C-API listener
legendlee1314 [Tue, 17 Sep 2013 07:42:11 +0000 (15:42 +0800)]
[SystemInfo][Network] Add WIFI network-type and uniform to use C-API listener

10 years agoMerge pull request #137 from cmarcelo/example-menu-flex
Kenneth Rohde Christiansen [Mon, 16 Sep 2013 22:42:33 +0000 (15:42 -0700)]
Merge pull request #137 from cmarcelo/example-menu-flex

Make examples index.html easier to click now with flex

10 years agoMake examples index.html easier to click now with flex
Caio Marcelo de Oliveira Filho [Mon, 16 Sep 2013 22:04:53 +0000 (19:04 -0300)]
Make examples index.html easier to click now with flex

10 years agoMerge pull request #136 from cmarcelo/example-menu
Kenneth Rohde Christiansen [Mon, 16 Sep 2013 22:23:10 +0000 (15:23 -0700)]
Merge pull request #136 from cmarcelo/example-menu

Make examples index.html easier to click

10 years agoMake examples index.html easier to click
Caio Marcelo de Oliveira Filho [Mon, 16 Sep 2013 22:04:53 +0000 (19:04 -0300)]
Make examples index.html easier to click

10 years agoMerge pull request #135 from halton/master
Kenneth Rohde Christiansen [Mon, 16 Sep 2013 11:00:11 +0000 (04:00 -0700)]
Merge pull request #135 from halton/master

[SystemInfo] Fix style checking error caused by PR #132

10 years ago[SystemInfo] Fix style checking error caused by PR #132
Halton Huo [Mon, 16 Sep 2013 10:54:39 +0000 (18:54 +0800)]
[SystemInfo] Fix style checking error caused by PR #132

10 years agoMerge pull request #132 from Ryan--Yang/master
Kenneth Rohde Christiansen [Mon, 16 Sep 2013 09:22:52 +0000 (02:22 -0700)]
Merge pull request #132 from Ryan--Yang/master

[SystemInfo]fix error when value changed of the battery

10 years ago[SystemInfo]fix error when value changed of the battery
yangruiintel [Mon, 16 Sep 2013 08:49:10 +0000 (16:49 +0800)]
[SystemInfo]fix error when value changed of the battery

10 years agoMerge pull request #130 from halton/master
Kenneth Rohde Christiansen [Mon, 16 Sep 2013 07:58:05 +0000 (00:58 -0700)]
Merge pull request #130 from halton/master

Allow run tools/check-coding-style from any place

10 years agoAllow run tools/check-coding-style from any place
Halton Huo [Mon, 16 Sep 2013 03:36:57 +0000 (11:36 +0800)]
Allow run tools/check-coding-style from any place

10 years agoMerge pull request #129 from qjia7/mymaster
Kenneth Rohde Christiansen [Mon, 16 Sep 2013 07:26:35 +0000 (00:26 -0700)]
Merge pull request #129 from qjia7/mymaster

[SystemInfo] Add parameter type checking in js

10 years ago[SystemInfo] Add parameter type checking in js
Jiajia Qin [Mon, 16 Sep 2013 00:39:02 +0000 (08:39 +0800)]
[SystemInfo] Add parameter type checking in js

10 years agoMerge pull request #123 from fyraimar/master
Kenneth Rohde Christiansen [Sun, 15 Sep 2013 12:05:09 +0000 (05:05 -0700)]
Merge pull request #123 from fyraimar/master

[SystemInfo] Modify Locale API implements on Tizen Mobile and uniform API implements on Desktop

10 years ago[SystemInfo][LOCALE] Use vconf on Tizen Mobile
fyraimar [Sat, 14 Sep 2013 08:51:41 +0000 (16:51 +0800)]
[SystemInfo][LOCALE] Use vconf on Tizen Mobile

10 years ago[SystemInfo] Use timeout_cb_id_ to identify listener on desktop
fyraimar [Thu, 12 Sep 2013 03:11:59 +0000 (11:11 +0800)]
[SystemInfo] Use timeout_cb_id_ to identify listener on desktop

10 years agoMerge pull request #127 from ricardotk/wip
Kenneth Rohde Christiansen [Sat, 14 Sep 2013 10:16:36 +0000 (03:16 -0700)]
Merge pull request #127 from ricardotk/wip

Fix some examples

10 years agoFix notification examples
Ricardo de Almeida Gonzaga [Fri, 13 Sep 2013 18:41:41 +0000 (15:41 -0300)]
Fix notification examples

intentional exception now is using 'shouldThrow'

10 years agoFix error codes on tizen test examples
Ricardo de Almeida Gonzaga [Fri, 13 Sep 2013 18:05:13 +0000 (15:05 -0300)]
Fix error codes on tizen test examples

Error codes are following tizen_api.js and tizen.h

10 years agoUse correct validation on time examples
Ricardo de Almeida Gonzaga [Fri, 13 Sep 2013 17:46:11 +0000 (14:46 -0300)]
Use correct validation on time examples

10 years agoFix time examples
Ricardo de Almeida Gonzaga [Fri, 13 Sep 2013 17:34:05 +0000 (14:34 -0300)]
Fix time examples

10 years agoMerge pull request #118 from qjia7/mymaster
Kenneth Rohde Christiansen [Fri, 13 Sep 2013 14:06:32 +0000 (07:06 -0700)]
Merge pull request #118 from qjia7/mymaster

[SystemInfo] Implement the missed property in cellular

10 years ago[SystemInfo] Capitalize abbreviation in function name
Jiajia Qin [Fri, 13 Sep 2013 10:26:12 +0000 (18:26 +0800)]
[SystemInfo] Capitalize abbreviation in function name

10 years ago[SystemInfo] Fixed type mismatch error in cellular
Jiajia Qin [Fri, 13 Sep 2013 10:18:15 +0000 (18:18 +0800)]
[SystemInfo] Fixed type mismatch error in cellular

10 years ago[SystemInfo] Add apn support in cellular
Jiajia Qin [Tue, 10 Sep 2013 08:09:37 +0000 (16:09 +0800)]
[SystemInfo] Add apn support in cellular

10 years agoMerge pull request #124 from deqing/fix-tizen-exception
Kenneth Rohde Christiansen [Fri, 13 Sep 2013 08:41:20 +0000 (01:41 -0700)]
Merge pull request #124 from deqing/fix-tizen-exception

Value of WebAPIException should be number

10 years agoValue of WebAPIException should be number
Deqing Huang [Fri, 13 Sep 2013 01:39:51 +0000 (09:39 +0800)]
Value of WebAPIException should be number

For code like:
tizen.WebAPIException(tizen.WebAPIException.TYPE_MISMATCH_ERR)

the tizen.WebAPIException.TYPE_MISMATCH_ERR should be number, so that
the WebAPIException can be correctly constructed.

10 years agoMerge pull request #122 from legendlee1314/master
Kenneth Rohde Christiansen [Fri, 13 Sep 2013 06:08:23 +0000 (23:08 -0700)]
Merge pull request #122 from legendlee1314/master

[SystemInfo] Fix read-only properties not covered support

10 years ago[SystemInfo] Fix read-only properties not covered support
legendlee1314 [Thu, 12 Sep 2013 05:14:16 +0000 (13:14 +0800)]
[SystemInfo] Fix read-only properties not covered support

10 years agoMerge pull request #109 from legendlee1314/newdemos
Kenneth Rohde Christiansen [Thu, 12 Sep 2013 08:42:08 +0000 (01:42 -0700)]
Merge pull request #109 from legendlee1314/newdemos

[demo] add system info demo

10 years agoMerge pull request #106 from cmarcelo/c-api
cmarcelo [Wed, 11 Sep 2013 18:02:51 +0000 (11:02 -0700)]
Merge pull request #106 from cmarcelo/c-api

Use new Crosswalk Extension C API

10 years agoMerge pull request #120 from darktears/fullscreen-fix
cmarcelo [Wed, 11 Sep 2013 17:46:37 +0000 (10:46 -0700)]
Merge pull request #120 from darktears/fullscreen-fix

Remove --fullscreen from tizen-extensions-crosswalk script.

10 years agoRemove --fullscreen from tizen-extensions-crosswalk script.
Alexis Menard [Wed, 11 Sep 2013 17:43:07 +0000 (14:43 -0300)]
Remove --fullscreen from tizen-extensions-crosswalk script.

We don't need to call --fullscreen, Xwalk can figure out by itself
that it should run in fullscreen or not as we integrate with the
window manager.

10 years agoUse new Crosswalk Extension C API
Caio Marcelo de Oliveira Filho [Wed, 4 Sep 2013 22:10:29 +0000 (19:10 -0300)]
Use new Crosswalk Extension C API

This commit changed ExtensionAdapater to use new Extension API without
changing any of the existing Context classes. That said,
ExtensionAdapter could be rewrote now with less templates and in a more
straightforward way.

10 years agoMerge pull request #110 from cmarcelo/check-coding-style-script
cmarcelo [Wed, 11 Sep 2013 14:35:46 +0000 (07:35 -0700)]
Merge pull request #110 from cmarcelo/check-coding-style-script

Check coding style script

10 years agoMerge pull request #115 from deqing/master
cmarcelo [Wed, 11 Sep 2013 14:22:29 +0000 (07:22 -0700)]
Merge pull request #115 from deqing/master

[download] Fix bug which stops download being able to build for mobile

10 years agoMerge pull request #119 from legendlee1314/upstream_master
Kenneth Rohde Christiansen [Wed, 11 Sep 2013 09:09:47 +0000 (02:09 -0700)]
Merge pull request #119 from legendlee1314/upstream_master

[SystemInfo] Fix running error on system_info.js

10 years ago[SystemInfo] Fix running error on system_info.js
legendlee1314 [Wed, 11 Sep 2013 09:03:47 +0000 (17:03 +0800)]
[SystemInfo] Fix running error on system_info.js

10 years agoMerge pull request #117 from legendlee1314/master
Kenneth Rohde Christiansen [Wed, 11 Sep 2013 07:49:18 +0000 (00:49 -0700)]
Merge pull request #117 from legendlee1314/master

[SystemInfo] Support read-only properties

10 years ago[SystemInfo] Support read-only properties
legendlee1314 [Tue, 10 Sep 2013 02:13:08 +0000 (10:13 +0800)]
[SystemInfo] Support read-only properties

10 years agoMake 0.3 version as QA validated it.
Alexis Menard [Tue, 10 Sep 2013 11:23:12 +0000 (08:23 -0300)]
Make 0.3 version as QA validated it.

10 years agoMerge pull request #116 from fyraimar/master
Kenneth Rohde Christiansen [Tue, 10 Sep 2013 10:41:21 +0000 (03:41 -0700)]
Merge pull request #116 from fyraimar/master

[Systeminfo]Fix Desktop Build Error

10 years ago[Systeminfo]Fix Desktop Build Error
fyraimar [Wed, 11 Sep 2013 03:27:26 +0000 (11:27 +0800)]
[Systeminfo]Fix Desktop Build Error

10 years agoMerge pull request #114 from qjia7/mymaster
Kenneth Rohde Christiansen [Mon, 9 Sep 2013 14:43:08 +0000 (07:43 -0700)]
Merge pull request #114 from qjia7/mymaster

[SystemInfo] Support multiple frames. Fixed bug #113 #569

10 years agoFixed memory corruption issue
Jiajia Qin [Fri, 6 Sep 2013 11:22:21 +0000 (19:22 +0800)]
Fixed memory corruption issue

10 years agoFixed bugs in the event listening mechanism
Jiajia Qin [Fri, 6 Sep 2013 02:04:46 +0000 (10:04 +0800)]
Fixed bugs in the event listening mechanism

1. Use g_source_remove to unregister the g_timeout_add event.
2. In destructor, check if exists active listening event. If true, stop listening.

10 years ago[SystemInfo] Support multiple frames. Fixed bug #113 #569
Jiajia Qin [Thu, 5 Sep 2013 05:25:05 +0000 (13:25 +0800)]
[SystemInfo] Support multiple frames. Fixed bug #113 #569