Skip to content
This repository has been archived by the owner on Mar 7, 2020. It is now read-only.

Commit

Permalink
v2.01
Browse files Browse the repository at this point in the history
  • Loading branch information
theheroGAC authored Jun 27, 2018
1 parent c746187 commit cb9faf6
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 10 deletions.
2 changes: 1 addition & 1 deletion git/shared.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ APP_REPO = "theheroGAC"
APP_PROJECT = "Autoplugin"

APP_VERSION_MAJOR = 0x02 -- major.minor
APP_VERSION_MINOR = 0x00
APP_VERSION_MINOR = 0x01
APP_VERSION = ((APP_VERSION_MAJOR << 0x18) | (APP_VERSION_MINOR << 0x10)) -- Union Binary
12 changes: 9 additions & 3 deletions resources/autoplugin.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if tai[__UR0].exist then loc = 2 end
plugins = {

{ name = "Gamesd by xyzz (Only in ur0:tai/config.txt)", path = "gamesd.skprx", section = "KERNEL" },
{ name = "NoNpDrm by TheFl0w", path = "nonpdrm.skprx", section = "KERNEL" },
{ name = "NoNpDrm by TheFloW", path = "nonpdrm.skprx", section = "KERNEL" },

{ name = "NoPsmDrm by frangarcj", path = "nopsmdrm.skprx", section = "KERNEL" },
{ name = "Vitabright by devnoname120(only for 3.60)", path = "vitabright.skprx", section = "KERNEL", configuration = "vitabright_lut.txt" },
Expand All @@ -36,9 +36,9 @@ plugins = {
{ name = "ds3vita by xerpi", path = "ds3vita.skprx", section = "KERNEL" },
{ name = "ds4vita by xerpi", path = "ds4vita.skprx", section = "KERNEL" },
{ name = "Kuio by Rinnegatamante", path = "kuio.skprx", section = "KERNEL" },
{ name = "Adrenaline by TheFl0w(fix double touch)", path = "ux0:app/PSPEMUCFW/sce_module/adrenaline_kernel.skprx", section = "KERNEL" },
{ name = "Adrenaline by TheFloW(fix double touch)", path = "ux0:app/PSPEMUCFW/sce_module/adrenaline_kernel.skprx", section = "KERNEL" },

{ name = "DownloadEnabler by TheFl0w", path = "download_enabler.suprx", section = "main" },
{ name = "DownloadEnabler by TheFloW", path = "download_enabler.suprx", section = "main" },
{ name = "Shellbat by nowrep", path = "shellbat.suprx", section = "main" },
{ name = "pngshot by xyzz", path = "pngshot.suprx", section = "main" },
{ name = "Vflux by Applelo", path = "vFlux.suprx", section = "main" },
Expand Down Expand Up @@ -180,6 +180,12 @@ while true do
if buttons.up or buttons.analogly < -60 then scroll:up() end
if buttons.down or buttons.analogly > 60 then scroll:down() end

if buttons.released.l or buttons.released.r then
if tai[__UX0].exist and tai[__UR0].exist then
if loc == __UX0 then loc = __UR0 else loc = __UX0 end
end
end

--if buttons.triangle then update_adrenaline(change) end

--Install selected plugins
Expand Down
4 changes: 2 additions & 2 deletions resources/extra.lua
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ function update_adrenaline(flag)
files.extract("resources/plugins/adrenaline.zip","ux0:app/PSPEMUCFW/sce_module")
os.message("Your PSVita will restart...\n\n Adrenaline has been update",0)
os.delay(2500)
--power.restart()
power.restart()
end

if buttons.released.start then
if flag then
os.message("Your PSVita will restart")
os.delay(2500)
--power.restart()
power.restart()
end
os.exit()
end -- Exit
Expand Down
13 changes: 10 additions & 3 deletions resources/tai.lua
Original file line number Diff line number Diff line change
Expand Up @@ -199,14 +199,22 @@ function tai.put(index, id, path, pos)
local idx = tai.find(index, id, path)

if idx then -- Nothing to do... :O ?
--tai[index].gameid[id].prx[idx].path =
--tai[index].gameid[id].prx[idx].path =

elseif tai[index].gameid[id] then -- Exists the id then have any prx!

idx = #tai[index].gameid[id].prx

if pos then
table.insert(tai[index].raw, tai[index].gameid[id].line[1]+pos, path)
else
table.insert(tai[index].raw, tai[index].gameid[id].prx[idx].line+1, path)
if idx > 0 then
table.insert(tai[index].raw, tai[index].gameid[id].prx[idx].line+1, path)
else
table.insert(tai[index].raw, tai[index].gameid[id].line[1] + 1, path)
end
end

tai.parse(index) -- Refresh all ids lines etc..
--tai.debug()
return true
Expand All @@ -217,7 +225,6 @@ function tai.put(index, id, path, pos)
tai.parse(index) -- Refresh all ids lines etc..
--tai.debug()
return true

end

return false
Expand Down
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">v2.00</str>
<str size="18" color="#ffffff" shadow="on">v2.01</str>
</text>
</liveitem>
</frame>
Expand Down
Binary file modified sce_sys/param.sfo
Binary file not shown.

0 comments on commit cb9faf6

Please sign in to comment.