mirror of https://github.com/axmolengine/axmol.git
Merge pull request #14551 from slackmoehrle/fix_server_in_cpp_tests
changed to cocos2d-x.org server
This commit is contained in:
commit
4ab1540ccc
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"packageUrl" : "http://tools.itharbors.com/assets_manager/AMTestScene1/",
|
||||
"remoteManifestUrl" : "http://tools.itharbors.com/assets_manager/AMTestScene1/project_dev.manifest",
|
||||
"remoteVersionUrl" : "http://tools.itharbors.com/assets_manager/AMTestScene1/version_dev.manifest",
|
||||
"packageUrl" : "http://cocos2d-x.org/assets/cpp-tests-resources/assets_manager/AMTestScene1/",
|
||||
"remoteManifestUrl" : "http://cocos2d-x.org/assets/cpp-tests-resources/assets_manager/AMTestScene1/project_dev.manifest",
|
||||
"remoteVersionUrl" : "http://cocos2d-x.org/assets/cpp-tests-resources/assets_manager/AMTestScene1/version_dev.manifest",
|
||||
"version" : "1.0.0",
|
||||
"engineVersion" : "3.0 beta",
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"packageUrl" : "http://tools.itharbors.com/assets_manager/AMTestScene2/",
|
||||
"remoteManifestUrl" : "http://tools.itharbors.com/assets_manager/AMTestScene2/project_dev.manifest",
|
||||
"packageUrl" : "http://cocos2d-x.org/assets/cpp-tests-resources/assets_manager/AMTestScene2/",
|
||||
"remoteManifestUrl" : "http://cocos2d-x.org/assets/cpp-tests-resources/assets_manager/AMTestScene2/project_dev.manifest",
|
||||
"version" : "1.0.0",
|
||||
"engineVersion" : "3.0 beta",
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"packageUrl" : "http://tools.itharbors.com/assets_manager/AMTestScene3/",
|
||||
"remoteManifestUrl" : "http://tools.itharbors.com/assets_manager/AMTestScene3/project_dev.manifest",
|
||||
"remoteVersionUrl" : "http://tools.itharbors.com/assets_manager/AMTestScene3/version_dev.manifest",
|
||||
"packageUrl" : "http://cocos2d-x.org/assets/cpp-tests-resources/assets_manager/AMTestScene3/",
|
||||
"remoteManifestUrl" : "http://cocos2d-x.org/assets/cpp-tests-resources/assets_manager/AMTestScene3/project_dev.manifest",
|
||||
"remoteVersionUrl" : "http://cocos2d-x.org/assets/cpp-tests-resources/assets_manager/AMTestScene3/version_dev.manifest",
|
||||
"version" : "1.0.0",
|
||||
"engineVersion" : "3.0 beta",
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"packageUrl" : "http://cocostudio.download.appget.cn/Cocos2D-X/",
|
||||
"remoteManifestUrl" : "http://tools.itharbors.com/assets_manager/AMTestScene4/project_dev.manifest",
|
||||
"remoteVersionUrl" : "http://tools.itharbors.com/assets_manager/AMTestScene4/version_dev.manifest",
|
||||
"remoteManifestUrl" : "http://cocos2d-x.org/assets/cpp-tests-resources/assets_manager/AMTestScene4/project_dev.manifest",
|
||||
"remoteVersionUrl" : "http://cocos2d-x.org/assets/cpp-tests-resources/assets_manager/AMTestScene4/version_dev.manifest",
|
||||
"version" : "1.0.0",
|
||||
"engineVersion" : "3.0 beta",
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"packageUrl" : "http://tools.itharbors.com/assets_manager/ScriptTest/",
|
||||
"remoteManifestUrl" : "http://tools.itharbors.com/assets_manager/ScriptTest/project_dev.manifest",
|
||||
"remoteVersionUrl" : "http://tools.itharbors.com/assets_manager/ScriptTest/version_dev.manifest",
|
||||
"packageUrl" : "http://cocos2d-x.org/assets/cpp-tests-resources/assets_manager/ScriptTest/",
|
||||
"remoteManifestUrl" : "http://cocos2d-x.org/assets/cpp-tests-resources/assets_manager/ScriptTest/project_dev.manifest",
|
||||
"remoteVersionUrl" : "http://cocos2d-x.org/assets/cpp-tests-resources/assets_manager/ScriptTest/version_dev.manifest",
|
||||
"version" : "1.0.0",
|
||||
"engineVersion" : "3.0",
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<false/>
|
||||
<key>NSExceptionDomains</key>
|
||||
<dict>
|
||||
<key>tools.itharbors.com</key>
|
||||
<key>cocos2d-x.org/assets/cpp-tests-resources</key>
|
||||
<dict>
|
||||
<key>NSIncludesSubdomains</key>
|
||||
<true/>
|
||||
|
|
|
@ -153,7 +153,7 @@ var SocketIOTestLayer = cc.Layer.extend({
|
|||
onMenuSIOClientClicked: function(sender) {
|
||||
|
||||
//create a client by using this static method, url does not need to contain the protocol
|
||||
var sioclient = SocketIO.connect("ws://tools.itharbors.com:4000", {"force new connection" : true});
|
||||
var sioclient = SocketIO.connect("ws://cocos2d-x.org/assets/cpp-tests-resources:4000", {"force new connection" : true});
|
||||
|
||||
//if you need to track multiple sockets it is best to store them with tags in your own array for now
|
||||
sioclient.tag = "Test Client";
|
||||
|
@ -193,7 +193,7 @@ var SocketIOTestLayer = cc.Layer.extend({
|
|||
onMenuSIOEndpointClicked: function(sender) {
|
||||
|
||||
//repeat the same connection steps for the namespace "testpoint"
|
||||
var sioendpoint = SocketIO.connect("ws://tools.itharbors.com:4000/testpoint", {"force new connection" : true});
|
||||
var sioendpoint = SocketIO.connect("ws://cocos2d-x.org/assets/cpp-tests-resources:4000/testpoint", {"force new connection" : true});
|
||||
|
||||
//a tag to differentiate in shared callbacks
|
||||
sioendpoint.tag = "Test Endpoint";
|
||||
|
|
Loading…
Reference in New Issue