diff --git a/CMakeLists.txt b/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/Classes/AppDelegate.cpp b/Classes/AppDelegate.cpp old mode 100644 new mode 100755 index 88ffafe..312051d --- a/Classes/AppDelegate.cpp +++ b/Classes/AppDelegate.cpp @@ -28,6 +28,9 @@ bool AppDelegate::applicationDidFinishLaunching() { // set FPS. the default value is 1.0/60 if you don't call this director->setAnimationInterval(1.0 / 60); + //屏幕适应 + glview->setDesignResolutionSize(640, 1136, ResolutionPolicy::FIXED_WIDTH); + // create a scene. it's an autorelease object auto scene = MainScene::create();// HelloWorld::createScene(); diff --git a/Classes/AppDelegate.h b/Classes/AppDelegate.h old mode 100644 new mode 100755 diff --git a/Classes/ControlLayer.cpp b/Classes/ControlLayer.cpp new file mode 100644 index 0000000..fff3296 --- /dev/null +++ b/Classes/ControlLayer.cpp @@ -0,0 +1,102 @@ +// +// ControlLayer.cpp +// ddgame +// +// Created by mimix on 14-10-9. +// +// + +#include "ControlLayer.h" + + + +ControlLayer::ControlLayer() +{ + onClick=[](Vec2 b){}; + onDrag=[](int b){}; + listen=EventListenerTouchOneByOne::create(); + listen->onTouchBegan =[&](Touch *pTouch, Event *pEvent){ + _op=pTouch->getLocation(); + onClick(_op); + return true; + }; + + s=Director::getInstance()->getVisibleSize(); + //listen->retain(); +} +ControlLayer::~ControlLayer() +{ + //listen->release(); +} +bool ControlLayer::init() +{ + getEventDispatcher()->addEventListenerWithSceneGraphPriority(listen, this); + return true; +} + +ControlLayer* ControlLayer::CreateAt(int type) +{ + ControlLayer* ct; + type=UserDefault::getInstance()->getBoolForKey("IMode", 1); + + switch (type) { + case 2: + ct= new RockerControl(); + break; + case 1: + ct= new TouchControl(); + break; + default: + ct= new DragControl(); + } + ct->init(); + ct->autorelease(); + return ct; +} + +TouchControl::TouchControl():ControlLayer()//按钮 +{ + + const Vec2 Flag[8] = {Vec2(0,0),Vec2(0,0.5),Vec2(0,1),Vec2(0.5,1),Vec2(1,1),Vec2(1,0.5),Vec2(1,0),Vec2(0.5,0)}; + auto menu=Menu::create(); + menu->setPosition(0,0); + menu->setAnchorPoint(Vec2(0,0)); + + + + for (int i=0; i<8; i++) { + auto sQ=Sprite::create("CloseNormal.png"); + auto item=MenuItemSprite::create(sQ, sQ,[this,i](Ref* r){ + this->onDrag(i); + }); + Vec2 r= Vec2::forAngle(CC_DEGREES_TO_RADIANS(i*45+(90+45)))*80; + item->setPosition(r + Vec2(s.width/2, (s.height-640)/2)); + menu->addChild(item); + } + addChild(menu); +} + +DragControl::DragControl():ControlLayer()//滑动 +{ + listen->onTouchEnded =[&](Touch *pTouch, Event *pEvent){ + Vec2 np=pTouch->getLocation(); + Vec2 v= -_op + np; + float ag= CC_RADIANS_TO_DEGREES(v.getAngle()); + ag=(ag>0?ag:360+ag); + int tg= 7-((int)(ag/45 + 2.5)%8); + if(v.length()>s.width*0.1)onDrag(tg); + }; +} + +RockerControl::RockerControl():ControlLayer()//摇杆 +{ + auto s=Director::getInstance()->getVisibleSize(); + auto Right = JoyStick::create(30, 100, false, true, false, false); + Right->setBallWithName("yg.png"); + Right->setDockWithName("ygbg.png"); + Right->setPosition(s.width/2,(s.height-640)/2); + Right->setDelegate(this); + Right->setHitAreaWithRadius(9999); + this->addChild(Right); + //Right->setPosition(Vec2(size.width-JoyStickPosX, JoyStickPosY)); +} \ No newline at end of file diff --git a/Classes/ControlLayer.h b/Classes/ControlLayer.h new file mode 100644 index 0000000..e92f4c4 --- /dev/null +++ b/Classes/ControlLayer.h @@ -0,0 +1,56 @@ +#ifndef __ddgame__ControlLayer__ +#define __ddgame__ControlLayer__ +#include "cocos2d.h" +#include "JoyStick.h" +USING_NS_CC; + +class ControlLayer:public Layer +{ + +protected: + Size s; + EventListenerTouchOneByOne* listen; + Vec2 _op; +public: + std::function onDrag; + std::function onClick; + std::function onMove; +public: + ControlLayer(); + ~ControlLayer(); + bool init(); + CREATE_FUNC(ControlLayer); + static ControlLayer* CreateAt(int type); +}; + +class TouchControl:public ControlLayer +{ +public: + TouchControl(); +}; + +class DragControl:public ControlLayer +{ +public: + DragControl(); +}; + +class RockerControl:public ControlLayer,JoyStickDelegate +{ +public: + RockerControl(); + int ag=0; + virtual void onCCJoyStickUpdate(Node *sender, float angle, cocos2d::Point direction, float power){ + ag=angle; + } + virtual void onCCJoyStickActivated(Node *sender){ + + } + virtual void onCCJoyStickDeactivated(Node *sender){ + ag=(ag>0?ag:360+ag); + int tg= 7-((int)(ag/45 + 2.5)%8); + onDrag(tg); + } +}; + +#endif /* defined(__ddgame__ControlLayer__) */ diff --git a/Classes/EasyMode.cpp b/Classes/EasyMode.cpp new file mode 100644 index 0000000..d448edc --- /dev/null +++ b/Classes/EasyMode.cpp @@ -0,0 +1,44 @@ +// +// EaseMode.cpp +// ddgame +// +// Created by mimix on 14-10-10. +// +// + +#include "EasyMode.h" + + + +bool EasyMode:: init()//游戏模式一:简单模式 +{ + GameLayer::init(); + pigs->addRndPig(); + return true; +} +bool EasyMode::onPigDelete(Pig* pig) +{ + if (pig->isDie()) + { + pig->Die(); + this->addScore(pig->Score); + pigs->addRndPig(); + return false; + } + return true; +} + +bool TestMode:: init()//游戏模式零:test +{ + GameLayer::init(); + + ActionInterval* ac;//4秒出一只 + ac=Sequence::create(CallFunc::create([&]{ + pigs->addRndPig(); + }),DelayTime::create(4), NULL); + ac=RepeatForever::create(ac); + runAction(ac); + + return true; +} + diff --git a/Classes/EasyMode.h b/Classes/EasyMode.h new file mode 100644 index 0000000..b4c46b7 --- /dev/null +++ b/Classes/EasyMode.h @@ -0,0 +1,29 @@ +// +// EaseMode.h +// ddgame +// +// Created by mimix on 14-10-10. +// +// + +#ifndef __ddgame__EasyMode__ +#define __ddgame__EasyMode__ + +#include "GameLayer.h" + +class EasyMode :public GameLayer +{ +public: + bool init(); + bool onPigDelete(Pig *pig); + CREATE_FUNC(EasyMode); +}; + +class TestMode :public GameLayer +{ +public: + bool init(); + CREATE_FUNC(TestMode); +}; + +#endif /* defined(__ddgame__EaseMode__) */ diff --git a/Classes/GameLayer.cpp b/Classes/GameLayer.cpp old mode 100644 new mode 100755 index 2b879cf..da19756 --- a/Classes/GameLayer.cpp +++ b/Classes/GameLayer.cpp @@ -6,13 +6,131 @@ // // -#include "GameLayer.h" +#include "GameLayer.h" +#include "GameOver.h"; +#include "SceneSwitch.h" +void shake(Node* n) +{ + n->runAction( + Repeat:: + create( + Sequence:: + create( + RotateBy:: + create(0.01, -1), + RotateBy:: + create(0.01, 2), + RotateBy:: + create(0.01, -1), NULL), 3)); +} -bool GameLayer::init() + +Vec2 offPosition(Vec2 p, Node* by) { + return p-by->getPosition() +by->getAnchorPointInPoints(); +} + +bool GameLayer::init() +{ - - + Size s=Director::getInstance()->getVisibleSize(); + root=LayerColor::create(Color4B(100, 100, 100, 255), 640, 640); + root->ignoreAnchorPointForPosition(false); + root->setAnchorPoint(Vec2(0.5,1)); + root->setPosition(s.width/2,s.height); + //小猪层 + root->addChild(pigs=PigLayer::create()); + //控制模式 + this->addChild(ctrl=ControlLayer::CreateAt(0)); + //得分界面 + root->addChild(labScore=LabelTTF::create("Score:0", "yahei", 30)); + labScore->setPosition(0,640 - labScore->getBoundingBox().size.height); + labScore->setAnchorPoint(Vec2(0,0)); + //主游戏层 + addChild(root); + ctrl->onClick=[&](Vec2 np){ + pigs->each([&](Pig* pig){ + if (pig->getBoundingBox().containsPoint(offPosition(np, root))) + { + pig->Click(); + return onPigDelete(pig); + } + return true; + }); + }; + ctrl->onDrag=[this](int tg){ + bool isnull=pigs->each([&](Pig* pig){ + if(pig->Drag(tg)) + onPigDelete(pig); + else + return true; + return false; + }); + if(isnull) + setCombo(0); + }; + pigs->onFlee=[this](Pig* pig){ + this->gameStop(); + this->addChild(GameOver::Create(GameMode)); + ::shake(root); + }; + return true; +} +bool GameLayer::onPigDelete(Pig* pig) +{ + if (pig->isDie()) + { + pig->Die(); + this->addScore(pig->Score); + return false; + } return true; -} \ No newline at end of file +} +void GameLayer::gameStop() +{ + stopAllActions(); + pigs->each([](Pig* p){ + p->stopAllActions(); + return true; + }); + pigs->stopAllActions(); + removeChild(ctrl); +} + +void GameLayer::setCombo(int i) +{ + auto lab=LabelTTF::create("", "", 50); + if (i==0) + log("bad"); + else + switch ((int)(i/2)) { + case 0: + log("D"); + break; + case 1: + log("C"); + break; + case 2: + log("B"); + break; + case 3: + log("A"); + break; + default: + log("S"); + } + Combo=i; +} + +void GameLayer::addScore(int i) +{ + score+=i; + setCombo(Combo+1); + labScore->stopAllActions(); + labScore->runAction(Sequence::create(ScaleBy::create(0.3, 1.1),ScaleTo::create(1, 1),CallFunc::create([]{ + }), NULL)); + + labScore->setString(String::createWithFormat("Score:%d",score)->getCString()); + +} diff --git a/Classes/GameLayer.h b/Classes/GameLayer.h old mode 100644 new mode 100755 index 6c81f4e..8ee10e1 --- a/Classes/GameLayer.h +++ b/Classes/GameLayer.h @@ -1,19 +1,30 @@ #ifndef __ddgame__GameLayer__ #define __ddgame__GameLayer__ #include "cocos2d.h" +#include "PigLayer.h" +#include "ControlLayer.h" USING_NS_CC; class GameLayer:public Layer { +protected: + Node* root; + PigLayer* pigs; + LabelTTF* labScore; + ControlLayer* ctrl; + private: + int score=0; + void initEvent(); + void gameStop(); public: + int GameMode=1; + void setCombo(int i); + int Combo=0; + void addScore(int i); bool init(); CREATE_FUNC(GameLayer); - +public: + virtual bool onPigDelete(Pig *pig); }; - - - - - #endif /* defined(__ddgame__GameLayer__) */ diff --git a/Classes/GameOver.cpp b/Classes/GameOver.cpp new file mode 100755 index 0000000..4bef60c --- /dev/null +++ b/Classes/GameOver.cpp @@ -0,0 +1,38 @@ +// +// GameOver.cpp +// ddgame +// +// Created by aaa on 14-10-8. +// +// + +#include "GameOver.h" +#include "SceneSwitch.h" + + +bool GameOver::init() +{ + Layer::init(); + Size s=Director::getInstance()->getVisibleSize(); + + + auto bg=LayerColor::create(Color4B(0, 100, 100, 100), 540, 340); + bg->ignoreAnchorPointForPosition(false); + bg->setPosition(s.width*0.5,s.height*0.5); + + auto itemRestart=MenuItemLabel::create(LabelTTF::create("重新开始", "", 30), [this](Ref* f){ + SceneSwitch::Playing(gameType); + }); + auto itemMenu=MenuItemLabel::create(LabelTTF::create("主菜单", "", 30), [this](Ref* f){ + SceneSwitch::Starting(); + }); + itemRestart->setPosition(140,40); + itemMenu->setPosition(400,40); + + + auto menu=Menu::create(itemRestart,itemMenu,NULL); + menu->setPosition(0,0); + bg->addChild(menu); + addChild(bg); + return true; +} \ No newline at end of file diff --git a/Classes/GameOver.h b/Classes/GameOver.h new file mode 100755 index 0000000..f442944 --- /dev/null +++ b/Classes/GameOver.h @@ -0,0 +1,32 @@ +// +// GameOver.h +// ddgame +// +// Created by aaa on 14-10-8. +// +// + +#ifndef __ddgame__GameOver__ +#define __ddgame__GameOver__ + +#include +#include "cocos2d.h" + +USING_NS_CC; + +class GameOver: public Layer +{ + int gameType=0; +public: + static GameOver* Create(int i) + { + auto g=GameOver::create(); + g->gameType=i; + return g; + } + virtual bool init(); + CREATE_FUNC(GameOver); + +} +; +#endif /* defined(__ddgame__GameOver__) */ diff --git a/Classes/HardMode.cpp b/Classes/HardMode.cpp new file mode 100644 index 0000000..0290c59 --- /dev/null +++ b/Classes/HardMode.cpp @@ -0,0 +1,36 @@ +// +// HardMode.cpp +// ddgame +// +// Created by mimix on 14-10-10. +// +// + +#include "HardMode.h" + + + +bool FastMode:: init()//游戏模式二:快速模式 +{ + GameLayer::init(); + ActionInterval* ac; + ac=Sequence::create(CallFunc::create([&]{ + pigs->addRndPig(); + }),DelayTime::create(1), NULL); + ac=RepeatForever::create(ac); + runAction(ac); + return true; +} + +bool HardMode:: init()//游戏模式三:群主乱舞 +{ + GameLayer::init(); + + ActionInterval* ac; + ac=Sequence::create(CallFunc::create([&]{ + pigs->addRndPig(); + }),DelayTime::create(1), NULL); + ac=RepeatForever::create(ac); + runAction(ac); + return true; +} \ No newline at end of file diff --git a/Classes/HardMode.h b/Classes/HardMode.h new file mode 100644 index 0000000..1941755 --- /dev/null +++ b/Classes/HardMode.h @@ -0,0 +1,29 @@ +// +// HardMode.h +// ddgame +// +// Created by mimix on 14-10-10. +// +// + +#ifndef __ddgame__HardMode__ +#define __ddgame__HardMode__ + + +#include "GameLayer.h" + +class FastMode :public GameLayer +{ +public: + bool init(); + CREATE_FUNC(FastMode); +}; + + + +class HardMode :public GameLayer{ +public: + bool init(); + CREATE_FUNC(HardMode); +}; +#endif /* defined(__ddgame__HardMode__) */ diff --git a/Classes/HelloWorldScene.cpp b/Classes/HelloWorldScene.cpp old mode 100644 new mode 100755 diff --git a/Classes/HelloWorldScene.h b/Classes/HelloWorldScene.h old mode 100644 new mode 100755 diff --git a/Classes/IndexLayer.cpp b/Classes/IndexLayer.cpp new file mode 100755 index 0000000..a1f7787 --- /dev/null +++ b/Classes/IndexLayer.cpp @@ -0,0 +1,55 @@ +// +// IndexLayer.cpp +// ddgame +// +// Created by mimix on 14-10-8. +// +// + +#include "IndexLayer.h" + +bool IndexLayer::init() +{ + selectMode(); + + return true; +} +void IndexLayer::selectMap() +{ + removeAllChildren(); + auto l1=LayerColor::create(Color4B(255, 255, 255, 255), 80, 25); + auto sb1=MenuItemSprite::create(l1, l1, [&](Ref* r) { + MessageBox("1", "selectMap"); + this->selectMode(); + }); + sb1->setPosition(80,25); + auto l2=LayerColor::create(Color4B(255, 255, 255, 255), 80, 80); + + auto sb2=MenuItemSprite::create(l2, l2, [&](Ref* r) { + MessageBox("2", "selectMap"); + this->selectMode(); + }); + sb2->setPosition(80,25); + auto menu=Menu::create(sb1, sb2 , NULL); + addChild(menu); +} + +void IndexLayer::selectMode() +{ + removeAllChildren(); + auto l1=LayerColor::create(Color4B(255, 20, 255, 255), 80, 25); + auto sb1=MenuItemSprite::create(l1, l1, [&](Ref* r) { + MessageBox("1", "selectMode"); + this->selectMap(); + }); + sb1->setPosition(80,25); + auto l2=LayerColor::create(Color4B(255, 20, 255, 255), 80, 80); + + auto sb2=MenuItemSprite::create(l2, l2, [&](Ref* r) { + MessageBox("2", "selectMode"); + this->selectMap(); + }); + sb2->setPosition(80,25); + auto menu=Menu::create(sb1, sb2 , NULL); + addChild(menu); +} \ No newline at end of file diff --git a/Classes/StartLayer.h b/Classes/IndexLayer.h old mode 100644 new mode 100755 similarity index 62% rename from Classes/StartLayer.h rename to Classes/IndexLayer.h index 90330ce..727855e --- a/Classes/StartLayer.h +++ b/Classes/IndexLayer.h @@ -3,11 +3,13 @@ #include "cocos2d.h" USING_NS_CC; -class StartLayer:public Layer +class IndexLayer:public Layer { public: bool init(); - CREATE_FUNC(StartLayer); + void selectMap(); + void selectMode(); + CREATE_FUNC(IndexLayer); }; diff --git a/Classes/JoyStick.cpp b/Classes/JoyStick.cpp new file mode 100644 index 0000000..f31250c --- /dev/null +++ b/Classes/JoyStick.cpp @@ -0,0 +1,300 @@ +// +// JoyStick.cpp +// game +// +// Created by DonCheung on 9/24/14. +// +// + +#include "JoyStick.h" + +JoyStick* JoyStick::create(int _ballRadius, int _moveAreaRadius, bool _isFollowTouch, bool _isCanVisible, bool _isAutoHide, bool _hasAnimation) +{ + + JoyStick *self = new JoyStick(); + + if (self && self->init()) { + + self->ballRadius = _ballRadius; + self->moveAreaRadius = _moveAreaRadius; + self->power = 0; + self->angle = 0; + + self->isFollowTouch = _isFollowTouch; + self->isCanVisible = _isCanVisible; + self->isAutoHide = _isAutoHide; + self->hasAnimation = _hasAnimation; + + Size size = Director::getInstance()->getWinSize(); + self->setHitAreaWithRect(Rect(0, 0, size.width*0.5, size.height*0.5)); + + self->setBall(Sprite::create()); + self->setStick(Sprite::create()); + self->setDock(Sprite::create()); + + self->addChild(self->dock); + self->addChild(self->stick); + self->addChild(self->ball); + + + if (!_isCanVisible) { + self->setVisible(false); + }else { + + if (_isAutoHide) { + self->setVisible(false); + } + + } + + + + auto dispatcher = Director::getInstance()->getEventDispatcher(); + auto touchListener = EventListenerTouchOneByOne::create(); +// touchListener->setSwallowTouches(false); + touchListener->onTouchBegan = CC_CALLBACK_2(JoyStick::onTouchBegan,self); + touchListener->onTouchMoved = CC_CALLBACK_2(JoyStick::onTouchMoved, self); + touchListener->onTouchEnded = CC_CALLBACK_2(JoyStick::onTouchEnded, self); + touchListener->onTouchCancelled = CC_CALLBACK_2(JoyStick::onTouchCancel, self); + dispatcher->addEventListenerWithSceneGraphPriority(touchListener, self); + + self->autorelease(); + + return self; + + } + + CC_SAFE_DELETE(self); + return NULL; +} + +JoyStick::JoyStick() +{} +JoyStick::~JoyStick() +{} + +bool JoyStick::init() { + + if (!Sprite::init()) { + return false; + } + return true; +} + +void JoyStick::onEnter() +{ + Sprite::onEnter(); + +} + +void JoyStick::onExit() +{ + Sprite::onExit(); + + +} + +#pragma mark - +#pragma mark touch event +bool JoyStick::onTouchBegan(Touch *touch, Event *event) +{ + if (!this->containsTouchLocation(touch)) { + return false; + } + + Point touchPoint = touch->getLocationInView(); + touchPoint = Director::getInstance()->convertToGL(touchPoint); + this->touchBegan(touchPoint); + return true; +} + +void JoyStick::onTouchEnded(Touch *touch, Event *event) +{ + + if (isTouched) { + if (isAutoHide && isCanVisible) { + this->setVisible(false); + } + + isTouched = false; + this->stopTimer(); + this->resetTexturePosition(); + } + +} +void JoyStick::onTouchMoved(Touch *touch , Event *event) +{ + Point touchPoint = touch->getLocationInView(); + touchPoint = Director::getInstance()->convertToGL(touchPoint); + + if (isTouched) { + this->updateTouchPoint(touchPoint); + } +} +void JoyStick::onTouchCancel(Touch *touch , Event *event) +{ +} + + +void JoyStick::touchBegan(Point touchPoint) +{ + currentPoint = touchPoint; + isTouched = true; + + if (isAutoHide && isCanVisible) { + this->setVisible(true); + } + + if (isFollowTouch) { + this->setPosition(touchPoint); + } + + this->ball->stopAllActions(); + updateTouchPoint(touchPoint); + this->startTimer(); +} + +bool JoyStick::containsTouchLocation(cocos2d::Touch *touch) +{ + + Point touchPoint = touch->getLocationInView(); + touchPoint = Director::getInstance()->convertToGL(touchPoint); + if (this->activeRadius > 0) { + if (touchPoint.distance(this->getParent()->convertToWorldSpace(this->getPosition()))< this->activeRadius) { + return true; + } + } + + if (this->activeRect.size.width > 0 && this->activeRect.size.height > 0) { + if (touchPoint.x > this->activeRect.origin.x && touchPoint.x < this->activeRect.origin.x + this->activeRect.size.width && touchPoint.y > this->activeRect.origin.y && touchPoint.y < this->activeRect.origin.y + this->activeRect.size.height) { + return true; + } + } + + return false; + +} +void JoyStick::resetTexturePosition() +{ + power = 0; + angle = 0; + + currentPoint = Point::ZERO; + this->stick->setPosition(Point::ZERO); + this->stick->setScaleX(power); + + if (!isAutoHide && isCanVisible && hasAnimation) { + auto action = MoveTo::create(0.5, Point::ZERO); + this->ball->runAction(EaseElasticOut::create(action)); + }else + this->ball->setPosition(Point::ZERO); + +} + +void JoyStick::setHitAreaWithRadius(int radius) +{ + this->activeRadius = radius; + this->activeRect = Rect::ZERO; + +} +void JoyStick::setHitAreaWithRect(cocos2d::Rect rect) +{ + this->activeRect = rect; + this->activeRadius = 0; +} + + +void JoyStick::updateTouchPoint(Point touchPoint) +{ + Point selfposition = this->getParent()->convertToWorldSpace(this->getPosition()); + if (touchPoint.getDistance(selfposition) > (this->moveAreaRadius - this->ballRadius)) { + + currentPoint = ccpAdd(ccp(0, 0), ccpMult(ccpNormalize(ccpSub(ccp(touchPoint.x - selfposition.x, touchPoint.y - selfposition.y), Point::ZERO)), this->moveAreaRadius - this->ballRadius)); + }else { + currentPoint = Vec2(touchPoint.x - selfposition.x, touchPoint.y - selfposition.y); + } + + this->ball->setPosition(currentPoint); + + //摇杆返回参数 + angle = atan2(this->ball->getPosition().y - 0, this->ball->getPosition().x - 0)/(3.14159/180); + power = this->ball->getPosition().getDistance(Point::ZERO)/(this->moveAreaRadius - this->ballRadius); + direction = Vec2(cos(angle * (3.14159/180)), sin(angle*(3.14159/180))); + + + Sprite *stickTexture = dynamic_cast(this->stick->getChildByTag(0)); + if (stickTexture) { + this->stick->setScaleX(this->ball->getPosition().getDistance(Point::ZERO)/stickTexture->getTextureRect().size.width); + this->stick->setRotation(-angle); + } + + +} +void JoyStick::startTimer() +{ + if (this->delegate) { + this->delegate->onCCJoyStickActivated(this); + } + this->schedule(schedule_selector(JoyStick::timerUpdate)); +} +void JoyStick::stopTimer() +{ + if (this->delegate) { + this->delegate->onCCJoyStickDeactivated(this); + } + this->unschedule(schedule_selector(JoyStick::timerUpdate)); +} +void JoyStick::timerUpdate(float f) +{ + + if (this->delegate) { + this->delegate->onCCJoyStickUpdate(this, angle, direction, power); + } + +} + +void JoyStick::setBallWithFrameName(const std::string &filename) +{ + this->ball->removeAllChildrenWithCleanup(true); + Sprite *ballTexture = Sprite::createWithSpriteFrameName(filename); + this->ball->addChild(ballTexture); +} +void JoyStick::setStickWithFrameName(const std::string &filename) +{ + this->stick->removeAllChildrenWithCleanup(true); + Sprite *stickTexture = Sprite::createWithSpriteFrameName(filename); + stickTexture->setPosition(Vec2(stickTexture->getContentSize().width*0.5, 0)); + + this->stick->addChild(stickTexture); + this->stick->setScaleX(this->ball->getPosition().distance(Point::ZERO)/stickTexture->getTextureRect().size.width); +} + +void JoyStick::setDockWithFrameName(const std::string &filename) +{ + this->dock->removeAllChildrenWithCleanup(true); + + Sprite *dockTexture = Sprite::createWithSpriteFrameName(filename); + this->dock->addChild(dockTexture); +} + + +void JoyStick::setBallWithName(const std::string& filename) +{ + this->ball->removeAllChildrenWithCleanup(true); + Sprite *s = Sprite::create(filename); + this->ball->addChild(s); +} +void JoyStick::setStickWithName(const std::string& filename) +{ + this->stick->removeAllChildrenWithCleanup(true); + Sprite *s = Sprite::create(filename); + this->stick->addChild(s); +} +void JoyStick::setDockWithName(const std::string& filename) +{ + this->dock->removeAllChildrenWithCleanup(true); + Sprite *s = Sprite::create(filename); + this->dock->addChild(s); +} + + diff --git a/Classes/JoyStick.h b/Classes/JoyStick.h new file mode 100644 index 0000000..fbdcd59 --- /dev/null +++ b/Classes/JoyStick.h @@ -0,0 +1,105 @@ +// +// JoyStick.h +// game +// +// Created by DonCheung on 9/24/14. +// +// + +#ifndef __game__JoyStick__ +#define __game__JoyStick__ + +#include "cocos2d.h" + +USING_NS_CC; + +class JoyStickDelegate +{ +public: + virtual void onCCJoyStickUpdate(Node *sender, float angle, cocos2d::Point direction, float power) = 0; + virtual void onCCJoyStickActivated(Node *sender) = 0; + virtual void onCCJoyStickDeactivated(Node *sender) = 0; +}; + +class JoyStick : public Sprite +{ + +protected: + virtual bool init(); + JoyStickDelegate *delegate; + +private: + virtual void onExit(); + virtual void onEnter(); + + bool isFollowTouch; + bool isCanVisible; + bool isAutoHide; + + void startTimer(); + void stopTimer(); + void timerUpdate(float f); + + void touchBegan(cocos2d::Point touchPoint); + void resetTexturePosition(); + + + bool containsTouchLocation(Touch * touch); + void updateTouchPoint(cocos2d::Point touchPoint); + + + //touch event + bool onTouchBegan(Touch *touch , Event *event); + void onTouchEnded(Touch *touch , Event *event); + // + void onTouchMoved(Touch *touch , Event *event); + void onTouchCancel(Touch *touch , Event *event); + +public: + JoyStick(); + ~JoyStick(); + + + CREATE_FUNC(JoyStick); + //delegate getter & setter + virtual void setDelegate(JoyStickDelegate *var) + { + delegate = var; + } + virtual JoyStickDelegate* getDelegate(void)const{return delegate;}; + + + CC_SYNTHESIZE(Sprite *, ball, Ball); + CC_SYNTHESIZE(Sprite *, stick, Stick); + CC_SYNTHESIZE(Sprite *, dock, Dock); + + CC_SYNTHESIZE_READONLY(int, moveAreaRadius, MoveAreaRadius); + CC_SYNTHESIZE_READONLY(int, ballRadius, BallRadius); + CC_SYNTHESIZE_READONLY(cocos2d::Rect, activeRect, ActiveRect); + CC_SYNTHESIZE_READONLY(int, activeRadius, ActiveRadius); + CC_SYNTHESIZE_READONLY(cocos2d::Point, currentPoint, CurrentPoint); + CC_SYNTHESIZE_READONLY(bool, isTouched, IsTouched); + CC_SYNTHESIZE_READONLY(bool, hasAnimation, HasAnimation); + CC_SYNTHESIZE_READONLY(float, power, Power); + CC_SYNTHESIZE_READONLY(float, angle, Angle); + CC_SYNTHESIZE_READONLY(cocos2d::Point, direction, Direction); + + + static JoyStick *create(int _ballRadius , int _moveAreaRadius , bool _isFollowTouch , bool _isCanVisible , bool _isAutoHide , bool _hasAnimation); + + void setBallWithFrameName(const std::string& filename); + void setStickWithFrameName(const std::string& filename); + void setDockWithFrameName(const std::string& filename); + + + void setBallWithName(const std::string& filename); + void setStickWithName(const std::string& filename); + void setDockWithName(const std::string& filename); + + void setHitAreaWithRadius(int radius); + void setHitAreaWithRect(cocos2d::Rect rect); + + +}; + +#endif /* defined(__game__JoyStick__) */ diff --git a/Classes/MainScene.cpp b/Classes/MainScene.cpp old mode 100644 new mode 100755 index 2c7d1ae..93991e7 --- a/Classes/MainScene.cpp +++ b/Classes/MainScene.cpp @@ -8,15 +8,14 @@ #include "MainScene.h" -#include "StartLayer.h" +#include "StartScene.h" +//#include "jointlayer.h" bool MainScene::init() { - - auto st= StartLayer::create(); + //addChild(JointLayer::create()); + auto st=StartScene::create(); addChild(st); - - return true; } \ No newline at end of file diff --git a/Classes/MainScene.h b/Classes/MainScene.h old mode 100644 new mode 100755 diff --git a/Classes/Pig.cpp b/Classes/Pig.cpp new file mode 100755 index 0000000..3edd35d --- /dev/null +++ b/Classes/Pig.cpp @@ -0,0 +1,133 @@ +// +// Pig.cpp +// ddgame +// +// Created by aaa on 14-10-8. +// +// + +#include "Pig.h" +#include "PigLayer.h" + +bool PigClick::Drag(int tag) +{ + +} +void PigClick::Click() +{ + hit(); + Hp--; +} +void PigClick::Die() +{ + stopAllActions(); + runAction( + Sequence:: + create( + Repeat:: + create( + Sequence:: + create( + RotateBy:: + create(0.05, -10), + RotateBy:: + create(0.05, 10), + NULL), + 3), + FadeOut:: + create(0.5), + CallFunc:: + create([this]{Kill(); }), + NULL) ); + +} + +const Vec2 Flag[8] = {Vec2(0,0),Vec2(0,0.5),Vec2(0,1),Vec2(0.5,1),Vec2(1,1),Vec2(1,0.5),Vec2(1,0),Vec2(0.5,0)}; + + +void PigClone::Avatar() //分身函数 +{ + int Rand = arc4random()%8; + auto parent = (PigLayer*)getParent(); + for (int i=0; i<4; i++) { + Rand+=arc4random()%2+1; + auto child = PigLayer::createPigById(8); + child->RunAt(Flag[(Rand)%8],this->getPosition()); + parent->addChild(child); + child->setTag((Rand%8)); + } + this->Kill(); +} + +void PigSwap::Orbit() +{ + int _Flag = (this->getTag()+arc4random()%8)%8; + this->RunAt(Flag[_Flag],this->getPosition()); + this->setTag(_Flag); +} +void PigSwap::Run(Vec2 v)//变轨猪移动 +{ + this->v=v; + setPosition(FlagToVec(v)); + v=Vec2(0.5, 0.5); + v=FlagToVec(v); + auto mt = MoveTo::create(this->Speed, Vec2(RectSize - v.x, RectSize - v.y)); + this->runAction(Sequence::create(mt,CallFunc::create(CC_CALLBACK_0(PigSwap::Orbit , this)), NULL)); +} +void PigReverse::Run(Vec2 v)//箭猪移动 +{ + Pig::Run(Vec2(1-v.x,1-v.y)); +} +void PigReverse::Die() +{ + stopAllActions(); + v=Vec2(1-v.x,1-v.y); + + runAction(Sequence::create(MoveTo::create(0.2, v*640),CallFunc::create([this]{ + Kill(); + }) , NULL) ); +} +void PigClone::Run(Vec2 v)//分身猪移动 +{ + this->v=v; + setPosition(FlagToVec(v)); + v=Vec2(0.5, 0.5); + v=FlagToVec(v); + auto mt = MoveTo::create(this->Speed, Vec2(RectSize - v.x, RectSize - v.y)); + this->runAction(Sequence::create(mt,CallFunc::create(CC_CALLBACK_0(PigClone::Avatar, this)), NULL)); +} + + +void PigHide::Run(Vec2 v) +{ + auto fo = FadeOut::create(0.3); + auto fi = FadeIn::create(4); + Pig::Run(v); + this->runAction(Sequence::create(fo,fi, NULL)); +} + +PigReverse::PigReverse(int speed,int hp):Pig(speed,hp) { + +}; + +PigSwap::PigSwap(int speed,int hp):Pig(speed,hp) { + +}; + +PigClick::PigClick(int speed,int hp):Pig(speed,hp) { + +}; + +PigClone::PigClone(int speed,int hp):PigClick(speed,hp) { + +}; + +PigHide::PigHide(int speed,int hp):Pig(speed,hp) { + +}; + + + + + + diff --git a/Classes/Pig.h b/Classes/Pig.h new file mode 100755 index 0000000..81deb17 --- /dev/null +++ b/Classes/Pig.h @@ -0,0 +1,60 @@ +// +// Pig.h +// ddgame +// +// Created by aaa on 14-10-8. +// +// + +#ifndef __ddgame__Pig__ +#define __ddgame__Pig__ + +#include +#include "cocos2d.h" +#include "basePig.h" +USING_NS_CC; + +class PigClick: public Pig +{ +public: + PigClick(); + PigClick(int speed,int hp); + bool Drag(int tag); + void Click(); + void Die(); +}; + + +class PigReverse : public Pig +{ +public: + PigReverse(int speed,int hp); + void Die(); + void Run(Vec2 v); +}; +class PigSwap : public Pig +{ +public: + PigSwap():Pig(){}; + PigSwap(int speed,int hp); + void Orbit(); + void Run(Vec2 v); +}; +class PigClone : public PigClick +{ +public: + void Avatar(); + void Run(Vec2 v); + PigClone(int speed,int hp); +}; + +class PigHide: public Pig +{ +public: + void Run(Vec2 v); + //PigHide( ):Pig( ) {}; + PigHide(int speed,int hp); +}; + + +#endif /* defined(__ddgame__Pig__) */ diff --git a/Classes/PigLayer.cpp b/Classes/PigLayer.cpp new file mode 100755 index 0000000..6316fec --- /dev/null +++ b/Classes/PigLayer.cpp @@ -0,0 +1,97 @@ +// +// PigLayer.cpp +// ddgame +// +// Created by aaa on 14-10-8. +// +// + +#include "PigLayer.h" + +Vec2 Flag[8] = {Vec2(0,0),Vec2(0,0.5),Vec2(0,1),Vec2(0.5,1),Vec2(1,1),Vec2(1,0.5),Vec2(1,0),Vec2(0.5,0)}; + +bool PigLayer::init() +{ + return true; +} + +void PigLayer::removeChild(Node* child, bool cleanup) +{ + auto o=(Pig*)child; + if(!o->isDie()) + onFlee(o); + cocos2d::Node::removeChild(child); +} + +void PigLayer::addPig(int Fx,int Type) +{ + auto p = createPigById(Type); + p->setTag(Fx); + p->Run(Flag[Fx]); + this->addChild(p); +} + +void PigLayer::addRndPig() +{ + int Fx = arc4random()%8;//方向 + int Tp= arc4random()%7+1; //小猪类型 + Tp=1; + addPig(Fx, Tp); +} +void PigLayer::pigDelete() +{ + +} + +bool PigLayer::each(std::function fn) +{ + auto ls=getChildren(); + for (int i=0,len=(int)(ls.size()); iisDie()) + if(!fn(p)) + return false; + } + return true; +} + +std::string s[] ={"普通","快速","厚血","箭猪","变轨","分身","隐形","分身猪"}; + +Pig* PigLayer::createPigById(int pigType) +{ + Pig* p; + + switch (pigType) { + case 1: //普通🐷 + p= new Pig(2, 1); + break; + case 2: //快速🐷 + p= new Pig(3, 1); + break; + case 3: //厚血🐷 + p= new Pig(1, 3); + break; + case 4: //箭猪🐷 + p=new PigReverse(1, 1); + break; + case 5: //变轨🐷 + p=new PigSwap(2, 1); + break; + case 6: //分身🐷 + p=new PigClone(1, 2); + break; + case 7: //隐形🐷 + p=new PigHide(2, 1); + break; + case 8://分身小猪🐷 + p=new PigClick(1,1); + break; + default://test小猪 + p=new Pig(3, 3); + break; + } + p->addChild(LabelTTF::create(s[pigType-1], "yahai",200)); + p->autorelease(); + p->setColor(Color3B(pigType*35, 0, 0)); + return p; +} \ No newline at end of file diff --git a/Classes/PigLayer.h b/Classes/PigLayer.h new file mode 100755 index 0000000..5c2aafe --- /dev/null +++ b/Classes/PigLayer.h @@ -0,0 +1,39 @@ +// +// PigLayer.h +// ddgame +// +// Created by aaa on 14-10-8. +// +// + +#ifndef __ddgame__PigLayer__ +#define __ddgame__PigLayer__ + +#include +#include "cocos2d.h" +#include "Pig.h" + +USING_NS_CC; + +class PigLayer:public Layer +{ + +public: + void pigDelete(); + virtual bool init(); + CREATE_FUNC(PigLayer); +public: + void addPig(int Fx,int Tp); + void addRndPig(); + void addRandPig(float f); + void removeChild(Node* child, bool cleanup = true); + + bool each(std::function fn); + static Pig* createPigById(int pigType); + std::function onFlee; + +} +; + + +#endif /* defined(__ddgame__PigLayer__) */ diff --git a/Classes/SceneSwitch.cpp b/Classes/SceneSwitch.cpp new file mode 100755 index 0000000..c28f56e --- /dev/null +++ b/Classes/SceneSwitch.cpp @@ -0,0 +1,73 @@ +// +// SceneSwitch.cpp +// ddgame +// +// Created by aaa on 14-10-8. +// +// + +#include "SceneSwitch.h" + +#include "GameOver.h" +#include "GameLayer.h" +#include "EasyMode.h" +#include "HardMode.h" +#include "StartScene.h" +#include "Seting.h" + +Scene* CreateScene(Layer* l) +{ + auto s=Scene::create(); + s->addChild(l); + return s; +} + +void SceneSwitch::Starting() +{ + auto s=StartScene::create(); + Director::getInstance()->replaceScene(s); +} +void SceneSwitch::Seting() +{ + auto s = Seting::SceneCreate(); + Director::getInstance()->replaceScene(s); + /* +  ”开始游戏“ + 《难》 《易》 + 《设置》 + + + “设置” + 《腰杆》 《滑动》 + 《返回》 + */ +} + +void SceneSwitch::Playing(int Flag) +{ + GameLayer* m; + switch (Flag) { + case 0: + m = EasyMode::create(); + break; + case 1: + m = HardMode::create(); + break; + case 2: + m = TestMode::create(); + break; + default: + m = GameLayer::create(); + } + m->GameMode=Flag; + Director::getInstance()->replaceScene(CreateScene(m)); + +} + +void SceneSwitch::GameOver() +{ + Scene * s = Scene::create(); + auto Index = GameOver::create(); + s->addChild(Index); + Director::getInstance()->replaceScene(s); +} diff --git a/Classes/SceneSwitch.h b/Classes/SceneSwitch.h new file mode 100755 index 0000000..749a828 --- /dev/null +++ b/Classes/SceneSwitch.h @@ -0,0 +1,27 @@ +// +// SceneSwitch.h +// ddgame +// +// Created by aaa on 14-10-8. +// +// + +#ifndef __ddgame__SceneSwitch__ +#define __ddgame__SceneSwitch__ + +#include +#include "cocos2d.h" + + +USING_NS_CC; + +class SceneSwitch +{ +public: + static void Seting(); + static void Starting(); + static void Playing(int Flag); + static void GameOver(); +}; + +#endif /* defined(__ddgame__SceneSwitch__) */ diff --git a/Classes/Seting.cpp b/Classes/Seting.cpp new file mode 100644 index 0000000..1a1f59f --- /dev/null +++ b/Classes/Seting.cpp @@ -0,0 +1,50 @@ +// +// Seting.cpp +// ddgame +// +// Created by aaa on 14-10-10. +// +// + +#include "Seting.h" +#include "SceneSwitch.h" + +#define RockerUpPath "RockerUp.png" +#define RockerDownPath "RockerDown.png" +#define SlideUpPath "SlideUp.png" +#define SlideDownPath "SlideDown.png" + + +Scene * Seting::SceneCreate() +{ + auto s = Scene::create(); + auto l = Seting::create(); + s->addChild(l); + return s; +} + +void SetRockerMode(Ref* f) +{ + UserDefault::getInstance()->setBoolForKey("IMode", 1); + SceneSwitch::Starting(); +} + +void SetSlideMode(Ref *f) +{ + UserDefault::getInstance()->setBoolForKey("IMode", 0); + SceneSwitch::Starting(); +} + +bool Seting::init() +{ + auto Rocker = MenuItemImage::create(RockerUpPath, RockerDownPath,SetRockerMode); + auto Slide = MenuItemImage::create(SlideUpPath, SlideDownPath,SetSlideMode); + Rocker->setPosition(Vec2(0, 0)); + auto s=Rocker->getBoundingBox().size.width; + + Slide->setPosition(Vec2(Rocker->getPosition().x + s, 0)); + auto ButtonMenu = Menu::create(Rocker,Slide,NULL); + ButtonMenu->setPosition(Vec2(170, Director::getInstance()->getVisibleSize().height/2)); + this->addChild(ButtonMenu); + return true; +} \ No newline at end of file diff --git a/Classes/Seting.h b/Classes/Seting.h new file mode 100644 index 0000000..c6116bd --- /dev/null +++ b/Classes/Seting.h @@ -0,0 +1,26 @@ +// +// Seting.h +// ddgame +// +// Created by aaa on 14-10-10. +// +// + +#ifndef __ddgame__Seting__ +#define __ddgame__Seting__ + +#include +#include "cocos2d.h" +USING_NS_CC; + +class Seting:Layer +{ +public: + virtual bool init(); + static Scene * SceneCreate(); + CREATE_FUNC(Seting); +} +; + + +#endif /* defined(__ddgame__Seting__) */ diff --git a/Classes/StartLayer.cpp b/Classes/StartLayer.cpp deleted file mode 100644 index 9c30c2b..0000000 --- a/Classes/StartLayer.cpp +++ /dev/null @@ -1,27 +0,0 @@ -// -// StartLayer.cpp -// ddgame -// -// Created by mimix on 14-10-8. -// -// - -#include "StartLayer.h" - -bool StartLayer::init() -{ - auto sb1= LayerColor::create(Color4B(255, 255, 255, 255), 80, 25); - sb1->setPosition(80,25); - auto sb2= LayerColor::create(Color4B(255, 255, 255, 255), 80, 80); - sb2->setPosition(80,25); - auto menu=Menu:: - create(MenuItemSprite::create(sb1, sb1, [](Ref* r) { - MessageBox("1", "3"); - }), MenuItemSprite::create(sb2, sb2, [](Ref* r) { - MessageBox("2", "3"); - }) , NULL); - addChild(menu); - - - return true; -} \ No newline at end of file diff --git a/Classes/StartScene.cpp b/Classes/StartScene.cpp new file mode 100644 index 0000000..5dbebfa --- /dev/null +++ b/Classes/StartScene.cpp @@ -0,0 +1,67 @@ +// +// StartScene.cpp +// ddgame +// +// Created by mimix on 14-10-10. +// +// + +#include "StartScene.h" +#include "SceneSwitch.h" +#include "PigLayer.h" + +bool StartScene::init() +{ + PigId=0; + auto l=LayerColor::create(Color4B(100, 100, 100, 255), 640, 1136);//创建一个背景层 + auto Normal = LabelTTF::create("简单模式", "", 30);//创建简单模式按钮 + auto Insane = LabelTTF::create("疯狂模式", "", 30);//创建疯狂模式按钮 + auto Flurry = LabelTTF::create("群猪乱舞", "", 30);//创建群猪乱舞按钮 + auto SetButton= LabelTTF::create("设置", "", 30);//创建设置按钮 + Normal->setColor(Color3B(255,0,0));//设置简单模式的前景色 + Insane->setColor(Color3B(255,0,0));//设置疯狂模式的前景色 + Flurry->setColor(Color3B(255,0,0));//设置乱舞模式的前景色 + + auto itemNormal = MenuItemSprite::create(Normal, Normal,[](Ref* f){//点击触发跳到普通模式场景 + SceneSwitch::Playing(0); + }); + auto itemInsane = MenuItemSprite::create(Insane, Insane,[](Ref* f){//点击触发跳到疯狂模式场景 + SceneSwitch::Playing(1); + }); + auto itemFlurry = MenuItemSprite::create(Flurry, Flurry,[](Ref* f){//点击触发跳到乱舞模式场景 + SceneSwitch::Playing(2); + }); + auto itemSet = MenuItemLabel::create(SetButton,[](Ref* f){//点击触发跳到设置页面 + SceneSwitch::Seting(); + }); + auto SetButtonSize = itemSet->getBoundingBox().size;//获取设置按钮的大小 + itemNormal->setPosition(640/2,600);//设置普通模式的按钮坐标 + itemInsane->setPosition(640/2,500);//设置疯狂模式的按钮坐标 + itemFlurry->setPosition(640/2,400);//设置乱舞模式的按钮坐标 + itemSet->setPosition(0+SetButtonSize.width,0+SetButtonSize.height);//设置 设置按钮 的坐标 + Menu* m=Menu::create(itemInsane,itemNormal,itemFlurry,itemSet, NULL);//创建一个目录加入全部的按钮 + m->setPosition(0,0);//设置目录的坐标为原点 + l->addChild(m);//将目录加入背景层 + addChild(l);//将背景层加入场景 + + //--------------猪的动画----------------- + PigAnimation(NULL); + return true; +} + +void StartScene::PigAnimation(Node * n) +{ + const float PosPercent = 0.8;//小猪出现的位置会在屏幕高度的百分比 + + auto WinSize = Director::getInstance()->getWinSize();//获取窗口大小 + if(n!=NULL)//如果这只猪不是空,则表示他跑完,就将它从场景中删除 + this->removeChild(n); + auto Pig = PigLayer::createPigById(PigId+1);//创建一只新猪 + Pig->setPosition(Vec2(0, WinSize.height*PosPercent));//设置他的坐标 + auto Move = MoveBy::create(3, Vec2(WinSize.width, 0));//创建一个移动动作 + auto Seq = Sequence::create(Move,CallFuncN::create(CC_CALLBACK_1(StartScene::PigAnimation, this)), NULL);//让动作顺序执行,跑完删除,并且从新创建一只继续跑 + this->addChild(Pig); + Pig->runAction(Seq); + PigId = (PigId+1)%8; +} + diff --git a/Classes/StartScene.h b/Classes/StartScene.h new file mode 100644 index 0000000..0decee7 --- /dev/null +++ b/Classes/StartScene.h @@ -0,0 +1,25 @@ +// +// StartScene.h +// ddgame +// +// Created by mimix on 14-10-10. +// +// + +#ifndef __ddgame__StartScene__ +#define __ddgame__StartScene__ + +#include "cocos2d.h" +USING_NS_CC; + + +class StartScene:public Scene +{ +public: + int PigId; + bool init(); + void PigAnimation(Node * n); + CREATE_FUNC(StartScene); +}; + +#endif /* defined(__ddgame__StartScene__) */ diff --git a/Classes/basePig.cpp b/Classes/basePig.cpp new file mode 100644 index 0000000..4b6c33e --- /dev/null +++ b/Classes/basePig.cpp @@ -0,0 +1,108 @@ +// +// basePig.cpp +// ddgame +// +// Created by aaa on 14-10-9. +// +// + +#include "basePig.h" + + +Vec2 Pig::FlagToVec(Vec2 v) +{ + return v*RectSize; +} +void Pig::shake() +{ + runAction( + Repeat:: + create( + Sequence:: + create( + RotateBy:: + create(0.05, -10), + RotateBy:: + create(0.05, 10), NULL), 3)); +} +void Pig::hit() +{ + auto lText=String::createWithFormat("%d",Hp)->getCString(); + auto hSprite=LabelTTF::create(lText, "yahei", 30); + hSprite->setColor(Color3B(255,255,0)); + hSprite->setPosition(getPosition()); + hSprite->runAction(MoveBy::create(1, Vec2(0,80))); + hSprite->runAction(Sequence::create(FadeOut::create(1),CallFuncN::create([](Node* me){ + me->getParent()->removeChild(me); + }), NULL)); + auto p=getParent()->getParent(); + p-> addChild(hSprite,10); + shake(); +} + +bool Pig::Drag(int tag) +{ + if (getTag()==tag) + { + hit();Hp--; + return true; + } +} + +void Pig::Click() +{ + +} +bool Pig::isDie() +{ + return Hp==0; +} +void Pig::Kill() +{ + Hp=0; + getParent()->removeChild(this); +} +void Pig::Die() +{ + stopAllActions(); + runAction(Sequence::create(MoveTo::create(0.2, v*640),CallFunc::create([this]{ + Kill(); + }) , NULL) ); +} +void Pig::Remove() +{ + getParent()->removeChild(this); +} + +void Pig::Run(Vec2 v) +{ + RunAt(v, v*RectSize); +} +void Pig::RunAt(Vec2 v,Vec2 pos) +{ + this->v=v; + setPosition(pos); + Vec2 po=v*RectSize; //起点位置 + Vec2 pt=Vec2(RectSize-po.x , RectSize-po.y);//对角线位置 + runAction(Sequence::create(MoveTo::create(Speed, pt),CallFunc::create([this](){ + Remove(); + }), NULL)); +} +Pig::Pig() +{ + +} +const int MaxSpeed = 4; +Pig::Pig(int speed,int hp) +{ + this->Hp=hp; + this->Score=hp; + this->MaxHp=hp; + this->Speed=MaxSpeed - speed; + this->initWithFile("ice.png"); + this->setScale(0.1, 0.1); + //onDelete=[](){}; +} + + + diff --git a/Classes/basePig.h b/Classes/basePig.h new file mode 100644 index 0000000..a08351a --- /dev/null +++ b/Classes/basePig.h @@ -0,0 +1,49 @@ +// +// basePig.h +// ddgame +// +// Created by aaa on 14-10-9. +// +// + +#ifndef __ddgame__basePig__ +#define __ddgame__basePig__ + +#include "cocos2d.h" +USING_NS_CC; +class Pig:public Sprite +{ +public: + Vec2 v; + int MaxHp=0; + int Score=0; +protected: + void shake(); + void hit(); + int Speed; + int Hp; + int RectSize = 640; + //hehehe +public: + virtual void Run(Vec2 v); + virtual void RunAt(Vec2 v,Vec2 pos); + virtual bool Drag(int tag); + virtual void Click(); + virtual void Die(); + virtual void Remove(); + Vec2 FlagToVec(Vec2 v); + bool isDie(); + void Kill(); +public: + Pig(); + Pig(int speed,int hp); + void init(int speed,int hp); + static Pig* create(int speed,int hp); + //static Pig* createPig(int Tag); +}; + + + + + +#endif /* defined(__ddgame__basePig__) */ diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/Resources/CloseNormal.png b/Resources/CloseNormal.png old mode 100644 new mode 100755 diff --git a/Resources/CloseSelected.png b/Resources/CloseSelected.png old mode 100644 new mode 100755 diff --git a/Resources/HelloWorld.png b/Resources/HelloWorld.png old mode 100644 new mode 100755 diff --git a/Resources/RockerDown.png b/Resources/RockerDown.png new file mode 100644 index 0000000..a123702 Binary files /dev/null and b/Resources/RockerDown.png differ diff --git a/Resources/RockerUp.png b/Resources/RockerUp.png new file mode 100644 index 0000000..386dc25 Binary files /dev/null and b/Resources/RockerUp.png differ diff --git a/Resources/SlideDown.png b/Resources/SlideDown.png new file mode 100644 index 0000000..abf3f19 Binary files /dev/null and b/Resources/SlideDown.png differ diff --git a/Resources/SlideUp.png b/Resources/SlideUp.png new file mode 100644 index 0000000..dc55af9 Binary files /dev/null and b/Resources/SlideUp.png differ diff --git a/Resources/fonts/Marker Felt.ttf b/Resources/fonts/Marker Felt.ttf old mode 100644 new mode 100755 diff --git a/Resources/ice.png b/Resources/ice.png new file mode 100755 index 0000000..6ddf0f2 Binary files /dev/null and b/Resources/ice.png differ diff --git a/Resources/yg.png b/Resources/yg.png new file mode 100644 index 0000000..7a77fc7 Binary files /dev/null and b/Resources/yg.png differ diff --git a/Resources/ygbg.png b/Resources/ygbg.png new file mode 100644 index 0000000..ca34cb9 Binary files /dev/null and b/Resources/ygbg.png differ diff --git a/cocos2d/AUTHORS b/cocos2d/AUTHORS old mode 100644 new mode 100755 diff --git a/cocos2d/CHANGELOG b/cocos2d/CHANGELOG old mode 100644 new mode 100755 diff --git a/cocos2d/CMakeLists.txt b/cocos2d/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/README.md b/cocos2d/README.md old mode 100644 new mode 100755 diff --git a/cocos2d/build/BuildHelpers.CMakeLists.txt b/cocos2d/build/BuildHelpers.CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/build/build-mingw32-clang-make.sh b/cocos2d/build/build-mingw32-clang-make.sh old mode 100644 new mode 100755 diff --git a/cocos2d/build/build-mingw32-gcc-make.sh b/cocos2d/build/build-mingw32-gcc-make.sh old mode 100644 new mode 100755 diff --git a/cocos2d/build/cocos2d-win32.vc2012.sln b/cocos2d/build/cocos2d-win32.vc2012.sln old mode 100644 new mode 100755 diff --git a/cocos2d/build/cocos2d-wp8.vc2012.sln b/cocos2d/build/cocos2d-wp8.vc2012.sln old mode 100644 new mode 100755 diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/project.pbxproj b/cocos2d/build/cocos2d_libs.xcodeproj/project.pbxproj old mode 100644 new mode 100755 index 2da14e8..6ea8ca8 --- a/cocos2d/build/cocos2d_libs.xcodeproj/project.pbxproj +++ b/cocos2d/build/cocos2d_libs.xcodeproj/project.pbxproj @@ -5961,7 +5961,7 @@ 1551A336158F2AB200E66CFE /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 0500; + LastUpgradeCheck = 0510; ORGANIZATIONNAME = ""; }; buildConfigurationList = 1551A339158F2AB200E66CFE /* Build configuration list for PBXProject "cocos2d_libs" */; @@ -6937,7 +6937,6 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = YES; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_CXX_LANGUAGE_STANDARD = "c++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_WARN_BOOL_CONVERSION = YES; @@ -6975,7 +6974,6 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = YES; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CLANG_CXX_LANGUAGE_STANDARD = "c++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_WARN_BOOL_CONVERSION = YES; @@ -7107,6 +7105,7 @@ A03F2E90178141C1006731B9 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer: Rujun Chen (XD3W5ZNKW8)"; GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", "COCOS2D_DEBUG=1", @@ -7123,6 +7122,7 @@ A03F2E91178141C1006731B9 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer: Rujun Chen (XD3W5ZNKW8)"; HEADER_SEARCH_PATHS = ( "$(inherited)", "/Applications/Xcode\\ 2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include", @@ -7184,7 +7184,6 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = YES; - ARCHS = "$(ARCHS_STANDARD)"; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "../cocos/cocos2d-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( @@ -7222,7 +7221,6 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = YES; - ARCHS = "$(ARCHS_STANDARD)"; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "../cocos/cocos2d-prefix.pch"; GCC_PREPROCESSOR_DEFINITIONS = ( @@ -7259,7 +7257,6 @@ A07A4E0D178386390073F6A7 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 5.1; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; @@ -7269,7 +7266,6 @@ A07A4E0E178386390073F6A7 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)"; IPHONEOS_DEPLOYMENT_TARGET = 5.1; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; @@ -7280,7 +7276,6 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = YES; - ARCHS = "$(ARCHS_STANDARD)"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", CC_TARGET_OS_IPHONE, @@ -7298,7 +7293,6 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = YES; - ARCHS = "$(ARCHS_STANDARD)"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", CC_TARGET_OS_IPHONE, @@ -7315,7 +7309,6 @@ A07A4F39178387670073F6A7 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD)"; HEADER_SEARCH_PATHS = ""; IPHONEOS_DEPLOYMENT_TARGET = 5.1.1; SDKROOT = iphoneos; @@ -7327,7 +7320,6 @@ A07A4F3A178387670073F6A7 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD)"; HEADER_SEARCH_PATHS = ""; IPHONEOS_DEPLOYMENT_TARGET = 5.1.1; SDKROOT = iphoneos; @@ -7339,7 +7331,6 @@ A07A4F9C1783876B0073F6A7 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD)"; CLANG_WARN_BOOL_CONVERSION = NO; CLANG_WARN_CONSTANT_CONVERSION = NO; GCC_WARN_64_TO_32_BIT_CONVERSION = NO; @@ -7357,7 +7348,6 @@ A07A4F9D1783876B0073F6A7 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD)"; CLANG_WARN_BOOL_CONVERSION = NO; CLANG_WARN_CONSTANT_CONVERSION = NO; GCC_WARN_64_TO_32_BIT_CONVERSION = NO; @@ -7376,7 +7366,6 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = YES; - ARCHS = "$(ARCHS_STANDARD)"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", CC_TARGET_OS_IPHONE, @@ -7393,7 +7382,6 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = YES; - ARCHS = "$(ARCHS_STANDARD)"; GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", CC_TARGET_OS_IPHONE, diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/CocosDenshion Mac.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/CocosDenshion Mac.xcscheme new file mode 100755 index 0000000..26db3be --- /dev/null +++ b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/CocosDenshion Mac.xcscheme @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/CocosDenshion iOS.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/CocosDenshion iOS.xcscheme new file mode 100755 index 0000000..3a65649 --- /dev/null +++ b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/CocosDenshion iOS.xcscheme @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/box2d Mac.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/box2d Mac.xcscheme new file mode 100755 index 0000000..b6714fb --- /dev/null +++ b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/box2d Mac.xcscheme @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/box2d iOS.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/box2d iOS.xcscheme new file mode 100755 index 0000000..91fb069 --- /dev/null +++ b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/box2d iOS.xcscheme @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/build all libs Mac.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/build all libs Mac.xcscheme new file mode 100755 index 0000000..f57131f --- /dev/null +++ b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/build all libs Mac.xcscheme @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/build all libs iOS.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/build all libs iOS.xcscheme new file mode 100755 index 0000000..fcbd659 --- /dev/null +++ b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/build all libs iOS.xcscheme @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/chipmunk Mac.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/chipmunk Mac.xcscheme new file mode 100755 index 0000000..1ee2bf5 --- /dev/null +++ b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/chipmunk Mac.xcscheme @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/chipmunk iOS.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/chipmunk iOS.xcscheme new file mode 100755 index 0000000..e404eda --- /dev/null +++ b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/chipmunk iOS.xcscheme @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/cocos2dx Mac.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/cocos2dx Mac.xcscheme new file mode 100755 index 0000000..e53e5e7 --- /dev/null +++ b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/cocos2dx Mac.xcscheme @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/cocos2dx iOS.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/cocos2dx iOS.xcscheme new file mode 100755 index 0000000..7d86924 --- /dev/null +++ b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/cocos2dx iOS.xcscheme @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/cocos2dx-extensions Mac.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/cocos2dx-extensions Mac.xcscheme new file mode 100755 index 0000000..9035830 --- /dev/null +++ b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/cocos2dx-extensions Mac.xcscheme @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/cocos2dx-extensions iOS.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/cocos2dx-extensions iOS.xcscheme new file mode 100755 index 0000000..5da5c6c --- /dev/null +++ b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/cocos2dx-extensions iOS.xcscheme @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100755 index 0000000..0d0ed8e --- /dev/null +++ b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,132 @@ + + + + + SchemeUserState + + CocosDenshion Mac.xcscheme + + orderHint + 7 + + CocosDenshion iOS.xcscheme + + orderHint + 13 + + box2d Mac.xcscheme + + orderHint + 6 + + box2d iOS.xcscheme + + orderHint + 12 + + build all libs Mac.xcscheme + + orderHint + 2 + + build all libs iOS.xcscheme + + orderHint + 8 + + chipmunk Mac.xcscheme + + orderHint + 5 + + chipmunk iOS.xcscheme + + orderHint + 11 + + cocos2dx Mac.xcscheme + + orderHint + 3 + + cocos2dx iOS.xcscheme + + orderHint + 9 + + cocos2dx-extensions Mac.xcscheme + + orderHint + 4 + + cocos2dx-extensions iOS.xcscheme + + orderHint + 10 + + + SuppressBuildableAutocreation + + 1551A33E158F2AB200E66CFE + + primary + + + A03F2B781780BD04006731B9 + + primary + + + A03F2D5D1780BDF7006731B9 + + primary + + + A03F2E8E178141C1006731B9 + + primary + + + A03F2E9817814268006731B9 + + primary + + + A03F2FC117814595006731B9 + + primary + + + A07A4C241783777C0073F6A7 + + primary + + + A07A4E0B178386390073F6A7 + + primary + + + A07A4E111783867C0073F6A7 + + primary + + + A07A4EFD178387670073F6A7 + + primary + + + A07A4F3C1783876B0073F6A7 + + primary + + + A07A4F9F178387730073F6A7 + + primary + + + + + diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/CocosDenshion Mac.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/CocosDenshion Mac.xcscheme old mode 100644 new mode 100755 diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/CocosDenshion iOS.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/CocosDenshion iOS.xcscheme old mode 100644 new mode 100755 diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/box2d Mac.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/box2d Mac.xcscheme old mode 100644 new mode 100755 diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/box2d iOS.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/box2d iOS.xcscheme old mode 100644 new mode 100755 diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/build all libs Mac.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/build all libs Mac.xcscheme old mode 100644 new mode 100755 diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/build all libs iOS.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/build all libs iOS.xcscheme old mode 100644 new mode 100755 diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/chipmunk Mac.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/chipmunk Mac.xcscheme old mode 100644 new mode 100755 diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/chipmunk iOS.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/chipmunk iOS.xcscheme old mode 100644 new mode 100755 diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/cocos2dx Mac.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/cocos2dx Mac.xcscheme old mode 100644 new mode 100755 diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/cocos2dx iOS.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/cocos2dx iOS.xcscheme old mode 100644 new mode 100755 diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/cocos2dx-extensions Mac.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/cocos2dx-extensions Mac.xcscheme old mode 100644 new mode 100755 diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/cocos2dx-extensions iOS.xcscheme b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/cocos2dx-extensions iOS.xcscheme old mode 100644 new mode 100755 diff --git a/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/xcschememanagement.plist b/cocos2d/build/cocos2d_libs.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/xcschememanagement.plist old mode 100644 new mode 100755 diff --git a/cocos2d/build/cocos2d_tests.xcodeproj/project.pbxproj b/cocos2d/build/cocos2d_tests.xcodeproj/project.pbxproj old mode 100644 new mode 100755 diff --git a/cocos2d/build/win32-msvc-2012-x86.cmd b/cocos2d/build/win32-msvc-2012-x86.cmd old mode 100644 new mode 100755 diff --git a/cocos2d/build/win32-msvc-2013-x86.cmd b/cocos2d/build/win32-msvc-2013-x86.cmd old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/App.xaml b/cocos2d/build/winrt/Cocos2dShaderCompiler/App.xaml old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/App.xaml.cpp b/cocos2d/build/winrt/Cocos2dShaderCompiler/App.xaml.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/App.xaml.h b/cocos2d/build/winrt/Cocos2dShaderCompiler/App.xaml.h old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/Assets/Logo.png b/cocos2d/build/winrt/Cocos2dShaderCompiler/Assets/Logo.png old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/Assets/SmallLogo.png b/cocos2d/build/winrt/Cocos2dShaderCompiler/Assets/SmallLogo.png old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/Assets/SplashScreen.png b/cocos2d/build/winrt/Cocos2dShaderCompiler/Assets/SplashScreen.png old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/Assets/StoreLogo.png b/cocos2d/build/winrt/Cocos2dShaderCompiler/Assets/StoreLogo.png old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/Cocos2dShaderCompiler.sln b/cocos2d/build/winrt/Cocos2dShaderCompiler/Cocos2dShaderCompiler.sln old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/Cocos2dShaderCompiler.vcxproj b/cocos2d/build/winrt/Cocos2dShaderCompiler/Cocos2dShaderCompiler.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/Cocos2dShaderCompiler.vcxproj.filters b/cocos2d/build/winrt/Cocos2dShaderCompiler/Cocos2dShaderCompiler.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/Cocos2dShaderCompiler_TemporaryKey.pfx b/cocos2d/build/winrt/Cocos2dShaderCompiler/Cocos2dShaderCompiler_TemporaryKey.pfx old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/DirectXPage.xaml b/cocos2d/build/winrt/Cocos2dShaderCompiler/DirectXPage.xaml old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/DirectXPage.xaml.cpp b/cocos2d/build/winrt/Cocos2dShaderCompiler/DirectXPage.xaml.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/DirectXPage.xaml.h b/cocos2d/build/winrt/Cocos2dShaderCompiler/DirectXPage.xaml.h old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/Package.appxmanifest b/cocos2d/build/winrt/Cocos2dShaderCompiler/Package.appxmanifest old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/ShaderCompiler.cpp b/cocos2d/build/winrt/Cocos2dShaderCompiler/ShaderCompiler.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/ShaderCompiler.h b/cocos2d/build/winrt/Cocos2dShaderCompiler/ShaderCompiler.h old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/pch.cpp b/cocos2d/build/winrt/Cocos2dShaderCompiler/pch.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/Cocos2dShaderCompiler/pch.h b/cocos2d/build/winrt/Cocos2dShaderCompiler/pch.h old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/convertprojects.ps1 b/cocos2d/build/winrt/convertprojects.ps1 old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/scripts/converterutils.ps1 b/cocos2d/build/winrt/scripts/converterutils.ps1 old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/scripts/createsln.ps1 b/cocos2d/build/winrt/scripts/createsln.ps1 old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/scripts/templates/global_end_template.txt b/cocos2d/build/winrt/scripts/templates/global_end_template.txt old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/scripts/templates/global_start_template.txt b/cocos2d/build/winrt/scripts/templates/global_start_template.txt old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/scripts/templates/globalsection_template.txt b/cocos2d/build/winrt/scripts/templates/globalsection_template.txt old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/scripts/templates/winrt_dll_template.vcxproj b/cocos2d/build/winrt/scripts/templates/winrt_dll_template.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/scripts/templates/winrt_lib_template.vcxproj b/cocos2d/build/winrt/scripts/templates/winrt_lib_template.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/scripts/templates/winrt_sln_header_template.txt b/cocos2d/build/winrt/scripts/templates/winrt_sln_header_template.txt old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/scripts/templates/wp8_dll_template.vcxproj b/cocos2d/build/winrt/scripts/templates/wp8_dll_template.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/scripts/templates/wp8_lib_template.vcxproj b/cocos2d/build/winrt/scripts/templates/wp8_lib_template.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/scripts/templates/wp8_sln_header_template.txt b/cocos2d/build/winrt/scripts/templates/wp8_sln_header_template.txt old mode 100644 new mode 100755 diff --git a/cocos2d/build/winrt/scripts/winrtconverter.ps1 b/cocos2d/build/winrt/scripts/winrtconverter.ps1 old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCAction.cpp b/cocos2d/cocos/2d/CCAction.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCAction.h b/cocos2d/cocos/2d/CCAction.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionCamera.cpp b/cocos2d/cocos/2d/CCActionCamera.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionCamera.h b/cocos2d/cocos/2d/CCActionCamera.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionCatmullRom.cpp b/cocos2d/cocos/2d/CCActionCatmullRom.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionCatmullRom.h b/cocos2d/cocos/2d/CCActionCatmullRom.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionEase.cpp b/cocos2d/cocos/2d/CCActionEase.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionEase.h b/cocos2d/cocos/2d/CCActionEase.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionGrid.cpp b/cocos2d/cocos/2d/CCActionGrid.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionGrid.h b/cocos2d/cocos/2d/CCActionGrid.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionGrid3D.cpp b/cocos2d/cocos/2d/CCActionGrid3D.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionGrid3D.h b/cocos2d/cocos/2d/CCActionGrid3D.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionInstant.cpp b/cocos2d/cocos/2d/CCActionInstant.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionInstant.h b/cocos2d/cocos/2d/CCActionInstant.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionInterval.cpp b/cocos2d/cocos/2d/CCActionInterval.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionInterval.h b/cocos2d/cocos/2d/CCActionInterval.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionManager.cpp b/cocos2d/cocos/2d/CCActionManager.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionManager.h b/cocos2d/cocos/2d/CCActionManager.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionPageTurn3D.cpp b/cocos2d/cocos/2d/CCActionPageTurn3D.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionPageTurn3D.h b/cocos2d/cocos/2d/CCActionPageTurn3D.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionProgressTimer.cpp b/cocos2d/cocos/2d/CCActionProgressTimer.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionProgressTimer.h b/cocos2d/cocos/2d/CCActionProgressTimer.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionTiledGrid.cpp b/cocos2d/cocos/2d/CCActionTiledGrid.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionTiledGrid.h b/cocos2d/cocos/2d/CCActionTiledGrid.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionTween.cpp b/cocos2d/cocos/2d/CCActionTween.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCActionTween.h b/cocos2d/cocos/2d/CCActionTween.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCAnimation.cpp b/cocos2d/cocos/2d/CCAnimation.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCAnimation.h b/cocos2d/cocos/2d/CCAnimation.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCAnimationCache.cpp b/cocos2d/cocos/2d/CCAnimationCache.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCAnimationCache.h b/cocos2d/cocos/2d/CCAnimationCache.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCAtlasNode.cpp b/cocos2d/cocos/2d/CCAtlasNode.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCAtlasNode.h b/cocos2d/cocos/2d/CCAtlasNode.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCClippingNode.cpp b/cocos2d/cocos/2d/CCClippingNode.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCClippingNode.h b/cocos2d/cocos/2d/CCClippingNode.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCComponent.cpp b/cocos2d/cocos/2d/CCComponent.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCComponent.h b/cocos2d/cocos/2d/CCComponent.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCComponentContainer.cpp b/cocos2d/cocos/2d/CCComponentContainer.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCComponentContainer.h b/cocos2d/cocos/2d/CCComponentContainer.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCDrawNode.cpp b/cocos2d/cocos/2d/CCDrawNode.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCDrawNode.h b/cocos2d/cocos/2d/CCDrawNode.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCDrawingPrimitives.cpp b/cocos2d/cocos/2d/CCDrawingPrimitives.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCDrawingPrimitives.h b/cocos2d/cocos/2d/CCDrawingPrimitives.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCFont.cpp b/cocos2d/cocos/2d/CCFont.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCFont.h b/cocos2d/cocos/2d/CCFont.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCFontAtlas.cpp b/cocos2d/cocos/2d/CCFontAtlas.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCFontAtlas.h b/cocos2d/cocos/2d/CCFontAtlas.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCFontAtlasCache.cpp b/cocos2d/cocos/2d/CCFontAtlasCache.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCFontAtlasCache.h b/cocos2d/cocos/2d/CCFontAtlasCache.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCFontCharMap.cpp b/cocos2d/cocos/2d/CCFontCharMap.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCFontCharMap.h b/cocos2d/cocos/2d/CCFontCharMap.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCFontFNT.cpp b/cocos2d/cocos/2d/CCFontFNT.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCFontFNT.h b/cocos2d/cocos/2d/CCFontFNT.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCFontFreeType.cpp b/cocos2d/cocos/2d/CCFontFreeType.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCFontFreeType.h b/cocos2d/cocos/2d/CCFontFreeType.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCGLBufferedNode.cpp b/cocos2d/cocos/2d/CCGLBufferedNode.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCGLBufferedNode.h b/cocos2d/cocos/2d/CCGLBufferedNode.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCGrabber.cpp b/cocos2d/cocos/2d/CCGrabber.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCGrabber.h b/cocos2d/cocos/2d/CCGrabber.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCGrid.cpp b/cocos2d/cocos/2d/CCGrid.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCGrid.h b/cocos2d/cocos/2d/CCGrid.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCLabel.cpp b/cocos2d/cocos/2d/CCLabel.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCLabel.h b/cocos2d/cocos/2d/CCLabel.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCLabelAtlas.cpp b/cocos2d/cocos/2d/CCLabelAtlas.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCLabelAtlas.h b/cocos2d/cocos/2d/CCLabelAtlas.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCLabelBMFont.cpp b/cocos2d/cocos/2d/CCLabelBMFont.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCLabelBMFont.h b/cocos2d/cocos/2d/CCLabelBMFont.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCLabelTTF.cpp b/cocos2d/cocos/2d/CCLabelTTF.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCLabelTTF.h b/cocos2d/cocos/2d/CCLabelTTF.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCLabelTextFormatter.cpp b/cocos2d/cocos/2d/CCLabelTextFormatter.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCLabelTextFormatter.h b/cocos2d/cocos/2d/CCLabelTextFormatter.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCLayer.cpp b/cocos2d/cocos/2d/CCLayer.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCLayer.h b/cocos2d/cocos/2d/CCLayer.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCMenu.cpp b/cocos2d/cocos/2d/CCMenu.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCMenu.h b/cocos2d/cocos/2d/CCMenu.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCMenuItem.cpp b/cocos2d/cocos/2d/CCMenuItem.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCMenuItem.h b/cocos2d/cocos/2d/CCMenuItem.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCMotionStreak.cpp b/cocos2d/cocos/2d/CCMotionStreak.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCMotionStreak.h b/cocos2d/cocos/2d/CCMotionStreak.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCNode.cpp b/cocos2d/cocos/2d/CCNode.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCNode.h b/cocos2d/cocos/2d/CCNode.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCNodeGrid.cpp b/cocos2d/cocos/2d/CCNodeGrid.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCNodeGrid.h b/cocos2d/cocos/2d/CCNodeGrid.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCParallaxNode.cpp b/cocos2d/cocos/2d/CCParallaxNode.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCParallaxNode.h b/cocos2d/cocos/2d/CCParallaxNode.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCParticleBatchNode.cpp b/cocos2d/cocos/2d/CCParticleBatchNode.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCParticleBatchNode.h b/cocos2d/cocos/2d/CCParticleBatchNode.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCParticleExamples.cpp b/cocos2d/cocos/2d/CCParticleExamples.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCParticleExamples.h b/cocos2d/cocos/2d/CCParticleExamples.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCParticleSystem.cpp b/cocos2d/cocos/2d/CCParticleSystem.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCParticleSystem.h b/cocos2d/cocos/2d/CCParticleSystem.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCParticleSystemQuad.cpp b/cocos2d/cocos/2d/CCParticleSystemQuad.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCParticleSystemQuad.h b/cocos2d/cocos/2d/CCParticleSystemQuad.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCProgressTimer.cpp b/cocos2d/cocos/2d/CCProgressTimer.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCProgressTimer.h b/cocos2d/cocos/2d/CCProgressTimer.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCRenderTexture.cpp b/cocos2d/cocos/2d/CCRenderTexture.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCRenderTexture.h b/cocos2d/cocos/2d/CCRenderTexture.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCScene.cpp b/cocos2d/cocos/2d/CCScene.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCScene.h b/cocos2d/cocos/2d/CCScene.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCSprite.cpp b/cocos2d/cocos/2d/CCSprite.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCSprite.h b/cocos2d/cocos/2d/CCSprite.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCSpriteBatchNode.cpp b/cocos2d/cocos/2d/CCSpriteBatchNode.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCSpriteBatchNode.h b/cocos2d/cocos/2d/CCSpriteBatchNode.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCSpriteFrame.cpp b/cocos2d/cocos/2d/CCSpriteFrame.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCSpriteFrame.h b/cocos2d/cocos/2d/CCSpriteFrame.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCSpriteFrameCache.cpp b/cocos2d/cocos/2d/CCSpriteFrameCache.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCSpriteFrameCache.h b/cocos2d/cocos/2d/CCSpriteFrameCache.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTMXLayer.cpp b/cocos2d/cocos/2d/CCTMXLayer.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTMXLayer.h b/cocos2d/cocos/2d/CCTMXLayer.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTMXObjectGroup.cpp b/cocos2d/cocos/2d/CCTMXObjectGroup.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTMXObjectGroup.h b/cocos2d/cocos/2d/CCTMXObjectGroup.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTMXTiledMap.cpp b/cocos2d/cocos/2d/CCTMXTiledMap.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTMXTiledMap.h b/cocos2d/cocos/2d/CCTMXTiledMap.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTMXXMLParser.cpp b/cocos2d/cocos/2d/CCTMXXMLParser.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTMXXMLParser.h b/cocos2d/cocos/2d/CCTMXXMLParser.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTextFieldTTF.cpp b/cocos2d/cocos/2d/CCTextFieldTTF.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTextFieldTTF.h b/cocos2d/cocos/2d/CCTextFieldTTF.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTileMapAtlas.cpp b/cocos2d/cocos/2d/CCTileMapAtlas.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTileMapAtlas.h b/cocos2d/cocos/2d/CCTileMapAtlas.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTransition.cpp b/cocos2d/cocos/2d/CCTransition.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTransition.h b/cocos2d/cocos/2d/CCTransition.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTransitionPageTurn.cpp b/cocos2d/cocos/2d/CCTransitionPageTurn.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTransitionPageTurn.h b/cocos2d/cocos/2d/CCTransitionPageTurn.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTransitionProgress.cpp b/cocos2d/cocos/2d/CCTransitionProgress.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTransitionProgress.h b/cocos2d/cocos/2d/CCTransitionProgress.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTweenFunction.cpp b/cocos2d/cocos/2d/CCTweenFunction.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CCTweenFunction.h b/cocos2d/cocos/2d/CCTweenFunction.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/CMakeLists.txt b/cocos2d/cocos/2d/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/cocos2d.vcxproj b/cocos2d/cocos/2d/cocos2d.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/cocos2d.vcxproj.filters b/cocos2d/cocos/2d/cocos2d.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/cocos2d_headers.props b/cocos2d/cocos/2d/cocos2d_headers.props old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/cocos2d_winrt.props b/cocos2d/cocos/2d/cocos2d_winrt.props old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/cocos2d_winrt.vcxproj b/cocos2d/cocos/2d/cocos2d_winrt.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/cocos2d_winrt.vcxproj.filters b/cocos2d/cocos/2d/cocos2d_winrt.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/cocos2d_winrt_headers.props b/cocos2d/cocos/2d/cocos2d_winrt_headers.props old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/cocos2d_wp8.vcxproj b/cocos2d/cocos/2d/cocos2d_wp8.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/cocos2d_wp8.vcxproj.filters b/cocos2d/cocos/2d/cocos2d_wp8.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/cocos2d_wp8_headers.props b/cocos2d/cocos/2d/cocos2d_wp8_headers.props old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/2d/cocos2dx.props b/cocos2d/cocos/2d/cocos2dx.props old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/3d/CCMesh.cpp b/cocos2d/cocos/3d/CCMesh.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/3d/CCMesh.h b/cocos2d/cocos/3d/CCMesh.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/3d/CCObjLoader.cpp b/cocos2d/cocos/3d/CCObjLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/3d/CCObjLoader.h b/cocos2d/cocos/3d/CCObjLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/3d/CCSprite3D.cpp b/cocos2d/cocos/3d/CCSprite3D.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/3d/CCSprite3D.h b/cocos2d/cocos/3d/CCSprite3D.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/3d/CCSprite3DDataCache.cpp b/cocos2d/cocos/3d/CCSprite3DDataCache.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/3d/CCSprite3DDataCache.h b/cocos2d/cocos/3d/CCSprite3DDataCache.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/3d/CMakeLists.txt b/cocos2d/cocos/3d/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/Android.mk b/cocos2d/cocos/Android.mk old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/CMakeLists.txt b/cocos2d/cocos/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/CMakeLists.txt b/cocos2d/cocos/audio/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/android/Android.mk b/cocos2d/cocos/audio/android/Android.mk old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/android/ccdandroidUtils.cpp b/cocos2d/cocos/audio/android/ccdandroidUtils.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/android/ccdandroidUtils.h b/cocos2d/cocos/audio/android/ccdandroidUtils.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/android/cddSimpleAudioEngine.cpp b/cocos2d/cocos/audio/android/cddSimpleAudioEngine.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/android/jni/cddandroidAndroidJavaEngine.cpp b/cocos2d/cocos/audio/android/jni/cddandroidAndroidJavaEngine.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/android/jni/cddandroidAndroidJavaEngine.h b/cocos2d/cocos/audio/android/jni/cddandroidAndroidJavaEngine.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/include/Export.h b/cocos2d/cocos/audio/include/Export.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/include/SimpleAudioEngine.h b/cocos2d/cocos/audio/include/SimpleAudioEngine.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/ios/CDAudioManager.h b/cocos2d/cocos/audio/ios/CDAudioManager.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/ios/CDAudioManager.m b/cocos2d/cocos/audio/ios/CDAudioManager.m old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/ios/CDConfig.h b/cocos2d/cocos/audio/ios/CDConfig.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/ios/CDOpenALSupport.h b/cocos2d/cocos/audio/ios/CDOpenALSupport.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/ios/CDOpenALSupport.m b/cocos2d/cocos/audio/ios/CDOpenALSupport.m old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/ios/CocosDenshion.h b/cocos2d/cocos/audio/ios/CocosDenshion.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/ios/CocosDenshion.m b/cocos2d/cocos/audio/ios/CocosDenshion.m old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/ios/SimpleAudioEngine.mm b/cocos2d/cocos/audio/ios/SimpleAudioEngine.mm old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/ios/SimpleAudioEngine_objc.h b/cocos2d/cocos/audio/ios/SimpleAudioEngine_objc.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/ios/SimpleAudioEngine_objc.m b/cocos2d/cocos/audio/ios/SimpleAudioEngine_objc.m old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/linux/AudioPlayer.h b/cocos2d/cocos/audio/linux/AudioPlayer.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/linux/FmodAudioPlayer.cpp b/cocos2d/cocos/audio/linux/FmodAudioPlayer.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/linux/FmodAudioPlayer.h b/cocos2d/cocos/audio/linux/FmodAudioPlayer.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/linux/SimpleAudioEngineFMOD.cpp b/cocos2d/cocos/audio/linux/SimpleAudioEngineFMOD.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/mac/CDAudioManager.h b/cocos2d/cocos/audio/mac/CDAudioManager.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/mac/CDAudioManager.m b/cocos2d/cocos/audio/mac/CDAudioManager.m old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/mac/CDConfig.h b/cocos2d/cocos/audio/mac/CDConfig.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/mac/CDOpenALSupport.h b/cocos2d/cocos/audio/mac/CDOpenALSupport.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/mac/CDOpenALSupport.m b/cocos2d/cocos/audio/mac/CDOpenALSupport.m old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/mac/CDXMacOSXSupport.h b/cocos2d/cocos/audio/mac/CDXMacOSXSupport.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/mac/CDXMacOSXSupport.mm b/cocos2d/cocos/audio/mac/CDXMacOSXSupport.mm old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/mac/CocosDenshion.h b/cocos2d/cocos/audio/mac/CocosDenshion.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/mac/CocosDenshion.m b/cocos2d/cocos/audio/mac/CocosDenshion.m old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/mac/SimpleAudioEngine.mm b/cocos2d/cocos/audio/mac/SimpleAudioEngine.mm old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/mac/SimpleAudioEngine_objc.h b/cocos2d/cocos/audio/mac/SimpleAudioEngine_objc.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/mac/SimpleAudioEngine_objc.m b/cocos2d/cocos/audio/mac/SimpleAudioEngine_objc.m old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/openal/OpenALDecoder.cpp b/cocos2d/cocos/audio/openal/OpenALDecoder.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/openal/OpenALDecoder.h b/cocos2d/cocos/audio/openal/OpenALDecoder.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/openal/SimpleAudioEngineOpenAL.cpp b/cocos2d/cocos/audio/openal/SimpleAudioEngineOpenAL.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/proj.win32/CocosDenshion.vcxproj b/cocos2d/cocos/audio/proj.win32/CocosDenshion.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/proj.win32/CocosDenshion.vcxproj.filters b/cocos2d/cocos/audio/proj.win32/CocosDenshion.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/proj.win32/CocosDenshion.vcxproj.user b/cocos2d/cocos/audio/proj.win32/CocosDenshion.vcxproj.user old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/proj.wp8/CocosDenshion.vcxproj b/cocos2d/cocos/audio/proj.wp8/CocosDenshion.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/proj.wp8/CocosDenshion.vcxproj.filters b/cocos2d/cocos/audio/proj.wp8/CocosDenshion.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/proj.wp8/CocosDenshion.vcxproj.user b/cocos2d/cocos/audio/proj.wp8/CocosDenshion.vcxproj.user old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/win32/MciPlayer.cpp b/cocos2d/cocos/audio/win32/MciPlayer.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/win32/MciPlayer.h b/cocos2d/cocos/audio/win32/MciPlayer.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/win32/SimpleAudioEngine.cpp b/cocos2d/cocos/audio/win32/SimpleAudioEngine.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/winrt/Audio.cpp b/cocos2d/cocos/audio/winrt/Audio.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/winrt/Audio.h b/cocos2d/cocos/audio/winrt/Audio.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/winrt/MediaStreamer.cpp b/cocos2d/cocos/audio/winrt/MediaStreamer.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/winrt/MediaStreamer.h b/cocos2d/cocos/audio/winrt/MediaStreamer.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/winrt/SimpleAudioEngine.cpp b/cocos2d/cocos/audio/winrt/SimpleAudioEngine.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/wp8/Audio.cpp b/cocos2d/cocos/audio/wp8/Audio.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/wp8/Audio.h b/cocos2d/cocos/audio/wp8/Audio.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/wp8/MediaStreamer.cpp b/cocos2d/cocos/audio/wp8/MediaStreamer.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/wp8/MediaStreamer.h b/cocos2d/cocos/audio/wp8/MediaStreamer.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/audio/wp8/SimpleAudioEngine.cpp b/cocos2d/cocos/audio/wp8/SimpleAudioEngine.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCAutoreleasePool.cpp b/cocos2d/cocos/base/CCAutoreleasePool.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCAutoreleasePool.h b/cocos2d/cocos/base/CCAutoreleasePool.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCConfiguration.cpp b/cocos2d/cocos/base/CCConfiguration.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCConfiguration.h b/cocos2d/cocos/base/CCConfiguration.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCConsole.cpp b/cocos2d/cocos/base/CCConsole.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCConsole.h b/cocos2d/cocos/base/CCConsole.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCData.cpp b/cocos2d/cocos/base/CCData.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCData.h b/cocos2d/cocos/base/CCData.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCDataVisitor.cpp b/cocos2d/cocos/base/CCDataVisitor.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCDataVisitor.h b/cocos2d/cocos/base/CCDataVisitor.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCDirector.cpp b/cocos2d/cocos/base/CCDirector.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCDirector.h b/cocos2d/cocos/base/CCDirector.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEvent.cpp b/cocos2d/cocos/base/CCEvent.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEvent.h b/cocos2d/cocos/base/CCEvent.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventAcceleration.cpp b/cocos2d/cocos/base/CCEventAcceleration.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventAcceleration.h b/cocos2d/cocos/base/CCEventAcceleration.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventCustom.cpp b/cocos2d/cocos/base/CCEventCustom.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventCustom.h b/cocos2d/cocos/base/CCEventCustom.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventDispatcher.cpp b/cocos2d/cocos/base/CCEventDispatcher.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventDispatcher.h b/cocos2d/cocos/base/CCEventDispatcher.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventFocus.cpp b/cocos2d/cocos/base/CCEventFocus.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventFocus.h b/cocos2d/cocos/base/CCEventFocus.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventKeyboard.cpp b/cocos2d/cocos/base/CCEventKeyboard.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventKeyboard.h b/cocos2d/cocos/base/CCEventKeyboard.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventListener.cpp b/cocos2d/cocos/base/CCEventListener.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventListener.h b/cocos2d/cocos/base/CCEventListener.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventListenerAcceleration.cpp b/cocos2d/cocos/base/CCEventListenerAcceleration.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventListenerAcceleration.h b/cocos2d/cocos/base/CCEventListenerAcceleration.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventListenerCustom.cpp b/cocos2d/cocos/base/CCEventListenerCustom.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventListenerCustom.h b/cocos2d/cocos/base/CCEventListenerCustom.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventListenerFocus.cpp b/cocos2d/cocos/base/CCEventListenerFocus.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventListenerFocus.h b/cocos2d/cocos/base/CCEventListenerFocus.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventListenerKeyboard.cpp b/cocos2d/cocos/base/CCEventListenerKeyboard.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventListenerKeyboard.h b/cocos2d/cocos/base/CCEventListenerKeyboard.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventListenerMouse.cpp b/cocos2d/cocos/base/CCEventListenerMouse.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventListenerMouse.h b/cocos2d/cocos/base/CCEventListenerMouse.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventListenerTouch.cpp b/cocos2d/cocos/base/CCEventListenerTouch.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventListenerTouch.h b/cocos2d/cocos/base/CCEventListenerTouch.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventMouse.cpp b/cocos2d/cocos/base/CCEventMouse.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventMouse.h b/cocos2d/cocos/base/CCEventMouse.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventTouch.cpp b/cocos2d/cocos/base/CCEventTouch.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventTouch.h b/cocos2d/cocos/base/CCEventTouch.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCEventType.h b/cocos2d/cocos/base/CCEventType.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCIMEDelegate.h b/cocos2d/cocos/base/CCIMEDelegate.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCIMEDispatcher.cpp b/cocos2d/cocos/base/CCIMEDispatcher.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCIMEDispatcher.h b/cocos2d/cocos/base/CCIMEDispatcher.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCMap.h b/cocos2d/cocos/base/CCMap.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCNS.cpp b/cocos2d/cocos/base/CCNS.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCNS.h b/cocos2d/cocos/base/CCNS.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCPlatformConfig.h b/cocos2d/cocos/base/CCPlatformConfig.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCPlatformMacros.h b/cocos2d/cocos/base/CCPlatformMacros.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCProfiling.cpp b/cocos2d/cocos/base/CCProfiling.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCProfiling.h b/cocos2d/cocos/base/CCProfiling.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCProtocols.h b/cocos2d/cocos/base/CCProtocols.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCRef.cpp b/cocos2d/cocos/base/CCRef.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCRef.h b/cocos2d/cocos/base/CCRef.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCRefPtr.h b/cocos2d/cocos/base/CCRefPtr.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCScheduler.cpp b/cocos2d/cocos/base/CCScheduler.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCScheduler.h b/cocos2d/cocos/base/CCScheduler.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCScriptSupport.cpp b/cocos2d/cocos/base/CCScriptSupport.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCScriptSupport.h b/cocos2d/cocos/base/CCScriptSupport.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCTouch.cpp b/cocos2d/cocos/base/CCTouch.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCTouch.h b/cocos2d/cocos/base/CCTouch.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCUserDefault.cpp b/cocos2d/cocos/base/CCUserDefault.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCUserDefault.h b/cocos2d/cocos/base/CCUserDefault.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCUserDefault.mm b/cocos2d/cocos/base/CCUserDefault.mm old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCUserDefaultAndroid.cpp b/cocos2d/cocos/base/CCUserDefaultAndroid.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCValue.cpp b/cocos2d/cocos/base/CCValue.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCValue.h b/cocos2d/cocos/base/CCValue.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CCVector.h b/cocos2d/cocos/base/CCVector.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/CMakeLists.txt b/cocos2d/cocos/base/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/TGAlib.cpp b/cocos2d/cocos/base/TGAlib.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/TGAlib.h b/cocos2d/cocos/base/TGAlib.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/ZipUtils.cpp b/cocos2d/cocos/base/ZipUtils.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/ZipUtils.h b/cocos2d/cocos/base/ZipUtils.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/atitc.cpp b/cocos2d/cocos/base/atitc.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/atitc.h b/cocos2d/cocos/base/atitc.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/base64.cpp b/cocos2d/cocos/base/base64.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/base64.h b/cocos2d/cocos/base/base64.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/ccCArray.cpp b/cocos2d/cocos/base/ccCArray.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/ccCArray.h b/cocos2d/cocos/base/ccCArray.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/ccConfig.h b/cocos2d/cocos/base/ccConfig.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/ccFPSImages.c b/cocos2d/cocos/base/ccFPSImages.c old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/ccFPSImages.h b/cocos2d/cocos/base/ccFPSImages.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/ccMacros.h b/cocos2d/cocos/base/ccMacros.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/ccTypes.cpp b/cocos2d/cocos/base/ccTypes.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/ccTypes.h b/cocos2d/cocos/base/ccTypes.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/ccUTF8.cpp b/cocos2d/cocos/base/ccUTF8.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/ccUTF8.h b/cocos2d/cocos/base/ccUTF8.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/ccUtils.cpp b/cocos2d/cocos/base/ccUtils.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/ccUtils.h b/cocos2d/cocos/base/ccUtils.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/etc1.cpp b/cocos2d/cocos/base/etc1.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/etc1.h b/cocos2d/cocos/base/etc1.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/firePngData.h b/cocos2d/cocos/base/firePngData.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/s3tc.cpp b/cocos2d/cocos/base/s3tc.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/s3tc.h b/cocos2d/cocos/base/s3tc.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/uthash.h b/cocos2d/cocos/base/uthash.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/base/utlist.h b/cocos2d/cocos/base/utlist.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/cocos2d-prefix.pch b/cocos2d/cocos/cocos2d-prefix.pch old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/cocos2d.cpp b/cocos2d/cocos/cocos2d.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/cocos2d.h b/cocos2d/cocos/cocos2d.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/deprecated/CCArray.cpp b/cocos2d/cocos/deprecated/CCArray.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/deprecated/CCArray.h b/cocos2d/cocos/deprecated/CCArray.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/deprecated/CCBool.h b/cocos2d/cocos/deprecated/CCBool.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/deprecated/CCDeprecated.cpp b/cocos2d/cocos/deprecated/CCDeprecated.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/deprecated/CCDeprecated.h b/cocos2d/cocos/deprecated/CCDeprecated.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/deprecated/CCDictionary.cpp b/cocos2d/cocos/deprecated/CCDictionary.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/deprecated/CCDictionary.h b/cocos2d/cocos/deprecated/CCDictionary.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/deprecated/CCDouble.h b/cocos2d/cocos/deprecated/CCDouble.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/deprecated/CCFloat.h b/cocos2d/cocos/deprecated/CCFloat.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/deprecated/CCInteger.h b/cocos2d/cocos/deprecated/CCInteger.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/deprecated/CCNotificationCenter.cpp b/cocos2d/cocos/deprecated/CCNotificationCenter.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/deprecated/CCNotificationCenter.h b/cocos2d/cocos/deprecated/CCNotificationCenter.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/deprecated/CCSet.cpp b/cocos2d/cocos/deprecated/CCSet.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/deprecated/CCSet.h b/cocos2d/cocos/deprecated/CCSet.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/deprecated/CCString.cpp b/cocos2d/cocos/deprecated/CCString.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/deprecated/CCString.h b/cocos2d/cocos/deprecated/CCString.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/deprecated/CMakeLists.txt b/cocos2d/cocos/deprecated/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/Android.mk b/cocos2d/cocos/editor-support/cocosbuilder/Android.mk old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCBAnimationManager.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCBAnimationManager.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCBAnimationManager.h b/cocos2d/cocos/editor-support/cocosbuilder/CCBAnimationManager.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCBFileLoader.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCBFileLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCBFileLoader.h b/cocos2d/cocos/editor-support/cocosbuilder/CCBFileLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCBKeyframe.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCBKeyframe.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCBKeyframe.h b/cocos2d/cocos/editor-support/cocosbuilder/CCBKeyframe.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCBMemberVariableAssigner.h b/cocos2d/cocos/editor-support/cocosbuilder/CCBMemberVariableAssigner.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCBReader.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCBReader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCBReader.h b/cocos2d/cocos/editor-support/cocosbuilder/CCBReader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCBSelectorResolver.h b/cocos2d/cocos/editor-support/cocosbuilder/CCBSelectorResolver.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCBSequence.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCBSequence.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCBSequence.h b/cocos2d/cocos/editor-support/cocosbuilder/CCBSequence.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCBSequenceProperty.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCBSequenceProperty.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCBSequenceProperty.h b/cocos2d/cocos/editor-support/cocosbuilder/CCBSequenceProperty.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCControlButtonLoader.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCControlButtonLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCControlButtonLoader.h b/cocos2d/cocos/editor-support/cocosbuilder/CCControlButtonLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCControlLoader.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCControlLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCControlLoader.h b/cocos2d/cocos/editor-support/cocosbuilder/CCControlLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCLabelBMFontLoader.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCLabelBMFontLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCLabelBMFontLoader.h b/cocos2d/cocos/editor-support/cocosbuilder/CCLabelBMFontLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCLabelTTFLoader.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCLabelTTFLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCLabelTTFLoader.h b/cocos2d/cocos/editor-support/cocosbuilder/CCLabelTTFLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCLayerColorLoader.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCLayerColorLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCLayerColorLoader.h b/cocos2d/cocos/editor-support/cocosbuilder/CCLayerColorLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCLayerGradientLoader.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCLayerGradientLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCLayerGradientLoader.h b/cocos2d/cocos/editor-support/cocosbuilder/CCLayerGradientLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCLayerLoader.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCLayerLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCLayerLoader.h b/cocos2d/cocos/editor-support/cocosbuilder/CCLayerLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCMenuItemImageLoader.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCMenuItemImageLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCMenuItemImageLoader.h b/cocos2d/cocos/editor-support/cocosbuilder/CCMenuItemImageLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCMenuItemLoader.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCMenuItemLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCMenuItemLoader.h b/cocos2d/cocos/editor-support/cocosbuilder/CCMenuItemLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCMenuLoader.h b/cocos2d/cocos/editor-support/cocosbuilder/CCMenuLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCNode+CCBRelativePositioning.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCNode+CCBRelativePositioning.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCNode+CCBRelativePositioning.h b/cocos2d/cocos/editor-support/cocosbuilder/CCNode+CCBRelativePositioning.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCNodeLoader.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCNodeLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCNodeLoader.h b/cocos2d/cocos/editor-support/cocosbuilder/CCNodeLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCNodeLoaderLibrary.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCNodeLoaderLibrary.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCNodeLoaderLibrary.h b/cocos2d/cocos/editor-support/cocosbuilder/CCNodeLoaderLibrary.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCNodeLoaderListener.h b/cocos2d/cocos/editor-support/cocosbuilder/CCNodeLoaderListener.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCParticleSystemQuadLoader.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCParticleSystemQuadLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCParticleSystemQuadLoader.h b/cocos2d/cocos/editor-support/cocosbuilder/CCParticleSystemQuadLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCScale9SpriteLoader.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCScale9SpriteLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCScale9SpriteLoader.h b/cocos2d/cocos/editor-support/cocosbuilder/CCScale9SpriteLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCScrollViewLoader.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCScrollViewLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCScrollViewLoader.h b/cocos2d/cocos/editor-support/cocosbuilder/CCScrollViewLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCSpriteLoader.cpp b/cocos2d/cocos/editor-support/cocosbuilder/CCSpriteLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CCSpriteLoader.h b/cocos2d/cocos/editor-support/cocosbuilder/CCSpriteLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CMakeLists.txt b/cocos2d/cocos/editor-support/cocosbuilder/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/CocosBuilder.h b/cocos2d/cocos/editor-support/cocosbuilder/CocosBuilder.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/proj.win32/libCocosBuilder.vcxproj b/cocos2d/cocos/editor-support/cocosbuilder/proj.win32/libCocosBuilder.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/proj.win32/libCocosBuilder.vcxproj.filters b/cocos2d/cocos/editor-support/cocosbuilder/proj.win32/libCocosBuilder.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/proj.win32/libCocosBuilder.vcxproj.user b/cocos2d/cocos/editor-support/cocosbuilder/proj.win32/libCocosBuilder.vcxproj.user old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/proj.wp8/libCocosBuilder.vcxproj b/cocos2d/cocos/editor-support/cocosbuilder/proj.wp8/libCocosBuilder.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/proj.wp8/libCocosBuilder.vcxproj.filters b/cocos2d/cocos/editor-support/cocosbuilder/proj.wp8/libCocosBuilder.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/proj.wp8/libCocosBuilder.vcxproj.user b/cocos2d/cocos/editor-support/cocosbuilder/proj.wp8/libCocosBuilder.vcxproj.user old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/proj.wp8/pch.cpp b/cocos2d/cocos/editor-support/cocosbuilder/proj.wp8/pch.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocosbuilder/proj.wp8/pch.h b/cocos2d/cocos/editor-support/cocosbuilder/proj.wp8/pch.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/Android.mk b/cocos2d/cocos/editor-support/cocostudio/Android.mk old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCActionFrame.cpp b/cocos2d/cocos/editor-support/cocostudio/CCActionFrame.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCActionFrame.h b/cocos2d/cocos/editor-support/cocostudio/CCActionFrame.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCActionFrameEasing.cpp b/cocos2d/cocos/editor-support/cocostudio/CCActionFrameEasing.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCActionFrameEasing.h b/cocos2d/cocos/editor-support/cocostudio/CCActionFrameEasing.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCActionManagerEx.cpp b/cocos2d/cocos/editor-support/cocostudio/CCActionManagerEx.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCActionManagerEx.h b/cocos2d/cocos/editor-support/cocostudio/CCActionManagerEx.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCActionNode.cpp b/cocos2d/cocos/editor-support/cocostudio/CCActionNode.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCActionNode.h b/cocos2d/cocos/editor-support/cocostudio/CCActionNode.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCActionObject.cpp b/cocos2d/cocos/editor-support/cocostudio/CCActionObject.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCActionObject.h b/cocos2d/cocos/editor-support/cocostudio/CCActionObject.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCArmature.cpp b/cocos2d/cocos/editor-support/cocostudio/CCArmature.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCArmature.h b/cocos2d/cocos/editor-support/cocostudio/CCArmature.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCArmatureAnimation.cpp b/cocos2d/cocos/editor-support/cocostudio/CCArmatureAnimation.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCArmatureAnimation.h b/cocos2d/cocos/editor-support/cocostudio/CCArmatureAnimation.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCArmatureDataManager.cpp b/cocos2d/cocos/editor-support/cocostudio/CCArmatureDataManager.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCArmatureDataManager.h b/cocos2d/cocos/editor-support/cocostudio/CCArmatureDataManager.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCArmatureDefine.cpp b/cocos2d/cocos/editor-support/cocostudio/CCArmatureDefine.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCArmatureDefine.h b/cocos2d/cocos/editor-support/cocostudio/CCArmatureDefine.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCBatchNode.cpp b/cocos2d/cocos/editor-support/cocostudio/CCBatchNode.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCBatchNode.h b/cocos2d/cocos/editor-support/cocostudio/CCBatchNode.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCBone.cpp b/cocos2d/cocos/editor-support/cocostudio/CCBone.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCBone.h b/cocos2d/cocos/editor-support/cocostudio/CCBone.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCColliderDetector.cpp b/cocos2d/cocos/editor-support/cocostudio/CCColliderDetector.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCColliderDetector.h b/cocos2d/cocos/editor-support/cocostudio/CCColliderDetector.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCComAttribute.cpp b/cocos2d/cocos/editor-support/cocostudio/CCComAttribute.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCComAttribute.h b/cocos2d/cocos/editor-support/cocostudio/CCComAttribute.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCComAudio.cpp b/cocos2d/cocos/editor-support/cocostudio/CCComAudio.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCComAudio.h b/cocos2d/cocos/editor-support/cocostudio/CCComAudio.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCComBase.h b/cocos2d/cocos/editor-support/cocostudio/CCComBase.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCComController.cpp b/cocos2d/cocos/editor-support/cocostudio/CCComController.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCComController.h b/cocos2d/cocos/editor-support/cocostudio/CCComController.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCComRender.cpp b/cocos2d/cocos/editor-support/cocostudio/CCComRender.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCComRender.h b/cocos2d/cocos/editor-support/cocostudio/CCComRender.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCDataReaderHelper.cpp b/cocos2d/cocos/editor-support/cocostudio/CCDataReaderHelper.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCDataReaderHelper.h b/cocos2d/cocos/editor-support/cocostudio/CCDataReaderHelper.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCDatas.cpp b/cocos2d/cocos/editor-support/cocostudio/CCDatas.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCDatas.h b/cocos2d/cocos/editor-support/cocostudio/CCDatas.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCDecorativeDisplay.cpp b/cocos2d/cocos/editor-support/cocostudio/CCDecorativeDisplay.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCDecorativeDisplay.h b/cocos2d/cocos/editor-support/cocostudio/CCDecorativeDisplay.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCDisplayFactory.cpp b/cocos2d/cocos/editor-support/cocostudio/CCDisplayFactory.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCDisplayFactory.h b/cocos2d/cocos/editor-support/cocostudio/CCDisplayFactory.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCDisplayManager.cpp b/cocos2d/cocos/editor-support/cocostudio/CCDisplayManager.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCDisplayManager.h b/cocos2d/cocos/editor-support/cocostudio/CCDisplayManager.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCInputDelegate.cpp b/cocos2d/cocos/editor-support/cocostudio/CCInputDelegate.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCInputDelegate.h b/cocos2d/cocos/editor-support/cocostudio/CCInputDelegate.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCProcessBase.cpp b/cocos2d/cocos/editor-support/cocostudio/CCProcessBase.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCProcessBase.h b/cocos2d/cocos/editor-support/cocostudio/CCProcessBase.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCSGUIReader.cpp b/cocos2d/cocos/editor-support/cocostudio/CCSGUIReader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCSGUIReader.h b/cocos2d/cocos/editor-support/cocostudio/CCSGUIReader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCSSceneReader.cpp b/cocos2d/cocos/editor-support/cocostudio/CCSSceneReader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCSSceneReader.h b/cocos2d/cocos/editor-support/cocostudio/CCSSceneReader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCSkin.cpp b/cocos2d/cocos/editor-support/cocostudio/CCSkin.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCSkin.h b/cocos2d/cocos/editor-support/cocostudio/CCSkin.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCSpriteFrameCacheHelper.cpp b/cocos2d/cocos/editor-support/cocostudio/CCSpriteFrameCacheHelper.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCSpriteFrameCacheHelper.h b/cocos2d/cocos/editor-support/cocostudio/CCSpriteFrameCacheHelper.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCTransformHelp.cpp b/cocos2d/cocos/editor-support/cocostudio/CCTransformHelp.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCTransformHelp.h b/cocos2d/cocos/editor-support/cocostudio/CCTransformHelp.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCTween.cpp b/cocos2d/cocos/editor-support/cocostudio/CCTween.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCTween.h b/cocos2d/cocos/editor-support/cocostudio/CCTween.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCUtilMath.cpp b/cocos2d/cocos/editor-support/cocostudio/CCUtilMath.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CCUtilMath.h b/cocos2d/cocos/editor-support/cocostudio/CCUtilMath.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CMakeLists.txt b/cocos2d/cocos/editor-support/cocostudio/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/CocoStudio.h b/cocos2d/cocos/editor-support/cocostudio/CocoStudio.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/DictionaryHelper.cpp b/cocos2d/cocos/editor-support/cocostudio/DictionaryHelper.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/DictionaryHelper.h b/cocos2d/cocos/editor-support/cocostudio/DictionaryHelper.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/ObjectFactory.cpp b/cocos2d/cocos/editor-support/cocostudio/ObjectFactory.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/ObjectFactory.h b/cocos2d/cocos/editor-support/cocostudio/ObjectFactory.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/ButtonReader/ButtonReader.cpp b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/ButtonReader/ButtonReader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/ButtonReader/ButtonReader.h b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/ButtonReader/ButtonReader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/CheckBoxReader/CheckBoxReader.cpp b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/CheckBoxReader/CheckBoxReader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/CheckBoxReader/CheckBoxReader.h b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/CheckBoxReader/CheckBoxReader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/ImageViewReader/ImageViewReader.cpp b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/ImageViewReader/ImageViewReader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/ImageViewReader/ImageViewReader.h b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/ImageViewReader/ImageViewReader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/LayoutReader/LayoutReader.cpp b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/LayoutReader/LayoutReader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/LayoutReader/LayoutReader.h b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/LayoutReader/LayoutReader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/ListViewReader/ListViewReader.cpp b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/ListViewReader/ListViewReader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/ListViewReader/ListViewReader.h b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/ListViewReader/ListViewReader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/LoadingBarReader/LoadingBarReader.cpp b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/LoadingBarReader/LoadingBarReader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/LoadingBarReader/LoadingBarReader.h b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/LoadingBarReader/LoadingBarReader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/PageViewReader/PageViewReader.cpp b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/PageViewReader/PageViewReader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/PageViewReader/PageViewReader.h b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/PageViewReader/PageViewReader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/ScrollViewReader/ScrollViewReader.cpp b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/ScrollViewReader/ScrollViewReader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/ScrollViewReader/ScrollViewReader.h b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/ScrollViewReader/ScrollViewReader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/SliderReader/SliderReader.cpp b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/SliderReader/SliderReader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/SliderReader/SliderReader.h b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/SliderReader/SliderReader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/TextAtlasReader/TextAtlasReader.cpp b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/TextAtlasReader/TextAtlasReader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/TextAtlasReader/TextAtlasReader.h b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/TextAtlasReader/TextAtlasReader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/TextBMFontReader/TextBMFontReader.cpp b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/TextBMFontReader/TextBMFontReader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/TextBMFontReader/TextBMFontReader.h b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/TextBMFontReader/TextBMFontReader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/TextFieldReader/TextFieldReader.cpp b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/TextFieldReader/TextFieldReader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/TextFieldReader/TextFieldReader.h b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/TextFieldReader/TextFieldReader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/TextReader/TextReader.cpp b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/TextReader/TextReader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/TextReader/TextReader.h b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/TextReader/TextReader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/WidgetReader.cpp b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/WidgetReader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/WidgetReader.h b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/WidgetReader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/WidgetReader/WidgetReaderProtocol.h b/cocos2d/cocos/editor-support/cocostudio/WidgetReader/WidgetReaderProtocol.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/proj.win32/libCocosStudio.vcxproj b/cocos2d/cocos/editor-support/cocostudio/proj.win32/libCocosStudio.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/proj.win32/libCocosStudio.vcxproj.filters b/cocos2d/cocos/editor-support/cocostudio/proj.win32/libCocosStudio.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/proj.win32/libCocosStudio.vcxproj.user b/cocos2d/cocos/editor-support/cocostudio/proj.win32/libCocosStudio.vcxproj.user old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/proj.wp8/libCocosStudio.vcxproj b/cocos2d/cocos/editor-support/cocostudio/proj.wp8/libCocosStudio.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/proj.wp8/libCocosStudio.vcxproj.filters b/cocos2d/cocos/editor-support/cocostudio/proj.wp8/libCocosStudio.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/proj.wp8/libCocosStudio.vcxproj.user b/cocos2d/cocos/editor-support/cocostudio/proj.wp8/libCocosStudio.vcxproj.user old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/proj.wp8/pch.cpp b/cocos2d/cocos/editor-support/cocostudio/proj.wp8/pch.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/cocostudio/proj.wp8/pch.h b/cocos2d/cocos/editor-support/cocostudio/proj.wp8/pch.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Android.mk b/cocos2d/cocos/editor-support/spine/Android.mk old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Animation.cpp b/cocos2d/cocos/editor-support/spine/Animation.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Animation.h b/cocos2d/cocos/editor-support/spine/Animation.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/AnimationState.cpp b/cocos2d/cocos/editor-support/spine/AnimationState.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/AnimationState.h b/cocos2d/cocos/editor-support/spine/AnimationState.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/AnimationStateData.cpp b/cocos2d/cocos/editor-support/spine/AnimationStateData.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/AnimationStateData.h b/cocos2d/cocos/editor-support/spine/AnimationStateData.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Atlas.cpp b/cocos2d/cocos/editor-support/spine/Atlas.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Atlas.h b/cocos2d/cocos/editor-support/spine/Atlas.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/AtlasAttachmentLoader.cpp b/cocos2d/cocos/editor-support/spine/AtlasAttachmentLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/AtlasAttachmentLoader.h b/cocos2d/cocos/editor-support/spine/AtlasAttachmentLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Attachment.cpp b/cocos2d/cocos/editor-support/spine/Attachment.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Attachment.h b/cocos2d/cocos/editor-support/spine/Attachment.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/AttachmentLoader.cpp b/cocos2d/cocos/editor-support/spine/AttachmentLoader.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/AttachmentLoader.h b/cocos2d/cocos/editor-support/spine/AttachmentLoader.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Bone.cpp b/cocos2d/cocos/editor-support/spine/Bone.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Bone.h b/cocos2d/cocos/editor-support/spine/Bone.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/BoneData.cpp b/cocos2d/cocos/editor-support/spine/BoneData.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/BoneData.h b/cocos2d/cocos/editor-support/spine/BoneData.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/BoundingBoxAttachment.cpp b/cocos2d/cocos/editor-support/spine/BoundingBoxAttachment.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/BoundingBoxAttachment.h b/cocos2d/cocos/editor-support/spine/BoundingBoxAttachment.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/CCSkeleton.cpp b/cocos2d/cocos/editor-support/spine/CCSkeleton.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/CCSkeleton.h b/cocos2d/cocos/editor-support/spine/CCSkeleton.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/CCSkeletonAnimation.cpp b/cocos2d/cocos/editor-support/spine/CCSkeletonAnimation.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/CCSkeletonAnimation.h b/cocos2d/cocos/editor-support/spine/CCSkeletonAnimation.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/CMakeLists.txt b/cocos2d/cocos/editor-support/spine/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Event.cpp b/cocos2d/cocos/editor-support/spine/Event.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Event.h b/cocos2d/cocos/editor-support/spine/Event.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/EventData.cpp b/cocos2d/cocos/editor-support/spine/EventData.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/EventData.h b/cocos2d/cocos/editor-support/spine/EventData.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Json.cpp b/cocos2d/cocos/editor-support/spine/Json.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Json.h b/cocos2d/cocos/editor-support/spine/Json.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/RegionAttachment.cpp b/cocos2d/cocos/editor-support/spine/RegionAttachment.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/RegionAttachment.h b/cocos2d/cocos/editor-support/spine/RegionAttachment.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Skeleton.cpp b/cocos2d/cocos/editor-support/spine/Skeleton.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Skeleton.h b/cocos2d/cocos/editor-support/spine/Skeleton.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/SkeletonBounds.cpp b/cocos2d/cocos/editor-support/spine/SkeletonBounds.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/SkeletonBounds.h b/cocos2d/cocos/editor-support/spine/SkeletonBounds.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/SkeletonData.cpp b/cocos2d/cocos/editor-support/spine/SkeletonData.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/SkeletonData.h b/cocos2d/cocos/editor-support/spine/SkeletonData.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/SkeletonJson.cpp b/cocos2d/cocos/editor-support/spine/SkeletonJson.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/SkeletonJson.h b/cocos2d/cocos/editor-support/spine/SkeletonJson.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Skin.cpp b/cocos2d/cocos/editor-support/spine/Skin.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Skin.h b/cocos2d/cocos/editor-support/spine/Skin.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Slot.cpp b/cocos2d/cocos/editor-support/spine/Slot.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/Slot.h b/cocos2d/cocos/editor-support/spine/Slot.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/SlotData.cpp b/cocos2d/cocos/editor-support/spine/SlotData.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/SlotData.h b/cocos2d/cocos/editor-support/spine/SlotData.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/extension.cpp b/cocos2d/cocos/editor-support/spine/extension.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/extension.h b/cocos2d/cocos/editor-support/spine/extension.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/proj.win32/libSpine.vcxproj b/cocos2d/cocos/editor-support/spine/proj.win32/libSpine.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/proj.win32/libSpine.vcxproj.filters b/cocos2d/cocos/editor-support/spine/proj.win32/libSpine.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/proj.win32/libSpine.vcxproj.user b/cocos2d/cocos/editor-support/spine/proj.win32/libSpine.vcxproj.user old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/proj.wp8/libSpine.vcxproj b/cocos2d/cocos/editor-support/spine/proj.wp8/libSpine.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/proj.wp8/libSpine.vcxproj.filters b/cocos2d/cocos/editor-support/spine/proj.wp8/libSpine.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/proj.wp8/libSpine.vcxproj.user b/cocos2d/cocos/editor-support/spine/proj.wp8/libSpine.vcxproj.user old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/proj.wp8/pch.cpp b/cocos2d/cocos/editor-support/spine/proj.wp8/pch.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/proj.wp8/pch.h b/cocos2d/cocos/editor-support/spine/proj.wp8/pch.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/spine-cocos2dx.cpp b/cocos2d/cocos/editor-support/spine/spine-cocos2dx.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/spine-cocos2dx.h b/cocos2d/cocos/editor-support/spine/spine-cocos2dx.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/editor-support/spine/spine.h b/cocos2d/cocos/editor-support/spine/spine.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/CCAffineTransform.cpp b/cocos2d/cocos/math/CCAffineTransform.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/CCAffineTransform.h b/cocos2d/cocos/math/CCAffineTransform.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/CCGeometry.cpp b/cocos2d/cocos/math/CCGeometry.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/CCGeometry.h b/cocos2d/cocos/math/CCGeometry.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/CCMath.h b/cocos2d/cocos/math/CCMath.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/CCMathBase.h b/cocos2d/cocos/math/CCMathBase.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/CCVertex.cpp b/cocos2d/cocos/math/CCVertex.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/CCVertex.h b/cocos2d/cocos/math/CCVertex.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/CMakeLists.txt b/cocos2d/cocos/math/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/Mat4.cpp b/cocos2d/cocos/math/Mat4.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/Mat4.h b/cocos2d/cocos/math/Mat4.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/Mat4.inl b/cocos2d/cocos/math/Mat4.inl old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/MathUtil.cpp b/cocos2d/cocos/math/MathUtil.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/MathUtil.h b/cocos2d/cocos/math/MathUtil.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/MathUtil.inl b/cocos2d/cocos/math/MathUtil.inl old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/MathUtilNeon.inl b/cocos2d/cocos/math/MathUtilNeon.inl old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/Quaternion.cpp b/cocos2d/cocos/math/Quaternion.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/Quaternion.h b/cocos2d/cocos/math/Quaternion.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/Quaternion.inl b/cocos2d/cocos/math/Quaternion.inl old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/TransformUtils.cpp b/cocos2d/cocos/math/TransformUtils.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/TransformUtils.h b/cocos2d/cocos/math/TransformUtils.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/Vec2.cpp b/cocos2d/cocos/math/Vec2.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/Vec2.h b/cocos2d/cocos/math/Vec2.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/Vec2.inl b/cocos2d/cocos/math/Vec2.inl old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/Vec3.cpp b/cocos2d/cocos/math/Vec3.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/Vec3.h b/cocos2d/cocos/math/Vec3.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/Vec3.inl b/cocos2d/cocos/math/Vec3.inl old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/Vec4.cpp b/cocos2d/cocos/math/Vec4.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/Vec4.h b/cocos2d/cocos/math/Vec4.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/math/Vec4.inl b/cocos2d/cocos/math/Vec4.inl old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/network/Android.mk b/cocos2d/cocos/network/Android.mk old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/network/CMakeLists.txt b/cocos2d/cocos/network/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/network/HttpClient.cpp b/cocos2d/cocos/network/HttpClient.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/network/HttpClient.h b/cocos2d/cocos/network/HttpClient.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/network/HttpRequest.h b/cocos2d/cocos/network/HttpRequest.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/network/HttpResponse.h b/cocos2d/cocos/network/HttpResponse.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/network/SocketIO.cpp b/cocos2d/cocos/network/SocketIO.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/network/SocketIO.h b/cocos2d/cocos/network/SocketIO.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/network/WebSocket.cpp b/cocos2d/cocos/network/WebSocket.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/network/WebSocket.h b/cocos2d/cocos/network/WebSocket.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/network/proj.win32/libNetwork.vcxproj b/cocos2d/cocos/network/proj.win32/libNetwork.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/network/proj.win32/libNetwork.vcxproj.filters b/cocos2d/cocos/network/proj.win32/libNetwork.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/network/proj.win32/libNetwork.vcxproj.user b/cocos2d/cocos/network/proj.win32/libNetwork.vcxproj.user old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/network/proj.wp8/libNetwork.vcxproj b/cocos2d/cocos/network/proj.wp8/libNetwork.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/network/proj.wp8/libNetwork.vcxproj.filters b/cocos2d/cocos/network/proj.wp8/libNetwork.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/CCPhysicsBody.cpp b/cocos2d/cocos/physics/CCPhysicsBody.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/CCPhysicsBody.h b/cocos2d/cocos/physics/CCPhysicsBody.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/CCPhysicsContact.cpp b/cocos2d/cocos/physics/CCPhysicsContact.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/CCPhysicsContact.h b/cocos2d/cocos/physics/CCPhysicsContact.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/CCPhysicsJoint.cpp b/cocos2d/cocos/physics/CCPhysicsJoint.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/CCPhysicsJoint.h b/cocos2d/cocos/physics/CCPhysicsJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/CCPhysicsShape.cpp b/cocos2d/cocos/physics/CCPhysicsShape.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/CCPhysicsShape.h b/cocos2d/cocos/physics/CCPhysicsShape.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/CCPhysicsWorld.cpp b/cocos2d/cocos/physics/CCPhysicsWorld.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/CCPhysicsWorld.h b/cocos2d/cocos/physics/CCPhysicsWorld.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/CMakeLists.txt b/cocos2d/cocos/physics/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/chipmunk/CCPhysicsBodyInfo_chipmunk.cpp b/cocos2d/cocos/physics/chipmunk/CCPhysicsBodyInfo_chipmunk.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/chipmunk/CCPhysicsBodyInfo_chipmunk.h b/cocos2d/cocos/physics/chipmunk/CCPhysicsBodyInfo_chipmunk.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/chipmunk/CCPhysicsContactInfo_chipmunk.cpp b/cocos2d/cocos/physics/chipmunk/CCPhysicsContactInfo_chipmunk.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/chipmunk/CCPhysicsContactInfo_chipmunk.h b/cocos2d/cocos/physics/chipmunk/CCPhysicsContactInfo_chipmunk.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/chipmunk/CCPhysicsHelper_chipmunk.h b/cocos2d/cocos/physics/chipmunk/CCPhysicsHelper_chipmunk.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/chipmunk/CCPhysicsJointInfo_chipmunk.cpp b/cocos2d/cocos/physics/chipmunk/CCPhysicsJointInfo_chipmunk.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/chipmunk/CCPhysicsJointInfo_chipmunk.h b/cocos2d/cocos/physics/chipmunk/CCPhysicsJointInfo_chipmunk.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/chipmunk/CCPhysicsShapeInfo_chipmunk.cpp b/cocos2d/cocos/physics/chipmunk/CCPhysicsShapeInfo_chipmunk.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/chipmunk/CCPhysicsShapeInfo_chipmunk.h b/cocos2d/cocos/physics/chipmunk/CCPhysicsShapeInfo_chipmunk.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/chipmunk/CCPhysicsWorldInfo_chipmunk.cpp b/cocos2d/cocos/physics/chipmunk/CCPhysicsWorldInfo_chipmunk.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/physics/chipmunk/CCPhysicsWorldInfo_chipmunk.h b/cocos2d/cocos/physics/chipmunk/CCPhysicsWorldInfo_chipmunk.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/CCApplicationProtocol.h b/cocos2d/cocos/platform/CCApplicationProtocol.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/CCCommon.h b/cocos2d/cocos/platform/CCCommon.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/CCDevice.h b/cocos2d/cocos/platform/CCDevice.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/CCFileUtils.cpp b/cocos2d/cocos/platform/CCFileUtils.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/CCFileUtils.h b/cocos2d/cocos/platform/CCFileUtils.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/CCGLViewProtocol.cpp b/cocos2d/cocos/platform/CCGLViewProtocol.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/CCGLViewProtocol.h b/cocos2d/cocos/platform/CCGLViewProtocol.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/CCImage.cpp b/cocos2d/cocos/platform/CCImage.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/CCImage.h b/cocos2d/cocos/platform/CCImage.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/CCSAXParser.cpp b/cocos2d/cocos/platform/CCSAXParser.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/CCSAXParser.h b/cocos2d/cocos/platform/CCSAXParser.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/CCThread.cpp b/cocos2d/cocos/platform/CCThread.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/CCThread.h b/cocos2d/cocos/platform/CCThread.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/CMakeLists.txt b/cocos2d/cocos/platform/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/Android.mk b/cocos2d/cocos/platform/android/Android.mk old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/CCApplication.cpp b/cocos2d/cocos/platform/android/CCApplication.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/CCApplication.h b/cocos2d/cocos/platform/android/CCApplication.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/CCCommon.cpp b/cocos2d/cocos/platform/android/CCCommon.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/CCDevice.cpp b/cocos2d/cocos/platform/android/CCDevice.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/CCFileUtilsAndroid.cpp b/cocos2d/cocos/platform/android/CCFileUtilsAndroid.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/CCFileUtilsAndroid.h b/cocos2d/cocos/platform/android/CCFileUtilsAndroid.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/CCGL.h b/cocos2d/cocos/platform/android/CCGL.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/CCGLView.cpp b/cocos2d/cocos/platform/android/CCGLView.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/CCGLView.h b/cocos2d/cocos/platform/android/CCGLView.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/CCPlatformDefine.h b/cocos2d/cocos/platform/android/CCPlatformDefine.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/CCStdC.h b/cocos2d/cocos/platform/android/CCStdC.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/.classpath b/cocos2d/cocos/platform/android/java/.classpath old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/.project b/cocos2d/cocos/platform/android/java/.project old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/.settings/org.eclipse.jdt.core.prefs b/cocos2d/cocos/platform/android/java/.settings/org.eclipse.jdt.core.prefs old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/AndroidManifest.xml b/cocos2d/cocos/platform/android/java/AndroidManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/ant.properties b/cocos2d/cocos/platform/android/java/ant.properties old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/build.xml b/cocos2d/cocos/platform/android/java/build.xml old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/proguard-project.txt b/cocos2d/cocos/platform/android/java/proguard-project.txt old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/project.properties b/cocos2d/cocos/platform/android/java/project.properties old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxAccelerometer.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxAccelerometer.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxActivity.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxActivity.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxBitmap.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxBitmap.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxETCLoader.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxETCLoader.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxEditBoxDialog.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxEditBoxDialog.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxEditText.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxEditText.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxGLSurfaceView.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxGLSurfaceView.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxHandler.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxHandler.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxHelper.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxHelper.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxLocalStorage.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxLocalStorage.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxLuaJavaBridge.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxLuaJavaBridge.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxMusic.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxMusic.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxRenderer.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxRenderer.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxSound.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxSound.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxTextInputWraper.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxTextInputWraper.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxTypefaces.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxTypefaces.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxVideoHelper.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxVideoHelper.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxVideoView.java b/cocos2d/cocos/platform/android/java/src/org/cocos2dx/lib/Cocos2dxVideoView.java old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/javaactivity.cpp b/cocos2d/cocos/platform/android/javaactivity.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/jni/DPIJni.cpp b/cocos2d/cocos/platform/android/jni/DPIJni.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/jni/DPIJni.h b/cocos2d/cocos/platform/android/jni/DPIJni.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/jni/IMEJni.cpp b/cocos2d/cocos/platform/android/jni/IMEJni.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/jni/IMEJni.h b/cocos2d/cocos/platform/android/jni/IMEJni.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/jni/Java_org_cocos2dx_lib_Cocos2dxAccelerometer.cpp b/cocos2d/cocos/platform/android/jni/Java_org_cocos2dx_lib_Cocos2dxAccelerometer.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/jni/Java_org_cocos2dx_lib_Cocos2dxBitmap.cpp b/cocos2d/cocos/platform/android/jni/Java_org_cocos2dx_lib_Cocos2dxBitmap.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/jni/Java_org_cocos2dx_lib_Cocos2dxBitmap.h b/cocos2d/cocos/platform/android/jni/Java_org_cocos2dx_lib_Cocos2dxBitmap.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/jni/Java_org_cocos2dx_lib_Cocos2dxHelper.cpp b/cocos2d/cocos/platform/android/jni/Java_org_cocos2dx_lib_Cocos2dxHelper.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/jni/Java_org_cocos2dx_lib_Cocos2dxHelper.h b/cocos2d/cocos/platform/android/jni/Java_org_cocos2dx_lib_Cocos2dxHelper.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/jni/Java_org_cocos2dx_lib_Cocos2dxRenderer.cpp b/cocos2d/cocos/platform/android/jni/Java_org_cocos2dx_lib_Cocos2dxRenderer.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/jni/JniHelper.cpp b/cocos2d/cocos/platform/android/jni/JniHelper.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/jni/JniHelper.h b/cocos2d/cocos/platform/android/jni/JniHelper.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/android/jni/TouchesJni.cpp b/cocos2d/cocos/platform/android/jni/TouchesJni.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/apple/CCFileUtilsApple.h b/cocos2d/cocos/platform/apple/CCFileUtilsApple.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/apple/CCFileUtilsApple.mm b/cocos2d/cocos/platform/apple/CCFileUtilsApple.mm old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/apple/CCLock.cpp b/cocos2d/cocos/platform/apple/CCLock.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/apple/CCLock.h b/cocos2d/cocos/platform/apple/CCLock.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/apple/CCThread.mm b/cocos2d/cocos/platform/apple/CCThread.mm old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/desktop/CCGLView.cpp b/cocos2d/cocos/platform/desktop/CCGLView.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/desktop/CCGLView.h b/cocos2d/cocos/platform/desktop/CCGLView.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/CCApplication.h b/cocos2d/cocos/platform/ios/CCApplication.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/CCApplication.mm b/cocos2d/cocos/platform/ios/CCApplication.mm old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/CCCommon.mm b/cocos2d/cocos/platform/ios/CCCommon.mm old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/CCDevice.mm b/cocos2d/cocos/platform/ios/CCDevice.mm old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/CCDirectorCaller.h b/cocos2d/cocos/platform/ios/CCDirectorCaller.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/CCDirectorCaller.mm b/cocos2d/cocos/platform/ios/CCDirectorCaller.mm old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/CCEAGLView.h b/cocos2d/cocos/platform/ios/CCEAGLView.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/CCEAGLView.mm b/cocos2d/cocos/platform/ios/CCEAGLView.mm old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/CCES2Renderer.h b/cocos2d/cocos/platform/ios/CCES2Renderer.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/CCES2Renderer.m b/cocos2d/cocos/platform/ios/CCES2Renderer.m old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/CCESRenderer.h b/cocos2d/cocos/platform/ios/CCESRenderer.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/CCGL.h b/cocos2d/cocos/platform/ios/CCGL.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/CCGLView.h b/cocos2d/cocos/platform/ios/CCGLView.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/CCGLView.mm b/cocos2d/cocos/platform/ios/CCGLView.mm old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/CCImage.mm b/cocos2d/cocos/platform/ios/CCImage.mm old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/CCPlatformDefine.h b/cocos2d/cocos/platform/ios/CCPlatformDefine.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/CCStdC.h b/cocos2d/cocos/platform/ios/CCStdC.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/ios/OpenGL_Internal.h b/cocos2d/cocos/platform/ios/OpenGL_Internal.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/linux/CCApplication.cpp b/cocos2d/cocos/platform/linux/CCApplication.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/linux/CCApplication.h b/cocos2d/cocos/platform/linux/CCApplication.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/linux/CCCommon.cpp b/cocos2d/cocos/platform/linux/CCCommon.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/linux/CCDevice.cpp b/cocos2d/cocos/platform/linux/CCDevice.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/linux/CCFileUtilsLinux.cpp b/cocos2d/cocos/platform/linux/CCFileUtilsLinux.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/linux/CCFileUtilsLinux.h b/cocos2d/cocos/platform/linux/CCFileUtilsLinux.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/linux/CCGL.h b/cocos2d/cocos/platform/linux/CCGL.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/linux/CCPlatformDefine.h b/cocos2d/cocos/platform/linux/CCPlatformDefine.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/linux/CCStdC.cpp b/cocos2d/cocos/platform/linux/CCStdC.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/linux/CCStdC.h b/cocos2d/cocos/platform/linux/CCStdC.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/mac/CCApplication.h b/cocos2d/cocos/platform/mac/CCApplication.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/mac/CCApplication.mm b/cocos2d/cocos/platform/mac/CCApplication.mm old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/mac/CCCommon.mm b/cocos2d/cocos/platform/mac/CCCommon.mm old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/mac/CCDevice.mm b/cocos2d/cocos/platform/mac/CCDevice.mm old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/mac/CCGL.h b/cocos2d/cocos/platform/mac/CCGL.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/mac/CCPlatformDefine.h b/cocos2d/cocos/platform/mac/CCPlatformDefine.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/mac/CCStdC.h b/cocos2d/cocos/platform/mac/CCStdC.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/win32/CCApplication.cpp b/cocos2d/cocos/platform/win32/CCApplication.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/win32/CCApplication.h b/cocos2d/cocos/platform/win32/CCApplication.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/win32/CCCommon.cpp b/cocos2d/cocos/platform/win32/CCCommon.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/win32/CCDevice.cpp b/cocos2d/cocos/platform/win32/CCDevice.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/win32/CCFileUtilsWin32.cpp b/cocos2d/cocos/platform/win32/CCFileUtilsWin32.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/win32/CCFileUtilsWin32.h b/cocos2d/cocos/platform/win32/CCFileUtilsWin32.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/win32/CCGL.h b/cocos2d/cocos/platform/win32/CCGL.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/win32/CCPlatformDefine.h b/cocos2d/cocos/platform/win32/CCPlatformDefine.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/win32/CCStdC.cpp b/cocos2d/cocos/platform/win32/CCStdC.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/win32/CCStdC.h b/cocos2d/cocos/platform/win32/CCStdC.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/win32/compat/stdint.h b/cocos2d/cocos/platform/win32/compat/stdint.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCApplication.cpp b/cocos2d/cocos/platform/winrt/CCApplication.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCApplication.h b/cocos2d/cocos/platform/winrt/CCApplication.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCCommon.cpp b/cocos2d/cocos/platform/winrt/CCCommon.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCDevice.cpp b/cocos2d/cocos/platform/winrt/CCDevice.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCFileUtilsWinRT.cpp b/cocos2d/cocos/platform/winrt/CCFileUtilsWinRT.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCFileUtilsWinRT.h b/cocos2d/cocos/platform/winrt/CCFileUtilsWinRT.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCFreeTypeFont.cpp b/cocos2d/cocos/platform/winrt/CCFreeTypeFont.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCFreeTypeFont.h b/cocos2d/cocos/platform/winrt/CCFreeTypeFont.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCGL.h b/cocos2d/cocos/platform/winrt/CCGL.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCGLView.cpp b/cocos2d/cocos/platform/winrt/CCGLView.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCGLView.h b/cocos2d/cocos/platform/winrt/CCGLView.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCGL_Angle.h b/cocos2d/cocos/platform/winrt/CCGL_Angle.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCPThreadWinRT.cpp b/cocos2d/cocos/platform/winrt/CCPThreadWinRT.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCPThreadWinRT.h b/cocos2d/cocos/platform/winrt/CCPThreadWinRT.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCPlatformDefine.h b/cocos2d/cocos/platform/winrt/CCPlatformDefine.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCPrecompiledShaders.cpp b/cocos2d/cocos/platform/winrt/CCPrecompiledShaders.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCPrecompiledShaders.h b/cocos2d/cocos/platform/winrt/CCPrecompiledShaders.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCStdC.cpp b/cocos2d/cocos/platform/winrt/CCStdC.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCStdC.h b/cocos2d/cocos/platform/winrt/CCStdC.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCWinRTUtils.cpp b/cocos2d/cocos/platform/winrt/CCWinRTUtils.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/CCWinRTUtils.h b/cocos2d/cocos/platform/winrt/CCWinRTUtils.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/DirectXBase.cpp b/cocos2d/cocos/platform/winrt/DirectXBase.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/DirectXBase.h b/cocos2d/cocos/platform/winrt/DirectXBase.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/DirectXHelper.h b/cocos2d/cocos/platform/winrt/DirectXHelper.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/InputEvent.cpp b/cocos2d/cocos/platform/winrt/InputEvent.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/InputEvent.h b/cocos2d/cocos/platform/winrt/InputEvent.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/InputEventTypes.h b/cocos2d/cocos/platform/winrt/InputEventTypes.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/inet_ntop_winrt.cpp b/cocos2d/cocos/platform/winrt/inet_ntop_winrt.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/inet_ntop_winrt.h b/cocos2d/cocos/platform/winrt/inet_ntop_winrt.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/pch.cpp b/cocos2d/cocos/platform/winrt/pch.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/pch.h b/cocos2d/cocos/platform/winrt/pch.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/sha1.cpp b/cocos2d/cocos/platform/winrt/sha1.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/sha1.h b/cocos2d/cocos/platform/winrt/sha1.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/winrt/shaders/precompiledshaders.h b/cocos2d/cocos/platform/winrt/shaders/precompiledshaders.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/CopyTemplateFiles.vcxproj b/cocos2d/cocos/platform/wp8-xaml/CopyTemplateFiles.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/CopyTemplateFiles.vcxproj.filters b/cocos2d/cocos/platform/wp8-xaml/CopyTemplateFiles.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/CopyTemplateFiles.vcxproj.user b/cocos2d/cocos/platform/wp8-xaml/CopyTemplateFiles.vcxproj.user old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/cpp/Cocos2dRenderer.cpp b/cocos2d/cocos/platform/wp8-xaml/cpp/Cocos2dRenderer.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/cpp/Cocos2dRenderer.h b/cocos2d/cocos/platform/wp8-xaml/cpp/Cocos2dRenderer.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/cpp/Direct3DContentProvider.cpp b/cocos2d/cocos/platform/wp8-xaml/cpp/Direct3DContentProvider.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/cpp/Direct3DContentProvider.h b/cocos2d/cocos/platform/wp8-xaml/cpp/Direct3DContentProvider.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/cpp/Direct3DInterop.cpp b/cocos2d/cocos/platform/wp8-xaml/cpp/Direct3DInterop.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/cpp/Direct3DInterop.h b/cocos2d/cocos/platform/wp8-xaml/cpp/Direct3DInterop.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/cpp/DirectXBase.cpp b/cocos2d/cocos/platform/wp8-xaml/cpp/DirectXBase.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/cpp/DirectXBase.h b/cocos2d/cocos/platform/wp8-xaml/cpp/DirectXBase.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/cpp/DirectXHelper.h b/cocos2d/cocos/platform/wp8-xaml/cpp/DirectXHelper.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/cpp/EditBoxEvent.cpp b/cocos2d/cocos/platform/wp8-xaml/cpp/EditBoxEvent.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/cpp/EditBoxEvent.h b/cocos2d/cocos/platform/wp8-xaml/cpp/EditBoxEvent.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/xaml/App.xaml b/cocos2d/cocos/platform/wp8-xaml/xaml/App.xaml old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/xaml/App.xaml.cs b/cocos2d/cocos/platform/wp8-xaml/xaml/App.xaml.cs old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/xaml/EditBox.xaml b/cocos2d/cocos/platform/wp8-xaml/xaml/EditBox.xaml old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/xaml/EditBox.xaml.cs b/cocos2d/cocos/platform/wp8-xaml/xaml/EditBox.xaml.cs old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/xaml/MainPage.xaml b/cocos2d/cocos/platform/wp8-xaml/xaml/MainPage.xaml old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8-xaml/xaml/MainPage.xaml.cs b/cocos2d/cocos/platform/wp8-xaml/xaml/MainPage.xaml.cs old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8/CCGLView.cpp b/cocos2d/cocos/platform/wp8/CCGLView.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8/CCGLView.h b/cocos2d/cocos/platform/wp8/CCGLView.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8/Direct3DBase.cpp b/cocos2d/cocos/platform/wp8/Direct3DBase.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8/Direct3DBase.h b/cocos2d/cocos/platform/wp8/Direct3DBase.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8/DirectXBase.cpp b/cocos2d/cocos/platform/wp8/DirectXBase.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8/DirectXBase.h b/cocos2d/cocos/platform/wp8/DirectXBase.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8/pch.cpp b/cocos2d/cocos/platform/wp8/pch.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8/pch.h b/cocos2d/cocos/platform/wp8/pch.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/platform/wp8/shaders/precompiledshaders.h b/cocos2d/cocos/platform/wp8/shaders/precompiledshaders.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCBatchCommand.cpp b/cocos2d/cocos/renderer/CCBatchCommand.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCBatchCommand.h b/cocos2d/cocos/renderer/CCBatchCommand.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCCustomCommand.cpp b/cocos2d/cocos/renderer/CCCustomCommand.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCCustomCommand.h b/cocos2d/cocos/renderer/CCCustomCommand.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCGLProgram.cpp b/cocos2d/cocos/renderer/CCGLProgram.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCGLProgram.h b/cocos2d/cocos/renderer/CCGLProgram.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCGLProgramCache.cpp b/cocos2d/cocos/renderer/CCGLProgramCache.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCGLProgramCache.h b/cocos2d/cocos/renderer/CCGLProgramCache.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCGLProgramState.cpp b/cocos2d/cocos/renderer/CCGLProgramState.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCGLProgramState.h b/cocos2d/cocos/renderer/CCGLProgramState.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCGLProgramStateCache.cpp b/cocos2d/cocos/renderer/CCGLProgramStateCache.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCGLProgramStateCache.h b/cocos2d/cocos/renderer/CCGLProgramStateCache.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCGroupCommand.cpp b/cocos2d/cocos/renderer/CCGroupCommand.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCGroupCommand.h b/cocos2d/cocos/renderer/CCGroupCommand.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCMeshCommand.cpp b/cocos2d/cocos/renderer/CCMeshCommand.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCMeshCommand.h b/cocos2d/cocos/renderer/CCMeshCommand.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCQuadCommand.cpp b/cocos2d/cocos/renderer/CCQuadCommand.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCQuadCommand.h b/cocos2d/cocos/renderer/CCQuadCommand.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCRenderCommand.cpp b/cocos2d/cocos/renderer/CCRenderCommand.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCRenderCommand.h b/cocos2d/cocos/renderer/CCRenderCommand.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCRenderCommandPool.h b/cocos2d/cocos/renderer/CCRenderCommandPool.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCRenderer.cpp b/cocos2d/cocos/renderer/CCRenderer.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCRenderer.h b/cocos2d/cocos/renderer/CCRenderer.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCTexture2D.cpp b/cocos2d/cocos/renderer/CCTexture2D.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCTexture2D.h b/cocos2d/cocos/renderer/CCTexture2D.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCTextureAtlas.cpp b/cocos2d/cocos/renderer/CCTextureAtlas.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCTextureAtlas.h b/cocos2d/cocos/renderer/CCTextureAtlas.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCTextureCache.cpp b/cocos2d/cocos/renderer/CCTextureCache.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CCTextureCache.h b/cocos2d/cocos/renderer/CCTextureCache.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/CMakeLists.txt b/cocos2d/cocos/renderer/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccGLStateCache.cpp b/cocos2d/cocos/renderer/ccGLStateCache.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccGLStateCache.h b/cocos2d/cocos/renderer/ccGLStateCache.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_3D_Color.frag b/cocos2d/cocos/renderer/ccShader_3D_Color.frag old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_3D_ColorTex.frag b/cocos2d/cocos/renderer/ccShader_3D_ColorTex.frag old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_3D_PositionTex.vert b/cocos2d/cocos/renderer/ccShader_3D_PositionTex.vert old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_Label.vert b/cocos2d/cocos/renderer/ccShader_Label.vert old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_Label_df.frag b/cocos2d/cocos/renderer/ccShader_Label_df.frag old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_Label_df_glow.frag b/cocos2d/cocos/renderer/ccShader_Label_df_glow.frag old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_Label_normal.frag b/cocos2d/cocos/renderer/ccShader_Label_normal.frag old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_Label_outline.frag b/cocos2d/cocos/renderer/ccShader_Label_outline.frag old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_PositionColor.frag b/cocos2d/cocos/renderer/ccShader_PositionColor.frag old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_PositionColor.vert b/cocos2d/cocos/renderer/ccShader_PositionColor.vert old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_PositionColorLengthTexture.frag b/cocos2d/cocos/renderer/ccShader_PositionColorLengthTexture.frag old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_PositionColorLengthTexture.vert b/cocos2d/cocos/renderer/ccShader_PositionColorLengthTexture.vert old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_PositionTexture.frag b/cocos2d/cocos/renderer/ccShader_PositionTexture.frag old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_PositionTexture.vert b/cocos2d/cocos/renderer/ccShader_PositionTexture.vert old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_PositionTextureA8Color.frag b/cocos2d/cocos/renderer/ccShader_PositionTextureA8Color.frag old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_PositionTextureA8Color.vert b/cocos2d/cocos/renderer/ccShader_PositionTextureA8Color.vert old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_PositionTextureColor.frag b/cocos2d/cocos/renderer/ccShader_PositionTextureColor.frag old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_PositionTextureColor.vert b/cocos2d/cocos/renderer/ccShader_PositionTextureColor.vert old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_PositionTextureColorAlphaTest.frag b/cocos2d/cocos/renderer/ccShader_PositionTextureColorAlphaTest.frag old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_PositionTextureColor_noMVP.frag b/cocos2d/cocos/renderer/ccShader_PositionTextureColor_noMVP.frag old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_PositionTextureColor_noMVP.vert b/cocos2d/cocos/renderer/ccShader_PositionTextureColor_noMVP.vert old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_PositionTexture_uColor.frag b/cocos2d/cocos/renderer/ccShader_PositionTexture_uColor.frag old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_PositionTexture_uColor.vert b/cocos2d/cocos/renderer/ccShader_PositionTexture_uColor.vert old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_Position_uColor.frag b/cocos2d/cocos/renderer/ccShader_Position_uColor.frag old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShader_Position_uColor.vert b/cocos2d/cocos/renderer/ccShader_Position_uColor.vert old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShaders.cpp b/cocos2d/cocos/renderer/ccShaders.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/renderer/ccShaders.h b/cocos2d/cocos/renderer/ccShaders.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/storage/CMakeLists.txt b/cocos2d/cocos/storage/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/storage/local-storage/Android.mk b/cocos2d/cocos/storage/local-storage/Android.mk old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/storage/local-storage/LocalStorage.cpp b/cocos2d/cocos/storage/local-storage/LocalStorage.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/storage/local-storage/LocalStorage.h b/cocos2d/cocos/storage/local-storage/LocalStorage.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/storage/local-storage/LocalStorageAndroid.cpp b/cocos2d/cocos/storage/local-storage/LocalStorageAndroid.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/storage/local-storage/proj.win32/libLocalStorage.vcxproj b/cocos2d/cocos/storage/local-storage/proj.win32/libLocalStorage.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/storage/local-storage/proj.win32/libLocalStorage.vcxproj.filters b/cocos2d/cocos/storage/local-storage/proj.win32/libLocalStorage.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/storage/local-storage/proj.win32/libLocalStorage.vcxproj.user b/cocos2d/cocos/storage/local-storage/proj.win32/libLocalStorage.vcxproj.user old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/storage/local-storage/proj.wp8/libLocalStorage.vcxproj b/cocos2d/cocos/storage/local-storage/proj.wp8/libLocalStorage.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/storage/local-storage/proj.wp8/libLocalStorage.vcxproj.filters b/cocos2d/cocos/storage/local-storage/proj.wp8/libLocalStorage.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/Android.mk b/cocos2d/cocos/ui/Android.mk old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/CCProtectedNode.cpp b/cocos2d/cocos/ui/CCProtectedNode.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/CCProtectedNode.h b/cocos2d/cocos/ui/CCProtectedNode.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/CMakeLists.txt b/cocos2d/cocos/ui/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/CocosGUI.cpp b/cocos2d/cocos/ui/CocosGUI.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/CocosGUI.h b/cocos2d/cocos/ui/CocosGUI.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/GUIDefine.h b/cocos2d/cocos/ui/GUIDefine.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIButton.cpp b/cocos2d/cocos/ui/UIButton.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIButton.h b/cocos2d/cocos/ui/UIButton.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UICheckBox.cpp b/cocos2d/cocos/ui/UICheckBox.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UICheckBox.h b/cocos2d/cocos/ui/UICheckBox.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIDeprecated.h b/cocos2d/cocos/ui/UIDeprecated.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIHBox.cpp b/cocos2d/cocos/ui/UIHBox.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIHBox.h b/cocos2d/cocos/ui/UIHBox.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIHelper.cpp b/cocos2d/cocos/ui/UIHelper.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIHelper.h b/cocos2d/cocos/ui/UIHelper.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIImageView.cpp b/cocos2d/cocos/ui/UIImageView.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIImageView.h b/cocos2d/cocos/ui/UIImageView.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UILayout.cpp b/cocos2d/cocos/ui/UILayout.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UILayout.h b/cocos2d/cocos/ui/UILayout.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UILayoutParameter.cpp b/cocos2d/cocos/ui/UILayoutParameter.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UILayoutParameter.h b/cocos2d/cocos/ui/UILayoutParameter.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIListView.cpp b/cocos2d/cocos/ui/UIListView.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIListView.h b/cocos2d/cocos/ui/UIListView.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UILoadingBar.cpp b/cocos2d/cocos/ui/UILoadingBar.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UILoadingBar.h b/cocos2d/cocos/ui/UILoadingBar.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIPageView.cpp b/cocos2d/cocos/ui/UIPageView.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIPageView.h b/cocos2d/cocos/ui/UIPageView.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIRelativeBox.cpp b/cocos2d/cocos/ui/UIRelativeBox.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIRelativeBox.h b/cocos2d/cocos/ui/UIRelativeBox.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIRichText.cpp b/cocos2d/cocos/ui/UIRichText.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIRichText.h b/cocos2d/cocos/ui/UIRichText.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIScrollInterface.h b/cocos2d/cocos/ui/UIScrollInterface.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIScrollView.cpp b/cocos2d/cocos/ui/UIScrollView.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIScrollView.h b/cocos2d/cocos/ui/UIScrollView.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UISlider.cpp b/cocos2d/cocos/ui/UISlider.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UISlider.h b/cocos2d/cocos/ui/UISlider.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIText.cpp b/cocos2d/cocos/ui/UIText.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIText.h b/cocos2d/cocos/ui/UIText.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UITextAtlas.cpp b/cocos2d/cocos/ui/UITextAtlas.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UITextAtlas.h b/cocos2d/cocos/ui/UITextAtlas.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UITextBMFont.cpp b/cocos2d/cocos/ui/UITextBMFont.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UITextBMFont.h b/cocos2d/cocos/ui/UITextBMFont.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UITextField.cpp b/cocos2d/cocos/ui/UITextField.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UITextField.h b/cocos2d/cocos/ui/UITextField.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIVBox.cpp b/cocos2d/cocos/ui/UIVBox.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIVBox.h b/cocos2d/cocos/ui/UIVBox.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIVideoPlayer.h b/cocos2d/cocos/ui/UIVideoPlayer.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIVideoPlayerAndroid.cpp b/cocos2d/cocos/ui/UIVideoPlayerAndroid.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIVideoPlayerIOS.mm b/cocos2d/cocos/ui/UIVideoPlayerIOS.mm old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIWidget.cpp b/cocos2d/cocos/ui/UIWidget.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/UIWidget.h b/cocos2d/cocos/ui/UIWidget.h old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/proj.win32/libGUI.vcxproj b/cocos2d/cocos/ui/proj.win32/libGUI.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/proj.win32/libGUI.vcxproj.filters b/cocos2d/cocos/ui/proj.win32/libGUI.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/proj.win32/libGUI.vcxproj.user b/cocos2d/cocos/ui/proj.win32/libGUI.vcxproj.user old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/proj.wp8/libGUI.vcxproj b/cocos2d/cocos/ui/proj.wp8/libGUI.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/cocos/ui/proj.wp8/libGUI.vcxproj.filters b/cocos2d/cocos/ui/proj.wp8/libGUI.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/docs/CODING_STYLE.md b/cocos2d/docs/CODING_STYLE.md old mode 100644 new mode 100755 diff --git a/cocos2d/docs/Groups.h b/cocos2d/docs/Groups.h old mode 100644 new mode 100755 diff --git a/cocos2d/docs/MainPage.h b/cocos2d/docs/MainPage.h old mode 100644 new mode 100755 diff --git a/cocos2d/docs/RELEASE_NOTES.md b/cocos2d/docs/RELEASE_NOTES.md old mode 100644 new mode 100755 diff --git a/cocos2d/docs/cocos2dx_portrait.png b/cocos2d/docs/cocos2dx_portrait.png old mode 100644 new mode 100755 diff --git a/cocos2d/docs/doxygen.config b/cocos2d/docs/doxygen.config old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/Android.mk b/cocos2d/extensions/Android.mk old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/CMakeLists.txt b/cocos2d/extensions/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/ExtensionMacros.h b/cocos2d/extensions/ExtensionMacros.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControl.cpp b/cocos2d/extensions/GUI/CCControlExtension/CCControl.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControl.h b/cocos2d/extensions/GUI/CCControlExtension/CCControl.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlButton.cpp b/cocos2d/extensions/GUI/CCControlExtension/CCControlButton.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlButton.h b/cocos2d/extensions/GUI/CCControlExtension/CCControlButton.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlColourPicker.cpp b/cocos2d/extensions/GUI/CCControlExtension/CCControlColourPicker.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlColourPicker.h b/cocos2d/extensions/GUI/CCControlExtension/CCControlColourPicker.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlExtensions.h b/cocos2d/extensions/GUI/CCControlExtension/CCControlExtensions.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlHuePicker.cpp b/cocos2d/extensions/GUI/CCControlExtension/CCControlHuePicker.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlHuePicker.h b/cocos2d/extensions/GUI/CCControlExtension/CCControlHuePicker.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlPotentiometer.cpp b/cocos2d/extensions/GUI/CCControlExtension/CCControlPotentiometer.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlPotentiometer.h b/cocos2d/extensions/GUI/CCControlExtension/CCControlPotentiometer.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlSaturationBrightnessPicker.cpp b/cocos2d/extensions/GUI/CCControlExtension/CCControlSaturationBrightnessPicker.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlSaturationBrightnessPicker.h b/cocos2d/extensions/GUI/CCControlExtension/CCControlSaturationBrightnessPicker.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlSlider.cpp b/cocos2d/extensions/GUI/CCControlExtension/CCControlSlider.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlSlider.h b/cocos2d/extensions/GUI/CCControlExtension/CCControlSlider.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlStepper.cpp b/cocos2d/extensions/GUI/CCControlExtension/CCControlStepper.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlStepper.h b/cocos2d/extensions/GUI/CCControlExtension/CCControlStepper.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlSwitch.cpp b/cocos2d/extensions/GUI/CCControlExtension/CCControlSwitch.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlSwitch.h b/cocos2d/extensions/GUI/CCControlExtension/CCControlSwitch.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlUtils.cpp b/cocos2d/extensions/GUI/CCControlExtension/CCControlUtils.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCControlUtils.h b/cocos2d/extensions/GUI/CCControlExtension/CCControlUtils.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCInvocation.cpp b/cocos2d/extensions/GUI/CCControlExtension/CCInvocation.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCInvocation.h b/cocos2d/extensions/GUI/CCControlExtension/CCInvocation.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCScale9Sprite.cpp b/cocos2d/extensions/GUI/CCControlExtension/CCScale9Sprite.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCControlExtension/CCScale9Sprite.h b/cocos2d/extensions/GUI/CCControlExtension/CCScale9Sprite.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCEditBox/CCEditBox.cpp b/cocos2d/extensions/GUI/CCEditBox/CCEditBox.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCEditBox/CCEditBox.h b/cocos2d/extensions/GUI/CCEditBox/CCEditBox.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImpl.h b/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImpl.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplAndroid.cpp b/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplAndroid.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplAndroid.h b/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplAndroid.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplIOS.h b/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplIOS.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplIOS.mm b/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplIOS.mm old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplMac.h b/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplMac.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplMac.mm b/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplMac.mm old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplNone.cpp b/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplNone.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplWin.cpp b/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplWin.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplWin.h b/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplWin.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplWp8.cpp b/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplWp8.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplWp8.h b/cocos2d/extensions/GUI/CCEditBox/CCEditBoxImplWp8.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCScrollView/CCScrollView.cpp b/cocos2d/extensions/GUI/CCScrollView/CCScrollView.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCScrollView/CCScrollView.h b/cocos2d/extensions/GUI/CCScrollView/CCScrollView.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCScrollView/CCTableView.cpp b/cocos2d/extensions/GUI/CCScrollView/CCTableView.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCScrollView/CCTableView.h b/cocos2d/extensions/GUI/CCScrollView/CCTableView.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCScrollView/CCTableViewCell.cpp b/cocos2d/extensions/GUI/CCScrollView/CCTableViewCell.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/GUI/CCScrollView/CCTableViewCell.h b/cocos2d/extensions/GUI/CCScrollView/CCTableViewCell.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/assets-manager/AssetsManager.cpp b/cocos2d/extensions/assets-manager/AssetsManager.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/assets-manager/AssetsManager.h b/cocos2d/extensions/assets-manager/AssetsManager.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/cocos-ext.h b/cocos2d/extensions/cocos-ext.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/physics-nodes/CCPhysicsDebugNode.cpp b/cocos2d/extensions/physics-nodes/CCPhysicsDebugNode.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/physics-nodes/CCPhysicsDebugNode.h b/cocos2d/extensions/physics-nodes/CCPhysicsDebugNode.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/physics-nodes/CCPhysicsSprite.cpp b/cocos2d/extensions/physics-nodes/CCPhysicsSprite.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/physics-nodes/CCPhysicsSprite.h b/cocos2d/extensions/physics-nodes/CCPhysicsSprite.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/proj.win32/Win32InputBox.cpp b/cocos2d/extensions/proj.win32/Win32InputBox.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/proj.win32/Win32InputBox.h b/cocos2d/extensions/proj.win32/Win32InputBox.h old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/proj.win32/libExtensions.vcxproj b/cocos2d/extensions/proj.win32/libExtensions.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/proj.win32/libExtensions.vcxproj.filters b/cocos2d/extensions/proj.win32/libExtensions.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/proj.win32/libExtensions.vcxproj.user b/cocos2d/extensions/proj.win32/libExtensions.vcxproj.user old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/proj.wp8/libExtensions.vcxproj b/cocos2d/extensions/proj.wp8/libExtensions.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/proj.wp8/libExtensions.vcxproj.filters b/cocos2d/extensions/proj.wp8/libExtensions.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/proj.wp8/pch.cpp b/cocos2d/extensions/proj.wp8/pch.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/extensions/proj.wp8/pch.h b/cocos2d/extensions/proj.wp8/pch.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Android.mk b/cocos2d/external/Box2D/Android.mk old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Box2D.h b/cocos2d/external/Box2D/Box2D.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/CMakeLists.txt b/cocos2d/external/Box2D/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/Shapes/b2ChainShape.cpp b/cocos2d/external/Box2D/Collision/Shapes/b2ChainShape.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/Shapes/b2ChainShape.h b/cocos2d/external/Box2D/Collision/Shapes/b2ChainShape.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/Shapes/b2CircleShape.cpp b/cocos2d/external/Box2D/Collision/Shapes/b2CircleShape.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/Shapes/b2CircleShape.h b/cocos2d/external/Box2D/Collision/Shapes/b2CircleShape.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/Shapes/b2EdgeShape.cpp b/cocos2d/external/Box2D/Collision/Shapes/b2EdgeShape.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/Shapes/b2EdgeShape.h b/cocos2d/external/Box2D/Collision/Shapes/b2EdgeShape.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/Shapes/b2PolygonShape.cpp b/cocos2d/external/Box2D/Collision/Shapes/b2PolygonShape.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/Shapes/b2PolygonShape.h b/cocos2d/external/Box2D/Collision/Shapes/b2PolygonShape.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/Shapes/b2Shape.h b/cocos2d/external/Box2D/Collision/Shapes/b2Shape.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/b2BroadPhase.cpp b/cocos2d/external/Box2D/Collision/b2BroadPhase.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/b2BroadPhase.h b/cocos2d/external/Box2D/Collision/b2BroadPhase.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/b2CollideCircle.cpp b/cocos2d/external/Box2D/Collision/b2CollideCircle.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/b2CollideEdge.cpp b/cocos2d/external/Box2D/Collision/b2CollideEdge.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/b2CollidePolygon.cpp b/cocos2d/external/Box2D/Collision/b2CollidePolygon.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/b2Collision.cpp b/cocos2d/external/Box2D/Collision/b2Collision.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/b2Collision.h b/cocos2d/external/Box2D/Collision/b2Collision.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/b2Distance.cpp b/cocos2d/external/Box2D/Collision/b2Distance.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/b2Distance.h b/cocos2d/external/Box2D/Collision/b2Distance.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/b2DynamicTree.cpp b/cocos2d/external/Box2D/Collision/b2DynamicTree.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/b2DynamicTree.h b/cocos2d/external/Box2D/Collision/b2DynamicTree.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/b2TimeOfImpact.cpp b/cocos2d/external/Box2D/Collision/b2TimeOfImpact.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Collision/b2TimeOfImpact.h b/cocos2d/external/Box2D/Collision/b2TimeOfImpact.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Common/b2BlockAllocator.cpp b/cocos2d/external/Box2D/Common/b2BlockAllocator.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Common/b2BlockAllocator.h b/cocos2d/external/Box2D/Common/b2BlockAllocator.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Common/b2Draw.cpp b/cocos2d/external/Box2D/Common/b2Draw.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Common/b2Draw.h b/cocos2d/external/Box2D/Common/b2Draw.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Common/b2GrowableStack.h b/cocos2d/external/Box2D/Common/b2GrowableStack.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Common/b2Math.cpp b/cocos2d/external/Box2D/Common/b2Math.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Common/b2Math.h b/cocos2d/external/Box2D/Common/b2Math.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Common/b2Settings.cpp b/cocos2d/external/Box2D/Common/b2Settings.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Common/b2Settings.h b/cocos2d/external/Box2D/Common/b2Settings.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Common/b2StackAllocator.cpp b/cocos2d/external/Box2D/Common/b2StackAllocator.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Common/b2StackAllocator.h b/cocos2d/external/Box2D/Common/b2StackAllocator.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Common/b2Timer.cpp b/cocos2d/external/Box2D/Common/b2Timer.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Common/b2Timer.h b/cocos2d/external/Box2D/Common/b2Timer.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.cpp b/cocos2d/external/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.h b/cocos2d/external/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.cpp b/cocos2d/external/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.h b/cocos2d/external/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2CircleContact.cpp b/cocos2d/external/Box2D/Dynamics/Contacts/b2CircleContact.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2CircleContact.h b/cocos2d/external/Box2D/Dynamics/Contacts/b2CircleContact.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2Contact.cpp b/cocos2d/external/Box2D/Dynamics/Contacts/b2Contact.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2Contact.h b/cocos2d/external/Box2D/Dynamics/Contacts/b2Contact.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2ContactSolver.cpp b/cocos2d/external/Box2D/Dynamics/Contacts/b2ContactSolver.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2ContactSolver.h b/cocos2d/external/Box2D/Dynamics/Contacts/b2ContactSolver.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.cpp b/cocos2d/external/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.h b/cocos2d/external/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.cpp b/cocos2d/external/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.h b/cocos2d/external/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.cpp b/cocos2d/external/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.h b/cocos2d/external/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2PolygonContact.cpp b/cocos2d/external/Box2D/Dynamics/Contacts/b2PolygonContact.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Contacts/b2PolygonContact.h b/cocos2d/external/Box2D/Dynamics/Contacts/b2PolygonContact.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2DistanceJoint.cpp b/cocos2d/external/Box2D/Dynamics/Joints/b2DistanceJoint.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2DistanceJoint.h b/cocos2d/external/Box2D/Dynamics/Joints/b2DistanceJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2FrictionJoint.cpp b/cocos2d/external/Box2D/Dynamics/Joints/b2FrictionJoint.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2FrictionJoint.h b/cocos2d/external/Box2D/Dynamics/Joints/b2FrictionJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2GearJoint.cpp b/cocos2d/external/Box2D/Dynamics/Joints/b2GearJoint.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2GearJoint.h b/cocos2d/external/Box2D/Dynamics/Joints/b2GearJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2Joint.cpp b/cocos2d/external/Box2D/Dynamics/Joints/b2Joint.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2Joint.h b/cocos2d/external/Box2D/Dynamics/Joints/b2Joint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2MotorJoint.cpp b/cocos2d/external/Box2D/Dynamics/Joints/b2MotorJoint.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2MotorJoint.h b/cocos2d/external/Box2D/Dynamics/Joints/b2MotorJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2MouseJoint.cpp b/cocos2d/external/Box2D/Dynamics/Joints/b2MouseJoint.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2MouseJoint.h b/cocos2d/external/Box2D/Dynamics/Joints/b2MouseJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2PrismaticJoint.cpp b/cocos2d/external/Box2D/Dynamics/Joints/b2PrismaticJoint.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2PrismaticJoint.h b/cocos2d/external/Box2D/Dynamics/Joints/b2PrismaticJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2PulleyJoint.cpp b/cocos2d/external/Box2D/Dynamics/Joints/b2PulleyJoint.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2PulleyJoint.h b/cocos2d/external/Box2D/Dynamics/Joints/b2PulleyJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2RevoluteJoint.cpp b/cocos2d/external/Box2D/Dynamics/Joints/b2RevoluteJoint.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2RevoluteJoint.h b/cocos2d/external/Box2D/Dynamics/Joints/b2RevoluteJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2RopeJoint.cpp b/cocos2d/external/Box2D/Dynamics/Joints/b2RopeJoint.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2RopeJoint.h b/cocos2d/external/Box2D/Dynamics/Joints/b2RopeJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2WeldJoint.cpp b/cocos2d/external/Box2D/Dynamics/Joints/b2WeldJoint.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2WeldJoint.h b/cocos2d/external/Box2D/Dynamics/Joints/b2WeldJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2WheelJoint.cpp b/cocos2d/external/Box2D/Dynamics/Joints/b2WheelJoint.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/Joints/b2WheelJoint.h b/cocos2d/external/Box2D/Dynamics/Joints/b2WheelJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/b2Body.cpp b/cocos2d/external/Box2D/Dynamics/b2Body.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/b2Body.h b/cocos2d/external/Box2D/Dynamics/b2Body.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/b2ContactManager.cpp b/cocos2d/external/Box2D/Dynamics/b2ContactManager.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/b2ContactManager.h b/cocos2d/external/Box2D/Dynamics/b2ContactManager.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/b2Fixture.cpp b/cocos2d/external/Box2D/Dynamics/b2Fixture.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/b2Fixture.h b/cocos2d/external/Box2D/Dynamics/b2Fixture.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/b2Island.cpp b/cocos2d/external/Box2D/Dynamics/b2Island.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/b2Island.h b/cocos2d/external/Box2D/Dynamics/b2Island.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/b2TimeStep.h b/cocos2d/external/Box2D/Dynamics/b2TimeStep.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/b2World.cpp b/cocos2d/external/Box2D/Dynamics/b2World.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/b2World.h b/cocos2d/external/Box2D/Dynamics/b2World.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/b2WorldCallbacks.cpp b/cocos2d/external/Box2D/Dynamics/b2WorldCallbacks.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Dynamics/b2WorldCallbacks.h b/cocos2d/external/Box2D/Dynamics/b2WorldCallbacks.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Rope/b2Rope.cpp b/cocos2d/external/Box2D/Rope/b2Rope.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/Rope/b2Rope.h b/cocos2d/external/Box2D/Rope/b2Rope.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/proj.win32/Box2D.vcxproj b/cocos2d/external/Box2D/proj.win32/Box2D.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/proj.win32/Box2D.vcxproj.filters b/cocos2d/external/Box2D/proj.win32/Box2D.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/proj.wp8/Box2D.vcxproj b/cocos2d/external/Box2D/proj.wp8/Box2D.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/external/Box2D/proj.wp8/Box2D.vcxproj.filters b/cocos2d/external/Box2D/proj.wp8/Box2D.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/external/ConvertUTF/ConvertUTF.c b/cocos2d/external/ConvertUTF/ConvertUTF.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/ConvertUTF/ConvertUTF.h b/cocos2d/external/ConvertUTF/ConvertUTF.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/ConvertUTF/ConvertUTFWrapper.cpp b/cocos2d/external/ConvertUTF/ConvertUTFWrapper.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/Android.mk b/cocos2d/external/chipmunk/Android.mk old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/LICENSE.txt b/cocos2d/external/chipmunk/LICENSE.txt old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/README.txt b/cocos2d/external/chipmunk/README.txt old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/chipmunk-docs.html b/cocos2d/external/chipmunk/chipmunk-docs.html old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/chipmunk.h b/cocos2d/external/chipmunk/include/chipmunk/chipmunk.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/chipmunk_ffi.h b/cocos2d/external/chipmunk/include/chipmunk/chipmunk_ffi.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/chipmunk_private.h b/cocos2d/external/chipmunk/include/chipmunk/chipmunk_private.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/chipmunk_types.h b/cocos2d/external/chipmunk/include/chipmunk/chipmunk_types.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/chipmunk_unsafe.h b/cocos2d/external/chipmunk/include/chipmunk/chipmunk_unsafe.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/constraints/cpConstraint.h b/cocos2d/external/chipmunk/include/chipmunk/constraints/cpConstraint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/constraints/cpDampedRotarySpring.h b/cocos2d/external/chipmunk/include/chipmunk/constraints/cpDampedRotarySpring.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/constraints/cpDampedSpring.h b/cocos2d/external/chipmunk/include/chipmunk/constraints/cpDampedSpring.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/constraints/cpGearJoint.h b/cocos2d/external/chipmunk/include/chipmunk/constraints/cpGearJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/constraints/cpGrooveJoint.h b/cocos2d/external/chipmunk/include/chipmunk/constraints/cpGrooveJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/constraints/cpPinJoint.h b/cocos2d/external/chipmunk/include/chipmunk/constraints/cpPinJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/constraints/cpPivotJoint.h b/cocos2d/external/chipmunk/include/chipmunk/constraints/cpPivotJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/constraints/cpRatchetJoint.h b/cocos2d/external/chipmunk/include/chipmunk/constraints/cpRatchetJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/constraints/cpRotaryLimitJoint.h b/cocos2d/external/chipmunk/include/chipmunk/constraints/cpRotaryLimitJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/constraints/cpSimpleMotor.h b/cocos2d/external/chipmunk/include/chipmunk/constraints/cpSimpleMotor.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/constraints/cpSlideJoint.h b/cocos2d/external/chipmunk/include/chipmunk/constraints/cpSlideJoint.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/constraints/util.h b/cocos2d/external/chipmunk/include/chipmunk/constraints/util.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/cpArbiter.h b/cocos2d/external/chipmunk/include/chipmunk/cpArbiter.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/cpBB.h b/cocos2d/external/chipmunk/include/chipmunk/cpBB.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/cpBody.h b/cocos2d/external/chipmunk/include/chipmunk/cpBody.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/cpPolyShape.h b/cocos2d/external/chipmunk/include/chipmunk/cpPolyShape.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/cpShape.h b/cocos2d/external/chipmunk/include/chipmunk/cpShape.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/cpSpace.h b/cocos2d/external/chipmunk/include/chipmunk/cpSpace.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/cpSpatialIndex.h b/cocos2d/external/chipmunk/include/chipmunk/cpSpatialIndex.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/include/chipmunk/cpVect.h b/cocos2d/external/chipmunk/include/chipmunk/cpVect.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/proj.win32/chipmunk.vcxproj b/cocos2d/external/chipmunk/proj.win32/chipmunk.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/proj.win32/chipmunk.vcxproj.filters b/cocos2d/external/chipmunk/proj.win32/chipmunk.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/proj.winrt/chipmunk.vcxproj b/cocos2d/external/chipmunk/proj.winrt/chipmunk.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/proj.winrt/chipmunk.vcxproj.filters b/cocos2d/external/chipmunk/proj.winrt/chipmunk.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/proj.wp8/chipmunk.vcxproj b/cocos2d/external/chipmunk/proj.wp8/chipmunk.vcxproj old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/proj.wp8/chipmunk.vcxproj.filters b/cocos2d/external/chipmunk/proj.wp8/chipmunk.vcxproj.filters old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/CMakeLists.txt b/cocos2d/external/chipmunk/src/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/chipmunk.c b/cocos2d/external/chipmunk/src/chipmunk.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/constraints/cpConstraint.c b/cocos2d/external/chipmunk/src/constraints/cpConstraint.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/constraints/cpDampedRotarySpring.c b/cocos2d/external/chipmunk/src/constraints/cpDampedRotarySpring.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/constraints/cpDampedSpring.c b/cocos2d/external/chipmunk/src/constraints/cpDampedSpring.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/constraints/cpGearJoint.c b/cocos2d/external/chipmunk/src/constraints/cpGearJoint.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/constraints/cpGrooveJoint.c b/cocos2d/external/chipmunk/src/constraints/cpGrooveJoint.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/constraints/cpPinJoint.c b/cocos2d/external/chipmunk/src/constraints/cpPinJoint.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/constraints/cpPivotJoint.c b/cocos2d/external/chipmunk/src/constraints/cpPivotJoint.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/constraints/cpRatchetJoint.c b/cocos2d/external/chipmunk/src/constraints/cpRatchetJoint.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/constraints/cpRotaryLimitJoint.c b/cocos2d/external/chipmunk/src/constraints/cpRotaryLimitJoint.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/constraints/cpSimpleMotor.c b/cocos2d/external/chipmunk/src/constraints/cpSimpleMotor.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/constraints/cpSlideJoint.c b/cocos2d/external/chipmunk/src/constraints/cpSlideJoint.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/cpArbiter.c b/cocos2d/external/chipmunk/src/cpArbiter.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/cpArray.c b/cocos2d/external/chipmunk/src/cpArray.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/cpBB.c b/cocos2d/external/chipmunk/src/cpBB.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/cpBBTree.c b/cocos2d/external/chipmunk/src/cpBBTree.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/cpBody.c b/cocos2d/external/chipmunk/src/cpBody.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/cpCollision.c b/cocos2d/external/chipmunk/src/cpCollision.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/cpHashSet.c b/cocos2d/external/chipmunk/src/cpHashSet.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/cpPolyShape.c b/cocos2d/external/chipmunk/src/cpPolyShape.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/cpShape.c b/cocos2d/external/chipmunk/src/cpShape.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/cpSpace.c b/cocos2d/external/chipmunk/src/cpSpace.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/cpSpaceComponent.c b/cocos2d/external/chipmunk/src/cpSpaceComponent.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/cpSpaceHash.c b/cocos2d/external/chipmunk/src/cpSpaceHash.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/cpSpaceQuery.c b/cocos2d/external/chipmunk/src/cpSpaceQuery.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/cpSpaceStep.c b/cocos2d/external/chipmunk/src/cpSpaceStep.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/cpSpatialIndex.c b/cocos2d/external/chipmunk/src/cpSpatialIndex.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/cpSweep1D.c b/cocos2d/external/chipmunk/src/cpSweep1D.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/cpVect.c b/cocos2d/external/chipmunk/src/cpVect.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/chipmunk/src/prime.h b/cocos2d/external/chipmunk/src/prime.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/config.json b/cocos2d/external/config.json old mode 100644 new mode 100755 diff --git a/cocos2d/external/edtaa3func/edtaa3func.cpp b/cocos2d/external/edtaa3func/edtaa3func.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/edtaa3func/edtaa3func.h b/cocos2d/external/edtaa3func/edtaa3func.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/json/document.h b/cocos2d/external/json/document.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/json/filestream.h b/cocos2d/external/json/filestream.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/json/internal/pow10.h b/cocos2d/external/json/internal/pow10.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/json/internal/stack.h b/cocos2d/external/json/internal/stack.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/json/internal/strfunc.h b/cocos2d/external/json/internal/strfunc.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/json/prettywriter.h b/cocos2d/external/json/prettywriter.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/json/rapidjson.h b/cocos2d/external/json/rapidjson.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/json/reader.h b/cocos2d/external/json/reader.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/json/stringbuffer.h b/cocos2d/external/json/stringbuffer.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/json/writer.h b/cocos2d/external/json/writer.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/tinyxml2/CMakeLists.txt b/cocos2d/external/tinyxml2/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/external/tinyxml2/tinyxml2.cpp b/cocos2d/external/tinyxml2/tinyxml2.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/tinyxml2/tinyxml2.h b/cocos2d/external/tinyxml2/tinyxml2.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/unzip/CMakeLists.txt b/cocos2d/external/unzip/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/external/unzip/ioapi.cpp b/cocos2d/external/unzip/ioapi.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/unzip/ioapi.h b/cocos2d/external/unzip/ioapi.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/unzip/unzip.cpp b/cocos2d/external/unzip/unzip.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/external/unzip/unzip.h b/cocos2d/external/unzip/unzip.h old mode 100644 new mode 100755 diff --git a/cocos2d/external/version.json b/cocos2d/external/version.json old mode 100644 new mode 100755 diff --git a/cocos2d/external/xxhash/CMakeLists.txt b/cocos2d/external/xxhash/CMakeLists.txt old mode 100644 new mode 100755 diff --git a/cocos2d/external/xxhash/xxhash.c b/cocos2d/external/xxhash/xxhash.c old mode 100644 new mode 100755 diff --git a/cocos2d/external/xxhash/xxhash.h b/cocos2d/external/xxhash/xxhash.h old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_AA-EDT.txt b/cocos2d/licenses/LICENSE_AA-EDT.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_CCBReader.txt b/cocos2d/licenses/LICENSE_CCBReader.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_CCControlExtension.txt b/cocos2d/licenses/LICENSE_CCControlExtension.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_JSON4Lua.txt b/cocos2d/licenses/LICENSE_JSON4Lua.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_Kazmath.txt b/cocos2d/licenses/LICENSE_Kazmath.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_LuaSocket.txt b/cocos2d/licenses/LICENSE_LuaSocket.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_SpiderMonkey.txt b/cocos2d/licenses/LICENSE_SpiderMonkey.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_artwork.txt b/cocos2d/licenses/LICENSE_artwork.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_box2d.txt b/cocos2d/licenses/LICENSE_box2d.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_chipmunk.txt b/cocos2d/licenses/LICENSE_chipmunk.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_cocos2d-iphone.txt b/cocos2d/licenses/LICENSE_cocos2d-iphone.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_cocos2d-x.txt b/cocos2d/licenses/LICENSE_cocos2d-x.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_cocosdenshion.txt b/cocos2d/licenses/LICENSE_cocosdenshion.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_curl.txt b/cocos2d/licenses/LICENSE_curl.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_js.txt b/cocos2d/licenses/LICENSE_js.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_jsoncpp.txt b/cocos2d/licenses/LICENSE_jsoncpp.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_libjpeg.txt b/cocos2d/licenses/LICENSE_libjpeg.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_libpng.txt b/cocos2d/licenses/LICENSE_libpng.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_libtiff.txt b/cocos2d/licenses/LICENSE_libtiff.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_libwebsockets.txt b/cocos2d/licenses/LICENSE_libwebsockets.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_libxml2.txt b/cocos2d/licenses/LICENSE_libxml2.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_llvm.txt b/cocos2d/licenses/LICENSE_llvm.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_lua.txt b/cocos2d/licenses/LICENSE_lua.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_ogg_vorbis.txt b/cocos2d/licenses/LICENSE_ogg_vorbis.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_tolua++.txt b/cocos2d/licenses/LICENSE_tolua++.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_unicode.txt b/cocos2d/licenses/LICENSE_unicode.txt old mode 100644 new mode 100755 diff --git a/cocos2d/licenses/LICENSE_zlib.txt b/cocos2d/licenses/LICENSE_zlib.txt old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/AUTHORS b/cocos2d/plugin/AUTHORS old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/README.md b/cocos2d/plugin/README.md old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/Android.mk b/cocos2d/plugin/jsbindings/Android.mk old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/auto/api/jsb_cocos2dx_pluginx_auto_api.js b/cocos2d/plugin/jsbindings/auto/api/jsb_cocos2dx_pluginx_auto_api.js old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/auto/jsb_cocos2dx_pluginx_auto.cpp b/cocos2d/plugin/jsbindings/auto/jsb_cocos2dx_pluginx_auto.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/auto/jsb_cocos2dx_pluginx_auto.hpp b/cocos2d/plugin/jsbindings/auto/jsb_cocos2dx_pluginx_auto.hpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/manual/jsb_pluginx_basic_conversions.cpp b/cocos2d/plugin/jsbindings/manual/jsb_pluginx_basic_conversions.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/manual/jsb_pluginx_basic_conversions.h b/cocos2d/plugin/jsbindings/manual/jsb_pluginx_basic_conversions.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/manual/jsb_pluginx_extension_registration.cpp b/cocos2d/plugin/jsbindings/manual/jsb_pluginx_extension_registration.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/manual/jsb_pluginx_extension_registration.h b/cocos2d/plugin/jsbindings/manual/jsb_pluginx_extension_registration.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/manual/jsb_pluginx_manual_callback.cpp b/cocos2d/plugin/jsbindings/manual/jsb_pluginx_manual_callback.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/manual/jsb_pluginx_manual_callback.h b/cocos2d/plugin/jsbindings/manual/jsb_pluginx_manual_callback.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/manual/jsb_pluginx_manual_protocols.cpp b/cocos2d/plugin/jsbindings/manual/jsb_pluginx_manual_protocols.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/manual/jsb_pluginx_manual_protocols.h b/cocos2d/plugin/jsbindings/manual/jsb_pluginx_manual_protocols.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/manual/jsb_pluginx_spidermonkey_specifics.cpp b/cocos2d/plugin/jsbindings/manual/jsb_pluginx_spidermonkey_specifics.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/manual/jsb_pluginx_spidermonkey_specifics.h b/cocos2d/plugin/jsbindings/manual/jsb_pluginx_spidermonkey_specifics.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/manual/pluginxUTF8.cpp b/cocos2d/plugin/jsbindings/manual/pluginxUTF8.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/manual/pluginxUTF8.h b/cocos2d/plugin/jsbindings/manual/pluginxUTF8.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/manual/uthash.h b/cocos2d/plugin/jsbindings/manual/uthash.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/jsbindings/script/jsb_pluginx.js b/cocos2d/plugin/jsbindings/script/jsb_pluginx.js old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.android/.classpath b/cocos2d/plugin/plugins/admob/proj.android/.classpath old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.android/.project b/cocos2d/plugin/plugins/admob/proj.android/.project old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.android/AndroidManifest.xml b/cocos2d/plugin/plugins/admob/proj.android/AndroidManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.android/ForManifest.xml b/cocos2d/plugin/plugins/admob/proj.android/ForManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.android/build.xml b/cocos2d/plugin/plugins/admob/proj.android/build.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.android/project.properties b/cocos2d/plugin/plugins/admob/proj.android/project.properties old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.android/src/org/cocos2dx/plugin/AdsAdmob.java b/cocos2d/plugin/plugins/admob/proj.android/src/org/cocos2dx/plugin/AdsAdmob.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADAdMobExtras.h b/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADAdMobExtras.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADAdNetworkExtras.h b/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADAdNetworkExtras.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADAdSize.h b/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADAdSize.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADBannerView.h b/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADBannerView.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADBannerViewDelegate.h b/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADBannerViewDelegate.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADInterstitial.h b/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADInterstitial.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADInterstitialDelegate.h b/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADInterstitialDelegate.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADRequest.h b/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADRequest.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADRequestError.h b/cocos2d/plugin/plugins/admob/proj.ios/Admob/GADRequestError.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.ios/Admob/libGoogleAdMobAds.a b/cocos2d/plugin/plugins/admob/proj.ios/Admob/libGoogleAdMobAds.a old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.ios/AdsAdmob.h b/cocos2d/plugin/plugins/admob/proj.ios/AdsAdmob.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.ios/AdsAdmob.m b/cocos2d/plugin/plugins/admob/proj.ios/AdsAdmob.m old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.ios/PluginAdmob-Prefix.pch b/cocos2d/plugin/plugins/admob/proj.ios/PluginAdmob-Prefix.pch old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/admob/proj.ios/PluginAdmob.xcodeproj/project.pbxproj b/cocos2d/plugin/plugins/admob/proj.ios/PluginAdmob.xcodeproj/project.pbxproj old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/.classpath b/cocos2d/plugin/plugins/alipay/proj.android/.classpath old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/.project b/cocos2d/plugin/plugins/alipay/proj.android/.project old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/AndroidManifest.xml b/cocos2d/plugin/plugins/alipay/proj.android/AndroidManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/ForAssets/alipay_plugin.apk b/cocos2d/plugin/plugins/alipay/proj.android/ForAssets/alipay_plugin.apk old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/ForManifest.xml b/cocos2d/plugin/plugins/alipay/proj.android/ForManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/build.xml b/cocos2d/plugin/plugins/alipay/proj.android/build.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/project.properties b/cocos2d/plugin/plugins/alipay/proj.android/project.properties old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/sdk/alipay_plugin.jar b/cocos2d/plugin/plugins/alipay/proj.android/sdk/alipay_plugin.jar old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/AlixId.java b/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/AlixId.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/Base64.java b/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/Base64.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/BaseHelper.java b/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/BaseHelper.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/IAPAlipay.java b/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/IAPAlipay.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/MobileSecurePayHelper.java b/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/MobileSecurePayHelper.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/MobileSecurePayer.java b/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/MobileSecurePayer.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/NetworkManager.java b/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/NetworkManager.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/PartnerConfig.java b/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/PartnerConfig.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/ResultChecker.java b/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/ResultChecker.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/Rsa.java b/cocos2d/plugin/plugins/alipay/proj.android/src/org/cocos2dx/plugin/Rsa.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/flurry/proj.android/.classpath b/cocos2d/plugin/plugins/flurry/proj.android/.classpath old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/flurry/proj.android/.project b/cocos2d/plugin/plugins/flurry/proj.android/.project old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/flurry/proj.android/AndroidManifest.xml b/cocos2d/plugin/plugins/flurry/proj.android/AndroidManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/flurry/proj.android/ForManifest.xml b/cocos2d/plugin/plugins/flurry/proj.android/ForManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/flurry/proj.android/build.xml b/cocos2d/plugin/plugins/flurry/proj.android/build.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/flurry/proj.android/project.properties b/cocos2d/plugin/plugins/flurry/proj.android/project.properties old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/flurry/proj.android/src/org/cocos2dx/plugin/AdsFlurry.java b/cocos2d/plugin/plugins/flurry/proj.android/src/org/cocos2dx/plugin/AdsFlurry.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/flurry/proj.android/src/org/cocos2dx/plugin/AnalyticsFlurry.java b/cocos2d/plugin/plugins/flurry/proj.android/src/org/cocos2dx/plugin/AnalyticsFlurry.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/flurry/proj.ios/AdsFlurry.h b/cocos2d/plugin/plugins/flurry/proj.ios/AdsFlurry.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/flurry/proj.ios/AdsFlurry.m b/cocos2d/plugin/plugins/flurry/proj.ios/AdsFlurry.m old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/flurry/proj.ios/AnalyticsFlurry.h b/cocos2d/plugin/plugins/flurry/proj.ios/AnalyticsFlurry.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/flurry/proj.ios/AnalyticsFlurry.m b/cocos2d/plugin/plugins/flurry/proj.ios/AnalyticsFlurry.m old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/flurry/proj.ios/PluginFlurry-Prefix.pch b/cocos2d/plugin/plugins/flurry/proj.ios/PluginFlurry-Prefix.pch old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/flurry/proj.ios/PluginFlurry.xcodeproj/project.pbxproj b/cocos2d/plugin/plugins/flurry/proj.ios/PluginFlurry.xcodeproj/project.pbxproj old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/.classpath b/cocos2d/plugin/plugins/googleplay/proj.android/.classpath old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/.project b/cocos2d/plugin/plugins/googleplay/proj.android/.project old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/AndroidManifest.xml b/cocos2d/plugin/plugins/googleplay/proj.android/AndroidManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/ForManifest.xml b/cocos2d/plugin/plugins/googleplay/proj.android/ForManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/Notes.txt b/cocos2d/plugin/plugins/googleplay/proj.android/Notes.txt old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/build.xml b/cocos2d/plugin/plugins/googleplay/proj.android/build.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/proguard-project.txt b/cocos2d/plugin/plugins/googleplay/proj.android/proguard-project.txt old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/project.properties b/cocos2d/plugin/plugins/googleplay/proj.android/project.properties old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/src/com/android/vending/billing/IInAppBillingService.aidl b/cocos2d/plugin/plugins/googleplay/proj.android/src/com/android/vending/billing/IInAppBillingService.aidl old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/IAPGooglePlay.java b/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/IAPGooglePlay.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/Base64.java b/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/Base64.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/Base64DecoderException.java b/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/Base64DecoderException.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/IabException.java b/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/IabException.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/IabHelper.java b/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/IabHelper.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/IabResult.java b/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/IabResult.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/Inventory.java b/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/Inventory.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/Purchase.java b/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/Purchase.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/Security.java b/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/Security.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/SkuDetails.java b/cocos2d/plugin/plugins/googleplay/proj.android/src/org/cocos2dx/plugin/util/SkuDetails.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/.classpath b/cocos2d/plugin/plugins/nd91/proj.android/.classpath old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/.project b/cocos2d/plugin/plugins/nd91/proj.android/.project old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/AndroidManifest.xml b/cocos2d/plugin/plugins/nd91/proj.android/AndroidManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/.classpath b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/.classpath old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/.project b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/.project old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/AndroidManifest.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/AndroidManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/project.properties b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/project.properties old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/anim/nd_flipin.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/anim/nd_flipin.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/anim/nd_flipin_reverse.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/anim/nd_flipin_reverse.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/anim/nd_flipout.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/anim/nd_flipout.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/anim/nd_flipout_reverse.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/anim/nd_flipout_reverse.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_download_1.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_download_1.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_download_2.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_download_2.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_flip_bg.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_flip_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_content_h.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_content_h.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_content_v.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_content_v.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_handle_h_1.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_handle_h_1.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_handle_h_1_expand.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_handle_h_1_expand.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_handle_h_2.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_handle_h_2.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_handle_h_2_expand.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_handle_h_2_expand.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_handle_v_1.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_handle_v_1.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_handle_v_1_expand.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_handle_v_1_expand.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_handle_v_2.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_handle_v_2.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_handle_v_2_expand.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_handle_v_2_expand.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_next_h.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_next_h.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_next_v.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_next_v.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_pre_h.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_pre_h.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_pre_v.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-hdpi/nd_slider_pre_v.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_bg_tips.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_bg_tips.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_box_bg.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_box_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_box_btn_bg.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_box_btn_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_box_close.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_box_close.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_box_label_bg.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_box_label_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_box_logo.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_box_logo.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_box_tit_bg.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_box_tit_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_box_title_line.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_box_title_line.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_exit_txt_bg.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_exit_txt_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_gamecenter_default.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_gamecenter_default.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_gamezone_default.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_gamezone_default.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_gc_logo_default.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_gc_logo_default.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_image_default.jpg b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_image_default.jpg old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_label_bg.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_label_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_loading_bg.jpg b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_loading_bg.jpg old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_loading_logo.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_loading_logo.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_loading_pot_1.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_loading_pot_1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_loading_pot_2.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable-xhdpi/nd_gcsdk_loading_pot_2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_3rd_platform_icon.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_3rd_platform_icon.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_3rd_platform_icon_more.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_3rd_platform_icon_more.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_91.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_91.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_achieve.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_achieve.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_achievement_lock.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_achievement_lock.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_activity_action_above_bg.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_activity_action_above_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_add.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_add.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_agreement_logo.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_agreement_logo.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_app_icon_default.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_app_icon_default.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_background.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_background.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_background_xml.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_background_xml.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_banner.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_banner.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_banner_bg.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_banner_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_banner_logo.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_banner_logo.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bbs_icon.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bbs_icon.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bg.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bizarre_image.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bizarre_image.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bk1.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bk1.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bm.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bm.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bnt_01.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bnt_01.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bnt_zhuxiao.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bnt_zhuxiao.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bottom_bar_bg.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_bottom_bar_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button1.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button2.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_02.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_02.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_130_01.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_130_01.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_130_03.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_130_03.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_278.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_278.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_action.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_action.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_bg_02.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_bg_02.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_bg_02_press.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_bg_02_press.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_bg_dis.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_bg_dis.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_bg_dis02.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_bg_dis02.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_logout.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_logout.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_long.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_long.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_long_press.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_long_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_old.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_old.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_radio.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_radio.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_x.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_x.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_x1.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_button_x1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_check_yes.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_check_yes.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_checkbox_button.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_checkbox_button.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_close.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_close.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_default_portrait.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_default_portrait.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_default_portrait_big.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_default_portrait_big.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_friend_del_button.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_friend_del_button.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_friend_section_bg.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_friend_section_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_game_detail.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_game_detail.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_game_error_bg.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_game_error_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_game_face.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_game_face.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_game_head.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_game_head.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_head_bg.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_head_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_headbar.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_headbar.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_horizontal_line.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_horizontal_line.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon11.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon11.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon12.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon12.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_01.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_01.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_05.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_05.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_06.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_06.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_07.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_07.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_08.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_08.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_21.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_21.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_22.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_22.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_error.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_error.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more01.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more01.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more02.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more02.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more03.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more03.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more04.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more04.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more05.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more05.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more06.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_more06.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_point.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_point.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_selected.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_icon_selected.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_image81.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_image81.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_image82.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_image82.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_image_48_bg.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_image_48_bg.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_input_1.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_input_1.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_input_2.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_input_2.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_input_bg.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_input_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_input_gray.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_input_gray.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_inputbox_bg1.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_inputbox_bg1.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_invite_image.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_invite_image.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_leaderboard_default.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_leaderboard_default.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_line.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_line.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_list_bg.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_list_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_list_separator.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_list_separator.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainfriend_1.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainfriend_1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainfriend_2.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainfriend_2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_maingame_1.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_maingame_1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_maingame_2.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_maingame_2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainmessage_1.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainmessage_1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainmessage_2.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainmessage_2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainmore_1.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainmore_1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainmore_2.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainmore_2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainpage_1.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainpage_1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainpage_2.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mainpage_2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_message_item_1_bg.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_message_item_1_bg.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_message_item_2_bg.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_message_item_2_bg.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mood_bg.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_mood_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_msge_friend.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_msge_friend.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_msge_owen.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_msge_owen.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_new_message.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_new_message.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_new_message_flag.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_new_message_flag.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_pay_checkbox_button.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_pay_checkbox_button.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_platform_logo.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_platform_logo.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_portrait_edit_bg.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_portrait_edit_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_progress_large.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_progress_large.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_1.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_2.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_3.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_3.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_left_1.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_left_1.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_left_2.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_left_2.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_left_btn_bg.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_left_btn_bg.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_middle_1.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_middle_1.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_middle_2.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_middle_2.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_middle_btn_bg.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_middle_btn_bg.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_right_1.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_right_1.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_right_2.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_right_2.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_right_btn_bg.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_choice_right_btn_bg.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_image.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_rank_image.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_redbtn.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_redbtn.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_redbtn_down.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_redbtn_down.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_regist_checked.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_regist_checked.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_round_bg.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_round_bg.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_search_edit_bg.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_search_edit_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_search_edit_left.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_search_edit_left.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_search_layout_bg.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_search_layout_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_showplayer.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_showplayer.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_square_checkbox_button.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_square_checkbox_button.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_switch_image.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_switch_image.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_switch_image_white.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_switch_image_white.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_title_bar_action_btn.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_title_bar_action_btn.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_title_bar_action_btn_pressed.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_title_bar_action_btn_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_title_bar_action_btn_xml.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_title_bar_action_btn_xml.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_title_bar_bg.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_title_bar_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_title_bar_return_btn.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_title_bar_return_btn.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_title_bar_return_btn_pressed.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_title_bar_return_btn_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_title_bar_return_btn_xml.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_title_bar_return_btn_xml.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_user_item_bg.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_user_item_bg.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_vertical_line.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_vertical_line.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_white_bg.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd3_white_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_ad.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_ad.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_blue.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_blue.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_blue1.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_blue1.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_blue2.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_blue2.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_book.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_book.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_add.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_add.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_add_press.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_add_press.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_buy.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_buy.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_buy_press.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_buy_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_reduce.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_reduce.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_reduce_press.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_btn_reduce_press.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_button_action_add.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_button_action_add.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_button_action_buy.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_button_action_buy.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_button_action_reduce.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_button_action_reduce.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_c_blur.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_c_blur.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_c_blur1.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_c_blur1.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_c_blur2.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_c_blur2.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_change_account.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_change_account.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_direct_login.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_direct_login.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_direct_logo.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_direct_logo.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_download.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_download.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_gamecoin.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_gamecoin.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_gcsdk_bezel_border.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_gcsdk_bezel_border.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_gcsdk_bezel_mask.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_gcsdk_bezel_mask.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_count_input_bg.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_count_input_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_default.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_default.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_detail_default.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_detail_default.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_limit_stock.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_limit_stock.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_limit_time.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_limit_time.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_no_stock.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_no_stock.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_price_down.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_goods_price_down.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_green.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_green.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_green1.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_green1.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_green2.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_green2.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_input.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_input.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_leaderboard_left_1.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_leaderboard_left_1.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_leaderboard_left_2.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_leaderboard_left_2.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_leaderboard_left_btn_bg.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_leaderboard_left_btn_bg.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_leaderboard_right_1.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_leaderboard_right_1.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_leaderboard_right_2.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_leaderboard_right_2.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_leaderboard_right_btn_bg.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_leaderboard_right_btn_bg.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_list_btn_delete_normal.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_list_btn_delete_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_list_btn_delete_pressed.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_list_btn_delete_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_list_btn_delete_selector.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_list_btn_delete_selector.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_login_btn_land_selector.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_login_btn_land_selector.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_login_btn_normal_land.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_login_btn_normal_land.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_login_btn_normal_portrait.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_login_btn_normal_portrait.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_login_btn_portrait_selector.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_login_btn_portrait_selector.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_login_btn_pressed_land.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_login_btn_pressed_land.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_login_btn_pressed_portrait.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_login_btn_pressed_portrait.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_logo48.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_logo48.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_ordinary.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_ordinary.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_register_btn_normal_portrait.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_register_btn_normal_portrait.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_register_btn_portrait_selector.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_register_btn_portrait_selector.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_register_btn_pressed_portrait.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_register_btn_pressed_portrait.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_satisfied.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_satisfied.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_service.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_service.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_slider_handle_h.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_slider_handle_h.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_slider_handle_h_expand.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_slider_handle_h_expand.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_slider_handle_v.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_slider_handle_v.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_slider_handle_v_expand.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_slider_handle_v_expand.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_theme.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_theme.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_true.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_true.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_unsatisfied.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_unsatisfied.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_warn.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_warn.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_white_btn.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_white_btn.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_white_btn_1.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_white_btn_1.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_white_btn_2.9.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_white_btn_2.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_winning.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_winning.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_xline.png b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/drawable/nd_xline.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_bind_bind.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_bind_bind.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_bind_register.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_bind_register.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_email_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_email_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_login.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_login.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_login_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_login_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_login_land.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_login_land.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_login_other_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_login_other_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_login_portrait.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_login_portrait.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_oauth_bind.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_oauth_bind.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_official.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_official.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_official_landscape.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_official_landscape.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_official_portrait.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_official_portrait.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_other_login.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_other_login.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_register.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_register.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_register_agreement.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_register_agreement.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_register_phone.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_register_phone.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_register_quick.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_register_quick.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_secret_find.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_secret_find.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_secret_set.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_secret_set.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_sina.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_account_sina.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_achieve_detail.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_achieve_detail.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_action_template.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_action_template.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_content_reg_template_1.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_content_reg_template_1.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_content_reg_template_2.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_content_reg_template_2.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_content_reg_template_2_ext.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_content_reg_template_2_ext.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_content_reg_template_3.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_content_reg_template_3.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_content_reg_template_4.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_content_reg_template_4.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_detail.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_detail.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_detail_plus_image.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_detail_plus_image.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_detail_plus_list.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_detail_plus_list.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_detail_plus_list_ext.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_detail_plus_list_ext.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_head_reg.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_head_reg.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_no_action_template.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_activity_no_action_template.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_app_feedback.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_app_feedback.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_app_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_app_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_app_property.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_app_property.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_banner_layout.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_banner_layout.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_blank_listview.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_blank_listview.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_bottom_bar.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_bottom_bar.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_category_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_category_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_category_plus_image_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_category_plus_image_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_control_center.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_control_center.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_dispatch_search_friend.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_dispatch_search_friend.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_empty_listview.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_empty_listview.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_frame.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_frame.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_friend_home.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_friend_home.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_friend_remark_setting.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_friend_remark_setting.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_friend_section.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_friend_section.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_friend_section_list_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_friend_section_list_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_friend_section_panel.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_friend_section_panel.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_game_content.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_game_content.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_game_main.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_game_main.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_home.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_home.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_home_land.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_home_land.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_home_personal.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_home_personal.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_home_portrait.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_home_portrait.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_invite_friend.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_invite_friend.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_invite_friend_choice.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_invite_friend_choice.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_invite_friend_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_invite_friend_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_leaderboard_category.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_leaderboard_category.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_leaderboard_list_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_leaderboard_list_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_listview_footer.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_listview_footer.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_listview_footer_ext.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_listview_footer_ext.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_listview_template.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_listview_template.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_listview_template_no_divider.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_listview_template_no_divider.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_mesg_main.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_mesg_main.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_message_friendmsge_list.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_message_friendmsge_list.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_message_main.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_message_main.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_message_receive_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_message_receive_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_message_record_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_message_record_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_message_send.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_message_send.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_message_send_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_message_send_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_about.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_about.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_account.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_account.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_bean_recharge.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_bean_recharge.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_consume_detail.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_consume_detail.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_consumes.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_consumes.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_info.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_info.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_info_edit_head_dialog.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_info_edit_head_dialog.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_more.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_more.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_no_password.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_no_password.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_password.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_password.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_permission.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_permission.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_recharge_detail.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_recharge_detail.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_recharges.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_recharges.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_records.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_records.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_records_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_more_records_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_myfriend.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_myfriend.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_network_error.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_network_error.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_normal_search.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_normal_search.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_pay_friend_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_pay_friend_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_pay_pass.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_pay_pass.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_pay_password_check.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_pay_password_check.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_pay_products_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_pay_products_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_pay_select_friend.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_pay_select_friend.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_pay_template.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_pay_template.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_person_info_detail.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_person_info_detail.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_personinfo.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_personinfo.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_progressbar.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_progressbar.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_recharge_record.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_recharge_record.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_searchfriend_condition.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_searchfriend_condition.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_share_bind_account_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_share_bind_account_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_share_sina.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_share_sina.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_share_unbind_account_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_share_unbind_account_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_stranger_home.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_stranger_home.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_sysmessage_detail_action.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_sysmessage_detail_action.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_sysmessage_detail_app.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_sysmessage_detail_app.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_sysmessage_detail_no_action.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_sysmessage_detail_no_action.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_sysmessage_head_reg.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_sysmessage_head_reg.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_thirdplatform_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_thirdplatform_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_title_bar.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_title_bar.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_user_fangle.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_user_fangle.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_user_fangle_ext.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_user_fangle_ext.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_user_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_user_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_user_item_divider.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_user_item_divider.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_user_message.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_user_message.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_user_message_switcher.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_user_message_switcher.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_version_update.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_version_update.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_write_message.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd3_write_message.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_account_list_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_account_list_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_account_manage.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_account_manage.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_bind_phone_lottery.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_bind_phone_lottery.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_bind_phone_number.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_bind_phone_number.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_bind_phone_number_result.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_bind_phone_number_result.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_bind_phone_number_tip.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_bind_phone_number_tip.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_bind_phone_number_unactivity_tip.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_bind_phone_number_unactivity_tip.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_check_version.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_check_version.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_faq.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_faq.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_faq_list.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_faq_list.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_fb.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_fb.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_menu.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_menu.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_menu_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_menu_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_my_fb_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_my_fb_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_my_fb_list.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_my_fb_list.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_pj_landscape.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_pj_landscape.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_pj_portrait.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_pj_portrait.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_reply.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_reply.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_reply_bottom.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_reply_bottom.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_reply_item_left.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_reply_item_left.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_reply_item_right.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_feedback_reply_item_right.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_find_password.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_find_password.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_gcsdk_custom_toast.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_gcsdk_custom_toast.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_gcsdk_exitpage.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_gcsdk_exitpage.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_gcsdk_pausepage.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_gcsdk_pausepage.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_gcsdk_project_view_type_1.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_gcsdk_project_view_type_1.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_gcsdk_project_view_type_2.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_gcsdk_project_view_type_2.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_gcsdk_project_view_type_3.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_gcsdk_project_view_type_3.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_goods_detail.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_goods_detail.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_goods_list.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_goods_list.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_goods_list_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_goods_list_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_leaderboard.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_leaderboard.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_leaderboard_list_header.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_leaderboard_list_header.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_leaderboard_switcher_landscape_1.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_leaderboard_switcher_landscape_1.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_leaderboard_switcher_portrait_1.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_leaderboard_switcher_portrait_1.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_login_director.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_login_director.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_set_password.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_set_password.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_softpromotion_flipitem.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_softpromotion_flipitem.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_softpromotion_listitem.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_softpromotion_listitem.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_softpromotion_slider_h.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_softpromotion_slider_h.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_softpromotion_slider_item.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_softpromotion_slider_item.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_softpromotion_slider_v.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_softpromotion_slider_v.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_softwarepromotion.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_softwarepromotion.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_unbind_phone_number.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/layout/nd_unbind_phone_number.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/raw/nd_res.zip b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/raw/nd_res.zip old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/values/nd3_misc.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/values/nd3_misc.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/values/nd3_sdk_error_strings.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/values/nd3_sdk_error_strings.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/values/nd3_strings.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/values/nd3_strings.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/values/nd_gcsdk_colors.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/values/nd_gcsdk_colors.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/values/nd_gcsdk_misc.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/values/nd_gcsdk_misc.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/values/nd_gcsdk_strings.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/values/nd_gcsdk_strings.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/values/nd_gcsdk_styles.xml b/cocos2d/plugin/plugins/nd91/proj.android/DependProject/res/values/nd_gcsdk_styles.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/ForManifest.xml b/cocos2d/plugin/plugins/nd91/proj.android/ForManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/build.xml b/cocos2d/plugin/plugins/nd91/proj.android/build.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/project.properties b/cocos2d/plugin/plugins/nd91/proj.android/project.properties old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/sdk/NdComPlatform.jar b/cocos2d/plugin/plugins/nd91/proj.android/sdk/NdComPlatform.jar old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/src/org/cocos2dx/plugin/IAPNd91.java b/cocos2d/plugin/plugins/nd91/proj.android/src/org/cocos2dx/plugin/IAPNd91.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/src/org/cocos2dx/plugin/IAPOnlineNd91.java b/cocos2d/plugin/plugins/nd91/proj.android/src/org/cocos2dx/plugin/IAPOnlineNd91.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/src/org/cocos2dx/plugin/Nd91Wrapper.java b/cocos2d/plugin/plugins/nd91/proj.android/src/org/cocos2dx/plugin/Nd91Wrapper.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/src/org/cocos2dx/plugin/SocialNd91.java b/cocos2d/plugin/plugins/nd91/proj.android/src/org/cocos2dx/plugin/SocialNd91.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/nd91/proj.android/src/org/cocos2dx/plugin/UserNd91.java b/cocos2d/plugin/plugins/nd91/proj.android/src/org/cocos2dx/plugin/UserNd91.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/.classpath b/cocos2d/plugin/plugins/qh360/proj.android/.classpath old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/.project b/cocos2d/plugin/plugins/qh360/proj.android/.project old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/AndroidManifest.xml b/cocos2d/plugin/plugins/qh360/proj.android/AndroidManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/CLibs/armeabi/libpaypalm_app_plugin_jar_360game.so b/cocos2d/plugin/plugins/qh360/proj.android/CLibs/armeabi/libpaypalm_app_plugin_jar_360game.so old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/CLibs/mips/libpaypalm_app_plugin_jar_360game.so b/cocos2d/plugin/plugins/qh360/proj.android/CLibs/mips/libpaypalm_app_plugin_jar_360game.so old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/alipay_plugin.apk b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/alipay_plugin.apk old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/bin_app_plugin.bin b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/bin_app_plugin.bin old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/pro.jar b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/pro.jar old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/box_off.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/box_off.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/box_on.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/box_on.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/dr_btn_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/dr_btn_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/dr_btn_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/dr_btn_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/dropdown_btn_normal.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/dropdown_btn_normal.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/dropdown_btn_normal_.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/dropdown_btn_normal_.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/dropdown_btn_press.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/dropdown_btn_press.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/dropdown_btn_press_.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/dropdown_btn_press_.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/guardianship_btn_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/guardianship_btn_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/guardianship_btn_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/guardianship_btn_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/input_box_.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/input_box_.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/known_btn_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/known_btn_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/known_btn_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/known_btn_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/zc_btn_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/zc_btn_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/zc_btn_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/Mdpi/zc_btn_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/bind_phone_button_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/bind_phone_button_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/bind_phone_button_pressed.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/bind_phone_button_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/bind_phone_other_indicator.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/bind_phone_other_indicator.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/bind_phone_popup_message_arrow.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/bind_phone_popup_message_arrow.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/bind_phone_title.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/bind_phone_title.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/box_off.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/box_off.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/box_on.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/box_on.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/button_gray_disable.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/button_gray_disable.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/button_gray_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/button_gray_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/button_gray_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/button_gray_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/check_phone_title.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/check_phone_title.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/checkphone_resetpwd_title.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/checkphone_resetpwd_title.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/close_btn_normal.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/close_btn_normal.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/close_btn_press.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/close_btn_press.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/del.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/del.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/dialog_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/dialog_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/dot.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/dot.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/dr_btn_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/dr_btn_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/dr_btn_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/dr_btn_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/drop_down.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/drop_down.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/dropdown_btn_normal.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/dropdown_btn_normal.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/dropdown_btn_normal_.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/dropdown_btn_normal_.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/dropdown_btn_press.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/dropdown_btn_press.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/dropdown_btn_press_.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/dropdown_btn_press_.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/find_pwd_title.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/find_pwd_title.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/guardianship_btn_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/guardianship_btn_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/guardianship_btn_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/guardianship_btn_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/box_off.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/box_off.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/box_on.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/box_on.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/dr_btn_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/dr_btn_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/dr_btn_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/dr_btn_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/input_box_.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/input_box_.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/known_btn_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/known_btn_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/known_btn_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/known_btn_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/post_input_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/post_input_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/qihoo_inficon.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon-mdpi/qihoo_inficon.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/account_setting_name_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/account_setting_name_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/arrow_down.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/arrow_down.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/arrow_up.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/arrow_up.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_abc.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_abc.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_bob.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_bob.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_boc.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_boc.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_bos.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_bos.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_ccb.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_ccb.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_ceb.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_ceb.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_cib.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_cib.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_cmb.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_cmb.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_cmbc.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_cmbc.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_default.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_default.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_ecitic.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_ecitic.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_gdb.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_gdb.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_gzcb.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_gzcb.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_hxb.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_hxb.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_icbc.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_icbc.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_pingan.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_pingan.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_psbc.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_psbc.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_sdb.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_sdb.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_spdb.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_icon_spdb.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_name_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bank_name_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bg_pao_my.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bg_pao_my.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bg_pao_my_h.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bg_pao_my_h.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bg_pao_you.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bg_pao_you.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bg_pao_you_h.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bg_pao_you_h.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bind_phone.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bind_phone.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/box_off.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/box_off.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/box_on.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/box_on.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/btn_back_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/btn_back_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/btn_back_pressed.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/btn_back_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/btn_post_try_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/btn_post_try_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/btn_post_try_pressed.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/btn_post_try_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/btn_post_view_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/btn_post_view_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/btn_post_view_pressed.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/btn_post_view_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bubble_bg_h.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bubble_bg_h.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bubble_bg_s.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/bubble_bg_s.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_3g_close.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_3g_close.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_3g_open.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_3g_open.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_anzai.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_anzai.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_line.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_line.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_refresh.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_refresh.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_wifi_close.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_wifi_close.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_wifi_open.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/can_not_open_page_wifi_open.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/close_btn_normal.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/close_btn_normal.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/close_btn_press.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/close_btn_press.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/credit_date.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/credit_date.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/credit_verify.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/credit_verify.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/del.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/del.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/dialog_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/dialog_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/dr_btn_disable.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/dr_btn_disable.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/dr_btn_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/dr_btn_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/dr_btn_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/dr_btn_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/drop_down.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/drop_down.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/dropdown_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/dropdown_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/dropdown_pressed.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/dropdown_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/faq_list_item_bg_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/faq_list_item_bg_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/faq_list_item_bg_select.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/faq_list_item_bg_select.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/go_bbs_btn_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/go_bbs_btn_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/go_bbs_btn_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/go_bbs_btn_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/header_icon.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/header_icon.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/icon.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/icon.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/icon_info.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/icon_info.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/input_bottom_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/input_bottom_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/input_box_.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/input_box_.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/input_img_normal.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/input_img_normal.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/input_img_pressed.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/input_img_pressed.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/jian.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/jian.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/known_btn_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/known_btn_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/known_btn_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/known_btn_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/left_s_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/left_s_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/line.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/line.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/list_bg_H.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/list_bg_H.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/list_bg_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/list_bg_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/money_line.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/money_line.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_credit_selected_tag.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_credit_selected_tag.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_credit_unselected_tag.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_credit_unselected_tag.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_card_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_card_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_close_d.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_close_d.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_close_p.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_close_p.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_failure.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_failure.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_input_clean.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_input_clean.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_input_clean_pressed.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_input_clean_pressed.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_ok.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_ok.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_other_pay_d.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_other_pay_d.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_other_pay_p.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_other_pay_p.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_tiket_left.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_tiket_left.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_tiket_middle.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_tiket_middle.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_tiket_right.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_tiket_right.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_translating.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_float_translating.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_quick_icon.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_quick_icon.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_record_tab_selected.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_record_tab_selected.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_btn.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_btn.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_guard.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_guard.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_money.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_money.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_page.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_page.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_page_now.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/pay_user_guide_page_now.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/paybtn_default.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/paybtn_default.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/paybtn_disable.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/paybtn_disable.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/paybtn_pressed.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/paybtn_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/popup_menu_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/popup_menu_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/popup_menu_icon.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/popup_menu_icon.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_alert_fail.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_alert_fail.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_alert_ok.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_alert_ok.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_fail_icon.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_fail_icon.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_image_opt_add.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_image_opt_add.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_image_opt_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_image_opt_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_image_opt_del.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_image_opt_del.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_img_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_img_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_input_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_input_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_no_img_normal.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_no_img_normal.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_ok_icon.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/post_ok_icon.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qib_balance_dot.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qib_balance_dot.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_btn_disabled.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_btn_disabled.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_btn_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_btn_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_btn_pressed.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_btn_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_land_btn_disabled.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_land_btn_disabled.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_land_btn_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_land_btn_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_land_btn_pressed.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qib_refresh_land_btn_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_btn_red_disabled.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_btn_red_disabled.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_btn_red_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_btn_red_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_btn_red_pressed.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_btn_red_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_button_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_button_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_button_orange_disabled.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_button_orange_disabled.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_button_pressed.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_button_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_credit_binder_selected.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_credit_binder_selected.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_credit_bingder_unselected.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_credit_bingder_unselected.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_gray_button_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_gray_button_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_gray_button_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_gray_button_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_inficon.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_inficon.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_info.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_info.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_listitem_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_listitem_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_listitem_bg_pressed_v.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_listitem_bg_pressed_v.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_listitem_bg_v.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_listitem_bg_v.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_loadingmotion.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_loadingmotion.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pay_dialog_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pay_dialog_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pay_success_bindphone_arrow.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pay_success_bindphone_arrow.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pay_success_bindphone_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pay_success_bindphone_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pay_success_bindphone_icon.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pay_success_bindphone_icon.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pay_sucess.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pay_sucess.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_popup_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_popup_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_popup_title.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_popup_title.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pup_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_pup_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_textbox.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_textbox.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_xianpei.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_xianpei.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_zhifu_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/qihoo_zhifu_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/quit_alert_close_btn.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/quit_alert_close_btn.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/quit_game_btn_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/quit_game_btn_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/quit_game_btn_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/quit_game_btn_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/reg_logo.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/reg_logo.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/reg_title_back.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/reg_title_back.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/reg_title_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/reg_title_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/reg_title_btn_back_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/reg_title_btn_back_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/reg_title_btn_back_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/reg_title_btn_back_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/right_s_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/right_s_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/right_s_line.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/right_s_line.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/right_selected_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/right_selected_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/select_money_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/select_money_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/select_money_title.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/select_money_title.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/seperator_h.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/seperator_h.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/seperator_v.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/seperator_v.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_bbs_normal.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_bbs_normal.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_bbs_pressed.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_bbs_pressed.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_bg_left.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_bg_left.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_bg_right.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_bg_right.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_bind_phone_normal.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_bind_phone_normal.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_bind_phone_pressed.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_bind_phone_pressed.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_close_normal.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_close_normal.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_close_pressed.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_close_pressed.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_hide_normal.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_hide_normal.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_hide_pressed.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_hide_pressed.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_icon_normal.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_icon_normal.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_icon_pressed.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_icon_pressed.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_service_normal.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_service_normal.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_service_pressed.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/settings_service_pressed.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/single_choice_checked.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/single_choice_checked.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/single_choice_unchecked.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/single_choice_unchecked.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/suggest_name_list_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/suggest_name_list_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/t_new.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/t_new.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/tab_bg_v.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/tab_bg_v.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/tab_left_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/tab_left_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/tab_left_pressed.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/tab_left_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/tab_right_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/tab_right_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/tab_right_pressed.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/tab_right_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/tab_zhong_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/tab_zhong_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/tab_zhong_pressed.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/tab_zhong_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/tip_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/tip_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/title.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/title.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/title_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/title_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/toast_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/toast_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/vertical_title_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/icon/vertical_title_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/input_box_.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/input_box_.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/known_btn_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/known_btn_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/known_btn_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/known_btn_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/line.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/line.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/load_success.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/load_success.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_logo.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_logo.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_onekey_bg_b.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_onekey_bg_b.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_onekey_bg_t.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_onekey_bg_t.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_onekey_button.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_onekey_button.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_onekey_cellphone.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_onekey_cellphone.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_onekey_icon_right.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_onekey_icon_right.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_onekey_separator.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_onekey_separator.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_onekey_title.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/login_onekey_title.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/no_simcard_title.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/no_simcard_title.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/phone_num_get_failed_title.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/phone_num_get_failed_title.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/phone_used_dlg_title.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/phone_used_dlg_title.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_head.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_head.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_head_pic1.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_head_pic1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_head_pic2.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_head_pic2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_head_pic3.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_head_pic3.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_head_pic4.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_head_pic4.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_head_pic_default.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_head_pic_default.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_left_button_icon.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_left_button_icon.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_left_button_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_left_button_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_left_button_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_left_button_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_pics.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_pics.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_right_button_icon.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_right_button_icon.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_right_button_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_right_button_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_right_button_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_right_button_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_title_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/profile_title_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/qihoo_loadingmotion.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/qihoo_loadingmotion.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/qihoo_logo.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/qihoo_logo.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/qihoo_pay_dialog_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/qihoo_pay_dialog_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/qihoo_pup_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/qihoo_pup_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_360account_title.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_360account_title.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_logo.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_logo.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_success_title.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_success_title.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_tab_bg_off.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_tab_bg_off.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_tab_bg_on_left.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_tab_bg_on_left.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_tab_bg_on_right.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_tab_bg_on_right.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_tip.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_tip.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_title_back.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_title_back.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_title_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_title_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_title_btn_back_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_title_btn_back_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_title_btn_back_normal.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_title_btn_back_normal.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_title_btn_back_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_title_btn_back_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_title_btn_back_press.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reg_title_btn_back_press.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/register_logo.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/register_logo.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reset_pwd_title.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/reset_pwd_title.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/select_o.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/select_o.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/switch_btn_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/switch_btn_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/switch_btn_left.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/switch_btn_left.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/switch_btn_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/switch_btn_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/switch_btn_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/switch_btn_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/tip_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/tip_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/title_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/title_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/toast_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/toast_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/wait_bg.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/wait_bg.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/zc_btn_normal.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/zc_btn_normal.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/zc_btn_press.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/res/zc_btn_press.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/upomp_bypay_config.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForAssets/upomp_bypay_config.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForManifest.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/anim/zsht_loading.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/anim/zsht_loading.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bank_list_icon1.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bank_list_icon1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bank_list_icon2.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bank_list_icon2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bank_list_icon3.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bank_list_icon3.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bank_list_title1.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bank_list_title1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bank_list_title2.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bank_list_title2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bottom.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bottom.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bottom_about.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bottom_about.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bottom_line.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_bottom_line.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_change.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_change.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_change_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_change_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_enter2_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_enter2_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_enter2_bg_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_enter2_bg_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_enter_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_enter_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_enter_bg_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_enter_bg_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_esc2_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_esc2_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_esc2_bg_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_esc2_bg_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_esc_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_esc_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_esc_bg_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_btn_esc_bg_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_btn1.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_btn1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_btn2.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_btn2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_btn3.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_btn3.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_icon1.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_icon1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_on_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_on_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_on_icon.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_on_icon.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_select.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_select.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_select1.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_select1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_select2.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_select2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_select_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_card_select_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_cvn2.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_cvn2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_icon.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_icon.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_icon_card.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_icon_card.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_icon_jiantou.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_icon_jiantou.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_icon_pw.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_icon_pw.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_index_bot_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_index_bot_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bot1.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bot1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bot2.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bot2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bot3.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bot3.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bot4.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_bot4.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn1.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn1_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn1_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn2.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn2_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn2_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn3.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn3.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn3_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn3_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn4.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn4.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn4_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn4_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn5.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn5.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn5_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn5_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn6.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn6.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn6_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_btn6_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon1.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon2.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon3.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon3.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon4.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon4.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon5.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon5.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon6.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon6.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon7.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_icon7.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_left.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_left.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_right.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_right.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_select_1.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_select_1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_select_2.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_select_2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_top1.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_top1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_top2.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_top2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_top3.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_info_top3.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_2.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_bg_on.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_bg_on.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_2.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_2_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_2_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_4.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_4.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_4_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_4_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_hq.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_hq.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_hq_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_btn_hq_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_icon.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_input_icon.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_btn1_default.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_btn1_default.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_btn1_on.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_btn1_on.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_btn_clear_default.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_btn_clear_default.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_btn_clear_on.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_btn_clear_on.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_btn_enter_default.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_btn_enter_default.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_btn_enter_on.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_btn_enter_on.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_fh_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_fh_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_fh_bg_on.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_fh_bg_on.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_input_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_input_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_letter_a1.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_letter_a1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_letter_a2.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_letter_a2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_letter_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_letter_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_letter_bg_on.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_letter_bg_on.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_letter_clear_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_letter_clear_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_letter_clear_bg_on.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_letter_clear_bg_on.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_nav_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_nav_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_number_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_number_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_number_bg_on.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_number_bg_on.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_pw_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_keyboard_pw_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_loading_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_loading_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_loading_bg2.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_loading_bg2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_loading_logo.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_loading_logo.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_loading_tag.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_loading_tag.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_login_open_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_login_open_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_main_line.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_main_line.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_member_btn1.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_member_btn1.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_member_btn1_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_member_btn1_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_member_btn2.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_member_btn2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_member_btn2_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_member_btn2_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_bg2.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_bg2.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_btn.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_btn.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_btn_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_btn_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_icon.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_open_icon.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_psw_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_psw_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_select_card_add.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_select_card_add.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_select_card_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_select_card_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_select_month.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_select_month.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_select_month_on.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_select_month_on.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_select_year.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_select_year.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_select_year_on.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_select_year_on.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_spinner.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_spinner.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_tips_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_tips_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_title_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_title_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_title_btn.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_title_btn.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_title_btn_click.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_title_btn_click.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_toast_bg.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_toast_bg.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_view_xy.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable-hdpi/upomp_bypay_view_xy.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn1.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn1.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn2.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn2.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn3.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn3.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn4.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn4.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn5.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn5.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn6.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn6.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_card.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_card.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_enter1.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_enter1.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_enter2.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_enter2.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_esc1.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_esc1.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_esc2.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_esc2.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_letter.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_letter.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_member1.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_member1.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_member2.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_member2.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_month.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_month.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_newweb.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_newweb.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_number.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_number.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_set.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_set.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_symbol.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_symbol.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_title_esc.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_title_esc.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_year.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_btn_year.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_checkbox.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_checkbox.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_input_btn2.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_input_btn2.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_input_btn4.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_input_btn4.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_keyboard_btn_clear.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_keyboard_btn_clear.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_keyboard_btn_enter.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_keyboard_btn_enter.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_keyboard_btn_l_clear.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_keyboard_btn_l_clear.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_open_btn_enter.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_open_btn_enter.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_progress.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_progress.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_progress_init.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/upomp_bypay_progress_init.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_authcode_style.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_authcode_style.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_back.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_back.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_back_pressed.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_back_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_back_style.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_back_style.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_button.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_button.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_button_pressed.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_button_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_button_style.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_button_style.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_get_authcode_button.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_get_authcode_button.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_get_authcode_button_enable.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_get_authcode_button_enable.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_get_authcode_button_pressed.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_get_authcode_button_pressed.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_input.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_input.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_input_focused.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_input_focused.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_input_style.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_input_style.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_keyboard_background.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_keyboard_background.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_keyboard_button.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_keyboard_button.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_keyboard_title.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_keyboard_title.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_line.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_line.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_01.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_01.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_02.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_02.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_03.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_03.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_04.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_04.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_05.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_05.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_06.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_06.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_07.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_07.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_logo.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_loading_logo.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_order_message.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_order_message.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_pp_logo.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_pp_logo.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_success.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_success.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_title.9.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_title.9.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_title_image.png b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/drawable/zsht_title_image.png old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_about.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_about.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_about_btn.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_about_btn.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_activity_dialog.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_activity_dialog.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_auth_bind_card.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_auth_bind_card.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_bindcard_credit.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_bindcard_credit.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_bindcard_debit.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_bindcard_debit.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_bindcard_pan.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_bindcard_pan.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_bindcard_result.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_bindcard_result.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_cardlist_content.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_cardlist_content.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_get_pass.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_get_pass.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_image_cvn2.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_image_cvn2.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_keyboard_dialog.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_keyboard_dialog.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_keyboard_letter.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_keyboard_letter.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_keyboard_num.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_keyboard_num.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_keyboard_symbol.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_keyboard_symbol.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_onuser_cardmanage.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_onuser_cardmanage.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_onuser_change_psw.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_onuser_change_psw.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_onuser_change_tel.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_onuser_change_tel.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_onuser_tel.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_onuser_tel.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_onuser_usermanage.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_onuser_usermanage.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_pay_main.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_pay_main.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_pay_result.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_pay_result.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_pay_result_lose.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_pay_result_lose.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_register.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_register.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_register2.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_register2.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_register_result.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_register_result.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_splash.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_splash.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_support_card.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_support_card.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_support_card_list.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_support_card_list.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_user_credit.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_user_credit.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_user_debit.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_user_debit.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_userprotocal.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/upomp_bypay_userprotocal.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/zsht_bankcard_agreement.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/zsht_bankcard_agreement.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/zsht_bankcard_pay.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/zsht_bankcard_pay.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/zsht_griditems.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/zsht_griditems.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/zsht_loading_process_dialog_anim.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/zsht_loading_process_dialog_anim.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/zsht_success_page.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/zsht_success_page.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/zsht_user_message.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/layout/zsht_user_message.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/raw/upomp_bypay_click.ogg b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/raw/upomp_bypay_click.ogg old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/values/upomp_strings.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/values/upomp_strings.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/values/upomp_styles.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/values/upomp_styles.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/values/zsht_strings.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/values/zsht_strings.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/ForRes/values/zsht_styles.xml b/cocos2d/plugin/plugins/qh360/proj.android/ForRes/values/zsht_styles.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/build.xml b/cocos2d/plugin/plugins/qh360/proj.android/build.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/project.properties b/cocos2d/plugin/plugins/qh360/proj.android/project.properties old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/sdk/360SDK.jar b/cocos2d/plugin/plugins/qh360/proj.android/sdk/360SDK.jar old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/sdk/annotations.jar b/cocos2d/plugin/plugins/qh360/proj.android/sdk/annotations.jar old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/sdk/upomp_bypay_lib.jar b/cocos2d/plugin/plugins/qh360/proj.android/sdk/upomp_bypay_lib.jar old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/sdk/zsht_app_360game.jar b/cocos2d/plugin/plugins/qh360/proj.android/sdk/zsht_app_360game.jar old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/src/org/cocos2dx/plugin/IAPOnlineQH360.java b/cocos2d/plugin/plugins/qh360/proj.android/src/org/cocos2dx/plugin/IAPOnlineQH360.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/src/org/cocos2dx/plugin/QH360Wrapper.java b/cocos2d/plugin/plugins/qh360/proj.android/src/org/cocos2dx/plugin/QH360Wrapper.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/qh360/proj.android/src/org/cocos2dx/plugin/UserQH360.java b/cocos2d/plugin/plugins/qh360/proj.android/src/org/cocos2dx/plugin/UserQH360.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/twitter/proj.android/src/org/cocos2dx/plugin/Consts.java b/cocos2d/plugin/plugins/twitter/proj.android/src/org/cocos2dx/plugin/Consts.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/twitter/proj.ios/PluginTwitter-Prefix.pch b/cocos2d/plugin/plugins/twitter/proj.ios/PluginTwitter-Prefix.pch old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/twitter/proj.ios/PluginTwitter.xcodeproj/project.pbxproj b/cocos2d/plugin/plugins/twitter/proj.ios/PluginTwitter.xcodeproj/project.pbxproj old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/twitter/proj.ios/ShareTwitter.h b/cocos2d/plugin/plugins/twitter/proj.ios/ShareTwitter.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/twitter/proj.ios/ShareTwitter.m b/cocos2d/plugin/plugins/twitter/proj.ios/ShareTwitter.m old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/uc/proj.android/.classpath b/cocos2d/plugin/plugins/uc/proj.android/.classpath old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/uc/proj.android/.project b/cocos2d/plugin/plugins/uc/proj.android/.project old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/uc/proj.android/AndroidManifest.xml b/cocos2d/plugin/plugins/uc/proj.android/AndroidManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/uc/proj.android/ForManifest.xml b/cocos2d/plugin/plugins/uc/proj.android/ForManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/uc/proj.android/build.xml b/cocos2d/plugin/plugins/uc/proj.android/build.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/uc/proj.android/project.properties b/cocos2d/plugin/plugins/uc/proj.android/project.properties old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/uc/proj.android/sdk/UCGameSDK.jar b/cocos2d/plugin/plugins/uc/proj.android/sdk/UCGameSDK.jar old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/uc/proj.android/sdk/alipay_plugin.jar b/cocos2d/plugin/plugins/uc/proj.android/sdk/alipay_plugin.jar old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/uc/proj.android/src/org/cocos2dx/plugin/IAPOnlineUC.java b/cocos2d/plugin/plugins/uc/proj.android/src/org/cocos2dx/plugin/IAPOnlineUC.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/uc/proj.android/src/org/cocos2dx/plugin/UCWrapper.java b/cocos2d/plugin/plugins/uc/proj.android/src/org/cocos2dx/plugin/UCWrapper.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/uc/proj.android/src/org/cocos2dx/plugin/UserUC.java b/cocos2d/plugin/plugins/uc/proj.android/src/org/cocos2dx/plugin/UserUC.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/umeng/proj.android/.classpath b/cocos2d/plugin/plugins/umeng/proj.android/.classpath old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/umeng/proj.android/.project b/cocos2d/plugin/plugins/umeng/proj.android/.project old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/umeng/proj.android/AndroidManifest.xml b/cocos2d/plugin/plugins/umeng/proj.android/AndroidManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/umeng/proj.android/ForManifest.xml b/cocos2d/plugin/plugins/umeng/proj.android/ForManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/umeng/proj.android/build.xml b/cocos2d/plugin/plugins/umeng/proj.android/build.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/umeng/proj.android/project.properties b/cocos2d/plugin/plugins/umeng/proj.android/project.properties old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/umeng/proj.android/sdk/umeng_sdk.jar b/cocos2d/plugin/plugins/umeng/proj.android/sdk/umeng_sdk.jar old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/umeng/proj.android/src/org/cocos2dx/plugin/AnalyticsUmeng.java b/cocos2d/plugin/plugins/umeng/proj.android/src/org/cocos2dx/plugin/AnalyticsUmeng.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/umeng/proj.ios/AnalyticsUmeng.h b/cocos2d/plugin/plugins/umeng/proj.ios/AnalyticsUmeng.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/umeng/proj.ios/AnalyticsUmeng.m b/cocos2d/plugin/plugins/umeng/proj.ios/AnalyticsUmeng.m old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/umeng/proj.ios/MobClick.h b/cocos2d/plugin/plugins/umeng/proj.ios/MobClick.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/umeng/proj.ios/PluginUmeng-Prefix.pch b/cocos2d/plugin/plugins/umeng/proj.ios/PluginUmeng-Prefix.pch old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/umeng/proj.ios/PluginUmeng.xcodeproj/project.pbxproj b/cocos2d/plugin/plugins/umeng/proj.ios/PluginUmeng.xcodeproj/project.pbxproj old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/umeng/proj.ios/libMobClickLibrary.a b/cocos2d/plugin/plugins/umeng/proj.ios/libMobClickLibrary.a old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/weibo/proj.ios/PluginWeibo-Prefix.pch b/cocos2d/plugin/plugins/weibo/proj.ios/PluginWeibo-Prefix.pch old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/weibo/proj.ios/PluginWeibo.xcodeproj/project.pbxproj b/cocos2d/plugin/plugins/weibo/proj.ios/PluginWeibo.xcodeproj/project.pbxproj old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/weibo/proj.ios/ShareWeibo.h b/cocos2d/plugin/plugins/weibo/proj.ios/ShareWeibo.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/plugins/weibo/proj.ios/ShareWeibo.m b/cocos2d/plugin/plugins/weibo/proj.ios/ShareWeibo.m old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/PluginManager.cpp b/cocos2d/plugin/protocols/PluginManager.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/PluginParam.cpp b/cocos2d/plugin/protocols/PluginParam.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/include/PluginFactory.h b/cocos2d/plugin/protocols/include/PluginFactory.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/include/PluginManager.h b/cocos2d/plugin/protocols/include/PluginManager.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/include/PluginParam.h b/cocos2d/plugin/protocols/include/PluginParam.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/include/PluginProtocol.h b/cocos2d/plugin/protocols/include/PluginProtocol.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/include/ProtocolAds.h b/cocos2d/plugin/protocols/include/ProtocolAds.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/include/ProtocolAnalytics.h b/cocos2d/plugin/protocols/include/ProtocolAnalytics.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/include/ProtocolIAP.h b/cocos2d/plugin/protocols/include/ProtocolIAP.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/include/ProtocolShare.h b/cocos2d/plugin/protocols/include/ProtocolShare.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/include/ProtocolSocial.h b/cocos2d/plugin/protocols/include/ProtocolSocial.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/include/ProtocolUser.h b/cocos2d/plugin/protocols/include/ProtocolUser.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/android/PluginFactory.cpp b/cocos2d/plugin/protocols/platform/android/PluginFactory.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/android/PluginJavaData.h b/cocos2d/plugin/protocols/platform/android/PluginJavaData.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/android/PluginJniHelper.cpp b/cocos2d/plugin/protocols/platform/android/PluginJniHelper.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/android/PluginJniHelper.h b/cocos2d/plugin/protocols/platform/android/PluginJniHelper.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/android/PluginJniMacros.h b/cocos2d/plugin/protocols/platform/android/PluginJniMacros.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/android/PluginProtocol.cpp b/cocos2d/plugin/protocols/platform/android/PluginProtocol.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/android/PluginUtils.cpp b/cocos2d/plugin/protocols/platform/android/PluginUtils.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/android/PluginUtils.h b/cocos2d/plugin/protocols/platform/android/PluginUtils.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/android/ProtocolAds.cpp b/cocos2d/plugin/protocols/platform/android/ProtocolAds.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/android/ProtocolAnalytics.cpp b/cocos2d/plugin/protocols/platform/android/ProtocolAnalytics.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/android/ProtocolIAP.cpp b/cocos2d/plugin/protocols/platform/android/ProtocolIAP.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/android/ProtocolShare.cpp b/cocos2d/plugin/protocols/platform/android/ProtocolShare.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/android/ProtocolSocial.cpp b/cocos2d/plugin/protocols/platform/android/ProtocolSocial.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/android/ProtocolUser.cpp b/cocos2d/plugin/protocols/platform/android/ProtocolUser.cpp old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/AdsWrapper.h b/cocos2d/plugin/protocols/platform/ios/AdsWrapper.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/AdsWrapper.mm b/cocos2d/plugin/protocols/platform/ios/AdsWrapper.mm old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/InterfaceAds.h b/cocos2d/plugin/protocols/platform/ios/InterfaceAds.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/InterfaceAnalytics.h b/cocos2d/plugin/protocols/platform/ios/InterfaceAnalytics.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/InterfaceIAP.h b/cocos2d/plugin/protocols/platform/ios/InterfaceIAP.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/InterfaceShare.h b/cocos2d/plugin/protocols/platform/ios/InterfaceShare.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/InterfaceSocial.h b/cocos2d/plugin/protocols/platform/ios/InterfaceSocial.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/InterfaceUser.h b/cocos2d/plugin/protocols/platform/ios/InterfaceUser.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/PluginFactory.mm b/cocos2d/plugin/protocols/platform/ios/PluginFactory.mm old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/PluginOCMacros.h b/cocos2d/plugin/protocols/platform/ios/PluginOCMacros.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/PluginProtocol.mm b/cocos2d/plugin/protocols/platform/ios/PluginProtocol.mm old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/PluginUtilsIOS.h b/cocos2d/plugin/protocols/platform/ios/PluginUtilsIOS.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/PluginUtilsIOS.mm b/cocos2d/plugin/protocols/platform/ios/PluginUtilsIOS.mm old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/ProtocolAds.mm b/cocos2d/plugin/protocols/platform/ios/ProtocolAds.mm old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/ProtocolAnalytics.mm b/cocos2d/plugin/protocols/platform/ios/ProtocolAnalytics.mm old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/ProtocolIAP.mm b/cocos2d/plugin/protocols/platform/ios/ProtocolIAP.mm old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/ProtocolShare.mm b/cocos2d/plugin/protocols/platform/ios/ProtocolShare.mm old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/ProtocolSocial.mm b/cocos2d/plugin/protocols/platform/ios/ProtocolSocial.mm old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/ProtocolUser.mm b/cocos2d/plugin/protocols/platform/ios/ProtocolUser.mm old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/ShareWrapper.h b/cocos2d/plugin/protocols/platform/ios/ShareWrapper.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/ShareWrapper.mm b/cocos2d/plugin/protocols/platform/ios/ShareWrapper.mm old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/SocialWrapper.h b/cocos2d/plugin/protocols/platform/ios/SocialWrapper.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/SocialWrapper.mm b/cocos2d/plugin/protocols/platform/ios/SocialWrapper.mm old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/UserWrapper.h b/cocos2d/plugin/protocols/platform/ios/UserWrapper.h old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/platform/ios/UserWrapper.mm b/cocos2d/plugin/protocols/platform/ios/UserWrapper.mm old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/proj.android/.classpath b/cocos2d/plugin/protocols/proj.android/.classpath old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/proj.android/.project b/cocos2d/plugin/protocols/proj.android/.project old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/proj.android/AndroidManifest.xml b/cocos2d/plugin/protocols/proj.android/AndroidManifest.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/proj.android/build.xml b/cocos2d/plugin/protocols/proj.android/build.xml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/proj.android/jni/Application.mk b/cocos2d/plugin/protocols/proj.android/jni/Application.mk old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/proj.android/project.properties b/cocos2d/plugin/protocols/proj.android/project.properties old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/proj.android/src/org/cocos2dx/plugin/AdsWrapper.java b/cocos2d/plugin/protocols/proj.android/src/org/cocos2dx/plugin/AdsWrapper.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/proj.android/src/org/cocos2dx/plugin/IAPWrapper.java b/cocos2d/plugin/protocols/proj.android/src/org/cocos2dx/plugin/IAPWrapper.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/proj.android/src/org/cocos2dx/plugin/InterfaceAds.java b/cocos2d/plugin/protocols/proj.android/src/org/cocos2dx/plugin/InterfaceAds.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/proj.android/src/org/cocos2dx/plugin/InterfaceAnalytics.java b/cocos2d/plugin/protocols/proj.android/src/org/cocos2dx/plugin/InterfaceAnalytics.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/proj.android/src/org/cocos2dx/plugin/InterfaceIAP.java b/cocos2d/plugin/protocols/proj.android/src/org/cocos2dx/plugin/InterfaceIAP.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/proj.android/src/org/cocos2dx/plugin/InterfaceUser.java b/cocos2d/plugin/protocols/proj.android/src/org/cocos2dx/plugin/InterfaceUser.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/proj.android/src/org/cocos2dx/plugin/PluginWrapper.java b/cocos2d/plugin/protocols/proj.android/src/org/cocos2dx/plugin/PluginWrapper.java old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/proj.ios/PluginProtocol-Prefix.pch b/cocos2d/plugin/protocols/proj.ios/PluginProtocol-Prefix.pch old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/protocols/proj.ios/PluginProtocol.xcodeproj/project.pbxproj b/cocos2d/plugin/protocols/proj.ios/PluginProtocol.xcodeproj/project.pbxproj old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/tools/pluginx-bindings-generator/conversions.yaml b/cocos2d/plugin/tools/pluginx-bindings-generator/conversions.yaml old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/tools/pluginx-bindings-generator/tojs/cocos2dx_pluginx.ini b/cocos2d/plugin/tools/pluginx-bindings-generator/tojs/cocos2dx_pluginx.ini old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/tools/toolsForGame/main.py b/cocos2d/plugin/tools/toolsForGame/main.py old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/tools/toolsForGame/modifyClassPath.py b/cocos2d/plugin/tools/toolsForGame/modifyClassPath.py old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/tools/toolsForGame/modifyManifest.py b/cocos2d/plugin/tools/toolsForGame/modifyManifest.py old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/tools/toolsForGame/modifyProject.py b/cocos2d/plugin/tools/toolsForGame/modifyProject.py old mode 100644 new mode 100755 diff --git a/cocos2d/plugin/tools/toolsForGame/steps.py b/cocos2d/plugin/tools/toolsForGame/steps.py old mode 100644 new mode 100755 diff --git a/proj.android/.classpath b/proj.android/.classpath old mode 100644 new mode 100755 diff --git a/proj.android/.cproject b/proj.android/.cproject old mode 100644 new mode 100755 diff --git a/proj.android/.project b/proj.android/.project old mode 100644 new mode 100755 diff --git a/proj.android/.settings/org.eclipse.cdt.codan.core.prefs b/proj.android/.settings/org.eclipse.cdt.codan.core.prefs old mode 100644 new mode 100755 diff --git a/proj.android/.settings/org.eclipse.cdt.core.prefs b/proj.android/.settings/org.eclipse.cdt.core.prefs old mode 100644 new mode 100755 diff --git a/proj.android/.settings/org.eclipse.ltk.core.refactoring.prefs b/proj.android/.settings/org.eclipse.ltk.core.refactoring.prefs old mode 100644 new mode 100755 diff --git a/proj.android/AndroidManifest.xml b/proj.android/AndroidManifest.xml old mode 100644 new mode 100755 diff --git a/proj.android/README.md b/proj.android/README.md old mode 100644 new mode 100755 diff --git a/proj.android/ant.properties b/proj.android/ant.properties old mode 100644 new mode 100755 diff --git a/proj.android/build-cfg.json b/proj.android/build-cfg.json old mode 100644 new mode 100755 diff --git a/proj.android/build.xml b/proj.android/build.xml old mode 100644 new mode 100755 diff --git a/proj.android/jni/Android.mk b/proj.android/jni/Android.mk old mode 100644 new mode 100755 diff --git a/proj.android/jni/Application.mk b/proj.android/jni/Application.mk old mode 100644 new mode 100755 diff --git a/proj.android/jni/hellocpp/main.cpp b/proj.android/jni/hellocpp/main.cpp old mode 100644 new mode 100755 diff --git a/proj.android/proguard-project.txt b/proj.android/proguard-project.txt old mode 100644 new mode 100755 diff --git a/proj.android/project.properties b/proj.android/project.properties old mode 100644 new mode 100755 diff --git a/proj.android/res/drawable-hdpi/icon.png b/proj.android/res/drawable-hdpi/icon.png old mode 100644 new mode 100755 diff --git a/proj.android/res/drawable-ldpi/icon.png b/proj.android/res/drawable-ldpi/icon.png old mode 100644 new mode 100755 diff --git a/proj.android/res/drawable-mdpi/icon.png b/proj.android/res/drawable-mdpi/icon.png old mode 100644 new mode 100755 diff --git a/proj.android/res/values/strings.xml b/proj.android/res/values/strings.xml old mode 100644 new mode 100755 diff --git a/proj.android/src/org/cocos2dx/cpp/AppActivity.java b/proj.android/src/org/cocos2dx/cpp/AppActivity.java old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ddgame.xcodeproj/project.pbxproj b/proj.ios_mac/VarietyPig.xcodeproj/project.pbxproj old mode 100644 new mode 100755 similarity index 81% rename from proj.ios_mac/ddgame.xcodeproj/project.pbxproj rename to proj.ios_mac/VarietyPig.xcodeproj/project.pbxproj index 37eab2d..4b813a2 --- a/proj.ios_mac/ddgame.xcodeproj/project.pbxproj +++ b/proj.ios_mac/VarietyPig.xcodeproj/project.pbxproj @@ -7,6 +7,20 @@ objects = { /* Begin PBXBuildFile section */ + 0050272019E77FEB00FCA1F6 /* Seting.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0050271E19E77FEB00FCA1F6 /* Seting.cpp */; }; + 00A6446619E6906E0043E915 /* basePig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00A6446419E6906E0043E915 /* basePig.cpp */; }; + 00B5327119E516F700E22EC8 /* PigLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00B5326F19E516F700E22EC8 /* PigLayer.cpp */; }; + 00B5327619E5179E00E22EC8 /* Pig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00B5327419E5179E00E22EC8 /* Pig.cpp */; }; + 00B6861719E7C5EF00A6EDA2 /* RockerDown.png in Resources */ = {isa = PBXBuildFile; fileRef = 00B6861319E7C5EF00A6EDA2 /* RockerDown.png */; }; + 00B6861819E7C5EF00A6EDA2 /* RockerUp.png in Resources */ = {isa = PBXBuildFile; fileRef = 00B6861419E7C5EF00A6EDA2 /* RockerUp.png */; }; + 00B6862319E7D70C00A6EDA2 /* SlideUp.png in Resources */ = {isa = PBXBuildFile; fileRef = 00B6862119E7D70C00A6EDA2 /* SlideUp.png */; }; + 00B6862419E7D70C00A6EDA2 /* SlideDown.png in Resources */ = {isa = PBXBuildFile; fileRef = 00B6862219E7D70C00A6EDA2 /* SlideDown.png */; }; + 00B6862A19E7D89400A6EDA2 /* yg.png in Resources */ = {isa = PBXBuildFile; fileRef = 00B6862819E7D89400A6EDA2 /* yg.png */; }; + 00B6862B19E7D89400A6EDA2 /* ygbg.png in Resources */ = {isa = PBXBuildFile; fileRef = 00B6862919E7D89400A6EDA2 /* ygbg.png */; }; + 00B6862F19E7DABD00A6EDA2 /* JoyStick.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00B6862D19E7DABD00A6EDA2 /* JoyStick.cpp */; }; + 00CEBD3119E4E17E00D8704E /* ice.png in Resources */ = {isa = PBXBuildFile; fileRef = 00CEBD3019E4E17E00D8704E /* ice.png */; }; + 00CEBD3519E4E3E700D8704E /* SceneSwitch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00CEBD3319E4E3E700D8704E /* SceneSwitch.cpp */; }; + 00CEBD3919E4E56D00D8704E /* GameOver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00CEBD3719E4E56D00D8704E /* GameOver.cpp */; }; 1AC6FB1F180E996B004C840B /* libbox2d Mac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AC6FAFF180E9839004C840B /* libbox2d Mac.a */; }; 1AC6FB20180E996B004C840B /* libchipmunk Mac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AC6FAFD180E9839004C840B /* libchipmunk Mac.a */; }; 1AC6FB21180E996B004C840B /* libcocos2dx Mac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AC6FAF9180E9839004C840B /* libcocos2dx Mac.a */; }; @@ -25,9 +39,12 @@ 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; }; 288765A50DF7441C002DB57D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 288765A40DF7441C002DB57D /* CoreGraphics.framework */; }; - 488DA36119E4D00C001D400C /* StartLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 488DA35F19E4D00C001D400C /* StartLayer.cpp */; }; + 4803139F19E78C01004474E0 /* EasyMode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4803139E19E78C01004474E0 /* EasyMode.cpp */; }; 488DA36719E4D092001D400C /* MainScene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 488DA36419E4D05A001D400C /* MainScene.cpp */; }; 48C0BED619E4C1F0002735C9 /* GameLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 48C0BED419E4C1F0002735C9 /* GameLayer.cpp */; }; + 48E8863819E66D7000752E11 /* ControlLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 48E8863719E66D7000752E11 /* ControlLayer.cpp */; }; + 48ED2A6919E7848900D4E54E /* StartScene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 48ED2A6419E7843F00D4E54E /* StartScene.cpp */; }; + 48FED67D19E7B05700E083FE /* HardMode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 48FED67B19E7B05700E083FE /* HardMode.cpp */; }; 503AE0F817EB97AB00D1A890 /* Icon.icns in Resources */ = {isa = PBXBuildFile; fileRef = 503AE0F617EB97AB00D1A890 /* Icon.icns */; }; 503AE10017EB989F00D1A890 /* AppController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 503AE0FB17EB989F00D1A890 /* AppController.mm */; }; 503AE10117EB989F00D1A890 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 503AE0FC17EB989F00D1A890 /* main.m */; }; @@ -218,6 +235,28 @@ /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ + 0050271E19E77FEB00FCA1F6 /* Seting.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Seting.cpp; path = ../Classes/Seting.cpp; sourceTree = ""; }; + 0050271F19E77FEB00FCA1F6 /* Seting.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Seting.h; path = ../Classes/Seting.h; sourceTree = ""; }; + 0050272319E7808F00FCA1F6 /* EasyMode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EasyMode.h; sourceTree = ""; }; + 00A6446419E6906E0043E915 /* basePig.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = basePig.cpp; path = ../Classes/basePig.cpp; sourceTree = ""; }; + 00A6446519E6906E0043E915 /* basePig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = basePig.h; path = ../Classes/basePig.h; sourceTree = ""; }; + 00B5326F19E516F700E22EC8 /* PigLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PigLayer.cpp; path = ../Classes/PigLayer.cpp; sourceTree = ""; }; + 00B5327019E516F700E22EC8 /* PigLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PigLayer.h; path = ../Classes/PigLayer.h; sourceTree = ""; }; + 00B5327419E5179E00E22EC8 /* Pig.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Pig.cpp; path = ../Classes/Pig.cpp; sourceTree = ""; }; + 00B5327519E5179E00E22EC8 /* Pig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Pig.h; path = ../Classes/Pig.h; sourceTree = ""; }; + 00B6861319E7C5EF00A6EDA2 /* RockerDown.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = RockerDown.png; sourceTree = ""; }; + 00B6861419E7C5EF00A6EDA2 /* RockerUp.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = RockerUp.png; sourceTree = ""; }; + 00B6862119E7D70C00A6EDA2 /* SlideUp.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SlideUp.png; sourceTree = ""; }; + 00B6862219E7D70C00A6EDA2 /* SlideDown.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SlideDown.png; sourceTree = ""; }; + 00B6862819E7D89400A6EDA2 /* yg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = yg.png; sourceTree = ""; }; + 00B6862919E7D89400A6EDA2 /* ygbg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ygbg.png; sourceTree = ""; }; + 00B6862D19E7DABD00A6EDA2 /* JoyStick.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JoyStick.cpp; sourceTree = ""; }; + 00B6862E19E7DABD00A6EDA2 /* JoyStick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JoyStick.h; sourceTree = ""; }; + 00CEBD3019E4E17E00D8704E /* ice.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ice.png; sourceTree = ""; }; + 00CEBD3319E4E3E700D8704E /* SceneSwitch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SceneSwitch.cpp; path = ../Classes/SceneSwitch.cpp; sourceTree = ""; }; + 00CEBD3419E4E3E700D8704E /* SceneSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SceneSwitch.h; path = ../Classes/SceneSwitch.h; sourceTree = ""; }; + 00CEBD3719E4E56D00D8704E /* GameOver.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = GameOver.cpp; path = ../Classes/GameOver.cpp; sourceTree = ""; }; + 00CEBD3819E4E56D00D8704E /* GameOver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GameOver.h; path = ../Classes/GameOver.h; sourceTree = ""; }; 1AC6FAE5180E9839004C840B /* cocos2d_libs.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = cocos2d_libs.xcodeproj; path = ../cocos2d/build/cocos2d_libs.xcodeproj; sourceTree = ""; }; 1ACB3243164770DE00914215 /* libcurl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libcurl.a; path = ../../cocos2dx/platform/third_party/ios/libraries/libcurl.a; sourceTree = ""; }; 1AFAF8B316D35DE700DB1158 /* AppDelegate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AppDelegate.cpp; path = ../Classes/AppDelegate.cpp; sourceTree = ""; }; @@ -228,15 +267,20 @@ 1AFAF8BA16D35E4900DB1158 /* CloseSelected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CloseSelected.png; sourceTree = ""; }; 1AFAF8BB16D35E4900DB1158 /* HelloWorld.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = HelloWorld.png; sourceTree = ""; }; 1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; - 1D6058910D05DD3D006BFB54 /* ddgame iOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "ddgame iOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + 1D6058910D05DD3D006BFB54 /* VarietyPig.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = VarietyPig.app; sourceTree = BUILT_PRODUCTS_DIR; }; 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 288765A40DF7441C002DB57D /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; - 488DA35F19E4D00C001D400C /* StartLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = StartLayer.cpp; path = ../Classes/StartLayer.cpp; sourceTree = ""; }; - 488DA36019E4D00C001D400C /* StartLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = StartLayer.h; path = ../Classes/StartLayer.h; sourceTree = ""; }; + 4803139E19E78C01004474E0 /* EasyMode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = EasyMode.cpp; sourceTree = ""; }; 488DA36419E4D05A001D400C /* MainScene.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = MainScene.cpp; path = ../Classes/MainScene.cpp; sourceTree = ""; }; 488DA36519E4D05A001D400C /* MainScene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MainScene.h; path = ../Classes/MainScene.h; sourceTree = ""; }; 48C0BED419E4C1F0002735C9 /* GameLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = GameLayer.cpp; path = ../Classes/GameLayer.cpp; sourceTree = ""; }; 48C0BED519E4C1F0002735C9 /* GameLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GameLayer.h; path = ../Classes/GameLayer.h; sourceTree = ""; }; + 48E8863619E66D7000752E11 /* ControlLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ControlLayer.h; sourceTree = ""; }; + 48E8863719E66D7000752E11 /* ControlLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ControlLayer.cpp; sourceTree = ""; }; + 48ED2A6419E7843F00D4E54E /* StartScene.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = StartScene.cpp; sourceTree = ""; }; + 48ED2A6519E7843F00D4E54E /* StartScene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StartScene.h; sourceTree = ""; }; + 48FED67B19E7B05700E083FE /* HardMode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = HardMode.cpp; path = ../Classes/HardMode.cpp; sourceTree = ""; }; + 48FED67C19E7B05700E083FE /* HardMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HardMode.h; path = ../Classes/HardMode.h; sourceTree = ""; }; 503AE0F617EB97AB00D1A890 /* Icon.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = Icon.icns; sourceTree = ""; }; 503AE0F717EB97AB00D1A890 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 503AE0FA17EB989F00D1A890 /* AppController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppController.h; path = ios/AppController.h; sourceTree = SOURCE_ROOT; }; @@ -249,7 +293,7 @@ 503AE10417EB98FF00D1A890 /* Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Prefix.pch; path = mac/Prefix.pch; sourceTree = ""; }; 503AE11117EB99EE00D1A890 /* libcurl.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libcurl.dylib; path = usr/lib/libcurl.dylib; sourceTree = SDKROOT; }; 503AE11A17EB9C5A00D1A890 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; }; - 5087E76F17EB910900C73F5D /* ddgame Mac.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "ddgame Mac.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + 5087E76F17EB910900C73F5D /* VarietyPig Mac.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "VarietyPig Mac.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 5087E77217EB970100C73F5D /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = ""; }; 5087E77317EB970100C73F5D /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = ""; }; 5087E77417EB970100C73F5D /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = ""; }; @@ -327,6 +371,19 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ + 00CEBD3219E4E38600D8704E /* Scene */ = { + isa = PBXGroup; + children = ( + 00CEBD3319E4E3E700D8704E /* SceneSwitch.cpp */, + 00CEBD3419E4E3E700D8704E /* SceneSwitch.h */, + 0050271E19E77FEB00FCA1F6 /* Seting.cpp */, + 0050271F19E77FEB00FCA1F6 /* Seting.h */, + 48ED2A6419E7843F00D4E54E /* StartScene.cpp */, + 48ED2A6519E7843F00D4E54E /* StartScene.h */, + ); + name = Scene; + sourceTree = ""; + }; 080E96DDFE201D6D7F000001 /* ios */ = { isa = PBXGroup; children = ( @@ -345,10 +402,12 @@ 15AA9C4015B7EC450033D6C2 /* Classes */ = { isa = PBXGroup; children = ( + 48A8F77119E5103C005E37E0 /* sprite */, + 48C0BED119E4C1DD002735C9 /* layer */, + 00CEBD3219E4E38600D8704E /* Scene */, 488DA36819E4D139001D400C /* mode */, 488DA36419E4D05A001D400C /* MainScene.cpp */, 488DA36519E4D05A001D400C /* MainScene.h */, - 48C0BED119E4C1DD002735C9 /* layer */, 1AFAF8B316D35DE700DB1158 /* AppDelegate.cpp */, 1AFAF8B416D35DE700DB1158 /* AppDelegate.h */, 1AFAF8B516D35DE700DB1158 /* HelloWorldScene.cpp */, @@ -361,8 +420,8 @@ 19C28FACFE9D520D11CA2CBB /* Products */ = { isa = PBXGroup; children = ( - 1D6058910D05DD3D006BFB54 /* ddgame iOS.app */, - 5087E76F17EB910900C73F5D /* ddgame Mac.app */, + 1D6058910D05DD3D006BFB54 /* VarietyPig.app */, + 5087E76F17EB910900C73F5D /* VarietyPig Mac.app */, ); name = Products; sourceTree = ""; @@ -423,17 +482,38 @@ 488DA36819E4D139001D400C /* mode */ = { isa = PBXGroup; children = ( + 00B6862D19E7DABD00A6EDA2 /* JoyStick.cpp */, + 00B6862E19E7DABD00A6EDA2 /* JoyStick.h */, + 48FED67B19E7B05700E083FE /* HardMode.cpp */, + 48FED67C19E7B05700E083FE /* HardMode.h */, + 0050272319E7808F00FCA1F6 /* EasyMode.h */, + 4803139E19E78C01004474E0 /* EasyMode.cpp */, ); name = mode; sourceTree = ""; }; + 48A8F77119E5103C005E37E0 /* sprite */ = { + isa = PBXGroup; + children = ( + 00B5327419E5179E00E22EC8 /* Pig.cpp */, + 00B5327519E5179E00E22EC8 /* Pig.h */, + 00A6446419E6906E0043E915 /* basePig.cpp */, + 00A6446519E6906E0043E915 /* basePig.h */, + ); + name = sprite; + sourceTree = ""; + }; 48C0BED119E4C1DD002735C9 /* layer */ = { isa = PBXGroup; children = ( + 48E8863619E66D7000752E11 /* ControlLayer.h */, + 48E8863719E66D7000752E11 /* ControlLayer.cpp */, 48C0BED419E4C1F0002735C9 /* GameLayer.cpp */, 48C0BED519E4C1F0002735C9 /* GameLayer.h */, - 488DA35F19E4D00C001D400C /* StartLayer.cpp */, - 488DA36019E4D00C001D400C /* StartLayer.h */, + 00CEBD3719E4E56D00D8704E /* GameOver.cpp */, + 00CEBD3819E4E56D00D8704E /* GameOver.h */, + 00B5326F19E516F700E22EC8 /* PigLayer.cpp */, + 00B5327019E516F700E22EC8 /* PigLayer.h */, ); name = layer; sourceTree = ""; @@ -486,7 +566,14 @@ 78C7DDAA14EBA5050085D0C2 /* Resources */ = { isa = PBXGroup; children = ( + 00B6862819E7D89400A6EDA2 /* yg.png */, + 00B6862919E7D89400A6EDA2 /* ygbg.png */, + 00B6862119E7D70C00A6EDA2 /* SlideUp.png */, + 00B6862219E7D70C00A6EDA2 /* SlideDown.png */, + 00CEBD3019E4E17E00D8704E /* ice.png */, 1AFAF8B916D35E4900DB1158 /* CloseNormal.png */, + 00B6861319E7C5EF00A6EDA2 /* RockerDown.png */, + 00B6861419E7C5EF00A6EDA2 /* RockerUp.png */, 1AFAF8BA16D35E4900DB1158 /* CloseSelected.png */, 1AFAF8BB16D35E4900DB1158 /* HelloWorld.png */, ); @@ -497,9 +584,9 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - 1D6058900D05DD3D006BFB54 /* ddgame iOS */ = { + 1D6058900D05DD3D006BFB54 /* VarietyPig */ = { isa = PBXNativeTarget; - buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "ddgame iOS" */; + buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "VarietyPig" */; buildPhases = ( 1D60588D0D05DD3D006BFB54 /* Resources */, 1D60588E0D05DD3D006BFB54 /* Sources */, @@ -514,14 +601,14 @@ 1AC6FB2B180E99E1004C840B /* PBXTargetDependency */, 1AC6FB2D180E99E1004C840B /* PBXTargetDependency */, ); - name = "ddgame iOS"; + name = VarietyPig; productName = iphone; - productReference = 1D6058910D05DD3D006BFB54 /* ddgame iOS.app */; + productReference = 1D6058910D05DD3D006BFB54 /* VarietyPig.app */; productType = "com.apple.product-type.application"; }; - 5087E73D17EB910900C73F5D /* ddgame Mac */ = { + 5087E73D17EB910900C73F5D /* VarietyPig Mac */ = { isa = PBXNativeTarget; - buildConfigurationList = 5087E76C17EB910900C73F5D /* Build configuration list for PBXNativeTarget "ddgame Mac" */; + buildConfigurationList = 5087E76C17EB910900C73F5D /* Build configuration list for PBXNativeTarget "VarietyPig Mac" */; buildPhases = ( 5087E74817EB910900C73F5D /* Resources */, 5087E75617EB910900C73F5D /* Sources */, @@ -536,9 +623,9 @@ 1AC6FB1A180E9959004C840B /* PBXTargetDependency */, 1AC6FB1C180E9959004C840B /* PBXTargetDependency */, ); - name = "ddgame Mac"; + name = "VarietyPig Mac"; productName = iphone; - productReference = 5087E76F17EB910900C73F5D /* ddgame Mac.app */; + productReference = 5087E76F17EB910900C73F5D /* VarietyPig Mac.app */; productType = "com.apple.product-type.application"; }; /* End PBXNativeTarget section */ @@ -548,13 +635,8 @@ isa = PBXProject; attributes = { LastUpgradeCheck = 0500; - TargetAttributes = { - 1D6058900D05DD3D006BFB54 = { - DevelopmentTeam = MDDB52YB8L; - }; - }; }; - buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "ddgame" */; + buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "VarietyPig" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 1; @@ -574,8 +656,8 @@ ); projectRoot = ""; targets = ( - 1D6058900D05DD3D006BFB54 /* ddgame iOS */, - 5087E73D17EB910900C73F5D /* ddgame Mac */, + 1D6058900D05DD3D006BFB54 /* VarietyPig */, + 5087E73D17EB910900C73F5D /* VarietyPig Mac */, ); }; /* End PBXProject section */ @@ -658,13 +740,18 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 00B6862B19E7D89400A6EDA2 /* ygbg.png in Resources */, + 00CEBD3119E4E17E00D8704E /* ice.png in Resources */, 5087E78117EB970100C73F5D /* Icon-120.png in Resources */, + 00B6862319E7D70C00A6EDA2 /* SlideUp.png in Resources */, 5087E78617EB970100C73F5D /* Icon-76.png in Resources */, 5087E77F17EB970100C73F5D /* Default@2x.png in Resources */, 50EF629917ECD46A001EB2F8 /* Icon-100.png in Resources */, 1AFAF8BC16D35E4900DB1158 /* CloseNormal.png in Resources */, 5087E78317EB970100C73F5D /* Icon-152.png in Resources */, 5087E77D17EB970100C73F5D /* Default-568h@2x.png in Resources */, + 00B6862419E7D70C00A6EDA2 /* SlideDown.png in Resources */, + 00B6862A19E7D89400A6EDA2 /* yg.png in Resources */, 5087E78517EB970100C73F5D /* Icon-72.png in Resources */, 1AFAF8BD16D35E4900DB1158 /* CloseSelected.png in Resources */, 50EF62A317ECD613001EB2F8 /* Icon-50.png in Resources */, @@ -676,6 +763,8 @@ 50EF629817ECD46A001EB2F8 /* Icon-80.png in Resources */, 5087E78417EB970100C73F5D /* Icon-57.png in Resources */, 5087E77E17EB970100C73F5D /* Default.png in Resources */, + 00B6861719E7C5EF00A6EDA2 /* RockerDown.png in Resources */, + 00B6861819E7C5EF00A6EDA2 /* RockerUp.png in Resources */, 50EF629717ECD46A001EB2F8 /* Icon-58.png in Resources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -698,14 +787,24 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 00B5327119E516F700E22EC8 /* PigLayer.cpp in Sources */, + 4803139F19E78C01004474E0 /* EasyMode.cpp in Sources */, 503AE10017EB989F00D1A890 /* AppController.mm in Sources */, + 00CEBD3919E4E56D00D8704E /* GameOver.cpp in Sources */, 488DA36719E4D092001D400C /* MainScene.cpp in Sources */, + 0050272019E77FEB00FCA1F6 /* Seting.cpp in Sources */, + 00B5327619E5179E00E22EC8 /* Pig.cpp in Sources */, 503AE10217EB989F00D1A890 /* RootViewController.mm in Sources */, + 00B6862F19E7DABD00A6EDA2 /* JoyStick.cpp in Sources */, + 00A6446619E6906E0043E915 /* basePig.cpp in Sources */, 1AFAF8B716D35DE700DB1158 /* AppDelegate.cpp in Sources */, 503AE10117EB989F00D1A890 /* main.m in Sources */, - 488DA36119E4D00C001D400C /* StartLayer.cpp in Sources */, + 48ED2A6919E7848900D4E54E /* StartScene.cpp in Sources */, + 48E8863819E66D7000752E11 /* ControlLayer.cpp in Sources */, 1AFAF8B816D35DE700DB1158 /* HelloWorldScene.cpp in Sources */, 48C0BED619E4C1F0002735C9 /* GameLayer.cpp in Sources */, + 00CEBD3519E4E3E700D8704E /* SceneSwitch.cpp in Sources */, + 48FED67D19E7B05700E083FE /* HardMode.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -779,7 +878,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; + CODE_SIGN_IDENTITY = "iPhone Developer: Rujun Chen (XD3W5ZNKW8)"; COMPRESS_PNG_FILES = NO; GCC_DYNAMIC_NO_PIC = NO; GCC_INLINES_ARE_PRIVATE_EXTERN = NO; @@ -810,7 +909,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; + CODE_SIGN_IDENTITY = "iPhone Developer: Rujun Chen (XD3W5ZNKW8)"; COMPRESS_PNG_FILES = NO; GCC_INLINES_ARE_PRIVATE_EXTERN = NO; GCC_PRECOMPILE_PREFIX_HEADER = YES; @@ -860,6 +959,7 @@ ); INFOPLIST_FILE = mac/Info.plist; LIBRARY_SEARCH_PATHS = ""; + PRODUCT_NAME = "VarietyPig Mac"; USER_HEADER_SEARCH_PATHS = ""; }; name = Debug; @@ -887,6 +987,7 @@ ); INFOPLIST_FILE = mac/Info.plist; LIBRARY_SEARCH_PATHS = ""; + PRODUCT_NAME = "VarietyPig Mac"; USER_HEADER_SEARCH_PATHS = ""; }; name = Release; @@ -953,7 +1054,7 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "ddgame iOS" */ = { + 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "VarietyPig" */ = { isa = XCConfigurationList; buildConfigurations = ( 1D6058940D05DD3E006BFB54 /* Debug */, @@ -962,7 +1063,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; }; - 5087E76C17EB910900C73F5D /* Build configuration list for PBXNativeTarget "ddgame Mac" */ = { + 5087E76C17EB910900C73F5D /* Build configuration list for PBXNativeTarget "VarietyPig Mac" */ = { isa = XCConfigurationList; buildConfigurations = ( 5087E76D17EB910900C73F5D /* Debug */, @@ -971,7 +1072,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; }; - C01FCF4E08A954540054247B /* Build configuration list for PBXProject "ddgame" */ = { + C01FCF4E08A954540054247B /* Build configuration list for PBXProject "VarietyPig" */ = { isa = XCConfigurationList; buildConfigurations = ( C01FCF4F08A954540054247B /* Debug */, diff --git a/proj.ios_mac/ddgame.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/contents.xcworkspacedata old mode 100644 new mode 100755 similarity index 70% rename from proj.ios_mac/ddgame.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/contents.xcworkspacedata index 23da096..0932213 --- a/proj.ios_mac/ddgame.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ b/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -2,6 +2,6 @@ + location = "self:VarietyPig.xcodeproj"> diff --git a/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcshareddata/VarietyPig.xccheckout b/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcshareddata/VarietyPig.xccheckout new file mode 100644 index 0000000..34baf2b --- /dev/null +++ b/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcshareddata/VarietyPig.xccheckout @@ -0,0 +1,41 @@ + + + + + IDESourceControlProjectFavoriteDictionaryKey + + IDESourceControlProjectIdentifier + 8D53E7A8-3788-458E-A80F-356FB85CC2B3 + IDESourceControlProjectName + VarietyPig + IDESourceControlProjectOriginsDictionary + + ED27D8AE197D7863CFA2FCE5002A2126B7DE2CCF + https://github.com/bin8673853/Game.git + + IDESourceControlProjectPath + proj.ios_mac/VarietyPig.xcodeproj + IDESourceControlProjectRelativeInstallPathDictionary + + ED27D8AE197D7863CFA2FCE5002A2126B7DE2CCF + ../../.. + + IDESourceControlProjectURL + https://github.com/bin8673853/Game.git + IDESourceControlProjectVersion + 111 + IDESourceControlProjectWCCIdentifier + ED27D8AE197D7863CFA2FCE5002A2126B7DE2CCF + IDESourceControlProjectWCConfigurations + + + IDESourceControlRepositoryExtensionIdentifierKey + public.vcs.git + IDESourceControlWCCIdentifierKey + ED27D8AE197D7863CFA2FCE5002A2126B7DE2CCF + IDESourceControlWCCName + ddGame + + + + diff --git a/proj.ios_mac/ddgame.xcodeproj/project.xcworkspace/xcshareddata/ddgame.xccheckout b/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcshareddata/ddgame.xccheckout old mode 100644 new mode 100755 similarity index 65% rename from proj.ios_mac/ddgame.xcodeproj/project.xcworkspace/xcshareddata/ddgame.xccheckout rename to proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcshareddata/ddgame.xccheckout index cd14b25..a330b79 --- a/proj.ios_mac/ddgame.xcodeproj/project.xcworkspace/xcshareddata/ddgame.xccheckout +++ b/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcshareddata/ddgame.xccheckout @@ -12,22 +12,34 @@ 19C1163A-7D95-4B32-8C9A-4B8714A675A8 https://github.com/2276225819/Game.git + ED27D8AE197D7863CFA2FCE5002A2126B7DE2CCF + https://github.com/bin8673853/Game.git IDESourceControlProjectPath - proj.ios_mac/ddgame.xcodeproj/project.xcworkspace + proj.ios_mac/ddgame.xcodeproj IDESourceControlProjectRelativeInstallPathDictionary 19C1163A-7D95-4B32-8C9A-4B8714A675A8 + ../../../../Game + ED27D8AE197D7863CFA2FCE5002A2126B7DE2CCF ../../.. IDESourceControlProjectURL - https://github.com/2276225819/Game.git + https://github.com/bin8673853/Game.git IDESourceControlProjectVersion - 110 + 111 IDESourceControlProjectWCCIdentifier - 19C1163A-7D95-4B32-8C9A-4B8714A675A8 + ED27D8AE197D7863CFA2FCE5002A2126B7DE2CCF IDESourceControlProjectWCConfigurations + + IDESourceControlRepositoryExtensionIdentifierKey + public.vcs.git + IDESourceControlWCCIdentifierKey + ED27D8AE197D7863CFA2FCE5002A2126B7DE2CCF + IDESourceControlWCCName + ddGame + IDESourceControlRepositoryExtensionIdentifierKey public.vcs.git diff --git a/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcuserdata/aaa.xcuserdatad/UserInterfaceState.xcuserstate b/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcuserdata/aaa.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100755 index 0000000..c0b0d45 Binary files /dev/null and b/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcuserdata/aaa.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcuserdata/aaa.xcuserdatad/WorkspaceSettings.xcsettings b/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcuserdata/aaa.xcuserdatad/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..659c876 --- /dev/null +++ b/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcuserdata/aaa.xcuserdatad/WorkspaceSettings.xcsettings @@ -0,0 +1,10 @@ + + + + + HasAskedToTakeAutomaticSnapshotBeforeSignificantChanges + + SnapshotAutomaticallyBeforeSignificantChanges + + + diff --git a/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcuserdata/mimix.xcuserdatad/UserInterfaceState.xcuserstate b/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcuserdata/mimix.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100755 index 0000000..add4931 Binary files /dev/null and b/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcuserdata/mimix.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcuserdata/mimix.xcuserdatad/WorkspaceSettings.xcsettings b/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcuserdata/mimix.xcuserdatad/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..bfffcfe --- /dev/null +++ b/proj.ios_mac/VarietyPig.xcodeproj/project.xcworkspace/xcuserdata/mimix.xcuserdatad/WorkspaceSettings.xcsettings @@ -0,0 +1,10 @@ + + + + + HasAskedToTakeAutomaticSnapshotBeforeSignificantChanges + + SnapshotAutomaticallyBeforeSignificantChanges + + + diff --git a/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/aaa.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/aaa.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist new file mode 100755 index 0000000..fe2b454 --- /dev/null +++ b/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/aaa.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist @@ -0,0 +1,5 @@ + + + diff --git a/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/ddgame Mac.xcscheme b/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/ddgame Mac.xcscheme new file mode 100755 index 0000000..485c67d --- /dev/null +++ b/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/ddgame Mac.xcscheme @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/ddgame iOS.xcscheme b/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/ddgame iOS.xcscheme new file mode 100755 index 0000000..fbcd60d --- /dev/null +++ b/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/ddgame iOS.xcscheme @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/proj.ios_mac/ddgame.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/xcschememanagement.plist b/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist old mode 100644 new mode 100755 similarity index 100% rename from proj.ios_mac/ddgame.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/xcschememanagement.plist rename to proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist diff --git a/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/mimix.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/mimix.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist new file mode 100755 index 0000000..7f27edc --- /dev/null +++ b/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/mimix.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + diff --git a/proj.ios_mac/ddgame.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/ddgame Mac.xcscheme b/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/ddgame Mac.xcscheme old mode 100644 new mode 100755 similarity index 79% rename from proj.ios_mac/ddgame.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/ddgame Mac.xcscheme rename to proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/ddgame Mac.xcscheme index a3e0ebe..111d1b6 --- a/proj.ios_mac/ddgame.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/ddgame Mac.xcscheme +++ b/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/ddgame Mac.xcscheme @@ -15,9 +15,9 @@ + BuildableName = "VarietyPig Mac.app" + BlueprintName = "VarietyPig Mac" + ReferencedContainer = "container:VarietyPig.xcodeproj"> @@ -33,9 +33,9 @@ + BuildableName = "VarietyPig Mac.app" + BlueprintName = "VarietyPig Mac" + ReferencedContainer = "container:VarietyPig.xcodeproj"> @@ -52,9 +52,9 @@ + BuildableName = "VarietyPig Mac.app" + BlueprintName = "VarietyPig Mac" + ReferencedContainer = "container:VarietyPig.xcodeproj"> @@ -70,9 +70,9 @@ + BuildableName = "VarietyPig Mac.app" + BlueprintName = "VarietyPig Mac" + ReferencedContainer = "container:VarietyPig.xcodeproj"> diff --git a/proj.ios_mac/ddgame.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/ddgame iOS.xcscheme b/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/ddgame iOS.xcscheme old mode 100644 new mode 100755 similarity index 80% rename from proj.ios_mac/ddgame.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/ddgame iOS.xcscheme rename to proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/ddgame iOS.xcscheme index 7c4b1f0..0515ab4 --- a/proj.ios_mac/ddgame.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/ddgame iOS.xcscheme +++ b/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/ddgame iOS.xcscheme @@ -15,9 +15,9 @@ + BuildableName = "VarietyPig.app" + BlueprintName = "VarietyPig" + ReferencedContainer = "container:VarietyPig.xcodeproj"> @@ -33,9 +33,9 @@ + BuildableName = "VarietyPig.app" + BlueprintName = "VarietyPig" + ReferencedContainer = "container:VarietyPig.xcodeproj"> @@ -52,9 +52,9 @@ + BuildableName = "VarietyPig.app" + BlueprintName = "VarietyPig" + ReferencedContainer = "container:VarietyPig.xcodeproj"> @@ -70,9 +70,9 @@ + BuildableName = "VarietyPig.app" + BlueprintName = "VarietyPig" + ReferencedContainer = "container:VarietyPig.xcodeproj"> diff --git a/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/xcschememanagement.plist b/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100755 index 0000000..119dbce --- /dev/null +++ b/proj.ios_mac/VarietyPig.xcodeproj/xcuserdata/mimix.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,32 @@ + + + + + SchemeUserState + + ddgame Mac.xcscheme + + orderHint + 1 + + ddgame iOS.xcscheme + + orderHint + 0 + + + SuppressBuildableAutocreation + + 1D6058900D05DD3D006BFB54 + + primary + + + 5087E73D17EB910900C73F5D + + primary + + + + + diff --git a/proj.ios_mac/ddgame.xcodeproj/project.xcworkspace/xcuserdata/mimix.xcuserdatad/UserInterfaceState.xcuserstate b/proj.ios_mac/ddgame.xcodeproj/project.xcworkspace/xcuserdata/mimix.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index 373f5df..0000000 Binary files a/proj.ios_mac/ddgame.xcodeproj/project.xcworkspace/xcuserdata/mimix.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/proj.ios_mac/ios/AppController.h b/proj.ios_mac/ios/AppController.h old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/AppController.mm b/proj.ios_mac/ios/AppController.mm old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/Default-568h@2x.png b/proj.ios_mac/ios/Default-568h@2x.png old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/Default.png b/proj.ios_mac/ios/Default.png old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/Default@2x.png b/proj.ios_mac/ios/Default@2x.png old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/Icon-100.png b/proj.ios_mac/ios/Icon-100.png old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/Icon-114.png b/proj.ios_mac/ios/Icon-114.png old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/Icon-120.png b/proj.ios_mac/ios/Icon-120.png old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/Icon-144.png b/proj.ios_mac/ios/Icon-144.png old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/Icon-152.png b/proj.ios_mac/ios/Icon-152.png old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/Icon-29.png b/proj.ios_mac/ios/Icon-29.png old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/Icon-40.png b/proj.ios_mac/ios/Icon-40.png old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/Icon-50.png b/proj.ios_mac/ios/Icon-50.png old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/Icon-57.png b/proj.ios_mac/ios/Icon-57.png old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/Icon-58.png b/proj.ios_mac/ios/Icon-58.png old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/Icon-72.png b/proj.ios_mac/ios/Icon-72.png old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/Icon-76.png b/proj.ios_mac/ios/Icon-76.png old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/Icon-80.png b/proj.ios_mac/ios/Icon-80.png old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/Info.plist b/proj.ios_mac/ios/Info.plist old mode 100644 new mode 100755 index aff7e3c..6e99021 --- a/proj.ios_mac/ios/Info.plist +++ b/proj.ios_mac/ios/Info.plist @@ -42,7 +42,7 @@ Icon-144.png CFBundleIdentifier - org.cocos2d-x.${PRODUCT_NAME:rfc1034identifier} + com.yzygame.$(PRODUCT_NAME:rfc1034identifier) CFBundleInfoDictionaryVersion 6.0 CFBundleName @@ -50,7 +50,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - + 1.0 CFBundleSignature ???? CFBundleVersion @@ -63,8 +63,7 @@ UISupportedInterfaceOrientations - UIInterfaceOrientationLandscapeRight - UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationPortrait diff --git a/proj.ios_mac/ios/Prefix.pch b/proj.ios_mac/ios/Prefix.pch old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/RootViewController.h b/proj.ios_mac/ios/RootViewController.h old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/RootViewController.mm b/proj.ios_mac/ios/RootViewController.mm old mode 100644 new mode 100755 diff --git a/proj.ios_mac/ios/main.m b/proj.ios_mac/ios/main.m old mode 100644 new mode 100755 diff --git a/proj.ios_mac/mac/Icon.icns b/proj.ios_mac/mac/Icon.icns old mode 100644 new mode 100755 diff --git a/proj.ios_mac/mac/Info.plist b/proj.ios_mac/mac/Info.plist old mode 100644 new mode 100755 diff --git a/proj.ios_mac/mac/Prefix.pch b/proj.ios_mac/mac/Prefix.pch old mode 100644 new mode 100755 diff --git a/proj.ios_mac/mac/main.cpp b/proj.ios_mac/mac/main.cpp old mode 100644 new mode 100755 diff --git a/proj.linux/main.cpp b/proj.linux/main.cpp old mode 100644 new mode 100755 diff --git a/proj.win32/build-cfg.json b/proj.win32/build-cfg.json old mode 100644 new mode 100755 diff --git a/proj.win32/ddgame.sln b/proj.win32/ddgame.sln old mode 100644 new mode 100755 diff --git a/proj.win32/ddgame.vcxproj b/proj.win32/ddgame.vcxproj old mode 100644 new mode 100755 diff --git a/proj.win32/ddgame.vcxproj.filters b/proj.win32/ddgame.vcxproj.filters old mode 100644 new mode 100755 diff --git a/proj.win32/ddgame.vcxproj.user b/proj.win32/ddgame.vcxproj.user old mode 100644 new mode 100755 diff --git a/proj.win32/game.rc b/proj.win32/game.rc old mode 100644 new mode 100755 diff --git a/proj.win32/main.cpp b/proj.win32/main.cpp old mode 100644 new mode 100755 diff --git a/proj.win32/main.h b/proj.win32/main.h old mode 100644 new mode 100755 diff --git a/proj.win32/res/game.ico b/proj.win32/res/game.ico old mode 100644 new mode 100755 diff --git a/proj.win32/resource.h b/proj.win32/resource.h old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp.sln b/proj.wp8-xaml/HelloCpp.sln old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/App.xaml b/proj.wp8-xaml/HelloCpp/App.xaml old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/App.xaml.cs b/proj.wp8-xaml/HelloCpp/App.xaml.cs old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/Assets/AlignmentGrid.png b/proj.wp8-xaml/HelloCpp/Assets/AlignmentGrid.png old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/Assets/ApplicationIcon.png b/proj.wp8-xaml/HelloCpp/Assets/ApplicationIcon.png old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileLarge.png b/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileLarge.png old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileMedium.png b/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileMedium.png old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileSmall.png b/proj.wp8-xaml/HelloCpp/Assets/Tiles/FlipCycleTileSmall.png old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/Assets/Tiles/IconicTileMediumLarge.png b/proj.wp8-xaml/HelloCpp/Assets/Tiles/IconicTileMediumLarge.png old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/Assets/Tiles/IconicTileSmall.png b/proj.wp8-xaml/HelloCpp/Assets/Tiles/IconicTileSmall.png old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/EditBox.xaml b/proj.wp8-xaml/HelloCpp/EditBox.xaml old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/EditBox.xaml.cs b/proj.wp8-xaml/HelloCpp/EditBox.xaml.cs old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/HelloCpp.csproj b/proj.wp8-xaml/HelloCpp/HelloCpp.csproj old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/LocalizedStrings.cs b/proj.wp8-xaml/HelloCpp/LocalizedStrings.cs old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/MainPage.xaml b/proj.wp8-xaml/HelloCpp/MainPage.xaml old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/MainPage.xaml.cs b/proj.wp8-xaml/HelloCpp/MainPage.xaml.cs old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/Properties/AppManifest.xml b/proj.wp8-xaml/HelloCpp/Properties/AppManifest.xml old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/Properties/AssemblyInfo.cs b/proj.wp8-xaml/HelloCpp/Properties/AssemblyInfo.cs old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/Properties/WMAppManifest.xml b/proj.wp8-xaml/HelloCpp/Properties/WMAppManifest.xml old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/Resources/AppResources.Designer.cs b/proj.wp8-xaml/HelloCpp/Resources/AppResources.Designer.cs old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/Resources/AppResources.resx b/proj.wp8-xaml/HelloCpp/Resources/AppResources.resx old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCpp/SplashScreenImage.jpg b/proj.wp8-xaml/HelloCpp/SplashScreenImage.jpg old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCppComponent/HelloCppComponent.vcxproj b/proj.wp8-xaml/HelloCppComponent/HelloCppComponent.vcxproj old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCppComponent/HelloCppComponent.vcxproj.filters b/proj.wp8-xaml/HelloCppComponent/HelloCppComponent.vcxproj.filters old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCppComponent/pch.cpp b/proj.wp8-xaml/HelloCppComponent/pch.cpp old mode 100644 new mode 100755 diff --git a/proj.wp8-xaml/HelloCppComponent/pch.h b/proj.wp8-xaml/HelloCppComponent/pch.h old mode 100644 new mode 100755