Skip to content

Commit

Permalink
Update info for 5.16
Browse files Browse the repository at this point in the history
  • Loading branch information
ONElua committed Nov 28, 2018
1 parent d28444d commit 9789b1c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion AdrenalineBubbleManager/git/shared.lua
Expand Up @@ -4,6 +4,6 @@ APP_REPO = "ONElua"
APP_PROJECT = "AdrenalineBubbleManager"

APP_VERSION_MAJOR = 0x05 -- major.minor
APP_VERSION_MINOR = 0x15
APP_VERSION_MINOR = 0x16

APP_VERSION = ((APP_VERSION_MAJOR << 0x18) | (APP_VERSION_MINOR << 0x10)) -- Union Binary
4 changes: 4 additions & 0 deletions AdrenalineBubbleManager/sce_sys/changeinfo/changeinfo.xml
@@ -1,5 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<changeinfo>
<changes app_ver="05.16">
<![CDATA[
- Re-add edit bubble path. Only when the path to the game does not exist<br>
]]>
<changes app_ver="05.15">
<![CDATA[
- Removed option show pic with triangle button.<br>
Expand Down
Expand Up @@ -24,13 +24,13 @@
<frame id="frame3">
<liveitem>
<text valign="top" align="left" text-align="left" text-valign="top" line-space="2" ellipsis="on">
<str size="22" shadow="on">Version 5.15</str>
<str size="22" shadow="on">Version 5.16</str>
</text>
</liveitem>
<liveitem>
<lang>ru</lang>
<text valign="top" align="left" text-align="left" text-valign="top" line-space="2" ellipsis="on">
<str size="22" shadow="on">Версия 5.15</str>
<str size="22" shadow="on">Версия 5.16</str>
</text>
</liveitem>
</frame>
Expand Down
Binary file modified AdrenalineBubbleManager/sce_sys/param.sfo
Binary file not shown.
2 changes: 1 addition & 1 deletion AdrenalineBubbleManager/system/bubbles.lua
Expand Up @@ -858,7 +858,7 @@ function bubbles.settings()
bubbles.list[scrids.sel].update = true
end

if buttons[accept] and optsel == 4 then
if (buttons[accept] and optsel == 4) and not bubbles.list[scrids.sel].exist then
local new_path = osk.init(BUBBLES_PATH2GAME, bubbles.list[scrids.sel].iso or "", 128, __OSK_TYPE_DEFAULT, __OSK_MODE_TEXT)
if not new_path or (string.len(new_path)<=0) then new_path = bubbles.list[scrids.sel].iso end
bubbles.list[scrids.sel].iso = new_path
Expand Down
5 changes: 4 additions & 1 deletion README.md
Expand Up @@ -13,7 +13,7 @@ This useful application allows you to make personalized bubbles with 'icon' and

### Adrenaline Version v6.7 ###
### Adrenaline Bubble Booter Version v0.8 ###
### Adrenaline Bubbles Manager Current Version: 5.15 ###
### Adrenaline Bubbles Manager Current Version: 5.16 ###

### Instructions ###
1. **Install Adrenaline v6.7**
Expand All @@ -23,6 +23,9 @@ ux0:app/PSPEMUCFW/sce_module/adrenaline_kernel.skprx

2. After taking care of step 1, then you can start using Adrenaline Bubbles Manager to create bubbles for your PSP/PSX content.

### Changelog 5.16 ###
- Re-add edit bubble path. Only when the path to the game does not exist<br>

### Changelog 5.15 ###
- Removed option show pic with triangle button.<br>
- Added Batch Installation Option by pressing triangle button for non installed content.<br>
Expand Down

0 comments on commit 9789b1c

Please sign in to comment.