修复存档转换时两个20G模式数据弄反,更新版本号至0.16.0
This commit is contained in:
10
conf.lua
10
conf.lua
@@ -1,10 +1,10 @@
|
|||||||
VERSION={
|
VERSION={
|
||||||
build=344,
|
build=345,
|
||||||
code=1506,
|
code=1600,
|
||||||
short="V0.15.6",
|
short="V0.16.0",
|
||||||
string="Alpha V0.15.6",
|
string="Alpha V0.16.0",
|
||||||
room="V1.0",
|
room="V1.0",
|
||||||
name="强化装甲 Reinforced Armor",
|
name="子空间 Subspace",
|
||||||
}
|
}
|
||||||
function love.conf(t)
|
function love.conf(t)
|
||||||
t.identity='Techmino'--Saving folder
|
t.identity='Techmino'--Saving folder
|
||||||
|
|||||||
8
main.lua
8
main.lua
@@ -252,6 +252,14 @@ do
|
|||||||
fs.remove('record/bigbang.rec')
|
fs.remove('record/bigbang.rec')
|
||||||
fs.remove('conf/replay')
|
fs.remove('conf/replay')
|
||||||
end
|
end
|
||||||
|
if STAT.version<1600 and fs.getInfo('record/master_l.rec')then
|
||||||
|
local temp1=fs.read('record/master_l.rec')
|
||||||
|
local temp2=fs.read('record/mastser_u.rec')
|
||||||
|
fs.write('record/master_l.rec',temp2)
|
||||||
|
fs.write('record/master_u.rec',temp1)
|
||||||
|
RANKS.master_l,RANKS.master_u=RANKS.master_u,RANKS.master_l
|
||||||
|
needSave=true
|
||||||
|
end
|
||||||
if STAT.version~=VERSION.code then
|
if STAT.version~=VERSION.code then
|
||||||
STAT.version=VERSION.code
|
STAT.version=VERSION.code
|
||||||
needSave=true
|
needSave=true
|
||||||
|
|||||||
@@ -31,6 +31,15 @@ return STRING.split([=[
|
|||||||
等级系统; 收集向抽奖玩法; 自适应UI
|
等级系统; 收集向抽奖玩法; 自适应UI
|
||||||
自动跳帧; 多方块; 超60帧
|
自动跳帧; 多方块; 超60帧
|
||||||
|
|
||||||
|
0.16.0: 子空间 Subspace
|
||||||
|
新增:
|
||||||
|
新BGM:shift(用于生存后三个难度)
|
||||||
|
改动:
|
||||||
|
微调BGM:nil
|
||||||
|
修复:
|
||||||
|
存档转换时两个20G模式数据弄反了
|
||||||
|
20G不会禁用各种软降键
|
||||||
|
|
||||||
0.15.6: 强化装甲 Reinforced Armor
|
0.15.6: 强化装甲 Reinforced Armor
|
||||||
新增:
|
新增:
|
||||||
新BGM:Nil(用于主菜单)
|
新BGM:Nil(用于主菜单)
|
||||||
@@ -49,7 +58,7 @@ return STRING.split([=[
|
|||||||
微调暂停界面布局
|
微调暂停界面布局
|
||||||
微调线框ghost样式
|
微调线框ghost样式
|
||||||
简化点击特效
|
简化点击特效
|
||||||
调整Zen模式后三个模式位置
|
调整Zen模式后三个模式位置
|
||||||
代码:
|
代码:
|
||||||
修改几个master模式的内部名称
|
修改几个master模式的内部名称
|
||||||
修复:
|
修复:
|
||||||
|
|||||||
Reference in New Issue
Block a user