Fix Downloader - leonkasovan/RG353P GitHub Wiki

Fix Content Downloader

edit nano /etc/pacman.conf
from

[anbernic]
Server = https://store.anbernic.org/

to

[batocera]
Server = https://store.batocera.org/
cd /userdata/system/pacman/db/sync
ln -s anbernic.db batocera.db

Fix Theme Downloader

Edit nano /usr/bin/anbernic-es-theme

CONFIGDIR="/userdata/themes"
THEMESLIST="https://updates.anbernic.org/themes.txt"
LOCALTHEMESLIST="/userdata/system/themes.txt"

to

CONFIGDIR="/userdata/themes"
THEMESLIST="https://updates.batocera.org/themes.txt"
LOCALTHEMESLIST="/userdata/system/themes.txt"

Edit nano anbernic.conf Add this line:

global.updates.url=https://updates.batocera.org
global.themes.url=https://updates.batocera.org/themes.json

Fix The Bezel Project

Edit nano /usr/bin/anbernic-es-thebezelproject

readonly DEFAULT_BEZEL_URL="https://updates.anbernic.org/thebezelproject"
readonly SYSTEMS_LIST="https://updates.anbernic.org/tbp_systems.txt"
readonly LOCAL_SYSTEMS_LIST="/userdata/system/tbp_systems.txt"
readonly INDEX_LIST="https://updates.anbernic.org/thebezelproject/tbp_"

to

readonly DEFAULT_BEZEL_URL="https://updates.batocera.org/thebezelproject"
readonly SYSTEMS_LIST="https://updates.batocera.org/tbp_systems.txt"
readonly LOCAL_SYSTEMS_LIST="/userdata/system/tbp_systems.txt"
readonly INDEX_LIST="https://updates.batocera.org/thebezelproject/tbp_"