├── .flake8 ├── .github └── workflows │ ├── release-alpha.yaml │ ├── release-beta.yaml │ └── release-stable.yaml ├── .gitignore ├── ANNOUNCEMENT.md ├── BUILDING_STUFF.md ├── DEVELOPING.md ├── LICENSE ├── PortMaster ├── .Backup │ ├── donottouch.txt │ └── donottouch_x.txt ├── 7zzs.aarch64 ├── 7zzs.armhf ├── 7zzs.x86_64 ├── PortMaster.sh ├── PortMasterDialog.txt ├── autoinstall │ └── place-zips-here-for-autoinstallation.txt ├── batocera │ ├── control.txt │ ├── gamecontrollerdb.txt │ └── shGenerator.py ├── control.txt ├── device_info.txt ├── exlibs │ ├── ansimarkup │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── ansi.py │ │ ├── compat.py │ │ ├── logformatter.py │ │ ├── markup.py │ │ └── tags.py │ ├── certifi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cacert.pem │ │ └── core.py │ ├── charset_normalizer │ │ ├── __init__.py │ │ ├── api.py │ │ ├── assets │ │ │ └── __init__.py │ │ ├── cd.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ └── normalizer.py │ │ ├── constant.py │ │ ├── legacy.py │ │ ├── md.py │ │ ├── models.py │ │ ├── py.typed │ │ ├── utils.py │ │ └── version.py │ ├── colorama │ │ ├── __init__.py │ │ ├── ansi.py │ │ ├── ansitowin32.py │ │ ├── initialise.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── ansi_test.py │ │ │ ├── ansitowin32_test.py │ │ │ ├── initialise_test.py │ │ │ ├── isatty_test.py │ │ │ ├── utils.py │ │ │ └── winterm_test.py │ │ ├── win32.py │ │ └── winterm.py │ ├── fastjsonschema │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── draft04.py │ │ ├── draft06.py │ │ ├── draft07.py │ │ ├── exceptions.py │ │ ├── generator.py │ │ ├── indent.py │ │ ├── ref_resolver.py │ │ └── version.py │ ├── idna │ │ ├── __init__.py │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ ├── py.typed │ │ └── uts46data.py │ ├── loguru │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── _asyncio_loop.py │ │ ├── _better_exceptions.py │ │ ├── _colorama.py │ │ ├── _colorizer.py │ │ ├── _contextvars.py │ │ ├── _ctime_functions.py │ │ ├── _datetime.py │ │ ├── _defaults.py │ │ ├── _error_interceptor.py │ │ ├── _file_sink.py │ │ ├── _filters.py │ │ ├── _get_frame.py │ │ ├── _handler.py │ │ ├── _locks_machinery.py │ │ ├── _logger.py │ │ ├── _recattrs.py │ │ ├── _simple_sinks.py │ │ ├── _string_parsers.py │ │ └── py.typed │ ├── png.py │ ├── qrcode │ │ ├── LUT.py │ │ ├── __init__.py │ │ ├── base.py │ │ ├── compat │ │ │ ├── __init__.py │ │ │ ├── etree.py │ │ │ └── pil.py │ │ ├── console_scripts.py │ │ ├── constants.py │ │ ├── exceptions.py │ │ ├── image │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── pil.py │ │ │ ├── pure.py │ │ │ ├── styledpil.py │ │ │ ├── styles │ │ │ │ ├── __init__.py │ │ │ │ ├── colormasks.py │ │ │ │ └── moduledrawers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── pil.py │ │ │ │ │ └── svg.py │ │ │ └── svg.py │ │ ├── main.py │ │ ├── release.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_example.py │ │ │ ├── test_qrcode.py │ │ │ ├── test_qrcode_svg.py │ │ │ ├── test_release.py │ │ │ ├── test_script.py │ │ │ └── test_util.py │ │ └── util.py │ ├── requests │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── _internal_utils.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── help.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ ├── sdl2 │ │ ├── __init__.py │ │ ├── _internal.py │ │ ├── _sdl_init.py │ │ ├── audio.py │ │ ├── blendmode.py │ │ ├── clipboard.py │ │ ├── cpuinfo.py │ │ ├── dll.py │ │ ├── endian.py │ │ ├── error.py │ │ ├── events.py │ │ ├── ext │ │ │ ├── __init__.py │ │ │ ├── algorithms.py │ │ │ ├── array.py │ │ │ ├── bitmapfont.py │ │ │ ├── color.py │ │ │ ├── colorpalettes.py │ │ │ ├── common.py │ │ │ ├── compat.py │ │ │ ├── displays.py │ │ │ ├── draw.py │ │ │ ├── ebs.py │ │ │ ├── err.py │ │ │ ├── events.py │ │ │ ├── image.py │ │ │ ├── mouse.py │ │ │ ├── msgbox.py │ │ │ ├── particles.py │ │ │ ├── pixelaccess.py │ │ │ ├── renderer.py │ │ │ ├── resources.py │ │ │ ├── sprite.py │ │ │ ├── spritesystem.py │ │ │ ├── surface.py │ │ │ ├── ttf.py │ │ │ ├── uisystem.py │ │ │ └── window.py │ │ ├── filesystem.py │ │ ├── gamecontroller.py │ │ ├── gesture.py │ │ ├── guid.py │ │ ├── haptic.py │ │ ├── hidapi.py │ │ ├── hints.py │ │ ├── joystick.py │ │ ├── keyboard.py │ │ ├── keycode.py │ │ ├── loadso.py │ │ ├── locale.py │ │ ├── log.py │ │ ├── messagebox.py │ │ ├── metal.py │ │ ├── misc.py │ │ ├── mouse.py │ │ ├── pixels.py │ │ ├── platform.py │ │ ├── power.py │ │ ├── rect.py │ │ ├── render.py │ │ ├── rwops.py │ │ ├── scancode.py │ │ ├── sdlgfx.py │ │ ├── sdlimage.py │ │ ├── sdlmixer.py │ │ ├── sdlttf.py │ │ ├── sensor.py │ │ ├── shape.py │ │ ├── stdinc.py │ │ ├── surface.py │ │ ├── syswm.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── audio_test.py │ │ │ ├── blendmode_test.py │ │ │ ├── clipboard_test.py │ │ │ ├── conftest.py │ │ │ ├── cpuinfo_test.py │ │ │ ├── endian_test.py │ │ │ ├── error_test.py │ │ │ ├── events_test.py │ │ │ ├── filesystem_test.py │ │ │ ├── gamecontroller_test.py │ │ │ ├── guid_test.py │ │ │ ├── hidapi_test.py │ │ │ ├── hints_test.py │ │ │ ├── joystick_test.py │ │ │ ├── keyboard_test.py │ │ │ ├── locale_test.py │ │ │ ├── log_test.py │ │ │ ├── metal_test.py │ │ │ ├── mouse_test.py │ │ │ ├── pixels_test.py │ │ │ ├── platform_test.py │ │ │ ├── power_test.py │ │ │ ├── rect_test.py │ │ │ ├── render_test.py │ │ │ ├── resources │ │ │ │ ├── animationtest.gif │ │ │ │ ├── font.bmp │ │ │ │ ├── resources.tar.gz │ │ │ │ ├── resources.zip │ │ │ │ ├── rwopstest.txt │ │ │ │ ├── soundtest.mp3 │ │ │ │ ├── surfacetest.bmp │ │ │ │ ├── surfacetest.cur │ │ │ │ ├── surfacetest.gif │ │ │ │ ├── surfacetest.ico │ │ │ │ ├── surfacetest.jpg │ │ │ │ ├── surfacetest.lbm │ │ │ │ ├── surfacetest.pbm │ │ │ │ ├── surfacetest.pcx │ │ │ │ ├── surfacetest.pgm │ │ │ │ ├── surfacetest.png │ │ │ │ ├── surfacetest.pnm │ │ │ │ ├── surfacetest.ppm │ │ │ │ ├── surfacetest.qoi │ │ │ │ ├── surfacetest.svg │ │ │ │ ├── surfacetest.tga │ │ │ │ ├── surfacetest.tif │ │ │ │ ├── surfacetest.webp │ │ │ │ ├── surfacetest.xcf │ │ │ │ ├── surfacetest.xpm │ │ │ │ └── tuffy.ttf │ │ │ ├── rwops_test.py │ │ │ ├── sdl2ext_algorithms_test.py │ │ │ ├── sdl2ext_array_test.py │ │ │ ├── sdl2ext_color_test.py │ │ │ ├── sdl2ext_displays_test.py │ │ │ ├── sdl2ext_draw_test.py │ │ │ ├── sdl2ext_ebs_test.py │ │ │ ├── sdl2ext_events_test.py │ │ │ ├── sdl2ext_font_test.py │ │ │ ├── sdl2ext_image_test.py │ │ │ ├── sdl2ext_mouse_test.py │ │ │ ├── sdl2ext_msgbox_test.py │ │ │ ├── sdl2ext_particles_test.py │ │ │ ├── sdl2ext_pixelaccess_test.py │ │ │ ├── sdl2ext_renderer_test.py │ │ │ ├── sdl2ext_resources_test.py │ │ │ ├── sdl2ext_sprite_test.py │ │ │ ├── sdl2ext_spritesystem_test.py │ │ │ ├── sdl2ext_surface_test.py │ │ │ ├── sdl2ext_test.py │ │ │ ├── sdl2ext_uisystem_test.py │ │ │ ├── sdl2ext_window_test.py │ │ │ ├── sdl_test.py │ │ │ ├── sdlgfx_test.py │ │ │ ├── sdlimage_test.py │ │ │ ├── sdlmixer_test.py │ │ │ ├── sdlttf_test.py │ │ │ ├── sensor_test.py │ │ │ ├── shape_test.py │ │ │ ├── surface_test.py │ │ │ ├── syswm_test.py │ │ │ ├── timer_test.py │ │ │ ├── touch_test.py │ │ │ ├── version_test.py │ │ │ ├── video_test.py │ │ │ └── vulkan_test.py │ │ ├── timer.py │ │ ├── touch.py │ │ ├── version.py │ │ ├── video.py │ │ └── vulkan.py │ ├── typing_extensions.py │ └── urllib3 │ │ ├── __init__.py │ │ ├── _collections.py │ │ ├── _version.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ ├── __init__.py │ │ ├── _appengine_environ.py │ │ ├── _securetransport │ │ │ ├── __init__.py │ │ │ ├── bindings.py │ │ │ └── low_level.py │ │ ├── appengine.py │ │ ├── ntlmpool.py │ │ ├── pyopenssl.py │ │ ├── securetransport.py │ │ └── socks.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ ├── __init__.py │ │ ├── backports │ │ │ ├── __init__.py │ │ │ └── makefile.py │ │ └── six.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── proxy.py │ │ ├── queue.py │ │ ├── request.py │ │ ├── response.py │ │ ├── retry.py │ │ ├── ssl_.py │ │ ├── ssl_match_hostname.py │ │ ├── ssltransport.py │ │ ├── timeout.py │ │ ├── url.py │ │ └── wait.py ├── funcs.txt ├── gamecontrollerdb.txt ├── gameinfo.xml ├── gptokeyb ├── gptokeyb.armhf ├── gptokeyb.x86_64 ├── gptokeyb2 ├── gptokeyb2.armhf ├── gptokeyb2.x86_64 ├── harbourmaster ├── innoextract.aarch64 ├── innoextract.armhf ├── innoextract.x86_64 ├── knulli │ ├── control.txt │ ├── gamecontrollerdb.txt │ └── shGenerator.py ├── libgl_Batocera.txt ├── libgl_EmuELEC.txt ├── libgl_JELOS.txt ├── libgl_Miyoo.txt ├── libgl_REGLinux.txt ├── libgl_ROCKNIX.txt ├── libgl_UnofficialOS.txt ├── libgl_default.txt ├── libgl_knulli.txt ├── libgl_muOS.txt ├── libgl_uConsole.txt ├── libinterpose.aarch64.so ├── libinterpose.armhf.so ├── libinterpose.x86_64.so ├── libs │ └── .gitkeep ├── licenses │ ├── LICENSE-7zzs.txt │ ├── LICENSE-aeromatics.txt │ ├── LICENSE-ansimarkup.txt │ ├── LICENSE-certifi.txt │ ├── LICENSE-colorama.txt │ ├── LICENSE-dejavu.txt │ ├── LICENSE-fastjsonschema.txt │ ├── LICENSE-gptokeyb.txt │ ├── LICENSE-gptokeyb2.txt │ ├── LICENSE-idna.md │ ├── LICENSE-innoextract.txt │ ├── LICENSE-libmodplug.txt │ ├── LICENSE-libogg.txt │ ├── LICENSE-loguru.txt │ ├── LICENSE-love.txt │ ├── LICENSE-luajit.txt │ ├── LICENSE-noto.txt │ ├── LICENSE-peaberry-otf.txt │ ├── LICENSE-port_gui.txt │ ├── LICENSE-pypng.txt │ ├── LICENSE-qrcode.txt │ ├── LICENSE-requests.txt │ ├── LICENSE-typing_extension.txt │ ├── LICENSE-urllib3.txt │ └── LICENSE-xdelta3.txt ├── mapper.py ├── miyoo │ ├── PortMaster.txt │ └── control.txt ├── mod_.txt ├── mod_Batocera.txt ├── mod_EmuELEC.txt ├── mod_JELOS.txt ├── mod_Miyoo.txt ├── mod_REGLinux.txt ├── mod_ROCKNIX.txt ├── mod_TrimUI.txt ├── mod_UnofficialOS.txt ├── mod_knulli.txt ├── mod_muOS.txt ├── muos │ ├── PortMaster.txt │ ├── control.txt │ ├── image_smash.txt │ └── mount ├── oga_controls ├── oga_controls_settings.txt ├── post-install ├── pugwash ├── pylibs │ ├── default_theme │ │ ├── buttons.png │ │ ├── click.ogg │ │ ├── main_menu_stock.ogg │ │ ├── music.mod │ │ ├── no-image.jpg │ │ ├── pointenfedde.png │ │ ├── screenshot.png │ │ └── theme.json │ ├── harbourmaster │ │ ├── __init__.py │ │ ├── captain.py │ │ ├── config.py │ │ ├── harbour.py │ │ ├── hardware.py │ │ ├── info.py │ │ ├── platform.py │ │ ├── source.py │ │ └── util.py │ ├── locales │ │ ├── de_DE │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.po │ │ │ │ └── themes.po │ │ ├── en_US │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.po │ │ │ │ └── themes.po │ │ ├── es_ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.po │ │ │ │ └── themes.po │ │ ├── fr_FR │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.po │ │ │ │ └── themes.po │ │ ├── it_IT │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.po │ │ │ │ └── themes.po │ │ ├── ja_JP │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.po │ │ │ │ └── themes.po │ │ ├── ko_KR │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.po │ │ │ │ └── themes.po │ │ ├── nl_NL │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.po │ │ │ │ └── themes.po │ │ ├── pl_PL │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.po │ │ │ │ └── themes.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.po │ │ │ │ └── themes.po │ │ ├── ro_RO │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.po │ │ │ │ └── themes.po │ │ ├── ru_RU │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.po │ │ │ │ └── themes.po │ │ ├── sv_SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.po │ │ │ │ └── themes.po │ │ ├── uk_UA │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.po │ │ │ │ └── themes.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ ├── messages.po │ │ │ └── themes.po │ ├── pugscene.py │ ├── pugtheme.py │ ├── pySDL2gui.py │ ├── resources │ │ ├── .gitignore │ │ ├── DejaVuSans.ttf │ │ └── NotoSans.tar.xz │ └── utility.py ├── resources │ ├── background.png │ ├── do_init │ ├── error.ini │ └── splash.ini ├── retrodeck │ ├── PortMaster.txt │ ├── control.txt │ ├── liblzo2.so.2 │ ├── mount │ └── unsquashfs ├── runtimes │ └── love_11.5 │ │ ├── libs.aarch64 │ │ ├── liblove-11.5.so │ │ ├── libluajit-5.1.so.2 │ │ ├── libmodplug.so.1 │ │ └── libogg.so.0 │ │ ├── libs.x86_64 │ │ ├── liblove-11.5.so │ │ └── libluajit-5.1.so.2 │ │ ├── love.aarch64 │ │ ├── love.txt │ │ └── love.x86_64 ├── sdl2imgshow.aarch64 ├── sdl2imgshow.armhf ├── sdl2imgshow.x86_64 ├── sdl_resolution.aarch64 ├── sdl_resolution.armhf ├── sdl_resolution.x86_64 ├── tasksetter ├── trimui │ ├── PortMaster.txt │ ├── config.json │ ├── control.txt │ ├── icon.png │ ├── image_smash.txt │ └── update.txt ├── utils │ ├── patcher.txt │ ├── patcher │ │ ├── assets │ │ │ ├── font │ │ │ │ └── PeaberryBase.ttf │ │ │ ├── gfx │ │ │ │ ├── backgroundSheet.png │ │ │ │ ├── cybionImage.png │ │ │ │ └── patchImage.png │ │ │ └── sfx │ │ │ │ ├── Eternity.ogg │ │ │ │ ├── LICENSE.tekkenfede.txt │ │ │ │ ├── optionSelect.ogg │ │ │ │ ├── optionSwitch.ogg │ │ │ │ └── typeSound.ogg │ │ ├── main.lua │ │ ├── patch_thread.lua │ │ ├── push.lua │ │ └── talkies.lua │ ├── pmsplash.txt │ ├── pmsplash │ │ ├── assets │ │ │ ├── Aero Matics Regular.ttf │ │ │ ├── boat.png │ │ │ ├── logo-mask.png │ │ │ └── logo.png │ │ ├── main.lua │ │ └── timer.lua │ └── scripts │ │ └── changelog ├── xdelta3 ├── xdelta3.armhf └── xdelta3.x86_64 ├── README.md ├── THEME.md ├── do_beta.sh ├── do_i18n.sh ├── do_muos_release.sh ├── do_release.sh ├── do_stable.sh ├── do_trimui_release.sh ├── do_x86_64_release.sh ├── theme_msgfmt.py └── tools ├── LICENSE-makeself.txt ├── download_runtimes.sh ├── fb_msg ├── LICENSE ├── README.md ├── fb_msg ├── fb_msg.b64 ├── fb_msg.c └── fb_msg.sh ├── installer.sh ├── makeself-header.sh ├── pm_release.py └── pm_version.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/release-alpha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/.github/workflows/release-alpha.yaml -------------------------------------------------------------------------------- /.github/workflows/release-beta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/.github/workflows/release-beta.yaml -------------------------------------------------------------------------------- /.github/workflows/release-stable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/.github/workflows/release-stable.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/.gitignore -------------------------------------------------------------------------------- /ANNOUNCEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/ANNOUNCEMENT.md -------------------------------------------------------------------------------- /BUILDING_STUFF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/BUILDING_STUFF.md -------------------------------------------------------------------------------- /DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/DEVELOPING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/LICENSE -------------------------------------------------------------------------------- /PortMaster/.Backup/donottouch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/.Backup/donottouch.txt -------------------------------------------------------------------------------- /PortMaster/.Backup/donottouch_x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/.Backup/donottouch_x.txt -------------------------------------------------------------------------------- /PortMaster/7zzs.aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/7zzs.aarch64 -------------------------------------------------------------------------------- /PortMaster/7zzs.armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/7zzs.armhf -------------------------------------------------------------------------------- /PortMaster/7zzs.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/7zzs.x86_64 -------------------------------------------------------------------------------- /PortMaster/PortMaster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/PortMaster.sh -------------------------------------------------------------------------------- /PortMaster/PortMasterDialog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/PortMasterDialog.txt -------------------------------------------------------------------------------- /PortMaster/autoinstall/place-zips-here-for-autoinstallation.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PortMaster/batocera/control.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/batocera/control.txt -------------------------------------------------------------------------------- /PortMaster/batocera/gamecontrollerdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/batocera/gamecontrollerdb.txt -------------------------------------------------------------------------------- /PortMaster/batocera/shGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/batocera/shGenerator.py -------------------------------------------------------------------------------- /PortMaster/control.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/control.txt -------------------------------------------------------------------------------- /PortMaster/device_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/device_info.txt -------------------------------------------------------------------------------- /PortMaster/exlibs/ansimarkup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/ansimarkup/__init__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/ansimarkup/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/ansimarkup/__main__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/ansimarkup/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/ansimarkup/ansi.py -------------------------------------------------------------------------------- /PortMaster/exlibs/ansimarkup/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/ansimarkup/compat.py -------------------------------------------------------------------------------- /PortMaster/exlibs/ansimarkup/logformatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/ansimarkup/logformatter.py -------------------------------------------------------------------------------- /PortMaster/exlibs/ansimarkup/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/ansimarkup/markup.py -------------------------------------------------------------------------------- /PortMaster/exlibs/ansimarkup/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/ansimarkup/tags.py -------------------------------------------------------------------------------- /PortMaster/exlibs/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.11.08" 4 | -------------------------------------------------------------------------------- /PortMaster/exlibs/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/certifi/__main__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/certifi/cacert.pem -------------------------------------------------------------------------------- /PortMaster/exlibs/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/certifi/core.py -------------------------------------------------------------------------------- /PortMaster/exlibs/charset_normalizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/charset_normalizer/__init__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/charset_normalizer/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/charset_normalizer/api.py -------------------------------------------------------------------------------- /PortMaster/exlibs/charset_normalizer/assets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/charset_normalizer/assets/__init__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/charset_normalizer/cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/charset_normalizer/cd.py -------------------------------------------------------------------------------- /PortMaster/exlibs/charset_normalizer/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PortMaster/exlibs/charset_normalizer/cli/normalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/charset_normalizer/cli/normalizer.py -------------------------------------------------------------------------------- /PortMaster/exlibs/charset_normalizer/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/charset_normalizer/constant.py -------------------------------------------------------------------------------- /PortMaster/exlibs/charset_normalizer/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/charset_normalizer/legacy.py -------------------------------------------------------------------------------- /PortMaster/exlibs/charset_normalizer/md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/charset_normalizer/md.py -------------------------------------------------------------------------------- /PortMaster/exlibs/charset_normalizer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/charset_normalizer/models.py -------------------------------------------------------------------------------- /PortMaster/exlibs/charset_normalizer/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PortMaster/exlibs/charset_normalizer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/charset_normalizer/utils.py -------------------------------------------------------------------------------- /PortMaster/exlibs/charset_normalizer/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/charset_normalizer/version.py -------------------------------------------------------------------------------- /PortMaster/exlibs/colorama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/colorama/__init__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/colorama/ansi.py -------------------------------------------------------------------------------- /PortMaster/exlibs/colorama/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/colorama/ansitowin32.py -------------------------------------------------------------------------------- /PortMaster/exlibs/colorama/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/colorama/initialise.py -------------------------------------------------------------------------------- /PortMaster/exlibs/colorama/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | -------------------------------------------------------------------------------- /PortMaster/exlibs/colorama/tests/ansi_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/colorama/tests/ansi_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/colorama/tests/ansitowin32_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/colorama/tests/ansitowin32_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/colorama/tests/initialise_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/colorama/tests/initialise_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/colorama/tests/isatty_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/colorama/tests/isatty_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/colorama/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/colorama/tests/utils.py -------------------------------------------------------------------------------- /PortMaster/exlibs/colorama/tests/winterm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/colorama/tests/winterm_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/colorama/win32.py -------------------------------------------------------------------------------- /PortMaster/exlibs/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/colorama/winterm.py -------------------------------------------------------------------------------- /PortMaster/exlibs/fastjsonschema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/fastjsonschema/__init__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/fastjsonschema/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/fastjsonschema/__main__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/fastjsonschema/draft04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/fastjsonschema/draft04.py -------------------------------------------------------------------------------- /PortMaster/exlibs/fastjsonschema/draft06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/fastjsonschema/draft06.py -------------------------------------------------------------------------------- /PortMaster/exlibs/fastjsonschema/draft07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/fastjsonschema/draft07.py -------------------------------------------------------------------------------- /PortMaster/exlibs/fastjsonschema/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/fastjsonschema/exceptions.py -------------------------------------------------------------------------------- /PortMaster/exlibs/fastjsonschema/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/fastjsonschema/generator.py -------------------------------------------------------------------------------- /PortMaster/exlibs/fastjsonschema/indent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/fastjsonschema/indent.py -------------------------------------------------------------------------------- /PortMaster/exlibs/fastjsonschema/ref_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/fastjsonschema/ref_resolver.py -------------------------------------------------------------------------------- /PortMaster/exlibs/fastjsonschema/version.py: -------------------------------------------------------------------------------- 1 | VERSION = '2.18.0' 2 | -------------------------------------------------------------------------------- /PortMaster/exlibs/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/idna/__init__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/idna/codec.py -------------------------------------------------------------------------------- /PortMaster/exlibs/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/idna/compat.py -------------------------------------------------------------------------------- /PortMaster/exlibs/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/idna/core.py -------------------------------------------------------------------------------- /PortMaster/exlibs/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/idna/idnadata.py -------------------------------------------------------------------------------- /PortMaster/exlibs/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/idna/intranges.py -------------------------------------------------------------------------------- /PortMaster/exlibs/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.4' 2 | 3 | -------------------------------------------------------------------------------- /PortMaster/exlibs/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PortMaster/exlibs/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/idna/uts46data.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/__init__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/__init__.pyi -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_asyncio_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_asyncio_loop.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_better_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_better_exceptions.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_colorama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_colorama.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_colorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_colorizer.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_contextvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_contextvars.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_ctime_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_ctime_functions.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_datetime.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_defaults.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_error_interceptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_error_interceptor.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_file_sink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_file_sink.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_filters.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_get_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_get_frame.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_handler.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_locks_machinery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_locks_machinery.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_logger.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_recattrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_recattrs.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_simple_sinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_simple_sinks.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/_string_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/loguru/_string_parsers.py -------------------------------------------------------------------------------- /PortMaster/exlibs/loguru/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PortMaster/exlibs/png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/png.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/LUT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/LUT.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/__init__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/base.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/compat/etree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/compat/etree.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/compat/pil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/compat/pil.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/console_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/console_scripts.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/constants.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/exceptions.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/image/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/image/base.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/image/pil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/image/pil.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/image/pure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/image/pure.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/image/styledpil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/image/styledpil.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/image/styles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/image/styles/colormasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/image/styles/colormasks.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/image/styles/moduledrawers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/image/styles/moduledrawers/__init__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/image/styles/moduledrawers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/image/styles/moduledrawers/base.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/image/styles/moduledrawers/pil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/image/styles/moduledrawers/pil.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/image/styles/moduledrawers/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/image/styles/moduledrawers/svg.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/image/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/image/svg.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/main.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/release.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/tests/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/tests/test_example.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/tests/test_qrcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/tests/test_qrcode.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/tests/test_qrcode_svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/tests/test_qrcode_svg.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/tests/test_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/tests/test_release.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/tests/test_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/tests/test_script.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/tests/test_util.py -------------------------------------------------------------------------------- /PortMaster/exlibs/qrcode/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/qrcode/util.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/__init__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/__version__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/_internal_utils.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/adapters.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/api.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/auth.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/certs.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/compat.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/cookies.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/exceptions.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/help.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/hooks.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/models.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/packages.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/sessions.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/status_codes.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/structures.py -------------------------------------------------------------------------------- /PortMaster/exlibs/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/requests/utils.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/__init__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/_internal.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/_sdl_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/_sdl_init.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/audio.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/blendmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/blendmode.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/clipboard.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/cpuinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/cpuinfo.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/dll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/dll.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/endian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/endian.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/error.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/events.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/__init__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/algorithms.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/array.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/bitmapfont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/bitmapfont.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/color.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/colorpalettes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/colorpalettes.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/common.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/compat.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/displays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/displays.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/draw.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/ebs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/ebs.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/err.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/err.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/events.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/image.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/mouse.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/msgbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/msgbox.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/particles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/particles.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/pixelaccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/pixelaccess.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/renderer.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/resources.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/sprite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/sprite.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/spritesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/spritesystem.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/surface.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/ttf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/ttf.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/uisystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/uisystem.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/ext/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/ext/window.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/filesystem.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/gamecontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/gamecontroller.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/gesture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/gesture.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/guid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/guid.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/haptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/haptic.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/hidapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/hidapi.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/hints.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/joystick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/joystick.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/keyboard.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/keycode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/keycode.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/loadso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/loadso.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/locale.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/log.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/messagebox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/messagebox.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/metal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/metal.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/misc.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/mouse.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/pixels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/pixels.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/platform.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/power.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/rect.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/render.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/rwops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/rwops.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/scancode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/scancode.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/sdlgfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/sdlgfx.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/sdlimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/sdlimage.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/sdlmixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/sdlmixer.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/sdlttf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/sdlttf.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/sensor.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/shape.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/stdinc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/stdinc.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/surface.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/syswm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/syswm.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/__init__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/audio_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/audio_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/blendmode_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/blendmode_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/clipboard_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/clipboard_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/conftest.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/cpuinfo_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/cpuinfo_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/endian_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/endian_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/error_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/error_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/events_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/events_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/filesystem_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/filesystem_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/gamecontroller_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/gamecontroller_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/guid_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/guid_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/hidapi_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/hidapi_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/hints_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/hints_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/joystick_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/joystick_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/keyboard_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/keyboard_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/locale_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/locale_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/log_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/log_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/metal_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/metal_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/mouse_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/mouse_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/pixels_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/pixels_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/platform_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/platform_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/power_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/power_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/rect_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/rect_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/render_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/render_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/animationtest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/animationtest.gif -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/font.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/font.bmp -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/resources.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/resources.tar.gz -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/resources.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/resources.zip -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/rwopstest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/rwopstest.txt -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/soundtest.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/soundtest.mp3 -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.bmp -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.cur -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.gif -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.ico -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.jpg -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.lbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.lbm -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.pbm -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.pcx -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.pgm -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.png -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.pnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.pnm -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.ppm -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.qoi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.qoi -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.svg -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.tga -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.tif -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.webp -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.xcf -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/surfacetest.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/surfacetest.xpm -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/resources/tuffy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/resources/tuffy.ttf -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/rwops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/rwops_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_algorithms_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_algorithms_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_array_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_array_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_color_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_displays_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_displays_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_draw_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_draw_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_ebs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_ebs_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_events_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_events_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_font_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_font_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_image_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_image_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_mouse_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_mouse_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_msgbox_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_msgbox_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_particles_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_particles_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_pixelaccess_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_pixelaccess_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_renderer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_renderer_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_resources_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_resources_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_sprite_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_sprite_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_spritesystem_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_spritesystem_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_surface_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_surface_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_uisystem_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_uisystem_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl2ext_window_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl2ext_window_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdl_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdl_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdlgfx_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdlgfx_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdlimage_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdlimage_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdlmixer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdlmixer_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sdlttf_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sdlttf_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/sensor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/sensor_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/shape_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/shape_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/surface_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/surface_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/syswm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/syswm_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/timer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/timer_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/touch_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/touch_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/version_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/version_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/video_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/video_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/test/vulkan_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/test/vulkan_test.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/timer.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/touch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/touch.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/version.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/video.py -------------------------------------------------------------------------------- /PortMaster/exlibs/sdl2/vulkan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/sdl2/vulkan.py -------------------------------------------------------------------------------- /PortMaster/exlibs/typing_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/typing_extensions.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/__init__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/_collections.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.14" 3 | -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/connection.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/connectionpool.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/contrib/_appengine_environ.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/contrib/_securetransport/bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/contrib/_securetransport/bindings.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/contrib/_securetransport/low_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/contrib/_securetransport/low_level.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/contrib/securetransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/contrib/securetransport.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/exceptions.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/fields.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/filepost.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/packages/backports/makefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/packages/backports/makefile.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/packages/six.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/poolmanager.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/request.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/response.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/util/__init__.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/util/connection.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/util/proxy.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/util/queue.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/util/request.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/util/response.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/util/retry.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/util/ssl_match_hostname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/util/ssl_match_hostname.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/util/ssltransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/util/ssltransport.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/util/timeout.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/util/url.py -------------------------------------------------------------------------------- /PortMaster/exlibs/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/exlibs/urllib3/util/wait.py -------------------------------------------------------------------------------- /PortMaster/funcs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/funcs.txt -------------------------------------------------------------------------------- /PortMaster/gamecontrollerdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/gamecontrollerdb.txt -------------------------------------------------------------------------------- /PortMaster/gameinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/gameinfo.xml -------------------------------------------------------------------------------- /PortMaster/gptokeyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/gptokeyb -------------------------------------------------------------------------------- /PortMaster/gptokeyb.armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/gptokeyb.armhf -------------------------------------------------------------------------------- /PortMaster/gptokeyb.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/gptokeyb.x86_64 -------------------------------------------------------------------------------- /PortMaster/gptokeyb2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/gptokeyb2 -------------------------------------------------------------------------------- /PortMaster/gptokeyb2.armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/gptokeyb2.armhf -------------------------------------------------------------------------------- /PortMaster/gptokeyb2.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/gptokeyb2.x86_64 -------------------------------------------------------------------------------- /PortMaster/harbourmaster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/harbourmaster -------------------------------------------------------------------------------- /PortMaster/innoextract.aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/innoextract.aarch64 -------------------------------------------------------------------------------- /PortMaster/innoextract.armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/innoextract.armhf -------------------------------------------------------------------------------- /PortMaster/innoextract.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/innoextract.x86_64 -------------------------------------------------------------------------------- /PortMaster/knulli/control.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/knulli/control.txt -------------------------------------------------------------------------------- /PortMaster/knulli/gamecontrollerdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/knulli/gamecontrollerdb.txt -------------------------------------------------------------------------------- /PortMaster/knulli/shGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/knulli/shGenerator.py -------------------------------------------------------------------------------- /PortMaster/libgl_Batocera.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/libgl_Batocera.txt -------------------------------------------------------------------------------- /PortMaster/libgl_EmuELEC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/libgl_EmuELEC.txt -------------------------------------------------------------------------------- /PortMaster/libgl_JELOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/libgl_JELOS.txt -------------------------------------------------------------------------------- /PortMaster/libgl_Miyoo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/libgl_Miyoo.txt -------------------------------------------------------------------------------- /PortMaster/libgl_REGLinux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/libgl_REGLinux.txt -------------------------------------------------------------------------------- /PortMaster/libgl_ROCKNIX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/libgl_ROCKNIX.txt -------------------------------------------------------------------------------- /PortMaster/libgl_UnofficialOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/libgl_UnofficialOS.txt -------------------------------------------------------------------------------- /PortMaster/libgl_default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/libgl_default.txt -------------------------------------------------------------------------------- /PortMaster/libgl_knulli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/libgl_knulli.txt -------------------------------------------------------------------------------- /PortMaster/libgl_muOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/libgl_muOS.txt -------------------------------------------------------------------------------- /PortMaster/libgl_uConsole.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/libgl_uConsole.txt -------------------------------------------------------------------------------- /PortMaster/libinterpose.aarch64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/libinterpose.aarch64.so -------------------------------------------------------------------------------- /PortMaster/libinterpose.armhf.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/libinterpose.armhf.so -------------------------------------------------------------------------------- /PortMaster/libinterpose.x86_64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/libinterpose.x86_64.so -------------------------------------------------------------------------------- /PortMaster/libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-7zzs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-7zzs.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-aeromatics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-aeromatics.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-ansimarkup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-ansimarkup.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-certifi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-certifi.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-colorama.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-colorama.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-dejavu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-dejavu.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-fastjsonschema.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-fastjsonschema.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-gptokeyb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-gptokeyb.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-gptokeyb2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-gptokeyb2.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-idna.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-idna.md -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-innoextract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-innoextract.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-libmodplug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-libmodplug.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-libogg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-libogg.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-loguru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-loguru.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-love.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-love.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-luajit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-luajit.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-noto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-noto.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-peaberry-otf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-peaberry-otf.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-port_gui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-port_gui.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-pypng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-pypng.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-qrcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-qrcode.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-requests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-requests.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-typing_extension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-typing_extension.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-urllib3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-urllib3.txt -------------------------------------------------------------------------------- /PortMaster/licenses/LICENSE-xdelta3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/licenses/LICENSE-xdelta3.txt -------------------------------------------------------------------------------- /PortMaster/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/mapper.py -------------------------------------------------------------------------------- /PortMaster/miyoo/PortMaster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/miyoo/PortMaster.txt -------------------------------------------------------------------------------- /PortMaster/miyoo/control.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/miyoo/control.txt -------------------------------------------------------------------------------- /PortMaster/mod_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/mod_.txt -------------------------------------------------------------------------------- /PortMaster/mod_Batocera.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/mod_Batocera.txt -------------------------------------------------------------------------------- /PortMaster/mod_EmuELEC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/mod_EmuELEC.txt -------------------------------------------------------------------------------- /PortMaster/mod_JELOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/mod_JELOS.txt -------------------------------------------------------------------------------- /PortMaster/mod_Miyoo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/mod_Miyoo.txt -------------------------------------------------------------------------------- /PortMaster/mod_REGLinux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/mod_REGLinux.txt -------------------------------------------------------------------------------- /PortMaster/mod_ROCKNIX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/mod_ROCKNIX.txt -------------------------------------------------------------------------------- /PortMaster/mod_TrimUI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/mod_TrimUI.txt -------------------------------------------------------------------------------- /PortMaster/mod_UnofficialOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/mod_UnofficialOS.txt -------------------------------------------------------------------------------- /PortMaster/mod_knulli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/mod_knulli.txt -------------------------------------------------------------------------------- /PortMaster/mod_muOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/mod_muOS.txt -------------------------------------------------------------------------------- /PortMaster/muos/PortMaster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/muos/PortMaster.txt -------------------------------------------------------------------------------- /PortMaster/muos/control.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/muos/control.txt -------------------------------------------------------------------------------- /PortMaster/muos/image_smash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/muos/image_smash.txt -------------------------------------------------------------------------------- /PortMaster/muos/mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/muos/mount -------------------------------------------------------------------------------- /PortMaster/oga_controls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/oga_controls -------------------------------------------------------------------------------- /PortMaster/oga_controls_settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/oga_controls_settings.txt -------------------------------------------------------------------------------- /PortMaster/post-install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PortMaster/pugwash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pugwash -------------------------------------------------------------------------------- /PortMaster/pylibs/default_theme/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/default_theme/buttons.png -------------------------------------------------------------------------------- /PortMaster/pylibs/default_theme/click.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/default_theme/click.ogg -------------------------------------------------------------------------------- /PortMaster/pylibs/default_theme/main_menu_stock.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/default_theme/main_menu_stock.ogg -------------------------------------------------------------------------------- /PortMaster/pylibs/default_theme/music.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/default_theme/music.mod -------------------------------------------------------------------------------- /PortMaster/pylibs/default_theme/no-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/default_theme/no-image.jpg -------------------------------------------------------------------------------- /PortMaster/pylibs/default_theme/pointenfedde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/default_theme/pointenfedde.png -------------------------------------------------------------------------------- /PortMaster/pylibs/default_theme/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/default_theme/screenshot.png -------------------------------------------------------------------------------- /PortMaster/pylibs/default_theme/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/default_theme/theme.json -------------------------------------------------------------------------------- /PortMaster/pylibs/harbourmaster/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/harbourmaster/__init__.py -------------------------------------------------------------------------------- /PortMaster/pylibs/harbourmaster/captain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/harbourmaster/captain.py -------------------------------------------------------------------------------- /PortMaster/pylibs/harbourmaster/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/harbourmaster/config.py -------------------------------------------------------------------------------- /PortMaster/pylibs/harbourmaster/harbour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/harbourmaster/harbour.py -------------------------------------------------------------------------------- /PortMaster/pylibs/harbourmaster/hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/harbourmaster/hardware.py -------------------------------------------------------------------------------- /PortMaster/pylibs/harbourmaster/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/harbourmaster/info.py -------------------------------------------------------------------------------- /PortMaster/pylibs/harbourmaster/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/harbourmaster/platform.py -------------------------------------------------------------------------------- /PortMaster/pylibs/harbourmaster/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/harbourmaster/source.py -------------------------------------------------------------------------------- /PortMaster/pylibs/harbourmaster/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/harbourmaster/util.py -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/de_DE/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/de_DE/LC_MESSAGES/themes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/themes.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/en_US/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/en_US/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/en_US/LC_MESSAGES/themes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/en_US/LC_MESSAGES/themes.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/es_ES/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/es_ES/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/es_ES/LC_MESSAGES/themes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/es_ES/LC_MESSAGES/themes.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/fr_FR/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/fr_FR/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/fr_FR/LC_MESSAGES/themes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/fr_FR/LC_MESSAGES/themes.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/it_IT/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/it_IT/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/it_IT/LC_MESSAGES/themes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/it_IT/LC_MESSAGES/themes.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/ja_JP/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/ja_JP/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/ja_JP/LC_MESSAGES/themes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/ja_JP/LC_MESSAGES/themes.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/ko_KR/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/ko_KR/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/ko_KR/LC_MESSAGES/themes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/ko_KR/LC_MESSAGES/themes.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/nl_NL/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/nl_NL/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/nl_NL/LC_MESSAGES/themes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/nl_NL/LC_MESSAGES/themes.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/themes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/themes.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/themes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/themes.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/ro_RO/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/ro_RO/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/ro_RO/LC_MESSAGES/themes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/ro_RO/LC_MESSAGES/themes.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/ru_RU/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/ru_RU/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/ru_RU/LC_MESSAGES/themes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/ru_RU/LC_MESSAGES/themes.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/sv_SE/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/sv_SE/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/sv_SE/LC_MESSAGES/themes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/sv_SE/LC_MESSAGES/themes.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/uk_UA/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/uk_UA/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/uk_UA/LC_MESSAGES/themes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/uk_UA/LC_MESSAGES/themes.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/zh_CN/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/zh_CN/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /PortMaster/pylibs/locales/zh_CN/LC_MESSAGES/themes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/locales/zh_CN/LC_MESSAGES/themes.po -------------------------------------------------------------------------------- /PortMaster/pylibs/pugscene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/pugscene.py -------------------------------------------------------------------------------- /PortMaster/pylibs/pugtheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/pugtheme.py -------------------------------------------------------------------------------- /PortMaster/pylibs/pySDL2gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/pySDL2gui.py -------------------------------------------------------------------------------- /PortMaster/pylibs/resources/.gitignore: -------------------------------------------------------------------------------- 1 | NotoSans*.ttf -------------------------------------------------------------------------------- /PortMaster/pylibs/resources/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/resources/DejaVuSans.ttf -------------------------------------------------------------------------------- /PortMaster/pylibs/resources/NotoSans.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/resources/NotoSans.tar.xz -------------------------------------------------------------------------------- /PortMaster/pylibs/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/pylibs/utility.py -------------------------------------------------------------------------------- /PortMaster/resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/resources/background.png -------------------------------------------------------------------------------- /PortMaster/resources/do_init: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PortMaster/resources/error.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/resources/error.ini -------------------------------------------------------------------------------- /PortMaster/resources/splash.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/resources/splash.ini -------------------------------------------------------------------------------- /PortMaster/retrodeck/PortMaster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/retrodeck/PortMaster.txt -------------------------------------------------------------------------------- /PortMaster/retrodeck/control.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/retrodeck/control.txt -------------------------------------------------------------------------------- /PortMaster/retrodeck/liblzo2.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/retrodeck/liblzo2.so.2 -------------------------------------------------------------------------------- /PortMaster/retrodeck/mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/retrodeck/mount -------------------------------------------------------------------------------- /PortMaster/retrodeck/unsquashfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/retrodeck/unsquashfs -------------------------------------------------------------------------------- /PortMaster/runtimes/love_11.5/libs.aarch64/liblove-11.5.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/runtimes/love_11.5/libs.aarch64/liblove-11.5.so -------------------------------------------------------------------------------- /PortMaster/runtimes/love_11.5/libs.aarch64/libluajit-5.1.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/runtimes/love_11.5/libs.aarch64/libluajit-5.1.so.2 -------------------------------------------------------------------------------- /PortMaster/runtimes/love_11.5/libs.aarch64/libmodplug.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/runtimes/love_11.5/libs.aarch64/libmodplug.so.1 -------------------------------------------------------------------------------- /PortMaster/runtimes/love_11.5/libs.aarch64/libogg.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/runtimes/love_11.5/libs.aarch64/libogg.so.0 -------------------------------------------------------------------------------- /PortMaster/runtimes/love_11.5/libs.x86_64/liblove-11.5.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/runtimes/love_11.5/libs.x86_64/liblove-11.5.so -------------------------------------------------------------------------------- /PortMaster/runtimes/love_11.5/libs.x86_64/libluajit-5.1.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/runtimes/love_11.5/libs.x86_64/libluajit-5.1.so.2 -------------------------------------------------------------------------------- /PortMaster/runtimes/love_11.5/love.aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/runtimes/love_11.5/love.aarch64 -------------------------------------------------------------------------------- /PortMaster/runtimes/love_11.5/love.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/runtimes/love_11.5/love.txt -------------------------------------------------------------------------------- /PortMaster/runtimes/love_11.5/love.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/runtimes/love_11.5/love.x86_64 -------------------------------------------------------------------------------- /PortMaster/sdl2imgshow.aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/sdl2imgshow.aarch64 -------------------------------------------------------------------------------- /PortMaster/sdl2imgshow.armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/sdl2imgshow.armhf -------------------------------------------------------------------------------- /PortMaster/sdl2imgshow.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/sdl2imgshow.x86_64 -------------------------------------------------------------------------------- /PortMaster/sdl_resolution.aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/sdl_resolution.aarch64 -------------------------------------------------------------------------------- /PortMaster/sdl_resolution.armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/sdl_resolution.armhf -------------------------------------------------------------------------------- /PortMaster/sdl_resolution.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/sdl_resolution.x86_64 -------------------------------------------------------------------------------- /PortMaster/tasksetter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/tasksetter -------------------------------------------------------------------------------- /PortMaster/trimui/PortMaster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/trimui/PortMaster.txt -------------------------------------------------------------------------------- /PortMaster/trimui/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/trimui/config.json -------------------------------------------------------------------------------- /PortMaster/trimui/control.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/trimui/control.txt -------------------------------------------------------------------------------- /PortMaster/trimui/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/trimui/icon.png -------------------------------------------------------------------------------- /PortMaster/trimui/image_smash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/trimui/image_smash.txt -------------------------------------------------------------------------------- /PortMaster/trimui/update.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/trimui/update.txt -------------------------------------------------------------------------------- /PortMaster/utils/patcher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/patcher.txt -------------------------------------------------------------------------------- /PortMaster/utils/patcher/assets/font/PeaberryBase.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/patcher/assets/font/PeaberryBase.ttf -------------------------------------------------------------------------------- /PortMaster/utils/patcher/assets/gfx/backgroundSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/patcher/assets/gfx/backgroundSheet.png -------------------------------------------------------------------------------- /PortMaster/utils/patcher/assets/gfx/cybionImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/patcher/assets/gfx/cybionImage.png -------------------------------------------------------------------------------- /PortMaster/utils/patcher/assets/gfx/patchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/patcher/assets/gfx/patchImage.png -------------------------------------------------------------------------------- /PortMaster/utils/patcher/assets/sfx/Eternity.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/patcher/assets/sfx/Eternity.ogg -------------------------------------------------------------------------------- /PortMaster/utils/patcher/assets/sfx/LICENSE.tekkenfede.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/patcher/assets/sfx/LICENSE.tekkenfede.txt -------------------------------------------------------------------------------- /PortMaster/utils/patcher/assets/sfx/optionSelect.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/patcher/assets/sfx/optionSelect.ogg -------------------------------------------------------------------------------- /PortMaster/utils/patcher/assets/sfx/optionSwitch.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/patcher/assets/sfx/optionSwitch.ogg -------------------------------------------------------------------------------- /PortMaster/utils/patcher/assets/sfx/typeSound.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/patcher/assets/sfx/typeSound.ogg -------------------------------------------------------------------------------- /PortMaster/utils/patcher/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/patcher/main.lua -------------------------------------------------------------------------------- /PortMaster/utils/patcher/patch_thread.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/patcher/patch_thread.lua -------------------------------------------------------------------------------- /PortMaster/utils/patcher/push.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/patcher/push.lua -------------------------------------------------------------------------------- /PortMaster/utils/patcher/talkies.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/patcher/talkies.lua -------------------------------------------------------------------------------- /PortMaster/utils/pmsplash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/pmsplash.txt -------------------------------------------------------------------------------- /PortMaster/utils/pmsplash/assets/Aero Matics Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/pmsplash/assets/Aero Matics Regular.ttf -------------------------------------------------------------------------------- /PortMaster/utils/pmsplash/assets/boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/pmsplash/assets/boat.png -------------------------------------------------------------------------------- /PortMaster/utils/pmsplash/assets/logo-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/pmsplash/assets/logo-mask.png -------------------------------------------------------------------------------- /PortMaster/utils/pmsplash/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/pmsplash/assets/logo.png -------------------------------------------------------------------------------- /PortMaster/utils/pmsplash/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/pmsplash/main.lua -------------------------------------------------------------------------------- /PortMaster/utils/pmsplash/timer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/pmsplash/timer.lua -------------------------------------------------------------------------------- /PortMaster/utils/scripts/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/utils/scripts/changelog -------------------------------------------------------------------------------- /PortMaster/xdelta3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/xdelta3 -------------------------------------------------------------------------------- /PortMaster/xdelta3.armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/xdelta3.armhf -------------------------------------------------------------------------------- /PortMaster/xdelta3.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/PortMaster/xdelta3.x86_64 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/README.md -------------------------------------------------------------------------------- /THEME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/THEME.md -------------------------------------------------------------------------------- /do_beta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/do_beta.sh -------------------------------------------------------------------------------- /do_i18n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/do_i18n.sh -------------------------------------------------------------------------------- /do_muos_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/do_muos_release.sh -------------------------------------------------------------------------------- /do_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/do_release.sh -------------------------------------------------------------------------------- /do_stable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/do_stable.sh -------------------------------------------------------------------------------- /do_trimui_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/do_trimui_release.sh -------------------------------------------------------------------------------- /do_x86_64_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/do_x86_64_release.sh -------------------------------------------------------------------------------- /theme_msgfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/theme_msgfmt.py -------------------------------------------------------------------------------- /tools/LICENSE-makeself.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/tools/LICENSE-makeself.txt -------------------------------------------------------------------------------- /tools/download_runtimes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/tools/download_runtimes.sh -------------------------------------------------------------------------------- /tools/fb_msg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/tools/fb_msg/LICENSE -------------------------------------------------------------------------------- /tools/fb_msg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/tools/fb_msg/README.md -------------------------------------------------------------------------------- /tools/fb_msg/fb_msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/tools/fb_msg/fb_msg -------------------------------------------------------------------------------- /tools/fb_msg/fb_msg.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/tools/fb_msg/fb_msg.b64 -------------------------------------------------------------------------------- /tools/fb_msg/fb_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/tools/fb_msg/fb_msg.c -------------------------------------------------------------------------------- /tools/fb_msg/fb_msg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/tools/fb_msg/fb_msg.sh -------------------------------------------------------------------------------- /tools/installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/tools/installer.sh -------------------------------------------------------------------------------- /tools/makeself-header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/tools/makeself-header.sh -------------------------------------------------------------------------------- /tools/pm_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/tools/pm_release.py -------------------------------------------------------------------------------- /tools/pm_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortsMaster/PortMaster-GUI/HEAD/tools/pm_version.py --------------------------------------------------------------------------------