diff --git a/git/shared.lua b/git/shared.lua index f59c8f28..53ba5c11 100644 --- a/git/shared.lua +++ b/git/shared.lua @@ -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 diff --git a/lang/english_us.txt b/lang/english_us.txt index 64931be8..10c2a81d 100644 --- a/lang/english_us.txt +++ b/lang/english_us.txt @@ -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" @@ -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" diff --git a/resources/plugins/ds3.skprx b/resources/plugins/ds3.skprx new file mode 100644 index 00000000..a380a2fe Binary files /dev/null and b/resources/plugins/ds3.skprx differ diff --git a/resources/plugins/dsmotion.skprx b/resources/plugins/dsmotion.skprx new file mode 100644 index 00000000..8cbf06c9 Binary files /dev/null and b/resources/plugins/dsmotion.skprx differ diff --git a/resources/plugins/dsmotion.suprx b/resources/plugins/dsmotion.suprx new file mode 100644 index 00000000..0926efe2 Binary files /dev/null and b/resources/plugins/dsmotion.suprx differ diff --git a/resources/plugins/minivitatv.skprx b/resources/plugins/minivitatv.skprx new file mode 100644 index 00000000..b67d920e Binary files /dev/null and b/resources/plugins/minivitatv.skprx differ diff --git a/sce_sys/livearea/contents/template.xml b/sce_sys/livearea/contents/template.xml index 4a89c981..f4e83bb2 100644 --- a/sce_sys/livearea/contents/template.xml +++ b/sce_sys/livearea/contents/template.xml @@ -29,7 +29,7 @@ - v3.08 + v3.09 diff --git a/sce_sys/param.sfo b/sce_sys/param.sfo index 9cd47ba7..4494e634 100644 Binary files a/sce_sys/param.sfo and b/sce_sys/param.sfo differ diff --git a/scripts/autoplugin.lua b/scripts/autoplugin.lua index f559967a..e9efdda4 100644 --- a/scripts/autoplugin.lua +++ b/scripts/autoplugin.lua @@ -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, }, @@ -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, },