Skip to content

Commit

Permalink
Update info 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
ONElua authored May 20, 2019
1 parent bc6b2d2 commit a61a030
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ONEMenuVita/git/shared.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ APP_PROJECT = "ONEMenu-for-PSVita"
APP_VPK = "ONEMenuVita"

APP_VERSION_MAJOR = 0x03 -- major.minor
APP_VERSION_MINOR = 0x12
APP_VERSION_MINOR = 0x13

APP_VERSION = ((APP_VERSION_MAJOR << 0x18) | (APP_VERSION_MINOR << 0x10)) -- Union Binary
6 changes: 3 additions & 3 deletions ONEMenuVita/git/updater.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ function screen.flip()
update = image.load("git/updater/update.png")

if update then update:blit(0,0)
elseif back2 then back2:blit(0,0) end
elseif theme.data["list"] then theme.data["list"]:blit(0,0) end
screen.flip()

if os.dialog(info[2].."\nDo you want to update the application?", string.format("New Update %s %s available.", APP_PROJECT, string.format("%X.%02X",major, minor)), __DIALOG_MODE_OK_CANCEL) == true then
buttons.homepopup(0)

if update then update:blit(0,0)
elseif back2 then back2:blit(0,0) end
elseif theme.data["list"] then theme.data["list"]:blit(0,0) end

local url = "http://devdavisnunez.x10.mx/wikihb/download/?id=26"
local path = "ux0:data/"..APP_PROJECT..".vpk"
Expand All @@ -37,7 +37,7 @@ function screen.flip()
function onNetGetFile(size,written,speed)

if update then update:blit(0,0)
elseif back2 then back2:blit(0,0) end
elseif theme.data["list"] then theme.data["list"]:blit(0,0) end

screen.print(10,10,"Downloading Update...")
screen.print(480,470,tostring(files.sizeformat(written or 0)).." / "..tostring(files.sizeformat(size or 0)),1,color.white, color.blue:a(135),__ACENTER)
Expand Down
2 changes: 1 addition & 1 deletion ONEMenuVita/sce_sys/livearea/contents/template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<frame id="frame3">
<liveitem>
<text align="left" text-align="left" word-wrap="off" ellipsis="on">
<str size="26" color="#ffffff" shadow="on">v3.12</str>
<str size="26" color="#ffffff" shadow="on">v3.13</str>
</text>
</liveitem>
</frame>
Expand Down
Binary file modified ONEMenuVita/sce_sys/param.sfo
Binary file not shown.

0 comments on commit a61a030

Please sign in to comment.