Skip to content

Commit

Permalink
v1.02
Browse files Browse the repository at this point in the history
  • Loading branch information
theheroGAC authored Dec 3, 2017
1 parent 9e79cc5 commit 2a7490f
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 5 deletions.
2 changes: 1 addition & 1 deletion git/shared.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ APP_REPO = "theheroGAC"
APP_PROJECT = "TubeVita" --here name of repo in github...your vpk is QuickLaunch_installer_for_PSVita.vpk

APP_VERSION_MAJOR = 0x01 -- major.minor
APP_VERSION_MINOR = 0x01
APP_VERSION_MINOR = 0x02

APP_VERSION = ((APP_VERSION_MAJOR << 0x18) | (APP_VERSION_MINOR << 0x10)) -- Union Binary
Binary file added resources/back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion sce_sys/livearea/contents/template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<frame id="frame4">
<liveitem>
<text align="left" text-align="left" word-wrap="off" ellipsis="on">
<str size="18" color="#ffffff" shadow="on">v1.01</str>
<str size="18" color="#ffffff" shadow="on">v1.02</str>
</text>
</liveitem>
</frame>
Expand Down
Binary file modified sce_sys/param.sfo
Binary file not shown.
25 changes: 22 additions & 3 deletions script.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,32 @@
dofile("git/updater.lua")

-- ## MESSAGGIO DI CARICAMENTO ##
game.close()
screen.print(5, 5, 'Loading Tubevita...'); screen.flip()
splash.show("resources/tubevita.png")

-- ## IMMAGINE DI SFONDO ##
back = image.load("resources/back.png")


-- ## MENU' PRINCIPALE ##
while true do
-- Controlli e prossimi aggiornamenti
buttons.read()
screen.flip()
if back then back:blit(0,0) end
color.loadpalette()
os.uri ("webmodal: https://m.youtube.com") end
screen.print(910,30,"TubeVita",1,color.white,color.blue,__ARIGHT)
screen.print(910,60,"v1.02",1,color.white,color.blue,__ARIGHT)

-- ## Controlli ##

screen.print(25, 40, "YouTube",1, color.red, color.black)
screen.print(25, 65, "Playstation Channel",1, color.red, color.black)
screen.print(25, 446, "Press X for Youtube",1, color.red, color.black)
screen.print(25, 468, "Press Square for Playstation Channel",1, color.red, color.black)
screen.print(25, 490, "Press Triangle for Exit ",1, color.red, color.black)

if buttons.cross then os.uri ("webmodal: https://m.youtube.com") end
if buttons.square then os.uri ("webmodal: https://www.youtube.com/user/PlayStation/videos") end
if buttons.triangle then os.exit() end
screen.flip()
end

0 comments on commit 2a7490f

Please sign in to comment.