1112同步

master
罗家炜 2025-11-12 13:53:54 +08:00
parent 12311742ac
commit 35b6f46809
33 changed files with 750 additions and 31 deletions

View File

@ -55,7 +55,7 @@ local function __Login(cmd, _data, callBack)
user.phone = account.phone user.phone = account.phone
user.address = account.address user.address = account.address
user.games = FilterGame(data.games) user.games = FilterGame(data.games)
user.havaPsw = account.havaPassword user.havaPsw = data.havaPassword
if Application.platform == RuntimePlatform.WindowsPlayer or Application.platform == RuntimePlatform.WindowsEditor then if Application.platform == RuntimePlatform.WindowsPlayer or Application.platform == RuntimePlatform.WindowsEditor then
--GameApplication.Instance.printLog = true --GameApplication.Instance.printLog = true
else else

View File

@ -91,7 +91,9 @@ function M:InitTime()
return serverDayValues, serverDayItems return serverDayValues, serverDayItems
end end
function M:ShouRanks() function M:ShouRanks(root, groupId)
self._father = root
self.group_id = groupId
self._lastTpe = self._father.familyType.selectedIndex self._lastTpe = self._father.familyType.selectedIndex
self._father.familyType.selectedIndex = 0 self._father.familyType.selectedIndex = 0
self._view.visible = true self._view.visible = true

View File

