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

Commit

Permalink
V3.09
Browse files Browse the repository at this point in the history
  • Loading branch information
theheroGAC authored Aug 10, 2018
1 parent 5656a9c commit f44575c
Show file tree
Hide file tree
Showing 9 changed files with 6 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 = 0x08
APP_VERSION_MINOR = 0x09
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 @@ -64,6 +64,7 @@ NPDRMFREE_NO_PARTITION = "Partition not found!"
--descriptions plugins
--KERNEL
INSTALLP_DESC_NONPDRM = "Allows you to bypass DRM protection on any PS Vita content"
INSTALLP_DESC_MINIVITATV = "Allows you to play local multiplayer games on your PS Vita with up to 4 friends"
INSTALLP_DESC_NOPSMDRM = "Allows you to bypass DRM protection on PSM game content"
INSTALLP_DESC_VITABRIGHT = "Plugin enabling you to use a custom gamma table, and thus decrease brightness below the minimum, and increase it above the maximum"
INSTALLP_DESC_NOAVLS = "Plugin that will permanantly disable AVLS on AVLS-Forced vitas"
Expand All @@ -73,6 +74,7 @@ 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_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"

--MAIN
INSTALLP_DESC_DENABLER = "Download files through your browser"
Expand Down
Binary file added resources/plugins/ds3.skprx
Binary file not shown.
Binary file added resources/plugins/dsmotion.skprx
Binary file not shown.
Binary file added resources/plugins/dsmotion.suprx
Binary file not shown.
Binary file added resources/plugins/minivitatv.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.08</str>
<str size="18" color="#ffffff" shadow="on">v3.09</str>
</text>
</liveitem>
</frame>
Expand Down
Binary file modified sce_sys/param.sfo
Binary file not shown.
2 changes: 2 additions & 0 deletions scripts/autoplugin.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins = {

--Kernel
{ name = "NoNpDrm by TheOfficialFloW", path = "nonpdrm.skprx", section = "KERNEL", path2 = false, section2 = false, config = false, desc = INSTALLP_DESC_NONPDRM, },
{ name = "MiniVitaTV by TheOfficialFloW vbeta0.2", path = "minivitatv.skprx", section = "KERNEL", path2 = "ds3.skprx", section2 = "KERNEL", config = false, desc = INSTALLP_DESC_MINIVITATV, },
{ name = "NoPsmDrm by frangarcj", path = "nopsmdrm.skprx", section = "KERNEL", path2 = false, section2 = false, config = false, desc = INSTALLP_DESC_NOPSMDRM, },
{ name = "Vitabright by devnoname120(only for 3.60)", path = "vitabright.skprx", section = "KERNEL", path2 = false, section2 = false, config = "vitabright_lut.txt", desc = INSTALLP_DESC_VITABRIGHT, },
{ name = "NoAVLS by SilicaAndPina", path = "noavls.skprx", section = "KERNEL", path2 = false, section2 = false, config = false, desc = INSTALLP_DESC_NOAVLS, },
Expand All @@ -12,6 +13,7 @@ plugins = {
{ name = "udcd_uvc by xerpi [PoC v6]", path = "udcd_uvc.skprx", section = "KERNEL", path2 = false, section2 = false, config = false, desc = INSTALLP_DESC_UDCDUVC, },
--{ name = "Kuio by Rinnegatamante", path = "kuio.skprx", section = "KERNEL", path2 = false, section2 = false, config = false, desc = INSTALLP_DESC_KUIO, },
{ name = "Adrenaline by TheOfficialFloW (Fix double touch)", path = "adrenaline_kernel.skprx", section = "KERNEL", path2 = false, section2 = false, config = false, desc = INSTALLP_DESC_ADRENALINE, },
{ name = "DSMotion by OperationNT414C v1.2", path = "dsmotion.skprx", section = "KERNEL", path2 = "dsmotion.suprx", section2 = "ALL", config = false, desc = INSTALLP_DESC_DSMOTION, },

--Main
{ name = "Download Enabler by TheOfficialFloW (VitaTweaks)", path = "download_enabler.suprx", section = "main", path2 = false, section2 = false, config = false, desc = INSTALLP_DESC_DENABLER, },
Expand Down

0 comments on commit f44575c

Please sign in to comment.