XiaoFeng
|
c55f030218
|
Fix "Test change animation intenal" under js test can not change back to 60fps
|
2015-10-28 11:18:12 +08:00 |
pandamicro
|
175f4c02ad
|
Merge pull request #14197 from xiaofeng11/v3_xf
Fix CCDownloader-curl will crash in js-test & Fix broken image link in TextureCacheTest.js
|
2015-10-22 14:45:20 +08:00 |
pandamicro
|
9eeda122e9
|
Fix Scheduler API inconsistency
|
2015-10-21 22:10:48 +08:00 |
XiaoFeng
|
3d626940af
|
Roll back debug commented code
|
2015-10-20 17:23:31 +08:00 |
XiaoFeng
|
7e54a91ee6
|
Fix CCDownloader-curl will crash in js-test
Fix broken image link in TextureCacheTest.js
|
2015-10-20 16:28:03 +08:00 |
pandamicro
|
c365fc5883
|
Merge pull request #14180 from pandamicro/v3
Fix issue for web engine upgrade
|
2015-10-18 22:48:16 +08:00 |
pandamicro
|
11890d6c4b
|
Fix issue for web engine upgrade
|
2015-10-18 00:19:02 +08:00 |
pandamicro
|
8b0a6a6c29
|
Merge pull request #14099 from pandamicro/v3
[ci skip]Sync with CCBoot for web
|
2015-10-10 10:16:16 +08:00 |
pandamicro
|
5ae2812bf8
|
Sync with CCBoot for web
|
2015-10-10 10:15:36 +08:00 |
pandamicro
|
bc9b59b7f7
|
Merge pull request #14096 from pandamicro/v3
[ci skip]Add opacity/color cascade test case for Scale9Sprite
|
2015-10-09 21:07:27 +08:00 |
pandamicro
|
0ea54868e2
|
Add opacity/color cascade test case for Scale9Sprite
|
2015-10-09 21:01:49 +08:00 |
pandamicro
|
87677cdbd1
|
Merge pull request #14088 from chengstory/Fix#23321
Fix Bug #23321
|
2015-10-09 15:27:56 +08:00 |
zhangcheng
|
77062acfa7
|
Fix Bug #23321
|
2015-10-08 14:48:38 +08:00 |
zhangcheng
|
4bf56e5853
|
Fix #23337
Hide menu "cocostudio 2.1", because cocostudio 1.6 Api can't load json exported from cocostudio 2.x.
|
2015-10-08 11:35:43 +08:00 |
pandamicro
|
91928aa23d
|
Add ComponentJS test case and fix windows platforms
|
2015-09-26 19:43:36 +08:00 |
江龙
|
9eb05707fb
|
add custom spine skeletonAnimation test
|
2015-09-25 13:36:48 +08:00 |
ZhangMenghe
|
03e5573f79
|
button Opacity setting
|
2015-09-24 11:13:41 +08:00 |
pandamicro
|
149775ea10
|
Merge pull request #13962 from ZhangMenghe/v3-scrollView
[ci skip] Testcase for multiple items in scrollView
|
2015-09-24 09:35:05 +08:00 |
ZhangMenghe
|
68713d2074
|
Multiple items testcase
|
2015-09-21 18:22:58 +08:00 |
pandamicro
|
cddd7dfdf6
|
Merge pull request #13965 from ZhangMenghe/v3-drawLabels
[ci skip] DrawLabel Mode testcase
|
2015-09-21 15:08:47 +08:00 |
ZhangMenghe
|
26358c9c2c
|
DrawLabel Mode testcase
|
2015-09-21 11:05:21 +08:00 |
ZhangMenghe
|
4054686903
|
Testcase for multiple items in scrollView
|
2015-09-21 10:24:44 +08:00 |
zhangting
|
bb8d9a4145
|
add testcase for writeDataToFile to jstests
|
2015-09-20 16:46:54 +08:00 |
pandamicro
|
6b8d400517
|
Merge pull request #13804 from ZhangMenghe/v3-UItestcase
[ci skip] UItestcase modification to be friendly
|
2015-09-19 00:22:41 +08:00 |
ZhangMenghe
|
6e4d39e909
|
s9sprite action testcase
|
2015-09-18 09:45:43 +08:00 |
ZhangMenghe
|
5f8351ea32
|
UItestcase modification to be friendly
|
2015-09-14 15:31:25 +08:00 |
zhangbin
|
8e9928ad99
|
Remove performance tests from lua-tests & js-tests.
|
2015-09-11 10:53:17 +08:00 |
pandamicro
|
941cd3c9de
|
Merge pull request #13717 from jianglong0156/assetsmanagerContinue
fix the AssetsManagerEx can not continuous transmission
|
2015-09-10 11:34:03 +08:00 |
江龙
|
4509a316cc
|
add uniform conversion
relate issue:https://github.com/cocos2d/cocos2d-x/issues/13747
relate pr:https://github.com/cocos2d/bindings-generator/pull/191
|
2015-09-09 16:03:57 +08:00 |
pandamicro
|
747fab26a8
|
Merge pull request #13735 from jianglong0156/actionExtendReverse
[ci skip]add action reverse issue test case
|
2015-09-09 11:12:47 +08:00 |
江龙
|
ac1af6cd91
|
add action reverse issue test case
|
2015-09-09 11:09:40 +08:00 |
pandamicro
|
dc607a1784
|
Merge pull request #13726 from jianglong0156/actionExtendSquash
support custom action, and rewrite update function
|
2015-09-09 10:25:56 +08:00 |
江龙
|
badd80bf3a
|
support custom action, and rewrite update function
support custom action in js, and developer can rewrite the update function in custom action class.
useage:
// custom action sample code
var customMoveBy = cc.MoveBy.extend({
ctor:function (duration, deltaPos, deltaY) {
this._super(duration, deltaPos, deltaY);
},
update:function (dt) {
this._super(dt);
if (this.getTarget()) { // rand color
this.getTarget().setColor(cc.color(cc.rand()%255, cc.rand()%255, cc.rand()%255));
}
}
});
|
2015-09-09 10:08:07 +08:00 |
江龙
|
8daf026c6c
|
fix the AssetsManagerEx can not continuous transmission for large zip file.
the testcase is extension/assetsmanager
|
2015-09-08 16:34:02 +08:00 |
ZhangMenghe
|
f3190206e0
|
Remove clickAndMove testcase
|
2015-09-01 14:21:08 +08:00 |
WenhaiLin
|
a3b5becb45
|
Sync v3.8 to v3
|
2015-08-31 22:05:37 +08:00 |
pandamicro
|
9d72d6a924
|
Merge pull request #13496 from ZhangMenghe/v3-notification
[ci rebuild] Notification effect enhancement
|
2015-08-28 14:10:42 +08:00 |
VisualSj
|
2d77609fb7
|
Update socket@1.3.6 and web index
|
2015-08-28 11:48:58 +08:00 |
ZhangMenghe
|
1bcc2dec37
|
Notification effect enhancement
|
2015-08-21 10:20:59 +08:00 |
VisualSj
|
22c8163bc8
|
[js-tests][PageView] Button position error
|
2015-08-18 16:12:32 +08:00 |
pandamicro
|
40581c1c25
|
Merge pull request #13422 from VisualSJ/v3-pb-21865
[ci skip] Change ActionManager test name
|
2015-08-17 21:47:20 +08:00 |
VisualSJ
|
be93b6bf2e
|
Change ActionManager test name
|
2015-08-17 20:35:38 +08:00 |
ZhangMenghe
|
eaa5643c7c
|
Fix invisiable testcase of effects
|
2015-08-17 17:26:25 +08:00 |
pandamicro
|
3f160ddbb1
|
Merge pull request #13382 from ZhangMenghe/v3-physics3d
[ci skip] Avoid to trigger touch event multiple times
|
2015-08-17 11:21:51 +08:00 |
pandamicro
|
c0eea61109
|
Merge pull request #13375 from ZhangMenghe/v3-effectAdvance
[ci skip] Fix abnormal effects in effectsTest
|
2015-08-17 11:18:27 +08:00 |
pandamicro
|
1700230213
|
Merge pull request #13379 from ZhangMenghe/v3-rtexture
[ci skip] Modify renderTexture stencilDepth test
|
2015-08-17 10:20:22 +08:00 |
pandamicro
|
6d7c05f0b7
|
Merge pull request #13356 from VisualSJ/v3-updateIndex
[ci skip] Update js-test
|
2015-08-17 10:18:59 +08:00 |
ZhangMenghe
|
06864479f3
|
Avoid to trigger touch event multiple times
|
2015-08-14 18:34:46 +08:00 |
ZhangMenghe
|
61ef51849c
|
Modify renderTexture stencilDepth test
|
2015-08-14 17:53:48 +08:00 |
子龙山人
|
a4a26ccdbe
|
Merge pull request #13357 from ZhangMenghe/v3-effectsTestcase
[ci skip] Modify effects testcases
|
2015-08-14 17:02:02 +08:00 |