@ -88,6 +88,8 @@ function FamilyAuditNumber:ClickBtn(isAllow, uid, tag)
else else
end end
fgCtr:FG_GroupMembers12(self._group.id, 0, self._group.total_member_num + 1, 2, 2, function(res)
end)
local group = DataManager.groups:get(self._group.id) local group = DataManager.groups:get(self._group.id)
group.joins = group.joins - 1 group.joins = group.joins - 1
@ -100,6 +102,7 @@ function FamilyAuditNumber:ClickBtn(isAllow, uid, tag)
self:Reflash() self:Reflash()
Broadcast.Send(BroadcastEvent.OnJoinsChange) Broadcast.Send(BroadcastEvent.OnJoinsChange)
Broadcast.Send(BroadcastEvent.OnMemberChange)
--[[ --[[
local view = BaseView.FindView("FamilyMainView") local view = BaseView.FindView("FamilyMainView")

View File

@ -57,7 +57,7 @@ function M:FillData()
self._viewText_groupName.text = Utils.TextOmit(group.name, 6, "...") self._viewText_groupName.text = Utils.TextOmit(group.name, 6, "...")
self._viewText_gameName.text = play.game_name self._viewText_gameName.text = play.game_name
self._viewText_inviteName.text = self.nik self._viewText_inviteName.text = ViewUtil.stringEllipsis(self.nik)
self._viewText_playName.text = Utils.TextOmit(play.name, 6, "...") self._viewText_playName.text = Utils.TextOmit(play.name, 6, "...")
local config = ExtendManager.GetExtendConfig(play.gameId) local config = ExtendManager.GetExtendConfig(play.gameId)

View File

@ -51,8 +51,9 @@ function FamilyJoinAndCreate:init(root)
ViewUtil.CloseModalWait2() ViewUtil.CloseModalWait2()
if res.ReturnCode == 0 then if res.ReturnCode == 0 then
root.familyType.selectedIndex = 1 root.familyType.selectedIndex = 1
-- root:ConnetFamily(1, DataManager.groups.groupList, true) Utils.SaveLocalFile("Family_lastID" .. DataManager.SelfUser.account_id, res.Data.info.id)
root:Reflash() root:Reflash()
-- root:ConnetFamily(1, DataManager.groups.groupList, true)
else else
ViewUtil.ErrorTip(res.ReturnCode, '创建大联盟失败!') ViewUtil.ErrorTip(res.ReturnCode, '创建大联盟失败!')
end end

View File

@ -76,7 +76,7 @@ function PlayEditView:Init()
obj:GetChild('Label_details'):GetChild('title').text = mode:LoadConfigToDetail(playList[index].config, obj:GetChild('Label_details'):GetChild('title').text = mode:LoadConfigToDetail(playList[index].config,
playList[index].hpData) playList[index].hpData)
obj:GetChild('text_playName').emojies = EmojiDitc.EmojiesDitc obj:GetChild('text_playName').emojies = EmojiDitc.EmojiesDitc
obj:GetChild('text_playName').text = Utils.TextOmit(playList[index].name, 6, "...") obj:GetChild('text_playName').text = playList[index].name
obj:GetController('type').selectedIndex = 1 obj:GetController('type').selectedIndex = 1
obj:GetChild('btn_del').onClick:Set(function() obj:GetChild('btn_del').onClick:Set(function()
ViewUtil.ShowTwoChooose("是否要删除该玩法", function() ViewUtil.ShowTwoChooose("是否要删除该玩法", function()

View File

@ -306,6 +306,7 @@ function M:Reflash()
end end
local btn = self.list_family:GetChildAt(chooseIndex - 1) local btn = self.list_family:GetChildAt(chooseIndex - 1)
btn.onClick:Call() btn.onClick:Call()
self._view:GetController('listFamily').selectedIndex = chooseIndex - 1
else else
self:JoinFamily(true) self:JoinFamily(true)
self.btn_chatRoom.visible = false self.btn_chatRoom.visible = false
@ -472,7 +473,7 @@ function M:ShowAllRank()
self._ViewChild_AllRank = FamilAllRank.New(self, self._group.id) self._ViewChild_AllRank = FamilAllRank.New(self, self._group.id)
return return
end end
self._ViewChild_AllRank:ShouRanks() self._ViewChild_AllRank:ShouRanks(self, self._group.id)
end end
function M:OpenAllNumber(group) function M:OpenAllNumber(group)
@ -800,7 +801,7 @@ function M:FillSameRoomInfo(obj, type, playInfo)
obj:GetChild('Label_gameRule').title = gamePlay obj:GetChild('Label_gameRule').title = gamePlay
local roomName = playInfo.name local roomName = playInfo.name
roomName = Utils.TextOmit(roomName, 6, "") roomName = roomName
obj:GetChild('game_type').emojies = EmojiDitc.EmojiesDitc obj:GetChild('game_type').emojies = EmojiDitc.EmojiesDitc
obj:GetChild('game_type').text = string.format(" (%s) %s", playInfo.game_name, roomName) obj:GetChild('game_type').text = string.format(" (%s) %s", playInfo.game_name, roomName)
obj:GetChild('btn_joinGame'):GetController('type').selectedIndex = type obj:GetChild('btn_joinGame'):GetController('type').selectedIndex = type

View File

@ -172,6 +172,7 @@ function M:InitView(url)
local btn_invite = self._view:GetChild("btn_invite") local btn_invite = self._view:GetChild("btn_invite")
btn_invite.onClick:Add(function() btn_invite.onClick:Add(function()
GameApplication.Instance:CopyToClipboard(DataManager.DownLink or "暂无链接")
local _curren_msg = MsgWindow.new(self._root_view, "下载地址已复制,请到浏览器粘贴", MsgWindow.MsgMode.OnlyOk) local _curren_msg = MsgWindow.new(self._root_view, "下载地址已复制,请到浏览器粘贴", MsgWindow.MsgMode.OnlyOk)
_curren_msg:Show() _curren_msg:Show()
end) end)

View File

@ -174,8 +174,8 @@ local function __login_response(self, response)
local roomid = user.room_id local roomid = user.room_id
if (string.len(roomid) > 1) then if (string.len(roomid) > 1) then
ViewUtil.ShowModalWait2(self._root_view, "正在加入房间...")
if user.group_id == 0 then if user.group_id == 0 then
ViewUtil.ShowModalWait2(self._root_view, "正在加入房间...")
__join_room(roomid, response) __join_room(roomid, response)
return return
else else
@ -199,6 +199,7 @@ local function __login_response(self, response)
end end
self._mesList = mesl self._mesList = mesl
DataManager.GameNotice = mesl DataManager.GameNotice = mesl
DataManager.DownLink = data.share_link
end end
end end
end) end)
@ -313,8 +314,9 @@ function M:LoginCallBack(result, data)
end end
--在进入前重连房间,如果有 --在进入前重连房间,如果有
function M:ReconnectRoom(groupId) function M:ReconnectRoom(groupId, times)
local roomId = DataManager.SelfUser.room_id local roomId = DataManager.SelfUser.room_id
local times = times or 0
print("===============================ReconnectRoom", roomId, 1) print("===============================ReconnectRoom", roomId, 1)
if roomId and #roomId > 0 then if roomId and #roomId > 0 then
local roomCtr = ControllerManager.GetController(RoomController) local roomCtr = ControllerManager.GetController(RoomController)
@ -324,17 +326,24 @@ function M:ReconnectRoom(groupId)
false, false,
function(response) function(response)
if (response.ReturnCode == -1) then if (response.ReturnCode == -1) then
ViewUtil.CloseModalWait2()
ViewUtil.ErrorMsg(self._root_view, response.ReturnCode, 'response.ReturnCode == -1') ViewUtil.ErrorMsg(self._root_view, response.ReturnCode, 'response.ReturnCode == -1')
RestartGame() RestartGame()
return return
end end
if response.ReturnCode ~= 0 then if response.ReturnCode ~= 0 then
ViewUtil.ErrorMsg(self._root_view, response.ReturnCode, '进入房间失败') -- if times >= 6 then
FamilyView.lastId = groupId -- ViewUtil.ErrorMsg(self._root_view, response.ReturnCode, '进入房间失败')
ViewManager.ChangeView(ViewManager.View_Family) -- FamilyView.lastId = groupId
-- ViewManager.ChangeView(ViewManager.View_Family)
-- return
-- else
self:ReconnectRoom(groupId, times + 1)
return return
-- end
else else
ViewUtil.CloseModalWait2()
UIPackage.AddPackage("base/lobby/ui/Lobby") UIPackage.AddPackage("base/lobby/ui/Lobby")
FamilyView.lastId = groupId FamilyView.lastId = groupId
DataManager.SelfUser.room_id = "" DataManager.SelfUser.room_id = ""

View File

@ -6,6 +6,7 @@ local SettingView = import('.SettingView')
local PlayerDistanceView = import('.PlayerDistanceView') local PlayerDistanceView = import('.PlayerDistanceView')
local FGAssistView = import('.FGAssistView') local FGAssistView = import('.FGAssistView')
local MissileSender = import(".MissileSender") local MissileSender = import(".MissileSender")
local SharePicture = import('.SharePicture')
local function GetSeat(self, uId) local function GetSeat(self, uId)
for _, player in pairs(self._room.player_list) do for _, player in pairs(self._room.player_list) do
@ -584,7 +585,7 @@ function M:InitView(url, isHideIpAdds)
_room.group_id ~= 0 and "亲友圈," or "", _room.room_config.config.hpData.maxRound) _room.group_id ~= 0 and "亲友圈," or "", _room.room_config.config.hpData.maxRound)
data.description = gamePlay data.description = gamePlay
data.type = 0 data.type = 0
ViewUtil.__share(data) self:ShareAndOneChoose(data)
end) end)
end end
------------------------------------------------------------ ------------------------------------------------------------
@ -1511,6 +1512,13 @@ function M:GetPlayer(playId)
end end
end end
function M:ShareAndOneChoose(data)
local sharePicture = SharePicture.new(function()
ViewUtil.__share(data)
end)
sharePicture:Show()
end
-- 托管时关闭一些提示窗口,如起手胡、吃碰提示、海底,由扩展实现 -- 托管时关闭一些提示窗口,如起手胡、吃碰提示、海底,由扩展实现
function M:closeTipOnTuoguan() function M:closeTipOnTuoguan()
end end

View File

@ -4,6 +4,38 @@ local GroupRoomColorView = import(".GroupRoomColorView")
local GameListView = require "Game/View/Lobby/GameListView" local GameListView = require "Game/View/Lobby/GameListView"
local GroupGameSettingView = {} local GroupGameSettingView = {}
-- UTF-8 正则匹配每一个字符(包括 emoji
local function utf8_chars(str)
local chars = {}
for uchar in str:gmatch("[%z\1-\127\194-\244][\128-\191]*") do
table.insert(chars, uchar)
end
return chars
end
-- 截取前 n 个字符(安全处理 Emoji
local function sub(str, start_char, end_char)
local chars = utf8_chars(str)
local sub = {}
for i = start_char or 1, end_char or #chars do
if chars[i] then
table.insert(sub, chars[i])
else
break
end
end
return table.concat(sub)
end
-- 获取 UTF-8 字符个数
local function len(str)
local count = 0
for _ in str:gmatch("[%z\1-\127\194-\244][\128-\191]*") do
count = count + 1
end
return count
end
local M = GroupGameSettingView local M = GroupGameSettingView
function GroupGameSettingView.new(blur_view, gid, pid, room_config, callback) function GroupGameSettingView.new(blur_view, gid, pid, room_config, callback)
@ -49,6 +81,9 @@ function M:init(url)
self.btn_closeTimesPage = self._view:GetChild("btn_closeTimesPage") self.btn_closeTimesPage = self._view:GetChild("btn_closeTimesPage")
self._view:GetChild("tex_name").emojies = EmojiDitc.EmojiesDitc self._view:GetChild("tex_name").emojies = EmojiDitc.EmojiesDitc
self._view:GetChild("tex_name").onFocusOut:Set(function()
self._view:GetChild("tex_name").text = sub(self._view:GetChild("tex_name").text, 1, 7)
end)
self.cTimesPage = self._view:GetController("cTimesPage") self.cTimesPage = self._view:GetController("cTimesPage")

View File

@ -410,7 +410,7 @@ function ViewUtil.ShowOneInput(data, callback)
end end
function ViewUtil.__share(data) function ViewUtil.__share(data)
local url = "https://ttfenfa.com/index.php/login" local url = DataManager.DownLink or "https://ttfenfa.com/index.php/login"
local json_data = {} local json_data = {}
json_data['title'] = data.title json_data['title'] = data.title
local mediaObject = {} local mediaObject = {}

View File

@ -245,6 +245,7 @@ function M:EventInit()
local card_info = self._player_card_info[self:GetPos(p.seat)] local card_info = self._player_card_info[self:GetPos(p.seat)]
card_info:Clear() card_info:Clear()
card_info:UpdateHandCard() card_info:UpdateHandCard()
card_info._view_handCardList.touchable = true
if _room.curren_round == 1 then if _room.curren_round == 1 then
self._touxiangMove:Play() self._touxiangMove:Play()
end end

View File

@ -243,6 +243,7 @@ function M:EventInit()
local card_info = self._player_card_info[self:GetPos(p.seat)] local card_info = self._player_card_info[self:GetPos(p.seat)]
card_info:Clear() card_info:Clear()
card_info:UpdateHandCard() card_info:UpdateHandCard()
card_info._view_handCardList.touchable = true
if _room.curren_round == 1 then if _room.curren_round == 1 then
self._touxiangMove:Play() self._touxiangMove:Play()
end end

View File

@ -243,6 +243,7 @@ function M:EventInit()
local card_info = self._player_card_info[self:GetPos(p.seat)] local card_info = self._player_card_info[self:GetPos(p.seat)]
card_info:Clear() card_info:Clear()
card_info:UpdateHandCard() card_info:UpdateHandCard()
card_info._view_handCardList.touchable = true
if _room.curren_round == 1 then if _room.curren_round == 1 then
self._touxiangMove:Play() self._touxiangMove:Play()
end end

View File

@ -241,6 +241,7 @@ function M:EventInit()
local card_info = self._player_card_info[self:GetPos(p.seat)] local card_info = self._player_card_info[self:GetPos(p.seat)]
card_info:Clear() card_info:Clear()
card_info:UpdateHandCard() card_info:UpdateHandCard()
card_info._view_handCardList.touchable = true
if _room.curren_round == 1 then if _room.curren_round == 1 then
self._touxiangMove:Play() self._touxiangMove:Play()
end end

View File

@ -791,6 +791,7 @@ function M:OnHuCard(...)
self._player_card_info[1]._ctr_tip.selectedIndex = 0 self._player_card_info[1]._ctr_tip.selectedIndex = 0
self._player_card_info[1]._ctr_showGuoHu.selectedIndex = 0 self._player_card_info[1]._ctr_showGuoHu.selectedIndex = 0
self._player_card_info[1]._view_handCardList.touchable = false
self:ShowHand(scoreData) self:ShowHand(scoreData)
info:ShowHuCard(win_card, index == 1) info:ShowHuCard(win_card, index == 1)

View File

@ -23,24 +23,24 @@
<component id="n111_11mfw" name="n111" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1239,10" group="n114_11mfw"> <component id="n111_11mfw" name="n111" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1239,10" group="n114_11mfw">
<Button controller="round" page="1"/> <Button controller="round" page="1"/>
</component> </component>
<text id="n112_11mfw" name="n112" xy="1329,7" size="355,72" group="n114_11mfw" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="5局(房卡*2"> <text id="n112_11mfw" name="n112" xy="1329,7" size="386,72" group="n114_11mfw" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="10局(房卡*2">
<gearColor controller="round" pages="1" values="#51933c,#000000" default="#450f05,#000000"/> <gearColor controller="round" pages="1" values="#51933c,#000000" default="#450f05,#000000"/>
</text> </text>
<image id="n113_11mfw" name="n113" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,90" group="n114_11mfw" visible="false"/> <image id="n113_11mfw" name="n113" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,90" group="n114_11mfw" visible="false"/>
<group id="n114_11mfw" name="roundNum" xy="195,0" size="1515,93" advanced="true"/> <group id="n114_11mfw" name="roundNum" xy="195,0" size="1520,93" advanced="true"/>
<text id="n115_11mfw" name="n115" xy="354,93" size="0,0" group="n121_11mfw" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text=""> <text id="n115_11mfw" name="n115" xy="354,93" size="0,0" group="n121_11mfw" font="ui://27vd145bh35o7im7" fontSize="66" color="#450f05" text="">
<relation target="" sidePair="right-right"/> <relation target="" sidePair="right-right"/>
</text> </text>
<component id="n116_11mfw" name="n116" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,103" group="n121_11mfw"> <component id="n116_11mfw" name="n116" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="384,103" group="n121_11mfw">
<Button controller="round" page="2"/> <Button controller="round" page="2"/>
</component> </component>
<text id="n117_11mfw" name="n117" xy="474,100" size="355,72" group="n121_11mfw" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="8局(房卡*3"> <text id="n117_11mfw" name="n117" xy="474,100" size="386,72" group="n121_11mfw" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="15局(房卡*3">
<gearColor controller="round" pages="2" values="#51933c,#000000" default="#450f05,#000000"/> <gearColor controller="round" pages="2" values="#51933c,#000000" default="#450f05,#000000"/>
</text> </text>
<component id="n118_11mfw" name="n118" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,103" group="n121_11mfw"> <component id="n118_11mfw" name="n118" src="86ct7cwx" fileName="component/CreatePlay/Component/Single_choose.xml" pkg="2d9xdj6z" xy="1238,103" group="n121_11mfw">
<Button controller="round" page="3"/> <Button controller="round" page="3"/>
</component> </component>
<text id="n119_11mfw" name="n119" xy="1328,100" size="386,72" group="n121_11mfw" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="16局(房卡*6"> <text id="n119_11mfw" name="n119" xy="1328,100" size="386,72" group="n121_11mfw" font="ui://27vd145bh35o7ill" fontSize="54" color="#450f05" text="20局(房卡*6">
<gearColor controller="round" pages="3" values="#51933c,#000000" default="#450f05,#000000"/> <gearColor controller="round" pages="3" values="#51933c,#000000" default="#450f05,#000000"/>
</text> </text>
<image id="n120_11mfw" name="n120" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,183" group="n121_11mfw"/> <image id="n120_11mfw" name="n120" src="pzuc7cx6" fileName="component/CreatePlay/Image/Line 2.png" pkg="2d9xdj6z" xy="195,183" group="n121_11mfw"/>

View File

@ -4,7 +4,7 @@
<displayList> <displayList>
<component id="n3_if10" name="btn_copy" src="nauple" fileName="component/service/btn_copywx.xml" xy="1352,23" pivot="0.5,0.5" size="206,74" scale="1.2,1.2"/> <component id="n3_if10" name="btn_copy" src="nauple" fileName="component/service/btn_copywx.xml" xy="1352,23" pivot="0.5,0.5" size="206,74" scale="1.2,1.2"/>
<text id="n4_if10" name="text_title" xy="115,20" size="261,79" font="Arial" fontSize="60" text="游戏代理:"/> <text id="n4_if10" name="text_title" xy="115,20" size="261,79" font="Arial" fontSize="60" text="游戏代理:"/>
<text id="n6_if10" name="title" xy="376,20" size="949,79" font="Arial" fontSize="60" color="#006600" autoSize="shrink" text="微信号:"> <text id="n6_if10" name="title" xy="376,20" size="949,79" font="Arial" fontSize="60" color="#9e3635" autoSize="shrink" text="微信号:">
<relation target="n4_if10" sidePair="leftext-right"/> <relation target="n4_if10" sidePair="leftext-right"/>
</text> </text>
<image id="n7_if10" name="n7" src="nld2cjr" fileName="component/user_info/wx/update_wechat_icon.png" xy="6,9"/> <image id="n7_if10" name="n7" src="nld2cjr" fileName="component/user_info/wx/update_wechat_icon.png" xy="6,9"/>

View File

@ -1,41 +1,41 @@
[ [
{ {
"ver": "1.0.55", "ver": "1.0.57",
"name": "跑得快", "name": "跑得快",
"check": true, "check": true,
"version": "1.0.55", "version": "1.0.57",
"game_id": "66", "game_id": "66",
"bundle": "extend/poker/runfast" "bundle": "extend/poker/runfast"
}, },
{ {
"ver": "1.0.78", "ver": "1.0.79",
"name": "南城麻将", "name": "南城麻将",
"check": true, "check": true,
"version": "1.0.78", "version": "1.0.79",
"game_id": "86", "game_id": "86",
"bundle": "extend/majiang/nancheng" "bundle": "extend/majiang/nancheng"
}, },
{ {
"ver": "1.0.83", "ver": "1.0.84",
"name": "黎川麻将", "name": "黎川麻将",
"check": true, "check": true,
"version": "1.0.83", "version": "1.0.84",
"game_id": "87", "game_id": "87",
"bundle": "extend/majiang/lichuan" "bundle": "extend/majiang/lichuan"
}, },
{ {
"ver": "1.0.65", "ver": "1.0.66",
"name": "金溪麻将", "name": "金溪麻将",
"check": true, "check": true,
"version": "1.0.65", "version": "1.0.66",
"game_id": "88", "game_id": "88",
"bundle": "extend/majiang/jinxi" "bundle": "extend/majiang/jinxi"
}, },
{ {
"ver": "1.0.64", "ver": "1.0.65",
"name": "抚州麻将", "name": "抚州麻将",
"check": true, "check": true,
"version": "1.0.64", "version": "1.0.65",
"game_id": "89", "game_id": "89",
"bundle": "extend/majiang/fuzhou" "bundle": "extend/majiang/fuzhou"
} }

View File

@ -1,11 +1,11 @@
[ [
{ {
"lua_path": "/tolua_project,/base_project,/main_project", "lua_path": "/tolua_project,/base_project,/main_project",
"ver": "1.0.8", "ver": "1.0.14",
"name": "base_script", "name": "base_script",
"check": true, "check": true,
"bundle": "base/base_script", "bundle": "base/base_script",
"version": "1.0.8" "version": "1.0.14"
}, },
{ {
"ver": "1.0.7", "ver": "1.0.7",

View File

@ -0,0 +1,109 @@
[
{
"lua_path": "/tolua_project,/base_project,/main_project",
"ver": "1.0.10",
"name": "base_script",
"check": true,
"bundle": "base/base_script",
"version": "1.0.10"
},
{
"ver": "1.0.7",
"name": "common",
"check": true,
"bundle": "base/common",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "login",
"check": true,
"bundle": "base/login",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "lobby",
"check": true,
"bundle": "base/lobby",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "Family",
"check": true,
"bundle": "base/Family",
"version": "1.0.7"
},
{
"ver": "1.0.6",
"name": "chat",
"check": true,
"bundle": "base/chat",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "newgroup",
"check": true,
"bundle": "base/newgroup",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "rank",
"check": true,
"version": "1.0.6",
"bundle": "base/rank"
},
{
"ver": "1.0.7",
"name": "main_majiang",
"check": true,
"version": "1.0.7",
"bundle": "base/main_majiang"
},
{
"ver": "1.0.6",
"name": "main_poker",
"check": true,
"version": "1.0.6",
"bundle": "base/main_poker"
},
{
"ver": "1.0.6",
"name": "main_zipai",
"check": true,
"version": "1.0.6",
"bundle": "base/main_zipai"
},
{
"ver": "1.0.6",
"name": "static",
"check": true,
"bundle": "base/static",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"is_res": true,
"name": "embed",
"check": true,
"bundle": "base/embed",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "main_pokemajiang",
"check": true,
"version": "1.0.6",
"bundle": "base/main_pokemajiang"
},
{
"ver": "1.0.6",
"name": "main_zipaimajiang",
"check": true,
"version": "1.0.6",
"bundle": "base/main_zipaimajiang"
}
]

View File

@ -0,0 +1,109 @@
[
{
"lua_path": "/tolua_project,/base_project,/main_project",
"ver": "1.0.11",
"name": "base_script",
"check": true,
"bundle": "base/base_script",
"version": "1.0.11"
},
{
"ver": "1.0.7",
"name": "common",
"check": true,
"bundle": "base/common",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "login",
"check": true,
"bundle": "base/login",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "lobby",
"check": true,
"bundle": "base/lobby",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "Family",
"check": true,
"bundle": "base/Family",
"version": "1.0.7"
},
{
"ver": "1.0.6",
"name": "chat",
"check": true,
"bundle": "base/chat",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "newgroup",
"check": true,
"bundle": "base/newgroup",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "rank",
"check": true,
"version": "1.0.6",
"bundle": "base/rank"
},
{
"ver": "1.0.7",
"name": "main_majiang",
"check": true,
"version": "1.0.7",
"bundle": "base/main_majiang"
},
{
"ver": "1.0.6",
"name": "main_poker",
"check": true,
"version": "1.0.6",
"bundle": "base/main_poker"
},
{
"ver": "1.0.6",
"name": "main_zipai",
"check": true,
"version": "1.0.6",
"bundle": "base/main_zipai"
},
{
"ver": "1.0.6",
"name": "static",
"check": true,
"bundle": "base/static",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"is_res": true,
"name": "embed",
"check": true,
"bundle": "base/embed",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "main_pokemajiang",
"check": true,
"version": "1.0.6",
"bundle": "base/main_pokemajiang"
},
{
"ver": "1.0.6",
"name": "main_zipaimajiang",
"check": true,
"version": "1.0.6",
"bundle": "base/main_zipaimajiang"
}
]

View File

@ -0,0 +1,109 @@
[
{
"lua_path": "/tolua_project,/base_project,/main_project",
"ver": "1.0.12",
"name": "base_script",
"check": true,
"bundle": "base/base_script",
"version": "1.0.12"
},
{
"ver": "1.0.7",
"name": "common",
"check": true,
"bundle": "base/common",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "login",
"check": true,
"bundle": "base/login",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "lobby",
"check": true,
"bundle": "base/lobby",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "Family",
"check": true,
"bundle": "base/Family",
"version": "1.0.7"
},
{
"ver": "1.0.6",
"name": "chat",
"check": true,
"bundle": "base/chat",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "newgroup",
"check": true,
"bundle": "base/newgroup",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "rank",
"check": true,
"version": "1.0.6",
"bundle": "base/rank"
},
{
"ver": "1.0.7",
"name": "main_majiang",
"check": true,
"version": "1.0.7",
"bundle": "base/main_majiang"
},
{
"ver": "1.0.6",
"name": "main_poker",
"check": true,
"version": "1.0.6",
"bundle": "base/main_poker"
},
{
"ver": "1.0.6",
"name": "main_zipai",
"check": true,
"version": "1.0.6",
"bundle": "base/main_zipai"
},
{
"ver": "1.0.6",
"name": "static",
"check": true,
"bundle": "base/static",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"is_res": true,
"name": "embed",
"check": true,
"bundle": "base/embed",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "main_pokemajiang",
"check": true,
"version": "1.0.6",
"bundle": "base/main_pokemajiang"
},
{
"ver": "1.0.6",
"name": "main_zipaimajiang",
"check": true,
"version": "1.0.6",
"bundle": "base/main_zipaimajiang"
}
]

View File

@ -0,0 +1,109 @@
[
{
"lua_path": "/tolua_project,/base_project,/main_project",
"ver": "1.0.13",
"name": "base_script",
"check": true,
"bundle": "base/base_script",
"version": "1.0.13"
},
{
"ver": "1.0.7",
"name": "common",
"check": true,
"bundle": "base/common",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "login",
"check": true,
"bundle": "base/login",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "lobby",
"check": true,
"bundle": "base/lobby",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "Family",
"check": true,
"bundle": "base/Family",
"version": "1.0.7"
},
{
"ver": "1.0.6",
"name": "chat",
"check": true,
"bundle": "base/chat",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "newgroup",
"check": true,
"bundle": "base/newgroup",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "rank",
"check": true,
"version": "1.0.6",
"bundle": "base/rank"
},
{
"ver": "1.0.7",
"name": "main_majiang",
"check": true,
"version": "1.0.7",
"bundle": "base/main_majiang"
},
{
"ver": "1.0.6",
"name": "main_poker",
"check": true,
"version": "1.0.6",
"bundle": "base/main_poker"
},
{
"ver": "1.0.6",
"name": "main_zipai",
"check": true,
"version": "1.0.6",
"bundle": "base/main_zipai"
},
{
"ver": "1.0.6",
"name": "static",
"check": true,
"bundle": "base/static",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"is_res": true,
"name": "embed",
"check": true,
"bundle": "base/embed",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "main_pokemajiang",
"check": true,
"version": "1.0.6",
"bundle": "base/main_pokemajiang"
},
{
"ver": "1.0.6",
"name": "main_zipaimajiang",
"check": true,
"version": "1.0.6",
"bundle": "base/main_zipaimajiang"
}
]

View File

@ -0,0 +1,109 @@
[
{
"lua_path": "/tolua_project,/base_project,/main_project",
"ver": "1.0.14",
"name": "base_script",
"check": true,
"bundle": "base/base_script",
"version": "1.0.14"
},
{
"ver": "1.0.7",
"name": "common",
"check": true,
"bundle": "base/common",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "login",
"check": true,
"bundle": "base/login",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "lobby",
"check": true,
"bundle": "base/lobby",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "Family",
"check": true,
"bundle": "base/Family",
"version": "1.0.7"
},
{
"ver": "1.0.6",
"name": "chat",
"check": true,
"bundle": "base/chat",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "newgroup",
"check": true,
"bundle": "base/newgroup",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "rank",
"check": true,
"version": "1.0.6",
"bundle": "base/rank"
},
{
"ver": "1.0.7",
"name": "main_majiang",
"check": true,
"version": "1.0.7",
"bundle": "base/main_majiang"
},
{
"ver": "1.0.6",
"name": "main_poker",
"check": true,
"version": "1.0.6",
"bundle": "base/main_poker"
},
{
"ver": "1.0.6",
"name": "main_zipai",
"check": true,
"version": "1.0.6",
"bundle": "base/main_zipai"
},
{
"ver": "1.0.6",
"name": "static",
"check": true,
"bundle": "base/static",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"is_res": true,
"name": "embed",
"check": true,
"bundle": "base/embed",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "main_pokemajiang",
"check": true,
"version": "1.0.6",
"bundle": "base/main_pokemajiang"
},
{
"ver": "1.0.6",
"name": "main_zipaimajiang",
"check": true,
"version": "1.0.6",
"bundle": "base/main_zipaimajiang"
}
]

View File

@ -0,0 +1,109 @@
[
{
"lua_path": "/tolua_project,/base_project,/main_project",
"ver": "1.0.9",
"name": "base_script",
"check": true,
"bundle": "base/base_script",
"version": "1.0.9"
},
{
"ver": "1.0.7",
"name": "common",
"check": true,
"bundle": "base/common",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "login",
"check": true,
"bundle": "base/login",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "lobby",
"check": true,
"bundle": "base/lobby",
"version": "1.0.7"
},
{
"ver": "1.0.7",
"name": "Family",
"check": true,
"bundle": "base/Family",
"version": "1.0.7"
},
{
"ver": "1.0.6",
"name": "chat",
"check": true,
"bundle": "base/chat",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "newgroup",
"check": true,
"bundle": "base/newgroup",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "rank",
"check": true,
"version": "1.0.6",
"bundle": "base/rank"
},
{
"ver": "1.0.7",
"name": "main_majiang",
"check": true,
"version": "1.0.7",
"bundle": "base/main_majiang"
},
{
"ver": "1.0.6",
"name": "main_poker",
"check": true,
"version": "1.0.6",
"bundle": "base/main_poker"
},
{
"ver": "1.0.6",
"name": "main_zipai",
"check": true,
"version": "1.0.6",
"bundle": "base/main_zipai"
},
{
"ver": "1.0.6",
"name": "static",
"check": true,
"bundle": "base/static",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"is_res": true,
"name": "embed",
"check": true,
"bundle": "base/embed",
"version": "1.0.6"
},
{
"ver": "1.0.6",
"name": "main_pokemajiang",
"check": true,
"version": "1.0.6",
"bundle": "base/main_pokemajiang"
},
{
"ver": "1.0.6",
"name": "main_zipaimajiang",
"check": true,
"version": "1.0.6",
"bundle": "base/main_zipaimajiang"
}
]