├── .clang-format ├── .clang-tidy ├── .github └── workflows │ └── linux_x86_64_appimage.yml ├── .gitignore ├── CMake ├── lepus_defs.cmake ├── retrofw_defs.cmake ├── rg350_defs.cmake ├── rg99_defs.cmake ├── rs90_defs.cmake └── sdl2 │ ├── FindSDL2_gfx.cmake │ ├── FindSDL2_image.cmake │ └── FindSDL2_ttf.cmake ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── axis_direction.cpp ├── axis_direction.h ├── commander.cpp ├── commander.h ├── config.cpp ├── config.h ├── config_def.h ├── controller_buttons.cpp ├── controller_buttons.h ├── def.h ├── dialog.cpp ├── dialog.h ├── error_dialog.h ├── fileLister.cpp ├── fileLister.h ├── file_info.h ├── fileutils.cpp ├── fileutils.h ├── image_viewer.cpp ├── image_viewer.h ├── keyboard.cpp ├── keyboard.h ├── main.cpp ├── opkg ├── commander.png ├── commander.rg99.cfg ├── default.gcw0.desktop ├── default.lepus.desktop ├── default.retrofw.desktop ├── default.rg99.desktop ├── default.rs90.desktop ├── readme.gcw0.txt ├── readme.lepus.txt ├── readme.retrofw.txt └── readme.rs90.txt ├── package-opk.sh ├── packaging ├── appimage │ └── AppRun └── commander.desktop ├── panel.cpp ├── panel.h ├── res ├── DroidSansFallback.ttf ├── Fiery_Turk.ttf ├── FreeSans.ttf ├── README.md ├── build-icons.sh ├── file-image.png ├── file-ipk.png ├── file-is-symlink.png ├── file-opk.png ├── file-text.png ├── folder.png └── up.png ├── resourceManager.cpp ├── resourceManager.h ├── screen.cpp ├── screen.h ├── sdl_backports.h ├── sdl_ptrs.h ├── sdl_ttf_multifont.cpp ├── sdl_ttf_multifont.h ├── sdlutils.cpp ├── sdlutils.h ├── targets.sh ├── text_edit.cpp ├── text_edit.h ├── text_viewer.cpp ├── text_viewer.h ├── third_party ├── SDL2_gfx-1.0.4 │ ├── COPYING │ ├── SDL2_rotozoom.c │ └── SDL2_rotozoom.h ├── SDL2_ttf │ ├── SDL_ttf.c │ └── SDL_ttf.h ├── SDL_gfx-2.0.25 │ ├── LICENSE │ ├── SDL_rotozoom.c │ └── SDL_rotozoom.h └── SDL_ttf │ ├── SDL_ttf.c │ └── SDL_ttf.h ├── utf8.cpp ├── utf8.h ├── window.cpp └── window.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/workflows/linux_x86_64_appimage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/.github/workflows/linux_x86_64_appimage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/.gitignore -------------------------------------------------------------------------------- /CMake/lepus_defs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/CMake/lepus_defs.cmake -------------------------------------------------------------------------------- /CMake/retrofw_defs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/CMake/retrofw_defs.cmake -------------------------------------------------------------------------------- /CMake/rg350_defs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/CMake/rg350_defs.cmake -------------------------------------------------------------------------------- /CMake/rg99_defs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/CMake/rg99_defs.cmake -------------------------------------------------------------------------------- /CMake/rs90_defs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/CMake/rs90_defs.cmake -------------------------------------------------------------------------------- /CMake/sdl2/FindSDL2_gfx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/CMake/sdl2/FindSDL2_gfx.cmake -------------------------------------------------------------------------------- /CMake/sdl2/FindSDL2_image.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/CMake/sdl2/FindSDL2_image.cmake -------------------------------------------------------------------------------- /CMake/sdl2/FindSDL2_ttf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/CMake/sdl2/FindSDL2_ttf.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/README.md -------------------------------------------------------------------------------- /axis_direction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/axis_direction.cpp -------------------------------------------------------------------------------- /axis_direction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/axis_direction.h -------------------------------------------------------------------------------- /commander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/commander.cpp -------------------------------------------------------------------------------- /commander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/commander.h -------------------------------------------------------------------------------- /config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/config.cpp -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/config.h -------------------------------------------------------------------------------- /config_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/config_def.h -------------------------------------------------------------------------------- /controller_buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/controller_buttons.cpp -------------------------------------------------------------------------------- /controller_buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/controller_buttons.h -------------------------------------------------------------------------------- /def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/def.h -------------------------------------------------------------------------------- /dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/dialog.cpp -------------------------------------------------------------------------------- /dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/dialog.h -------------------------------------------------------------------------------- /error_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/error_dialog.h -------------------------------------------------------------------------------- /fileLister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/fileLister.cpp -------------------------------------------------------------------------------- /fileLister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/fileLister.h -------------------------------------------------------------------------------- /file_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/file_info.h -------------------------------------------------------------------------------- /fileutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/fileutils.cpp -------------------------------------------------------------------------------- /fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/fileutils.h -------------------------------------------------------------------------------- /image_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/image_viewer.cpp -------------------------------------------------------------------------------- /image_viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/image_viewer.h -------------------------------------------------------------------------------- /keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/keyboard.cpp -------------------------------------------------------------------------------- /keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/keyboard.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/main.cpp -------------------------------------------------------------------------------- /opkg/commander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/opkg/commander.png -------------------------------------------------------------------------------- /opkg/commander.rg99.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/opkg/commander.rg99.cfg -------------------------------------------------------------------------------- /opkg/default.gcw0.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/opkg/default.gcw0.desktop -------------------------------------------------------------------------------- /opkg/default.lepus.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/opkg/default.lepus.desktop -------------------------------------------------------------------------------- /opkg/default.retrofw.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/opkg/default.retrofw.desktop -------------------------------------------------------------------------------- /opkg/default.rg99.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/opkg/default.rg99.desktop -------------------------------------------------------------------------------- /opkg/default.rs90.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/opkg/default.rs90.desktop -------------------------------------------------------------------------------- /opkg/readme.gcw0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/opkg/readme.gcw0.txt -------------------------------------------------------------------------------- /opkg/readme.lepus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/opkg/readme.lepus.txt -------------------------------------------------------------------------------- /opkg/readme.retrofw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/opkg/readme.retrofw.txt -------------------------------------------------------------------------------- /opkg/readme.rs90.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/opkg/readme.rs90.txt -------------------------------------------------------------------------------- /package-opk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/package-opk.sh -------------------------------------------------------------------------------- /packaging/appimage/AppRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/packaging/appimage/AppRun -------------------------------------------------------------------------------- /packaging/commander.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/packaging/commander.desktop -------------------------------------------------------------------------------- /panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/panel.cpp -------------------------------------------------------------------------------- /panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/panel.h -------------------------------------------------------------------------------- /res/DroidSansFallback.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/res/DroidSansFallback.ttf -------------------------------------------------------------------------------- /res/Fiery_Turk.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/res/Fiery_Turk.ttf -------------------------------------------------------------------------------- /res/FreeSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/res/FreeSans.ttf -------------------------------------------------------------------------------- /res/README.md: -------------------------------------------------------------------------------- 1 | These icons are from the "Humanity" Gnome theme. 2 | License: GPL 3 | 4 | -------------------------------------------------------------------------------- /res/build-icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/res/build-icons.sh -------------------------------------------------------------------------------- /res/file-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/res/file-image.png -------------------------------------------------------------------------------- /res/file-ipk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/res/file-ipk.png -------------------------------------------------------------------------------- /res/file-is-symlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/res/file-is-symlink.png -------------------------------------------------------------------------------- /res/file-opk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/res/file-opk.png -------------------------------------------------------------------------------- /res/file-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/res/file-text.png -------------------------------------------------------------------------------- /res/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/res/folder.png -------------------------------------------------------------------------------- /res/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/res/up.png -------------------------------------------------------------------------------- /resourceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/resourceManager.cpp -------------------------------------------------------------------------------- /resourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/resourceManager.h -------------------------------------------------------------------------------- /screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/screen.cpp -------------------------------------------------------------------------------- /screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/screen.h -------------------------------------------------------------------------------- /sdl_backports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/sdl_backports.h -------------------------------------------------------------------------------- /sdl_ptrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/sdl_ptrs.h -------------------------------------------------------------------------------- /sdl_ttf_multifont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/sdl_ttf_multifont.cpp -------------------------------------------------------------------------------- /sdl_ttf_multifont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/sdl_ttf_multifont.h -------------------------------------------------------------------------------- /sdlutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/sdlutils.cpp -------------------------------------------------------------------------------- /sdlutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/sdlutils.h -------------------------------------------------------------------------------- /targets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/targets.sh -------------------------------------------------------------------------------- /text_edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/text_edit.cpp -------------------------------------------------------------------------------- /text_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/text_edit.h -------------------------------------------------------------------------------- /text_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/text_viewer.cpp -------------------------------------------------------------------------------- /text_viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/text_viewer.h -------------------------------------------------------------------------------- /third_party/SDL2_gfx-1.0.4/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/third_party/SDL2_gfx-1.0.4/COPYING -------------------------------------------------------------------------------- /third_party/SDL2_gfx-1.0.4/SDL2_rotozoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/third_party/SDL2_gfx-1.0.4/SDL2_rotozoom.c -------------------------------------------------------------------------------- /third_party/SDL2_gfx-1.0.4/SDL2_rotozoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/third_party/SDL2_gfx-1.0.4/SDL2_rotozoom.h -------------------------------------------------------------------------------- /third_party/SDL2_ttf/SDL_ttf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/third_party/SDL2_ttf/SDL_ttf.c -------------------------------------------------------------------------------- /third_party/SDL2_ttf/SDL_ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/third_party/SDL2_ttf/SDL_ttf.h -------------------------------------------------------------------------------- /third_party/SDL_gfx-2.0.25/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/third_party/SDL_gfx-2.0.25/LICENSE -------------------------------------------------------------------------------- /third_party/SDL_gfx-2.0.25/SDL_rotozoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/third_party/SDL_gfx-2.0.25/SDL_rotozoom.c -------------------------------------------------------------------------------- /third_party/SDL_gfx-2.0.25/SDL_rotozoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/third_party/SDL_gfx-2.0.25/SDL_rotozoom.h -------------------------------------------------------------------------------- /third_party/SDL_ttf/SDL_ttf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/third_party/SDL_ttf/SDL_ttf.c -------------------------------------------------------------------------------- /third_party/SDL_ttf/SDL_ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/third_party/SDL_ttf/SDL_ttf.h -------------------------------------------------------------------------------- /utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/utf8.cpp -------------------------------------------------------------------------------- /utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/utf8.h -------------------------------------------------------------------------------- /window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/window.cpp -------------------------------------------------------------------------------- /window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/od-contrib/commander/HEAD/window.h --------------------------------------------------------------------------------