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

Commit

Permalink
v3.54
Browse files Browse the repository at this point in the history
  • Loading branch information
theheroGAC authored Oct 12, 2018
1 parent 04b9778 commit 12f55a8
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 2 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 = 0x03 -- major.minor
APP_VERSION_MINOR = 0x53
APP_VERSION_MINOR = 0x54
APP_VERSION = ((APP_VERSION_MAJOR << 0x18) | (APP_VERSION_MINOR << 0x10)) -- Union Binary
2 changes: 2 additions & 0 deletions lang/english_us.txt
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ INSTALLP_DESC_LOLICON = "Small vita shell ran from kernel that allows for a
INSTALLP_DESC_DS3VITA = "Control your Vita using a DualShock 3"
INSTALLP_DESC_DS4VITA = "Control your Vita using a DualShock 4"
INSTALLP_DESC_UDCDUVC = "UVC device to stream its display over USB to your computer"
INSTALLP_DESC_VIIMOTE = "Control your Vita using a WiiMote"
INSTALLP_DESC_KUIO = "Allows user modules to access ux0:data for basic I/O operations. May be necessary for certain specific plugins"
INSTALLP_DESC_ADRENALINE = "Allows you to run adrenaline with a single touch"
INSTALLP_DESC_DSMOTION = "DualShock motion control support for PlayStation TV"
Expand Down Expand Up @@ -135,3 +136,4 @@ INSTALLP_DESC_VSHMENU = "A VSH menu taiHEN plugin for the PS VITA games and
INSTALLP_DESC_VITAGRAFIX = "Plugin that allows you to change resolution and FPS cap of PS Vita games"
INSTALLP_DESC_OVERCLOCK = "Simple Overclock Plugin for Taihen"
INSTALLP_DESC_FRAMECOUNTER = "This is a little plugin that works as an FPS counter. It will show an FPS counter on the top left side of your screen."
INSTALLP_DESC_VGI = "A simple taihen plugin that prints useful information about PS Vita games."
Binary file added resources/plugins/VGi.suprx
Binary file not shown.
Binary file added resources/plugins/viimote.skprx
Binary file not shown.
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">v3.53</str>
<str size="18" color="#ffffff" shadow="on">v3.54</str>
</text>
</liveitem>
</frame>
Expand Down
Binary file modified sce_sys/param.sfo
Binary file not shown.
3 changes: 3 additions & 0 deletions scripts/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ plugins = {
{ name = "ds3vita by xerpi Beta3", path = "ds3vita.skprx", section = "KERNEL", path2 = false, section2 = false, config = false, version = "0001", desc = INSTALLP_DESC_DS3VITA, },
{ name = "ds4vita by xerpi v1.2", path = "ds4vita.skprx", section = "KERNEL", path2 = false, section2 = false, config = false, version = "0001", desc = INSTALLP_DESC_DS4VITA, },
{ name = "udcd_uvc by xerpi v1.1", path = "udcd_uvc.skprx", section = "KERNEL", path2 = false, section2 = false, config = false, version = "0001", desc = INSTALLP_DESC_UDCDUVC, },
{ name = "viimote by xerpi v1.2", path = "viimote.skprx", section = "KERNEL", path2 = false, section2 = false, config = false, version = "0001", desc = INSTALLP_DESC_VIIMOTE, },
--{ name = "Kuio by Rinnegatamante", path = "kuio.skprx", section = "KERNEL", path2 = false, section2 = false, config = false, version = "0001", desc = INSTALLP_DESC_KUIO, },
{ name = "Adrenaline by TheOfficialFloW (Fix double touch)", path = "adrenaline_kernel.skprx", section = "KERNEL", path2 = false, section2 = false, config = false, version = "0001", desc = INSTALLP_DESC_ADRENALINE, },
{ name = "DSMotion by OperationNT414C v1.2", path = "dsmotion.skprx", section = "KERNEL", path2 = "dsmotion.suprx", section2 = "ALL", config = false, version = "0001", desc = INSTALLP_DESC_DSMOTION, },
Expand Down Expand Up @@ -40,5 +41,7 @@ plugins = {
{ name = "VitaGrafix by Electry v2.4", path = "vitagrafix.suprx", section = "ALL", path2 = "kuio.skprx", section2 = "KERNEL", config = "config.txt", configpath = "ux0:data/VitaGrafix/", version = "0001", desc = INSTALLP_DESC_VITAGRAFIX, },-- Need kuio.skprx
{ name = "Oclock Vita by frangarcj v1.2.1", path = "oclockvita.suprx", section = "ALL", path2 = false, section2 = false, config = false, version = "0001", desc = INSTALLP_DESC_OVERCLOCK, },
{ name = "Framecounter by Rinnegatamante v1.2", path = "Framecounter.suprx", section = "ALL", path2 = false, section2 = false, config = false, version = "0001", desc = INSTALLP_DESC_FRAMECOUNTER, },
{ name = "VGi by Electry v0.3", path = "VGi.suprx", section = "ALL", path2 = false, section2 = false, config = false, version = "0001", desc = INSTALLP_DESC_VGI, },


}

0 comments on commit 12f55a8

Please sign in to comment.