Skip to content

Commit 0a97a97

Browse files
committed
update
1 parent 626c73d commit 0a97a97

5 files changed

Lines changed: 4 additions & 36 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Package metadata.
22
TITLE := Apollo Save Tool
3-
VERSION := 02.00
3+
VERSION := 02.20
44
TITLE_ID := APOL00004
55
CONTENT_ID := IV0000-APOL00004_00-APOLLO0000000PS4
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ UDP multicast address `239.255.0.100:30000`. To receive them you can use [socat]
210210

211211
# License
212212

213-
[Apollo Save Tool](https://github.com/bucanero/apollo-ps4/) (PS4) - Copyright (C) 2020-2024 [Damian Parrino](https://twitter.com/dparrino)
213+
[Apollo Save Tool](https://github.com/bucanero/apollo-ps4/) (PS4) - Copyright (C) 2020-2025 [Damian Parrino](https://twitter.com/dparrino)
214214

215215
This program is free software: you can redistribute it and/or modify
216216
it under the terms of the [GNU General Public License][app_license] as published by

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ UDP multicast address `239.255.0.100:30000`. To receive them you can use [socat]
205205

206206
# License
207207

208-
[Apollo Save Tool](https://github.com/bucanero/apollo-ps4/) (PS4) - Copyright (C) 2020-2024 [Damian Parrino](https://twitter.com/dparrino)
208+
[Apollo Save Tool](https://github.com/bucanero/apollo-ps4/) (PS4) - Copyright (C) 2020-2025 [Damian Parrino](https://twitter.com/dparrino)
209209

210210
This program is free software: you can redistribute it and/or modify
211211
it under the terms of the [GNU General Public License][app_license] as published by

include/settings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#define APOLLO_VERSION "2.0.0" //Apollo PS4 version (about menu)
1+
#define APOLLO_VERSION "2.2.0" //Apollo PS4 version (about menu)
22

33
#define MENU_TITLE_OFF 45 //Offset of menu title text from menu mini icon
44
#define MENU_ICON_OFF 105 //X Offset to start printing menu mini icon

source/sqlite_db.c

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -167,38 +167,6 @@ int addcont_dlc_rebuild(const char* db_path)
167167
return 1;
168168
}
169169

170-
int appdb_fix_delete(const char* db_path, uint32_t userid)
171-
{
172-
sqlite3* db;
173-
char* query;
174-
char where[] = "WHERE titleId != 'CUSA00001' AND metaDataPath LIKE '/user/appmeta/_________'";
175-
176-
db = open_sqlite_db(db_path);
177-
if (!db)
178-
return 0;
179-
180-
LOG("Fixing %s (tbl_appbrowse_%010d) delete...", db_path, userid);
181-
query = sqlite3_mprintf("UPDATE tbl_appbrowse_%010d SET canRemove=1 %s;"
182-
"UPDATE tbl_appinfo SET val=1 WHERE key='_uninstallable' AND titleId IN (SELECT titleId FROM tbl_appbrowse_%010d %s);"
183-
"UPDATE tbl_appinfo SET val=100 WHERE key='_sort_priority' AND titleId IN (SELECT titleId FROM tbl_appbrowse_%010d %s);",
184-
userid, where, userid, where, userid, where);
185-
186-
if (sqlite3_exec(db, query, NULL, NULL, NULL) != SQLITE_OK)
187-
{
188-
LOG("Failed to execute query: %s", sqlite3_errmsg(db));
189-
sqlite3_free(query);
190-
sqlite3_close(db);
191-
return 0;
192-
}
193-
194-
LOG("Saving database to %s", db_path);
195-
sqlite3_memvfs_dump(db, NULL, db_path);
196-
sqlite3_free(query);
197-
sqlite3_close(db);
198-
199-
return 1;
200-
}
201-
202170
static void insert_appinfo_row(sqlite3* db, const char* titleId, const char* key, const char* value)
203171
{
204172
char* query = sqlite3_mprintf("INSERT OR IGNORE INTO tbl_appinfo(titleId, key, val) VALUES(%Q, %Q, %Q)", titleId, key, value);

0 commit comments

Comments
 (0)