Skip to content

Commit

Permalink
Merge branch 'main' into add-smbd-samba
Browse files Browse the repository at this point in the history
  • Loading branch information
XK9274 authored Jul 2, 2023
2 parents 56de511 + d5d14ff commit 9050265
Show file tree
Hide file tree
Showing 22 changed files with 124 additions and 120 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ static/build/.tmp_update/updater text eol=lf
static/dist/.tmp_update/updater text eol=lf
static/dist/miyoo/app/.tmp_update/updater text eol=lf
static/dist/miyoo/app/MainUI text eol=lf
static/dist/.tmp_update/bin/shutdown text eol=lf
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Check build
runs-on: ubuntu-latest
container:
image: ghcr.io/onionui/miyoomini-toolchain:latest
image: aemiii91/miyoomini-toolchain:latest
options: --user root
steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Pre-release
runs-on: ubuntu-latest
container:
image: ghcr.io/onionui/miyoomini-toolchain:latest
image: aemiii91/miyoomini-toolchain:latest
options: --user root
steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Tagged release
runs-on: ubuntu-latest
container:
image: ghcr.io/onionui/miyoomini-toolchain:latest
image: aemiii91/miyoomini-toolchain:latest
options: --user root
steps:
- name: Checkout repository
Expand Down
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ifeq (,$(GTEST_INCLUDE_DIR))
GTEST_INCLUDE_DIR = /usr/include/
endif

TOOLCHAIN := mholdg16/miyoomini-toolchain:latest
TOOLCHAIN := aemiii91/miyoomini-toolchain:latest

include ./src/common/commands.mk

Expand Down Expand Up @@ -190,22 +190,22 @@ dist: build
@$(ECHO) $(PRINT_RECIPE)
# Package configs
@cp -R $(TEMP_DIR)/configs/Saves/CurrentProfile/ $(TEMP_DIR)/configs/Saves/GuestProfile
@cd $(TEMP_DIR)/configs && zip -rq $(BUILD_DIR)/.tmp_update/config/configs.pak .
@cd $(TEMP_DIR)/configs && 7z a -r -mtm=off $(BUILD_DIR)/.tmp_update/config/configs.pak . -bsp0 -bso0
@rm -rf $(TEMP_DIR)/configs
@rmdir $(TEMP_DIR)
# Package RetroArch separately
@cd $(BUILD_DIR) && zip -rq retroarch.pak RetroArch
@cd $(BUILD_DIR) && 7z a -r -mtm=off retroarch.pak RetroArch -bsp0 -bso0
@mkdir -p $(DIST_DIR)/RetroArch
@mv $(BUILD_DIR)/retroarch.pak $(DIST_DIR)/RetroArch/
@echo $(RA_SUBVERSION) > $(DIST_DIR)/RetroArch/ra_package_version.txt
# Package Onion core
@cd $(BUILD_DIR) && zip -rq $(DIST_DIR)/miyoo/app/.tmp_update/onion.pak . -x RetroArch RetroArch/\*
@cd $(BUILD_DIR) && 7z a -r -mtm=off $(DIST_DIR)/miyoo/app/.tmp_update/onion.pak . -xr!RetroArch -bsp0 -bso0
@$(ECHO) "\n-> [DIST READY!]"

release: dist
@$(ECHO) $(PRINT_RECIPE)
@rm -f $(RELEASE_DIR)/$(RELEASE_NAME).zip
@cd $(DIST_DIR) && zip -rq $(RELEASE_DIR)/$(RELEASE_NAME).zip .
@cd $(DIST_DIR) && 7z a -r -mtc=off $(RELEASE_DIR)/$(RELEASE_NAME).zip . -bsp0 -bso0
@$(ECHO) "\n-> [RELEASE READY!]"

clean:
Expand Down
2 changes: 1 addition & 1 deletion src/axp/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ include ../common/config.mk

TARGET = axp
CFLAGS := $(CFLAGS) -Os -ffunction-sections -fdata-sections -Wall
LDFLAGS := $(LDFLAGS) -Wl,--gc-sections -s
LDFLAGS := $(LDFLAGS) -Wl,--gc-sections

include ../common/commands.mk
include ../common/recipes.mk
2 changes: 1 addition & 1 deletion src/batmon/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ INCLUDE_SHMVAR=1
include ../common/config.mk

TARGET = batmon
LDFLAGS := $(LDFLAGS) -s -pthread
LDFLAGS := $(LDFLAGS) -pthread

include ../common/commands.mk
include ../common/recipes.mk
2 changes: 1 addition & 1 deletion src/bootScreen/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ INCLUDE_SHMVAR=1
include ../common/config.mk

TARGET = bootScreen
LDFLAGS := $(LDFLAGS) -s -lSDL -lSDL_image -lSDL_ttf -lSDL_mixer
LDFLAGS := $(LDFLAGS) -lSDL -lSDL_image -lSDL_ttf -lSDL_mixer

include ../common/commands.mk
include ../common/recipes.mk
2 changes: 1 addition & 1 deletion src/chargingState/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ INCLUDE_CJSON=1
include ../common/config.mk

