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

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
theheroGAC authored Sep 27, 2018
1 parent ac6ba7f commit c34954c
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 6 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 = 0x50
APP_VERSION_MINOR = 0x51
APP_VERSION = ((APP_VERSION_MAJOR << 0x18) | (APP_VERSION_MINOR << 0x10)) -- Union Binary
10 changes: 10 additions & 0 deletions lang/JAPANESE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ MENU_CONVERTBOOTSPLASH = "カスタムブートスプラッシュを設定"
MENU_INSTALL_NPDRMFREE = "Adrenaline用npdrm_freeプラグインインストール(by qwikrazor87)"
MENU_INSTALL_CONFIG = "PKGJ v0.34+のconfig.txtインストール"
MENU_INSTALL_REMASTERED_CTRLS = "Adrenaline用RemasteredControlsプラグインインストール(by Theflow)"
MENU_CHECK_ONLINEP = "プラグインのアップデートを確認する"
MENU_EXIT = "アプリを終了"
MENU_INSTALLED_CONFIG = "pkgj用のconfig.txtはux0:pkgi/config.txtへインストールされます!"

Expand All @@ -41,6 +42,7 @@ INSTALLP_SQUARE_MARK = "□ボタンでインストールするプラグイ
INSTALLP_TRIANGLE_ALL = "△ボタンですべてのプラグインをインストール"
INSTALLP_SELECT_CLEAN = "SELECTボタンで選択したプラグインを解除"
INSTALLP_LR_SWAP = "L/Rトリガーでux0:/ur0:を切り替え"
INSTALLP_CUSTOM_PATH = "△ボタンでカスタムパスにインストール"

INSTALLP_VITABRIGHT_360 = "Vitabrightは3.60のみ適用"
INSTALLP_CWARNING_360_365 = "「ご注意」表示のカスタマイズは3.67/3.68では機能しません(Ensoのみ動作可)"
Expand Down Expand Up @@ -79,6 +81,14 @@ PSPCTRLS_LR_SWAP = "L/Rトリガーでパーティションを切り替え
PSPCTRLS_GAME_UPDATED = "game.txtの更新"
PSPCTRLS_DESCP = "Adrenaline上のPSPゲームをPSVitaのデュアルアナログスティックで操作可能にする"

--plugins online
UPDATE_WIFI_LOW = "Wi-Fiの信号レベルが低いです"
UPDATE_WIFI_IS_ON = "Wi-Fiが必要です"
UPDATE_CHECK_DB = "データベースの確認"
UPDATE_PLUGIN = "プラグインの更新"
UPDATE_ERROR_DB = "db.luaのダウンロード中にエラーが発生しました"
UPDATE_NO_NEWS = "すべてのプラグインが最新です"

--descriptions plugins
--KERNEL
INSTALLP_DESC_NONPDRM = "どのようなPSVitaコンテンツでもDRM保護をバイパスできます"
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">v3.50</str>
<str size="18" color="#ffffff" shadow="on">v3.51</str>
</text>
</liveitem>
</frame>
Expand Down
Binary file modified sce_sys/param.sfo
Binary file not shown.
3 changes: 1 addition & 2 deletions scripts/autoplugin.lua
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,9 @@ function plugins_installation(sel)
end

limit,xscr1,toinstall = 13,5,0
scroll = newScroll(plugins,limit)
function autoplugin()

scroll = newScroll(plugins,limit)

--Init load configs
loc = 1
tai.load()
Expand Down
2 changes: 1 addition & 1 deletion scripts/onlinep.lua
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ function plugins_online()
message_wait(UPDATE_NO_NEWS)
end
os.delay(1500)
end
end
18 changes: 17 additions & 1 deletion scripts/pmanager.lua
Original file line number Diff line number Diff line change
Expand Up @@ -102,26 +102,42 @@ function pluginsmanager()
if tai[partition].gameid[ section[sel_section] ] then

table.remove(tai[partition].raw, tai[partition].gameid[section[sel_section]].prx[scrollp.sel].line)

local name = files.nopath(tai[partition].gameid[ section[sel_section] ].prx[scrollp.sel].path:lower())

if name != "adrenaline_kernel.skprx" then files.delete(tai[partition].gameid[ section[sel_section] ].prx[scrollp.sel].path) end

tai.sync(partition)
tai.load()

for i=#tb_cop,1,-1 do
if name == tb_cop[i].path then
if tb_cop[i].section2 and tai[partition].gameid[ tb_cop[i].section2 ] then

--delete plugin physical
local idx = tai.find(partition, tb_cop[i].section2, tb_cop[i].path2)
if idx then
if name != "adrenaline_kernel.skprx" then files.delete(tai[partition].gameid[ tb_cop[i].section2 ].prx[idx].path) end
end

tai.del(partition, tb_cop[i].section2, tb_cop[i].path2)
--break
tai.sync(partition)
tai.load()

end
elseif name == tb_cop[i].path2 then
if tb_cop[i].section and tai[partition].gameid[ tb_cop[i].section ] then

local idx = tai.find(partition, tb_cop[i].section, tb_cop[i].path)
if idx then
if name != "adrenaline_kernel.skprx" then files.delete(tai[partition].gameid[ tb_cop[i].section ].prx[idx].path) end
end

tai.del(partition, tb_cop[i].section, tb_cop[i].path)
--break
tai.sync(partition)
tai.load()

end
end
end
Expand Down

0 comments on commit c34954c

Please sign in to comment.