TARGET = chargingState
LDFLAGS := $(LDFLAGS) -s -lSDL -lSDL_image -lSDL_ttf
LDFLAGS := $(LDFLAGS) -lSDL -lSDL_image -lSDL_ttf

include ../common/commands.mk
include ../common/recipes.mk
2 changes: 1 addition & 1 deletion src/common/config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ OFILES = $(CFILES:.c=.o) $(CPPFILES:.cpp=.o)
CFLAGS := -I../../include -I../common -DPLATFORM_$(shell echo $(PLATFORM) | tr a-z A-Z) -DONION_VERSION="\"$(VERSION)\"" -Wall

ifeq ($(DEBUG),1)
CFLAGS := $(CFLAGS) -DLOG_DEBUG -g
CFLAGS := $(CFLAGS) -DLOG_DEBUG -g3
endif

ifeq ($(TEST),1)
Expand Down
2 changes: 1 addition & 1 deletion src/easter/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include ../common/config.mk

TARGET = easter
LDFLAGS := $(LDFLAGS) -s -lSDL -lSDL_image -lSDL_ttf -lSDL_mixer
LDFLAGS := $(LDFLAGS) -lSDL -lSDL_image -lSDL_ttf -lSDL_mixer

include ../common/commands.mk
include ../common/recipes.mk
2 changes: 1 addition & 1 deletion src/jpg2png/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ CFILES = $(foreach dir, $(SOURCES), $(wildcard $(dir)/*.c))
OFILES = $(CFILES:.c=.o)

CFLAGS = -Os $(ARCH) -ffunction-sections -fdata-sections -Wall
LDFLAGS = $(ARCH) -lmi_sys -lmi_gfx -lpng -Wl,-Bstatic -ljpeg -Wl,-Bdynamic -s
LDFLAGS = $(ARCH) -lmi_sys -lmi_gfx -lpng -Wl,-Bstatic -ljpeg -Wl,-Bdynamic

$(TARGET): $(OFILES)
$(CC) $(OFILES) -o $@ $(LDFLAGS)
Expand Down
2 changes: 1 addition & 1 deletion src/keymon/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ include ../common/config.mk

TARGET = keymon
CFLAGS := $(CFLAGS) -Os -ffunction-sections -fdata-sections
LDFLAGS := $(LDFLAGS) -lpthread -lpng -Wl,--gc-sections -s
LDFLAGS := $(LDFLAGS) -lpthread -lpng -Wl,--gc-sections

include ../common/commands.mk
include ../common/recipes.mk
2 changes: 1 addition & 1 deletion src/packageManager/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ INCLUDE_CJSON=1
include ../common/config.mk

TARGET = packageManager
LDFLAGS := $(LDFLAGS) -s -lSDL -lSDL_image -lSDL_ttf
LDFLAGS := $(LDFLAGS) -lSDL -lSDL_image -lSDL_ttf

include ../common/commands.mk
include ../common/recipes.mk
2 changes: 1 addition & 1 deletion src/playActivity/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include ../common/config.mk

TARGET = playActivity
LDFLAGS := $(LDFLAGS) -s -lsqlite3
LDFLAGS := $(LDFLAGS) -lsqlite3

include ../common/commands.mk
include ../common/recipes.mk
2 changes: 1 addition & 1 deletion src/playActivityUI/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include ../common/config.mk

TARGET = playActivityUI
LDFLAGS := $(LDFLAGS) -s -lSDL -lSDL_image -lSDL_ttf -lsqlite3
LDFLAGS := $(LDFLAGS) -lSDL -lSDL_image -lSDL_ttf -lsqlite3

include ../common/commands.mk
include ../common/recipes.mk
2 changes: 1 addition & 1 deletion src/pngScale/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ INCLUDE_SHMVAR=1
include ../common/config.mk

TARGET = pngScale
LDFLAGS := $(LDFLAGS) -lSDL -lmi_sys -lmi_gfx -lpng -s
LDFLAGS := $(LDFLAGS) -lSDL -lmi_sys -lmi_gfx -lpng

include ../common/commands.mk
include ../common/recipes.mk
2 changes: 1 addition & 1 deletion src/randomGamePicker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ INCLUDE_CJSON=1
include ../common/config.mk

TARGET = randomGamePicker
LDFLAGS := $(LDFLAGS) -s -lsqlite3
LDFLAGS := $(LDFLAGS) -lsqlite3

include ../common/commands.mk
include ../common/recipes.mk
2 changes: 1 addition & 1 deletion src/themeSwitcher/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ INCLUDE_CJSON=1
include ../common/config.mk

TARGET = themeSwitcher
LDFLAGS := $(LDFLAGS) -s -lSDL -lSDL_image -lSDL_ttf
LDFLAGS := $(LDFLAGS) -lSDL -lSDL_image -lSDL_ttf

include ../common/commands.mk
include ../common/recipes.mk
Binary file modified static/build/miyoo/app/Exo-2-Bold-Italic_Universal.ttf
Binary file not shown.
84 changes: 42 additions & 42 deletions static/build/miyoo/app/lang/ru.lang
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@
"47": "Секунды",
"48": "В",
"49": "Плейлист",
"50": "Очистить",
"51": "Открыть",
"52": "Удалить",
"53": "Обновляю",
"50": "Очистить список",
"51": "Запустить",
"52": "Удалить из списка",
"53": "Очистка всех игровых кэшей",
"54": "Обновить ROMы",
"55": "Добавить в избранное",
"56": "Обновить",
Expand All @@ -62,12 +62,12 @@
"59": "Номер модели",
"60": "Серийный номер",
"61": "Версия прошивки",
"62": "Процессор",
"62": "Частота процессора",
"63": "%dМгц",
"64": "Оперативная память",
"64": "Объем памяти",
"65": "%dМб",
"66": "Карта памяти",
"67": "Сброс всех настроек",
"66": "Занятый/общий объем хранилища",
"67": "Сброс настроек",
"68": "Сбросить все системные настройки?\nСодержимое карты памяти\nне будет удалено.",
"69": "Обновить ROMы на карте памяти",
"70": "Перезагрузить",
Expand All @@ -77,17 +77,17 @@
"74": "Неизвестный",
"75": "Загрузка",
"76": "Загрузка",
"77": "Очистить список",
"78": "Очистить список последних игр?\nСохранения и сами игры\nс карты памяти удалены не будут.",
"79": "Очистить избранное",
"80": "Убрать все игры из избранного?\nСохранения и сами игры\nс карты памяти удалены не будут.",
"81": "Убрать из избранного",
"82": "Убрать игру из избранного?\nСохранения и сама игра\nс карты памяти удалены не будут.",
"77": "Очистить список недавних игр?",
"78": "Сохранения и сами игры\nс карты памяти удалены не будут.",
"79": "Очистить список избранного?",
"80": "Сохранения и сами игры\nс карты памяти удалены не будут.",
"81": "Убрать игру из избранного?",
"82": "Сохранения и сама игра\nс карты памяти удалены не будут.",
"83": "Сканирую игры",
"84": "Информация об игре",
"85": "Создать кэш",
"86": "Выключение",
"87": "Выключить через %d секунд",
"87": "Выключение через %d секунд",
"88": "Откр",
"89": "Возв",
"90": "Нав",
Expand All @@ -96,7 +96,7 @@
"93": "Сохранить",
"94": "Загрузить",
"95": "Громкость",
"96": "Выход из Игры",
"96": "Выход в меню",
"97": "Запись %d/%d",
"98": "Пусто",
"99": "Нет обложки",
Expand All @@ -110,20 +110,20 @@
"107": "Прилож.",
"108": "Выключить устройство?",
"109": "Тест кнопок",
"110": "Назначение кнопок",
"110": "Переназначение кнопок",
"111": "Выход",
"112": "Сохранить и выйти",
"113": "Через %d минут",
"114": "Никогда",
"115": "Спящий режим",
"116": "Удалить ROM",
"117": "Удалить ROM из этого списка?",
"118": "Цвет",
"116": "Удалить игру с карты памяти?",
"117": "Подтвердите, что вы хотите удалить\nэту игру с вашей карты памяти.",
"118": "Экран",
"119": "Яркость",
"120": "Тон",
"121": "Насыщенность",
"122": "Контраст",
"123": "Перезагрузите,\nчтобы применить изменения.",
"123": " \n \nНастройки экрана сохранены!\nПожалуйста, перезагрузите устройство.\n \n ",
"124": "Применить изменения",
"125": "Темы",
"126": "Размер шрифта",
Expand All @@ -133,29 +133,29 @@
"130": "Исправления",
"131": "WIFI",
"132": " ",
"133": "Connect",
"134": "Hotspot",
"133": "Подключиться",
"134": "Точка доступа",
"135": "SSID",
"136": "Password",
"136": "Пароль",
"137": "Bluetooth",
"138": "Netplay",
"139": "Reset Bluetooth Service",
"140": "Scanning",
"141": "No Device Found",
"142": "Bluetooth Not Ready",
"143": "Put roms into following directory",
"144": "Bluetooth Reset",
"145": "Hotspot is on",
"146": "CPU Frequency",
"147": "Connected",
"148": "My Device",
"149": "Other Device",
"150": "Info",
"151": "Input SSID",
"152": "Input Password",
"153": "Search",
"154": "Fail to connect\nCheck your password\nOr reboot router",
"155": "Website",
"139": "Сбросить сервис Bluetooth",
"140": "Сканирование",
"141": "Устройства не найдены",
"142": "Bluetooth не готов",
"143": "Поместите ROMы в указанный каталог",
"144": "Сброс Bluetooth",
"145": "Точка доступа включена",
"146": "Частота ЦПУ",
"147": "Подключено",
"148": "Моё устройство",
"149": "Другое устройство",
"150": "Инфо",
"151": "Введите SSID",
"152": "Введите пароль",
"153": "Поиск",
"154": "Не удается установить соединение\nПроверьте ваш пароль\nили перезагрузите маршрутизатор",
"155": "Веб-сайт",
"300": "Далее",
"301": "Продолжить"
}
}
Loading

0 comments on commit 9050265

Please sign in to comment.