├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question_or_comments.md ├── .gitlab-ci.yml ├── .gitlab └── issue_templates │ ├── Bug report.md │ ├── Feature request.md │ └── Question or Comments.md ├── .gitmodules ├── CHANGELOG ├── CMake ├── ComposeDesktopFile.cmake ├── ComposeLangResourceFile.cmake ├── FindFreeImage.cmake ├── FindGraphicsMagick.cmake ├── FindLCMS2.cmake ├── FindLibRaw.cmake ├── FindLibmpv.cmake ├── FindLibsai.cmake ├── FindQca.cmake ├── ListFilesCPlusPlus.cmake ├── ListFilesQML.cmake ├── ListFilesTesting.cmake └── cmake_uninstall.cmake.in ├── CMakeLists.txt ├── COPYING ├── INSTALL ├── INSTALL.md ├── README ├── README.md ├── cplusplus ├── extensions │ ├── pqc_extensionactions.h │ ├── pqc_extensionmethods.cpp │ ├── pqc_extensionproperties.cpp │ └── pqc_extensionshandler.cpp ├── header │ ├── pqc_commandlineparser.h │ ├── pqc_configfiles.h │ ├── pqc_constants.h │ ├── pqc_extensioninfo.h │ ├── pqc_extensionmethods.h │ ├── pqc_extensionproperties.h │ ├── pqc_extensionsettings.h │ ├── pqc_extensionshandler.h │ ├── pqc_filefoldermodel.h │ ├── pqc_filefoldermodelCPP.h │ ├── pqc_filefoldermodelcache.h │ ├── pqc_httpreplytimeout.h │ ├── pqc_imagecache.h │ ├── pqc_imageformats.h │ ├── pqc_imageformats_qml.h │ ├── pqc_loadimage.h │ ├── pqc_loadimage_archive.h │ ├── pqc_loadimage_devil.h │ ├── pqc_loadimage_freeimage.h │ ├── pqc_loadimage_libsai.h │ ├── pqc_loadimage_libvips.h │ ├── pqc_loadimage_magick.h │ ├── pqc_loadimage_poppler.h │ ├── pqc_loadimage_qt.h │ ├── pqc_loadimage_qtpdf.h │ ├── pqc_loadimage_raw.h │ ├── pqc_loadimage_resvg.h │ ├── pqc_loadimage_unrar.h │ ├── pqc_loadimage_video.h │ ├── pqc_loadimage_xcf.h │ ├── pqc_localhttpserver.h │ ├── pqc_location.h │ ├── pqc_look.h │ ├── pqc_messagehandler.h │ ├── pqc_metadata.h │ ├── pqc_metadata_cpp.h │ ├── pqc_migratesettings.h │ ├── pqc_migrateshortcuts.h │ ├── pqc_mpvobject.h │ ├── pqc_mpvqthelper.h │ ├── pqc_notify.h │ ├── pqc_notify_cpp.h │ ├── pqc_photosphere.h │ ├── pqc_photosphereitem.h │ ├── pqc_photosphererenderer.h │ ├── pqc_printtabimageoptions.h │ ├── pqc_printtabimagepositiontile.h │ ├── pqc_providerdragthumb.h │ ├── pqc_providerfolderthumb.h │ ├── pqc_providerfull.h │ ├── pqc_providericon.h │ ├── pqc_providermipmap.h │ ├── pqc_providersvg.h │ ├── pqc_providersvgcolor.h │ ├── pqc_providertheme.h │ ├── pqc_providerthumb.h │ ├── pqc_providertooltipthumb.h │ ├── pqc_resolutioncache.h │ ├── pqc_settings.h │ ├── pqc_settingscpp.h │ ├── pqc_shortcuts.h │ ├── pqc_singleinstance.h │ ├── pqc_startuphandler.h │ ├── pqc_test.h │ ├── pqc_validate.h │ ├── pqc_wayland.h │ ├── pqc_windowgeometry.h │ ├── pqc_wizard.h │ ├── pqc_wizard.ui │ ├── pqc_xdg-output-unstable-v1-client-protocol.h │ └── scripts │ │ ├── pqc_scriptschromecast.h │ │ ├── pqc_scriptschromecast_qml.h │ │ ├── pqc_scriptsclipboard.h │ │ ├── pqc_scriptsclipboard_qml.h │ │ ├── pqc_scriptscolorprofiles.h │ │ ├── pqc_scriptscolorprofiles_qml.h │ │ ├── pqc_scriptsconfig.h │ │ ├── pqc_scriptsconfig_qml.h │ │ ├── pqc_scriptscontextmenu.h │ │ ├── pqc_scriptscontextmenu_qml.h │ │ ├── pqc_scriptscrypt.h │ │ ├── pqc_scriptsfiledialog.h │ │ ├── pqc_scriptsfiledialog_qml.h │ │ ├── pqc_scriptsfilemanagement.h │ │ ├── pqc_scriptsfilemanagement_qml.h │ │ ├── pqc_scriptsfilespaths.h │ │ ├── pqc_scriptsfilespaths_qml.h │ │ ├── pqc_scriptsimages.h │ │ ├── pqc_scriptsimages_qml.h │ │ ├── pqc_scriptslocalization.h │ │ ├── pqc_scriptslocalization_qml.h │ │ ├── pqc_scriptsmetadata.h │ │ ├── pqc_scriptsmetadata_qml.h │ │ ├── pqc_scriptsother.h │ │ ├── pqc_scriptsother_qml.h │ │ ├── pqc_scriptsshortcuts.h │ │ └── pqc_scriptsshortcuts_qml.h ├── images │ ├── plugins │ │ ├── pqc_loadimage_archive.cpp │ │ ├── pqc_loadimage_devil.cpp │ │ ├── pqc_loadimage_freeimage.cpp │ │ ├── pqc_loadimage_libsai.cpp │ │ ├── pqc_loadimage_libvips.cpp │ │ ├── pqc_loadimage_magick.cpp │ │ ├── pqc_loadimage_poppler.cpp │ │ ├── pqc_loadimage_qt.cpp │ │ ├── pqc_loadimage_qtpdf.cpp │ │ ├── pqc_loadimage_raw.cpp │ │ ├── pqc_loadimage_resvg.cpp │ │ ├── pqc_loadimage_unrar.cpp │ │ ├── pqc_loadimage_video.cpp │ │ └── pqc_loadimage_xcf.cpp │ ├── pqc_imagecache.cpp │ ├── pqc_loadimage.cpp │ └── provider │ │ ├── pqc_providerdragthumb.cpp │ │ ├── pqc_providerfolderthumb.cpp │ │ ├── pqc_providerfull.cpp │ │ ├── pqc_providericon.cpp │ │ ├── pqc_providermipmap.cpp │ │ ├── pqc_providersvg.cpp │ │ ├── pqc_providersvgcolor.cpp │ │ ├── pqc_providertheme.cpp │ │ ├── pqc_providerthumb.cpp │ │ └── pqc_providertooltipthumb.cpp ├── main.cpp ├── other │ ├── pqc_commandlineparser.cpp │ ├── pqc_extensionsettings.cpp │ ├── pqc_filefoldermodelcache.cpp │ ├── pqc_localhttpserver.cpp │ ├── pqc_mpvobject.cpp │ ├── pqc_photosphere.cpp │ ├── pqc_photosphereitem.cpp │ ├── pqc_photosphererenderer.cpp │ ├── pqc_printtabimageoptions.cpp │ ├── pqc_printtabimagepositiontile.cpp │ ├── pqc_singleinstance.cpp │ ├── pqc_startuphandler.cpp │ ├── startuphandler │ │ ├── pqc_migratesettings.cpp │ │ ├── pqc_migrateshortcuts.cpp │ │ ├── pqc_validate.cpp │ │ ├── pqc_wizard.cpp │ │ └── pqc_wizard.ui │ └── wayland-specific │ │ ├── pqc_get-wayland-device-pixel-ratio.cpp │ │ └── pqc_xdg-output-unstable-v1-protocol.c └── singletons │ ├── engines │ ├── pqc_imageformats.cpp │ ├── pqc_location.cpp │ ├── pqc_look.cpp │ ├── pqc_settings.cpp │ ├── pqc_shortcuts.cpp │ └── pqc_windowgeometry.cpp │ ├── other │ ├── pqc_filefoldermodel.cpp │ ├── pqc_metadata.cpp │ └── pqc_resolutioncache.cpp │ ├── scripts.ods │ └── scripts │ ├── pqc_scriptschromecast.cpp │ ├── pqc_scriptsclipboard.cpp │ ├── pqc_scriptscolorprofiles.cpp │ ├── pqc_scriptsconfig.cpp │ ├── pqc_scriptscontextmenu.cpp │ ├── pqc_scriptscrypt.cpp │ ├── pqc_scriptsfiledialog.cpp │ ├── pqc_scriptsfilemanagement.cpp │ ├── pqc_scriptsfilespaths.cpp │ ├── pqc_scriptsimages.cpp │ ├── pqc_scriptslocalization.cpp │ ├── pqc_scriptsmetadata.cpp │ ├── pqc_scriptsother.cpp │ └── pqc_scriptsshortcuts.cpp ├── icons ├── 1024x1024 │ └── org.photoqt.PhotoQt.png ├── 128x128 │ └── org.photoqt.PhotoQt.png ├── 16x16 │ └── org.photoqt.PhotoQt.png ├── 256x256 │ └── org.photoqt.PhotoQt.png ├── 32x32 │ └── org.photoqt.PhotoQt.png ├── 48x48 │ └── org.photoqt.PhotoQt.png ├── 512x512 │ └── org.photoqt.PhotoQt.png └── 64x64 │ └── org.photoqt.PhotoQt.png ├── img ├── dark │ ├── about.svg │ ├── actualsize.svg │ ├── application.svg │ ├── aspectratioignore.svg │ ├── aspectratiokeep.svg │ ├── autoplay.svg │ ├── autoplay_off.svg │ ├── backwards.svg │ ├── breadcrumb.svg │ ├── browse.svg │ ├── checkmark.svg │ ├── clipboard.svg │ ├── close.svg │ ├── computer.svg │ ├── convert.svg │ ├── copy.svg │ ├── crop.svg │ ├── cut.svg │ ├── delete.svg │ ├── deselectfile.svg │ ├── draghandler.svg │ ├── editpath.svg │ ├── exit.svg │ ├── faces.svg │ ├── filter.svg │ ├── first.svg │ ├── folder.svg │ ├── forwards.svg │ ├── fullscreen_off.svg │ ├── fullscreen_on.svg │ ├── globe.svg │ ├── handle.svg │ ├── help.svg │ ├── histogram.svg │ ├── iconview.svg │ ├── keepforeground.svg │ ├── last.svg │ ├── leftarrow.svg │ ├── leftrightarrow.svg │ ├── listview.svg │ ├── maplocation.png │ ├── mapmarker.svg │ ├── masonryview.svg │ ├── maximize.svg │ ├── menu.svg │ ├── minimize.svg │ ├── mirrorhor.svg │ ├── mirrorver.svg │ ├── mouse.svg │ ├── move.svg │ ├── network.svg │ ├── next.svg │ ├── padlock.svg │ ├── pause.svg │ ├── photosphere.svg │ ├── play.svg │ ├── popinpopout.svg │ ├── previous.svg │ ├── qrcode.svg │ ├── quit.svg │ ├── remember.svg │ ├── rename.svg │ ├── reset.svg │ ├── restore.svg │ ├── rightarrow.svg │ ├── rotateleft.svg │ ├── rotateright.svg │ ├── scale.svg │ ├── select.svg │ ├── selectall.svg │ ├── selectfile.svg │ ├── settings.svg │ ├── setup.svg │ ├── slideshow.svg │ ├── slideshownext.svg │ ├── slideshowprev.svg │ ├── sort.svg │ ├── star.svg │ ├── star_empty.svg │ ├── streaming.svg │ ├── thumbnail.svg │ ├── updownarrow.svg │ ├── upwards.svg │ ├── viewermode_off.svg │ ├── viewermode_on.svg │ ├── volume_high.svg │ ├── volume_low.svg │ ├── volume_medium.svg │ ├── volume_mute.svg │ ├── volume_noaudio.svg │ ├── windows-maximize.svg │ ├── windows-minimize.svg │ ├── windows-restore.svg │ ├── x.svg │ ├── zoomin.svg │ └── zoomout.svg ├── filetypes.qrc ├── filetypes │ ├── 3fr.svg │ ├── 3g2.svg │ ├── 3gp.svg │ ├── 7z.svg │ ├── aai.svg │ ├── afm.svg │ ├── ai.svg │ ├── alb.svg │ ├── alias.svg │ ├── als.svg │ ├── amv.svg │ ├── ani.svg │ ├── apm.svg │ ├── apng.svg │ ├── ari.svg │ ├── arq.svg │ ├── art.svg │ ├── arw.svg │ ├── asf.svg │ ├── avi.svg │ ├── avif.svg │ ├── avifs.svg │ ├── avs.svg │ ├── bay.svg │ ├── bie.svg │ ├── bm.svg │ ├── bmp.svg │ ├── bmq.svg │ ├── bpg.svg │ ├── bw.svg │ ├── c4.svg │ ├── cal.svg │ ├── cals.svg │ ├── cap.svg │ ├── cb7.svg │ ├── cbr.svg │ ├── cbt.svg │ ├── cbz.svg │ ├── cg3.svg │ ├── cg4.svg │ ├── ch.svg │ ├── cine.svg │ ├── cr2.svg │ ├── cr3.svg │ ├── crr.svg │ ├── crw.svg │ ├── cs1.svg │ ├── ct.svg │ ├── ct1.svg │ ├── ct2.svg │ ├── ct3.svg │ ├── ct4.svg │ ├── cube.svg │ ├── cur.svg │ ├── cut.svg │ ├── dc2.svg │ ├── dcm.svg │ ├── dcr.svg │ ├── dcs.svg │ ├── dcx.svg │ ├── dds.svg │ ├── dfont.svg │ ├── dib.svg │ ├── dic.svg │ ├── djv.svg │ ├── djvu.svg │ ├── dng.svg │ ├── dpx.svg │ ├── drf.svg │ ├── dxo.svg │ ├── eip.svg │ ├── epi.svg │ ├── eps.svg │ ├── epsf.svg │ ├── epsi.svg │ ├── ept.svg │ ├── erf.svg │ ├── exr.svg │ ├── f4v.svg │ ├── ff.svg │ ├── fff.svg │ ├── fit.svg │ ├── fits.svg │ ├── fl32.svg │ ├── flv.svg │ ├── folder.svg │ ├── folder_listicon.svg │ ├── folder_listicon_small.svg │ ├── folder_listicon_verysmall.svg │ ├── fts.svg │ ├── ftx.svg │ ├── g3.svg │ ├── g4.svg │ ├── gg.svg │ ├── gif.svg │ ├── gig.svg │ ├── gpr.svg │ ├── hdp.svg │ ├── hdr.svg │ ├── heic.svg │ ├── heif.svg │ ├── hrz.svg │ ├── icb.svg │ ├── icns.svg │ ├── ico.svg │ ├── iff.svg │ ├── iiq.svg │ ├── im1.svg │ ├── im24.svg │ ├── im32.svg │ ├── im8.svg │ ├── img.svg │ ├── inf.svg │ ├── j2k.svg │ ├── jbg.svg │ ├── jbig.svg │ ├── jfif.svg │ ├── jif.svg │ ├── jng.svg │ ├── jp2.svg │ ├── jpc.svg │ ├── jpe.svg │ ├── jpeg.svg │ ├── jpeg2000.svg │ ├── jpg.svg │ ├── jpx.svg │ ├── jxl.svg │ ├── jxr.svg │ ├── k25.svg │ ├── kc2.svg │ ├── kdc.svg │ ├── kla.svg │ ├── koa.svg │ ├── kra.svg │ ├── lbm.svg │ ├── liq.svg │ ├── m2ts.svg │ ├── m2v.svg │ ├── m4v.svg │ ├── mat.svg │ ├── mbfavs.svg │ ├── mdc.svg │ ├── mef.svg │ ├── mfw.svg │ ├── mif.svg │ ├── miff.svg │ ├── mkv.svg │ ├── mng.svg │ ├── mos.svg │ ├── mov.svg │ ├── mp2.svg │ ├── mp4.svg │ ├── mpc.svg │ ├── mpe.svg │ ├── mpeg.svg │ ├── mpg.svg │ ├── mpv.svg │ ├── mrw.svg │ ├── mts.svg │ ├── mtv.svg │ ├── mvg.svg │ ├── mxf.svg │ ├── nef.svg │ ├── network_3fr.svg │ ├── network_3g2.svg │ ├── network_3gp.svg │ ├── network_7z.svg │ ├── network_aai.svg │ ├── network_afm.svg │ ├── network_ai.svg │ ├── network_alb.svg │ ├── network_alias.svg │ ├── network_als.svg │ ├── network_amv.svg │ ├── network_ani.svg │ ├── network_apm.svg │ ├── network_apng.svg │ ├── network_ari.svg │ ├── network_arq.svg │ ├── network_art.svg │ ├── network_arw.svg │ ├── network_asf.svg │ ├── network_avi.svg │ ├── network_avif.svg │ ├── network_avifs.svg │ ├── network_avs.svg │ ├── network_bay.svg │ ├── network_bie.svg │ ├── network_bm.svg │ ├── network_bmp.svg │ ├── network_bmq.svg │ ├── network_bpg.svg │ ├── network_bw.svg │ ├── network_c4.svg │ ├── network_cal.svg │ ├── network_cals.svg │ ├── network_cap.svg │ ├── network_cb7.svg │ ├── network_cbr.svg │ ├── network_cbt.svg │ ├── network_cbz.svg │ ├── network_cg3.svg │ ├── network_cg4.svg │ ├── network_ch.svg │ ├── network_cine.svg │ ├── network_cr2.svg │ ├── network_cr3.svg │ ├── network_crr.svg │ ├── network_crw.svg │ ├── network_cs1.svg │ ├── network_ct.svg │ ├── network_ct1.svg │ ├── network_ct2.svg │ ├── network_ct3.svg │ ├── network_ct4.svg │ ├── network_cube.svg │ ├── network_cur.svg │ ├── network_cut.svg │ ├── network_dc2.svg │ ├── network_dcm.svg │ ├── network_dcr.svg │ ├── network_dcs.svg │ ├── network_dcx.svg │ ├── network_dds.svg │ ├── network_dfont.svg │ ├── network_dib.svg │ ├── network_dic.svg │ ├── network_djv.svg │ ├── network_djvu.svg │ ├── network_dng.svg │ ├── network_dpx.svg │ ├── network_drf.svg │ ├── network_dxo.svg │ ├── network_eip.svg │ ├── network_epi.svg │ ├── network_eps.svg │ ├── network_epsf.svg │ ├── network_epsi.svg │ ├── network_ept.svg │ ├── network_erf.svg │ ├── network_exr.svg │ ├── network_f4v.svg │ ├── network_ff.svg │ ├── network_fff.svg │ ├── network_fit.svg │ ├── network_fits.svg │ ├── network_fl32.svg │ ├── network_flv.svg │ ├── network_folder.svg │ ├── network_folder_listicon.svg │ ├── network_folder_listicon_small.svg │ ├── network_folder_listicon_verysmall.svg │ ├── network_fts.svg │ ├── network_ftx.svg │ ├── network_g3.svg │ ├── network_g4.svg │ ├── network_gg.svg │ ├── network_gif.svg │ ├── network_gig.svg │ ├── network_gpr.svg │ ├── network_hdp.svg │ ├── network_hdr.svg │ ├── network_heic.svg │ ├── network_heif.svg │ ├── network_hrz.svg │ ├── network_icb.svg │ ├── network_icns.svg │ ├── network_ico.svg │ ├── network_iff.svg │ ├── network_iiq.svg │ ├── network_im1.svg │ ├── network_im24.svg │ ├── network_im32.svg │ ├── network_im8.svg │ ├── network_img.svg │ ├── network_inf.svg │ ├── network_j2k.svg │ ├── network_jbg.svg │ ├── network_jbig.svg │ ├── network_jfif.svg │ ├── network_jif.svg │ ├── network_jng.svg │ ├── network_jp2.svg │ ├── network_jpc.svg │ ├── network_jpe.svg │ ├── network_jpeg.svg │ ├── network_jpeg2000.svg │ ├── network_jpg.svg │ ├── network_jpx.svg │ ├── network_jxl.svg │ ├── network_jxr.svg │ ├── network_k25.svg │ ├── network_kc2.svg │ ├── network_kdc.svg │ ├── network_kla.svg │ ├── network_koa.svg │ ├── network_kra.svg │ ├── network_lbm.svg │ ├── network_liq.svg │ ├── network_m2ts.svg │ ├── network_m2v.svg │ ├── network_m4v.svg │ ├── network_mat.svg │ ├── network_mbfavs.svg │ ├── network_mdc.svg │ ├── network_mef.svg │ ├── network_mfw.svg │ ├── network_mif.svg │ ├── network_miff.svg │ ├── network_mkv.svg │ ├── network_mng.svg │ ├── network_mos.svg │ ├── network_mov.svg │ ├── network_mp2.svg │ ├── network_mp4.svg │ ├── network_mpc.svg │ ├── network_mpe.svg │ ├── network_mpeg.svg │ ├── network_mpg.svg │ ├── network_mpv.svg │ ├── network_mrw.svg │ ├── network_mts.svg │ ├── network_mtv.svg │ ├── network_mvg.svg │ ├── network_mxf.svg │ ├── network_nef.svg │ ├── network_nif.svg │ ├── network_nrw.svg │ ├── network_obm.svg │ ├── network_ofm.svg │ ├── network_ogg.svg │ ├── network_ogv.svg │ ├── network_ora.svg │ ├── network_orf.svg │ ├── network_ori.svg │ ├── network_otb.svg │ ├── network_otc.svg │ ├── network_otf.svg │ ├── network_p7.svg │ ├── network_pal.svg │ ├── network_palm.svg │ ├── network_pam.svg │ ├── network_pbm.svg │ ├── network_pcd.svg │ ├── network_pcds.svg │ ├── network_pct.svg │ ├── network_pcx.svg │ ├── network_pdb.svg │ ├── network_pdd.svg │ ├── network_pdf.svg │ ├── network_pef.svg │ ├── network_pes.svg │ ├── network_pfa.svg │ ├── network_pfb.svg │ ├── network_pfm.svg │ ├── network_pgm.svg │ ├── network_pgx.svg │ ├── network_phm.svg │ ├── network_pic.svg │ ├── network_picon.svg │ ├── network_pict.svg │ ├── network_pix.svg │ ├── network_pm.svg │ ├── network_png.svg │ ├── network_pnm.svg │ ├── network_ppm.svg │ ├── network_ps.svg │ ├── network_ps2.svg │ ├── network_ps3.svg │ ├── network_psb.svg │ ├── network_psd.svg │ ├── network_psdt.svg │ ├── network_ptif.svg │ ├── network_ptiff.svg │ ├── network_ptx.svg │ ├── network_pwm.svg │ ├── network_pwp.svg │ ├── network_pxn.svg │ ├── network_pxr.svg │ ├── network_qoi.svg │ ├── network_qt.svg │ ├── network_qtk.svg │ ├── network_r3d.svg │ ├── network_rad.svg │ ├── network_raf.svg │ ├── network_rar.svg │ ├── network_ras.svg │ ├── network_rast.svg │ ├── network_raw.svg │ ├── network_rdc.svg │ ├── network_rgb.svg │ ├── network_rgba.svg │ ├── network_rgbe.svg │ ├── network_rgf.svg │ ├── network_rla.svg │ ├── network_rle.svg │ ├── network_rm.svg │ ├── network_rs.svg │ ├── network_rw2.svg │ ├── network_rwl.svg │ ├── network_rwz.svg │ ├── network_sai.svg │ ├── network_scr.svg │ ├── network_sct.svg │ ├── network_sfw.svg │ ├── network_sgi.svg │ ├── network_sixel.svg │ ├── network_sr.svg │ ├── network_sr2.svg │ ├── network_srf.svg │ ├── network_srw.svg │ ├── network_sti.svg │ ├── network_sun.svg │ ├── network_svg.svg │ ├── network_svgz.svg │ ├── network_tZ.svg │ ├── network_taZ.svg │ ├── network_tar.Z.svg │ ├── network_tar.bz2.svg │ ├── network_tar.gz.svg │ ├── network_tar.lz.svg │ ├── network_tar.lzma.svg │ ├── network_tar.lzo.svg │ ├── network_tar.svg │ ├── network_tar.xz.svg │ ├── network_tar.zst.svg │ ├── network_taz.svg │ ├── network_tb2.svg │ ├── network_tbz.svg │ ├── network_tbz2.svg │ ├── network_tga.svg │ ├── network_tgz.svg │ ├── network_tif.svg │ ├── network_tiff.svg │ ├── network_tim.svg │ ├── network_tlz.svg │ ├── network_ts.svg │ ├── network_ttc.svg │ ├── network_ttf.svg │ ├── network_txz.svg │ ├── network_tz2.svg │ ├── network_tzst.svg │ ├── network_unknown.svg │ ├── network_vda.svg │ ├── network_vic.svg │ ├── network_vicar.svg │ ├── network_viff.svg │ ├── network_vob.svg │ ├── network_vst.svg │ ├── network_vtf.svg │ ├── network_wbmp.svg │ ├── network_wdp.svg │ ├── network_webm.svg │ ├── network_webp.svg │ ├── network_wmf.svg │ ├── network_wmv.svg │ ├── network_wmz.svg │ ├── network_wpg.svg │ ├── network_x.svg │ ├── network_x3f.svg │ ├── network_xbm.svg │ ├── network_xcf.svg │ ├── network_xpm.svg │ ├── network_xv.svg │ ├── network_xwd.svg │ ├── network_zip.svg │ ├── nif.svg │ ├── nrw.svg │ ├── obm.svg │ ├── ofm.svg │ ├── ogg.svg │ ├── ogv.svg │ ├── ora.svg │ ├── orf.svg │ ├── ori.svg │ ├── otb.svg │ ├── otc.svg │ ├── otf.svg │ ├── p7.svg │ ├── pal.svg │ ├── palm.svg │ ├── pam.svg │ ├── pbm.svg │ ├── pcd.svg │ ├── pcds.svg │ ├── pct.svg │ ├── pcx.svg │ ├── pdb.svg │ ├── pdd.svg │ ├── pdf.svg │ ├── pef.svg │ ├── pes.svg │ ├── pfa.svg │ ├── pfb.svg │ ├── pfm.svg │ ├── pgm.svg │ ├── pgx.svg │ ├── phm.svg │ ├── pic.svg │ ├── picon.svg │ ├── pict.svg │ ├── pix.svg │ ├── pm.svg │ ├── png.svg │ ├── pnm.svg │ ├── ppm.svg │ ├── ps.svg │ ├── ps2.svg │ ├── ps3.svg │ ├── psb.svg │ ├── psd.svg │ ├── psdt.svg │ ├── ptif.svg │ ├── ptiff.svg │ ├── ptx.svg │ ├── pwm.svg │ ├── pwp.svg │ ├── pxn.svg │ ├── pxr.svg │ ├── qoi.svg │ ├── qt.svg │ ├── qtk.svg │ ├── r3d.svg │ ├── rad.svg │ ├── raf.svg │ ├── rar.svg │ ├── ras.svg │ ├── rast.svg │ ├── raw.svg │ ├── rdc.svg │ ├── rgb.svg │ ├── rgba.svg │ ├── rgbe.svg │ ├── rgf.svg │ ├── rla.svg │ ├── rle.svg │ ├── rm.svg │ ├── rs.svg │ ├── rw2.svg │ ├── rwl.svg │ ├── rwz.svg │ ├── sai.svg │ ├── scr.svg │ ├── sct.svg │ ├── sfw.svg │ ├── sgi.svg │ ├── sixel.svg │ ├── sr.svg │ ├── sr2.svg │ ├── srf.svg │ ├── srw.svg │ ├── sti.svg │ ├── sun.svg │ ├── svg.svg │ ├── svgz.svg │ ├── tZ.svg │ ├── taZ.svg │ ├── tar.Z.svg │ ├── tar.bz2.svg │ ├── tar.gz.svg │ ├── tar.lz.svg │ ├── tar.lzma.svg │ ├── tar.lzo.svg │ ├── tar.svg │ ├── tar.xz.svg │ ├── tar.zst.svg │ ├── taz.svg │ ├── tb2.svg │ ├── tbz.svg │ ├── tbz2.svg │ ├── tga.svg │ ├── tgz.svg │ ├── tif.svg │ ├── tiff.svg │ ├── tim.svg │ ├── tlz.svg │ ├── ts.svg │ ├── ttc.svg │ ├── ttf.svg │ ├── txz.svg │ ├── tz2.svg │ ├── tzst.svg │ ├── unknown.svg │ ├── vda.svg │ ├── vic.svg │ ├── vicar.svg │ ├── viff.svg │ ├── vob.svg │ ├── vst.svg │ ├── vtf.svg │ ├── wbmp.svg │ ├── wdp.svg │ ├── webm.svg │ ├── webp.svg │ ├── wmf.svg │ ├── wmv.svg │ ├── wmz.svg │ ├── wpg.svg │ ├── x.svg │ ├── x3f.svg │ ├── xbm.svg │ ├── xcf.svg │ ├── xpm.svg │ ├── xv.svg │ ├── xwd.svg │ └── zip.svg ├── img.qrc ├── light │ ├── about.svg │ ├── actualsize.svg │ ├── application.svg │ ├── aspectratioignore.svg │ ├── aspectratiokeep.svg │ ├── autoplay.svg │ ├── autoplay_off.svg │ ├── backwards.svg │ ├── breadcrumb.svg │ ├── browse.svg │ ├── checkmark.svg │ ├── clipboard.svg │ ├── close.svg │ ├── computer.svg │ ├── convert.svg │ ├── copy.svg │ ├── crop.svg │ ├── cut.svg │ ├── delete.svg │ ├── deselectfile.svg │ ├── draghandler.svg │ ├── editpath.svg │ ├── exit.svg │ ├── faces.svg │ ├── filter.svg │ ├── first.svg │ ├── folder.svg │ ├── forwards.svg │ ├── fullscreen_off.svg │ ├── fullscreen_on.svg │ ├── globe.svg │ ├── handle.svg │ ├── help.svg │ ├── histogram.svg │ ├── iconview.svg │ ├── keepforeground.svg │ ├── last.svg │ ├── leftarrow.svg │ ├── leftrightarrow.svg │ ├── listview.svg │ ├── maplocation.png │ ├── mapmarker.svg │ ├── masonryview.svg │ ├── maximize.svg │ ├── menu.svg │ ├── minimize.svg │ ├── mirrorhor.svg │ ├── mirrorver.svg │ ├── mouse.svg │ ├── move.svg │ ├── network.svg │ ├── next.svg │ ├── padlock.svg │ ├── pause.svg │ ├── photosphere.svg │ ├── play.svg │ ├── popinpopout.svg │ ├── previous.svg │ ├── qrcode.svg │ ├── quit.svg │ ├── remember.svg │ ├── rename.svg │ ├── reset.svg │ ├── restore.svg │ ├── rightarrow.svg │ ├── rotateleft.svg │ ├── rotateright.svg │ ├── scale.svg │ ├── select.svg │ ├── selectfile.svg │ ├── settings.svg │ ├── setup.svg │ ├── slideshow.svg │ ├── slideshownext.svg │ ├── slideshowprev.svg │ ├── sort.svg │ ├── star.svg │ ├── star_empty.svg │ ├── streaming.svg │ ├── thumbnail.svg │ ├── updownarrow.svg │ ├── upwards.svg │ ├── viewermode_off.svg │ ├── viewermode_on.svg │ ├── volume_high.svg │ ├── volume_low.svg │ ├── volume_medium.svg │ ├── volume_mute.svg │ ├── volume_noaudio.svg │ ├── windows-maximize.svg │ ├── windows-minimize.svg │ ├── windows-restore.svg │ ├── x.svg │ ├── zoomin.svg │ └── zoomout.svg └── other │ ├── checkerboard.png │ ├── chromecastactive.svg │ ├── errorimage.svg │ ├── filedialog-drive-harddisk.svg │ ├── filedialog-folder-pictures.svg │ ├── filedialog-folder.svg │ ├── filedialog-user-desktop.svg │ ├── filedialog-user-home.svg │ ├── filedialog-user-trash.svg │ ├── logo.svg │ ├── logo_chromecast.jpg │ ├── logo_full.svg │ ├── logo_white.svg │ ├── verified_no.svg │ ├── verified_yes.svg │ ├── wizardwatermark.png │ └── wizardwatermark.xcf ├── lang ├── photoqt_de_DE.ts ├── photoqt_es_ES.ts ├── photoqt_lt_LT.ts ├── photoqt_nl_NL.ts ├── photoqt_ru_RU.ts ├── photoqt_uk_UA.ts └── photoqt_zh_CN.ts ├── misc ├── checksettings.db ├── contextmenu.db ├── defaultsettings.db ├── extensions │ └── public_rsa.pem ├── generate.py ├── go-png2ico ├── icons │ ├── doc.svg │ ├── doc_network.svg │ ├── doc_small.svg │ ├── doc_squared.svg │ ├── folder.svg │ ├── folder_listicon.svg │ ├── folder_network.svg │ ├── folder_squared.svg │ ├── iconcolors.db │ ├── img.svg │ ├── img_network.svg │ ├── img_small.svg │ ├── img_squared.svg │ ├── pac.svg │ ├── pac_network.svg │ ├── pac_small.svg │ ├── pac_squared.svg │ ├── svg.svg │ ├── svg_network.svg │ ├── svg_small.svg │ ├── svg_squared.svg │ ├── vid.svg │ ├── vid_network.svg │ ├── vid_small.svg │ └── vid_squared.svg ├── imageformats.db ├── imgurhistory.db ├── location.db ├── misc.qrc ├── pqc_settings │ ├── output │ │ ├── pqc_settings.cpp │ │ ├── pqc_settings.h │ │ └── pqc_settingscpp.h │ ├── parts │ │ ├── backupdatabase.cpp │ │ ├── closereopen.cpp │ │ ├── constructor.py │ │ ├── cpp_header.py │ │ ├── getdefaultfor.py │ │ ├── getsetdef.py │ │ ├── header.py │ │ ├── readdb.py │ │ ├── resettodefault.py │ │ ├── savechangedvalue.py │ │ ├── setdefault.py │ │ ├── setupfresh.py │ │ ├── updatefromcommandline.py │ │ └── verifynameandgettype.cpp │ └── pqc_settings.py ├── shortcuts.db └── usersettings.db ├── org.photoqt.PhotoQt.metainfo.xml ├── python ├── chromecast_cast.py ├── chromecast_disconnect.py ├── chromecast_discovery.py └── python.qrc ├── qml ├── PQMainWindow.qml ├── actions │ ├── PQAbout.qml │ ├── PQAdvancedSort.qml │ ├── PQChromeCastManager.qml │ ├── PQCopy.qml │ ├── PQDelete.qml │ ├── PQFilter.qml │ ├── PQMove.qml │ ├── PQRename.qml │ └── PQSlideshowSetup.qml ├── elements │ ├── basics │ │ ├── PQButton.qml │ │ ├── PQButtonElement.qml │ │ ├── PQButtonIcon.qml │ │ ├── PQCheckBox.qml │ │ ├── PQCheckableComboBox.qml │ │ ├── PQComboBox.qml │ │ ├── PQHighlightMarker.qml │ │ ├── PQHorizontalScrollBar.qml │ │ ├── PQLineEdit.qml │ │ ├── PQMenu.qml │ │ ├── PQMenuItem.qml │ │ ├── PQMenuSeparator.qml │ │ ├── PQMouseArea.qml │ │ ├── PQRadioButton.qml │ │ ├── PQSlider.qml │ │ ├── PQSliderSpinBox.qml │ │ ├── PQSpinBox.qml │ │ ├── PQTabBar.qml │ │ ├── PQTabButton.qml │ │ ├── PQTabSeparator.qml │ │ ├── PQText.qml │ │ ├── PQTextArea.qml │ │ ├── PQTextL.qml │ │ ├── PQTextS.qml │ │ ├── PQTextXL.qml │ │ ├── PQTextXXL.qml │ │ ├── PQToolTip.qml │ │ └── PQVerticalScrollBar.qml │ ├── compounds │ │ ├── PQMainMenuEntry.qml │ │ ├── PQMainMenuIcon.qml │ │ └── PQMetaDataEntry.qml │ ├── extensions │ │ ├── PQTemplateExtension.qml │ │ ├── PQTemplateExtensionContainer.qml │ │ ├── PQTemplateExtensionFloating.qml │ │ ├── PQTemplateExtensionFloatingPopout.qml │ │ ├── PQTemplateExtensionModal.qml │ │ ├── PQTemplateExtensionModalPopout.qml │ │ └── PQTemplateExtensionSettings.qml │ └── templates │ │ ├── PQTemplate.qml │ │ ├── PQTemplateModal.qml │ │ └── PQTemplateModalPopout.qml ├── filedialog │ ├── PQFileDialog.qml │ ├── PQFileDialogNative.qml │ ├── elements │ │ ├── PQFileDeleteConfirm.qml │ │ ├── PQFileDialogButton.qml │ │ ├── PQFileDialogButtonElement.qml │ │ ├── PQFileDialogComboBox.qml │ │ ├── PQFileDialogScrollBar.qml │ │ └── PQFileDialogSlider.qml │ └── parts │ │ ├── PQBreadCrumbs.qml │ │ ├── PQFileDialogSettingsMenu.qml │ │ ├── PQFileView.qml │ │ ├── PQPasteExistingConfirm.qml │ │ ├── PQPlaces.qml │ │ ├── PQPreview.qml │ │ ├── PQTweaks.qml │ │ └── fileviews │ │ ├── PQFileViewGrid.qml │ │ ├── PQFileViewList.qml │ │ ├── PQFileViewMasonry.qml │ │ └── parts │ │ ├── PQFileIcon.qml │ │ ├── PQFileThumb.qml │ │ └── PQFolderThumb.qml ├── image │ ├── PQImage.qml │ ├── PQImageDisplay.qml │ ├── components │ │ ├── PQAnimatedImageControls.qml │ │ ├── PQArchiveControls.qml │ │ ├── PQBarCodes.qml │ │ ├── PQDocumentControls.qml │ │ ├── PQFaceTagger.qml │ │ ├── PQFaceTracker.qml │ │ ├── PQKenBurnsSlideshowBackground.qml │ │ ├── PQKenBurnsSlideshowEffect.qml │ │ ├── PQMinimap.qml │ │ ├── PQMotionPhotoControls.qml │ │ ├── PQPhotoSphereControls.qml │ │ └── PQVideoControls.qml │ └── imageitems │ │ ├── PQArchive.qml │ │ ├── PQDocument.qml │ │ ├── PQImageAnimated.qml │ │ ├── PQImageNormal.qml │ │ ├── PQPhotoSphere.qml │ │ ├── PQSVG.qml │ │ ├── PQVideoMpv.qml │ │ └── PQVideoQt.qml ├── loaders │ ├── PQLoaderAbout.qml │ ├── PQLoaderAdvancedSort.qml │ ├── PQLoaderBackgroundMessage.qml │ ├── PQLoaderChromecast.qml │ ├── PQLoaderChromecastManager.qml │ ├── PQLoaderContextMenu.qml │ ├── PQLoaderCopy.qml │ ├── PQLoaderDelete.qml │ ├── PQLoaderExtension.qml │ ├── PQLoaderFileDialog.qml │ ├── PQLoaderFilter.qml │ ├── PQLoaderImage.qml │ ├── PQLoaderLoader.qml │ ├── PQLoaderLogging.qml │ ├── PQLoaderMapExplorer.qml │ ├── PQLoaderMove.qml │ ├── PQLoaderNotification.qml │ ├── PQLoaderRename.qml │ ├── PQLoaderSettingsManager.qml │ ├── PQLoaderShortcuts.qml │ ├── PQLoaderSlideshowControls.qml │ ├── PQLoaderSlideshowHandler.qml │ ├── PQLoaderSlideshowSetup.qml │ ├── PQLoaderThumbnails.qml │ ├── PQLoaderToolTipDisplay.qml │ ├── PQLoaderTrayIcon.qml │ ├── integrated │ │ └── PQLoaderSideBarIntegrated.qml │ └── modern │ │ ├── PQLoaderMainMenu.qml │ │ ├── PQLoaderMainWindowBackgroundModern.qml │ │ ├── PQLoaderMasterTouchAreas.qml │ │ ├── PQLoaderMetaData.qml │ │ ├── PQLoaderStatusInfo.qml │ │ ├── PQLoaderWindowButtons.qml │ │ ├── PQLoaderWindowButtonsOnTop.qml │ │ └── PQLoaderWindowHandles.qml ├── mapexplorer │ ├── PQMapExplorer.qml │ └── parts │ │ ├── PQMapExplorerImages.qml │ │ ├── PQMapExplorerImagesTweaks.qml │ │ ├── PQMapExplorerMap.qml │ │ └── PQMapExplorerMapTweaks.qml ├── ongoing │ ├── PQChromeCast.qml │ ├── PQContextMenu.qml │ ├── PQLogging.qml │ ├── PQNotification.qml │ ├── PQSlideshowControls.qml │ ├── PQThumbnails.qml │ ├── PQTrayIcon.qml │ └── modern │ │ ├── PQMainMenuModern.qml │ │ ├── PQMainMenuModernPopout.qml │ │ ├── PQMetaDataModern.qml │ │ ├── PQMetaDataModernPopout.qml │ │ ├── PQSlideshowControlsModernPopout.qml │ │ ├── PQStatusInfoModern.qml │ │ ├── PQWindowButtonsModern.qml │ │ └── PQWindowHandlesModern.qml ├── other │ ├── PQCommonFunctions.js │ ├── PQGenericStuff.qml │ ├── PQLoader.qml │ ├── PQMasterItem.qml │ ├── PQMultiEffect.qml │ ├── PQScrollManager.qml │ ├── PQShadowEffect.qml │ ├── PQShortcuts.qml │ ├── PQSlideshowHandler.qml │ ├── PQToolTipDisplay.qml │ ├── PQWorking.qml │ ├── integrated │ │ ├── PQBackgroundMessageIntegrated.qml │ │ ├── PQFooterIntegrated.qml │ │ ├── PQMenuBarIntegrated.qml │ │ └── PQSideBarIntegrated.qml │ └── modern │ │ ├── PQBackgroundMessageModern.qml │ │ ├── PQGestureTouchAreasModern.qml │ │ └── PQMainWindowBackgroundModern.qml └── settingsmanager │ ├── PQSettingsConfirmUnsaved.qml │ ├── PQSettingsManager.qml │ ├── PQSettingsTabs.qml │ ├── elements │ ├── PQSetting.qml │ ├── PQSettingSpacer.qml │ ├── PQSettingSubtitle.qml │ ├── PQSettingsResetButton.qml │ └── PQSettingsSeparator.qml │ ├── extensions │ ├── PQSettingsExtensionsManage.qml │ └── PQSettingsExtensionsShortcuts.qml │ ├── filetypes │ ├── PQSettingsFiletypesAnimated.qml │ ├── PQSettingsFiletypesArchives.qml │ ├── PQSettingsFiletypesDocuments.qml │ ├── PQSettingsFiletypesList.qml │ ├── PQSettingsFiletypesMotion.qml │ ├── PQSettingsFiletypesRAW.qml │ ├── PQSettingsFiletypesSpheres.qml │ └── PQSettingsFiletypesVideos.qml │ ├── imageview │ ├── PQSettingsImageViewCache.qml │ ├── PQSettingsImageViewFaceTags.qml │ ├── PQSettingsImageViewFileList.qml │ ├── PQSettingsImageViewImageProcessing.qml │ ├── PQSettingsImageViewInteraction.qml │ ├── PQSettingsImageViewLook.qml │ └── PQSettingsImageViewMetadata.qml │ ├── interface │ ├── PQSettingsInterfaceAccentColor.qml │ ├── PQSettingsInterfaceBackground.qml │ ├── PQSettingsInterfaceContextMenu.qml │ ├── PQSettingsInterfaceEdges.qml │ ├── PQSettingsInterfaceFontWeight.qml │ ├── PQSettingsInterfaceNotification.qml │ ├── PQSettingsInterfaceOverallInterface.qml │ ├── PQSettingsInterfacePopout.qml │ ├── PQSettingsInterfaceStatusInfo.qml │ ├── PQSettingsInterfaceWindowButtons.qml │ └── PQSettingsInterfaceWindowMode.qml │ ├── manage │ ├── PQSettingsManageManage.qml │ ├── PQSettingsManageSession.qml │ └── PQSettingsManageTrayIcon.qml │ ├── other │ ├── PQSettingsOtherFileDialog.qml │ └── PQSettingsOtherSlideshow.qml │ ├── shortcuts │ ├── PQSettingsShortcutsDetectNew.qml │ ├── PQSettingsShortcutsDuplicateShortcuts.qml │ ├── PQSettingsShortcutsExternalShortcuts.qml │ ├── PQSettingsShortcutsExtraKeys.qml │ ├── PQSettingsShortcutsExtraMouse.qml │ ├── PQSettingsShortcutsList.qml │ └── settings │ │ └── PQSettingsShortcutsSiblingSettings.qml │ └── thumbnails │ ├── PQSettingsThumbnailsBar.qml │ ├── PQSettingsThumbnailsImage.qml │ ├── PQSettingsThumbnailsInfo.qml │ └── PQSettingsThumbnailsManage.qml ├── testing ├── CMakeLists.txt ├── pqt_filefoldermodel │ ├── CMakeLists.txt │ ├── pqt_filefoldermodel.cpp │ └── pqt_filefoldermodel.h ├── pqt_scriptsclipboard │ ├── CMakeLists.txt │ ├── pqt_scriptsclipboard.cpp │ └── pqt_scriptsclipboard.h ├── pqt_scriptsconfig │ ├── CMakeLists.txt │ ├── pqt_scriptsconfig.cpp │ └── pqt_scriptsconfig.h ├── pqt_scriptsfiledialog │ ├── CMakeLists.txt │ ├── pqt_scriptsfiledialog.cpp │ └── pqt_scriptsfiledialog.h ├── pqt_scriptsfilemanagement │ ├── CMakeLists.txt │ ├── pqt_scriptsfilemanagement.cpp │ └── pqt_scriptsfilemanagement.h ├── pqt_scriptsfilespaths │ ├── CMakeLists.txt │ ├── pqt_scriptsfilespaths.cpp │ └── pqt_scriptsfilespaths.h ├── pqt_scriptsimages │ ├── CMakeLists.txt │ ├── pqt_scriptsimages.cpp │ └── pqt_scriptsimages.h └── resources │ ├── blue.png │ ├── testarchive.7z │ ├── testarchive.rar │ ├── testarchive.tar.gz │ ├── testarchive.zip │ └── testing.qrc ├── windows ├── AdvUninstLog2.nsh ├── FileAssociation.nsh ├── filetypes │ ├── image.3fr.ico │ ├── image.3g2.ico │ ├── image.3gp.ico │ ├── image.7z.ico │ ├── image.aai.ico │ ├── image.afm.ico │ ├── image.ai.ico │ ├── image.alb.ico │ ├── image.alias.ico │ ├── image.als.ico │ ├── image.amv.ico │ ├── image.ani.ico │ ├── image.apm.ico │ ├── image.apng.ico │ ├── image.ari.ico │ ├── image.arq.ico │ ├── image.art.ico │ ├── image.arw.ico │ ├── image.asf.ico │ ├── image.avi.ico │ ├── image.avif.ico │ ├── image.avifs.ico │ ├── image.avs.ico │ ├── image.bay.ico │ ├── image.bie.ico │ ├── image.bm.ico │ ├── image.bmp.ico │ ├── image.bmq.ico │ ├── image.bpg.ico │ ├── image.bw.ico │ ├── image.c4.ico │ ├── image.cal.ico │ ├── image.cals.ico │ ├── image.cap.ico │ ├── image.cb7.ico │ ├── image.cbr.ico │ ├── image.cbt.ico │ ├── image.cbz.ico │ ├── image.cg3.ico │ ├── image.cg4.ico │ ├── image.ch.ico │ ├── image.cine.ico │ ├── image.cr2.ico │ ├── image.cr3.ico │ ├── image.crr.ico │ ├── image.crw.ico │ ├── image.cs1.ico │ ├── image.ct.ico │ ├── image.ct1.ico │ ├── image.ct2.ico │ ├── image.ct3.ico │ ├── image.ct4.ico │ ├── image.cube.ico │ ├── image.cur.ico │ ├── image.cut.ico │ ├── image.dc2.ico │ ├── image.dcm.ico │ ├── image.dcr.ico │ ├── image.dcs.ico │ ├── image.dcx.ico │ ├── image.dds.ico │ ├── image.dfont.ico │ ├── image.dib.ico │ ├── image.dic.ico │ ├── image.djv.ico │ ├── image.djvu.ico │ ├── image.dng.ico │ ├── image.dpx.ico │ ├── image.drf.ico │ ├── image.dxo.ico │ ├── image.eip.ico │ ├── image.epi.ico │ ├── image.eps.ico │ ├── image.epsf.ico │ ├── image.epsi.ico │ ├── image.ept.ico │ ├── image.erf.ico │ ├── image.exr.ico │ ├── image.f4v.ico │ ├── image.ff.ico │ ├── image.fff.ico │ ├── image.fit.ico │ ├── image.fits.ico │ ├── image.fl32.ico │ ├── image.flv.ico │ ├── image.fts.ico │ ├── image.ftx.ico │ ├── image.g3.ico │ ├── image.g4.ico │ ├── image.gg.ico │ ├── image.gif.ico │ ├── image.gig.ico │ ├── image.gpr.ico │ ├── image.hdp.ico │ ├── image.hdr.ico │ ├── image.heic.ico │ ├── image.heif.ico │ ├── image.hrz.ico │ ├── image.icb.ico │ ├── image.icns.ico │ ├── image.ico.ico │ ├── image.iff.ico │ ├── image.iiq.ico │ ├── image.im1.ico │ ├── image.im24.ico │ ├── image.im32.ico │ ├── image.im8.ico │ ├── image.img.ico │ ├── image.inf.ico │ ├── image.j2k.ico │ ├── image.jbg.ico │ ├── image.jbig.ico │ ├── image.jfif.ico │ ├── image.jif.ico │ ├── image.jng.ico │ ├── image.jp2.ico │ ├── image.jpc.ico │ ├── image.jpe.ico │ ├── image.jpeg.ico │ ├── image.jpeg2000.ico │ ├── image.jpg.ico │ ├── image.jpx.ico │ ├── image.jxl.ico │ ├── image.jxr.ico │ ├── image.k25.ico │ ├── image.kc2.ico │ ├── image.kdc.ico │ ├── image.kla.ico │ ├── image.koa.ico │ ├── image.kra.ico │ ├── image.lbm.ico │ ├── image.liq.ico │ ├── image.m2ts.ico │ ├── image.m2v.ico │ ├── image.m4v.ico │ ├── image.mat.ico │ ├── image.mbfavs.ico │ ├── image.mdc.ico │ ├── image.mef.ico │ ├── image.mfw.ico │ ├── image.mif.ico │ ├── image.miff.ico │ ├── image.mkv.ico │ ├── image.mng.ico │ ├── image.mos.ico │ ├── image.mov.ico │ ├── image.mp2.ico │ ├── image.mp4.ico │ ├── image.mpc.ico │ ├── image.mpe.ico │ ├── image.mpeg.ico │ ├── image.mpg.ico │ ├── image.mpv.ico │ ├── image.mrw.ico │ ├── image.mts.ico │ ├── image.mtv.ico │ ├── image.mvg.ico │ ├── image.mxf.ico │ ├── image.nef.ico │ ├── image.nif.ico │ ├── image.nrw.ico │ ├── image.obm.ico │ ├── image.ofm.ico │ ├── image.ogg.ico │ ├── image.ogv.ico │ ├── image.ora.ico │ ├── image.orf.ico │ ├── image.ori.ico │ ├── image.otb.ico │ ├── image.otc.ico │ ├── image.otf.ico │ ├── image.p7.ico │ ├── image.pal.ico │ ├── image.palm.ico │ ├── image.pam.ico │ ├── image.pbm.ico │ ├── image.pcd.ico │ ├── image.pcds.ico │ ├── image.pct.ico │ ├── image.pcx.ico │ ├── image.pdb.ico │ ├── image.pdd.ico │ ├── image.pdf.ico │ ├── image.pef.ico │ ├── image.pes.ico │ ├── image.pfa.ico │ ├── image.pfb.ico │ ├── image.pfm.ico │ ├── image.pgm.ico │ ├── image.pgx.ico │ ├── image.phm.ico │ ├── image.pic.ico │ ├── image.picon.ico │ ├── image.pict.ico │ ├── image.pix.ico │ ├── image.pm.ico │ ├── image.png.ico │ ├── image.pnm.ico │ ├── image.ppm.ico │ ├── image.ps.ico │ ├── image.ps2.ico │ ├── image.ps3.ico │ ├── image.psb.ico │ ├── image.psd.ico │ ├── image.psdt.ico │ ├── image.ptif.ico │ ├── image.ptiff.ico │ ├── image.ptx.ico │ ├── image.pwm.ico │ ├── image.pwp.ico │ ├── image.pxn.ico │ ├── image.pxr.ico │ ├── image.qoi.ico │ ├── image.qt.ico │ ├── image.qtk.ico │ ├── image.r3d.ico │ ├── image.rad.ico │ ├── image.raf.ico │ ├── image.rar.ico │ ├── image.ras.ico │ ├── image.rast.ico │ ├── image.raw.ico │ ├── image.rdc.ico │ ├── image.rgb.ico │ ├── image.rgba.ico │ ├── image.rgbe.ico │ ├── image.rgf.ico │ ├── image.rla.ico │ ├── image.rle.ico │ ├── image.rm.ico │ ├── image.rs.ico │ ├── image.rw2.ico │ ├── image.rwl.ico │ ├── image.rwz.ico │ ├── image.sai.ico │ ├── image.scr.ico │ ├── image.sct.ico │ ├── image.sfw.ico │ ├── image.sgi.ico │ ├── image.sixel.ico │ ├── image.sr.ico │ ├── image.sr2.ico │ ├── image.srf.ico │ ├── image.srw.ico │ ├── image.sti.ico │ ├── image.sun.ico │ ├── image.svg.ico │ ├── image.svgz.ico │ ├── image.tZ.ico │ ├── image.taZ.ico │ ├── image.tar.Z.ico │ ├── image.tar.bz2.ico │ ├── image.tar.gz.ico │ ├── image.tar.ico │ ├── image.tar.lz.ico │ ├── image.tar.lzma.ico │ ├── image.tar.lzo.ico │ ├── image.tar.xz.ico │ ├── image.tar.zst.ico │ ├── image.taz.ico │ ├── image.tb2.ico │ ├── image.tbz.ico │ ├── image.tbz2.ico │ ├── image.tga.ico │ ├── image.tgz.ico │ ├── image.tif.ico │ ├── image.tiff.ico │ ├── image.tim.ico │ ├── image.tlz.ico │ ├── image.ts.ico │ ├── image.ttc.ico │ ├── image.ttf.ico │ ├── image.txz.ico │ ├── image.tz2.ico │ ├── image.tzst.ico │ ├── image.unknown.ico │ ├── image.vda.ico │ ├── image.vic.ico │ ├── image.vicar.ico │ ├── image.viff.ico │ ├── image.vob.ico │ ├── image.vst.ico │ ├── image.vtf.ico │ ├── image.wbmp.ico │ ├── image.wdp.ico │ ├── image.webm.ico │ ├── image.webp.ico │ ├── image.wmf.ico │ ├── image.wmv.ico │ ├── image.wmz.ico │ ├── image.wpg.ico │ ├── image.x.ico │ ├── image.x3f.ico │ ├── image.xbm.ico │ ├── image.xcf.ico │ ├── image.xpm.ico │ ├── image.xv.ico │ ├── image.xwd.ico │ └── image.zip.ico ├── icon.ico ├── icon_install.ico ├── icon_portable.ico ├── license.txt ├── photoqt-portable-setup.nsi ├── photoqt-setup.nsi └── vcpkg.json └── windowsicons.rc /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CMake/ComposeDesktopFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/CMake/ComposeDesktopFile.cmake -------------------------------------------------------------------------------- /CMake/FindFreeImage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/CMake/FindFreeImage.cmake -------------------------------------------------------------------------------- /CMake/FindGraphicsMagick.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/CMake/FindGraphicsMagick.cmake -------------------------------------------------------------------------------- /CMake/FindLCMS2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/CMake/FindLCMS2.cmake -------------------------------------------------------------------------------- /CMake/FindLibRaw.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/CMake/FindLibRaw.cmake -------------------------------------------------------------------------------- /CMake/FindLibmpv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/CMake/FindLibmpv.cmake -------------------------------------------------------------------------------- /CMake/FindLibsai.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/CMake/FindLibsai.cmake -------------------------------------------------------------------------------- /CMake/FindQca.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/CMake/FindQca.cmake -------------------------------------------------------------------------------- /CMake/ListFilesCPlusPlus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/CMake/ListFilesCPlusPlus.cmake -------------------------------------------------------------------------------- /CMake/ListFilesQML.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/CMake/ListFilesQML.cmake -------------------------------------------------------------------------------- /CMake/ListFilesTesting.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/CMake/ListFilesTesting.cmake -------------------------------------------------------------------------------- /CMake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/CMake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/INSTALL -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/INSTALL.md -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/README.md -------------------------------------------------------------------------------- /cplusplus/header/pqc_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/cplusplus/header/pqc_constants.h -------------------------------------------------------------------------------- /cplusplus/header/pqc_loadimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/cplusplus/header/pqc_loadimage.h -------------------------------------------------------------------------------- /cplusplus/header/pqc_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/cplusplus/header/pqc_location.h -------------------------------------------------------------------------------- /cplusplus/header/pqc_look.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/cplusplus/header/pqc_look.h -------------------------------------------------------------------------------- /cplusplus/header/pqc_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/cplusplus/header/pqc_metadata.h -------------------------------------------------------------------------------- /cplusplus/header/pqc_mpvobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/cplusplus/header/pqc_mpvobject.h -------------------------------------------------------------------------------- /cplusplus/header/pqc_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/cplusplus/header/pqc_notify.h -------------------------------------------------------------------------------- /cplusplus/header/pqc_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/cplusplus/header/pqc_settings.h -------------------------------------------------------------------------------- /cplusplus/header/pqc_shortcuts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/cplusplus/header/pqc_shortcuts.h -------------------------------------------------------------------------------- /cplusplus/header/pqc_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/cplusplus/header/pqc_test.h -------------------------------------------------------------------------------- /cplusplus/header/pqc_validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/cplusplus/header/pqc_validate.h -------------------------------------------------------------------------------- /cplusplus/header/pqc_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/cplusplus/header/pqc_wayland.h -------------------------------------------------------------------------------- /cplusplus/header/pqc_wizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/cplusplus/header/pqc_wizard.h -------------------------------------------------------------------------------- /cplusplus/header/pqc_wizard.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/cplusplus/header/pqc_wizard.ui -------------------------------------------------------------------------------- /cplusplus/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/cplusplus/main.cpp -------------------------------------------------------------------------------- /cplusplus/singletons/scripts.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/cplusplus/singletons/scripts.ods -------------------------------------------------------------------------------- /img/dark/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/about.svg -------------------------------------------------------------------------------- /img/dark/actualsize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/actualsize.svg -------------------------------------------------------------------------------- /img/dark/application.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/application.svg -------------------------------------------------------------------------------- /img/dark/aspectratioignore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/aspectratioignore.svg -------------------------------------------------------------------------------- /img/dark/aspectratiokeep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/aspectratiokeep.svg -------------------------------------------------------------------------------- /img/dark/autoplay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/autoplay.svg -------------------------------------------------------------------------------- /img/dark/autoplay_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/autoplay_off.svg -------------------------------------------------------------------------------- /img/dark/backwards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/backwards.svg -------------------------------------------------------------------------------- /img/dark/breadcrumb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/breadcrumb.svg -------------------------------------------------------------------------------- /img/dark/browse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/browse.svg -------------------------------------------------------------------------------- /img/dark/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/checkmark.svg -------------------------------------------------------------------------------- /img/dark/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/clipboard.svg -------------------------------------------------------------------------------- /img/dark/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/close.svg -------------------------------------------------------------------------------- /img/dark/computer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/computer.svg -------------------------------------------------------------------------------- /img/dark/convert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/convert.svg -------------------------------------------------------------------------------- /img/dark/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/copy.svg -------------------------------------------------------------------------------- /img/dark/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/crop.svg -------------------------------------------------------------------------------- /img/dark/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/cut.svg -------------------------------------------------------------------------------- /img/dark/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/delete.svg -------------------------------------------------------------------------------- /img/dark/deselectfile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/deselectfile.svg -------------------------------------------------------------------------------- /img/dark/draghandler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/draghandler.svg -------------------------------------------------------------------------------- /img/dark/editpath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/editpath.svg -------------------------------------------------------------------------------- /img/dark/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/exit.svg -------------------------------------------------------------------------------- /img/dark/faces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/faces.svg -------------------------------------------------------------------------------- /img/dark/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/filter.svg -------------------------------------------------------------------------------- /img/dark/first.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/first.svg -------------------------------------------------------------------------------- /img/dark/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/folder.svg -------------------------------------------------------------------------------- /img/dark/forwards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/forwards.svg -------------------------------------------------------------------------------- /img/dark/fullscreen_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/fullscreen_off.svg -------------------------------------------------------------------------------- /img/dark/fullscreen_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/fullscreen_on.svg -------------------------------------------------------------------------------- /img/dark/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/globe.svg -------------------------------------------------------------------------------- /img/dark/handle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/handle.svg -------------------------------------------------------------------------------- /img/dark/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/help.svg -------------------------------------------------------------------------------- /img/dark/histogram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/histogram.svg -------------------------------------------------------------------------------- /img/dark/iconview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/iconview.svg -------------------------------------------------------------------------------- /img/dark/keepforeground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/keepforeground.svg -------------------------------------------------------------------------------- /img/dark/last.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/last.svg -------------------------------------------------------------------------------- /img/dark/leftarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/leftarrow.svg -------------------------------------------------------------------------------- /img/dark/leftrightarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/leftrightarrow.svg -------------------------------------------------------------------------------- /img/dark/listview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/listview.svg -------------------------------------------------------------------------------- /img/dark/maplocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/maplocation.png -------------------------------------------------------------------------------- /img/dark/mapmarker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/mapmarker.svg -------------------------------------------------------------------------------- /img/dark/masonryview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/masonryview.svg -------------------------------------------------------------------------------- /img/dark/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/maximize.svg -------------------------------------------------------------------------------- /img/dark/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/menu.svg -------------------------------------------------------------------------------- /img/dark/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/minimize.svg -------------------------------------------------------------------------------- /img/dark/mirrorhor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/mirrorhor.svg -------------------------------------------------------------------------------- /img/dark/mirrorver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/mirrorver.svg -------------------------------------------------------------------------------- /img/dark/mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/mouse.svg -------------------------------------------------------------------------------- /img/dark/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/move.svg -------------------------------------------------------------------------------- /img/dark/network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/network.svg -------------------------------------------------------------------------------- /img/dark/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/next.svg -------------------------------------------------------------------------------- /img/dark/padlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/padlock.svg -------------------------------------------------------------------------------- /img/dark/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/pause.svg -------------------------------------------------------------------------------- /img/dark/photosphere.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/photosphere.svg -------------------------------------------------------------------------------- /img/dark/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/play.svg -------------------------------------------------------------------------------- /img/dark/popinpopout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/popinpopout.svg -------------------------------------------------------------------------------- /img/dark/previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/previous.svg -------------------------------------------------------------------------------- /img/dark/qrcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/qrcode.svg -------------------------------------------------------------------------------- /img/dark/quit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/quit.svg -------------------------------------------------------------------------------- /img/dark/remember.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/remember.svg -------------------------------------------------------------------------------- /img/dark/rename.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/rename.svg -------------------------------------------------------------------------------- /img/dark/reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/reset.svg -------------------------------------------------------------------------------- /img/dark/restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/restore.svg -------------------------------------------------------------------------------- /img/dark/rightarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/rightarrow.svg -------------------------------------------------------------------------------- /img/dark/rotateleft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/rotateleft.svg -------------------------------------------------------------------------------- /img/dark/rotateright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/rotateright.svg -------------------------------------------------------------------------------- /img/dark/scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/scale.svg -------------------------------------------------------------------------------- /img/dark/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/select.svg -------------------------------------------------------------------------------- /img/dark/selectall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/selectall.svg -------------------------------------------------------------------------------- /img/dark/selectfile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/selectfile.svg -------------------------------------------------------------------------------- /img/dark/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/settings.svg -------------------------------------------------------------------------------- /img/dark/setup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/setup.svg -------------------------------------------------------------------------------- /img/dark/slideshow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/slideshow.svg -------------------------------------------------------------------------------- /img/dark/slideshownext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/slideshownext.svg -------------------------------------------------------------------------------- /img/dark/slideshowprev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/slideshowprev.svg -------------------------------------------------------------------------------- /img/dark/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/sort.svg -------------------------------------------------------------------------------- /img/dark/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/star.svg -------------------------------------------------------------------------------- /img/dark/star_empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/star_empty.svg -------------------------------------------------------------------------------- /img/dark/streaming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/streaming.svg -------------------------------------------------------------------------------- /img/dark/thumbnail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/thumbnail.svg -------------------------------------------------------------------------------- /img/dark/updownarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/updownarrow.svg -------------------------------------------------------------------------------- /img/dark/upwards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/upwards.svg -------------------------------------------------------------------------------- /img/dark/viewermode_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/viewermode_off.svg -------------------------------------------------------------------------------- /img/dark/viewermode_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/viewermode_on.svg -------------------------------------------------------------------------------- /img/dark/volume_high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/volume_high.svg -------------------------------------------------------------------------------- /img/dark/volume_low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/volume_low.svg -------------------------------------------------------------------------------- /img/dark/volume_medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/volume_medium.svg -------------------------------------------------------------------------------- /img/dark/volume_mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/volume_mute.svg -------------------------------------------------------------------------------- /img/dark/volume_noaudio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/volume_noaudio.svg -------------------------------------------------------------------------------- /img/dark/windows-maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/windows-maximize.svg -------------------------------------------------------------------------------- /img/dark/windows-minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/windows-minimize.svg -------------------------------------------------------------------------------- /img/dark/windows-restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/windows-restore.svg -------------------------------------------------------------------------------- /img/dark/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/x.svg -------------------------------------------------------------------------------- /img/dark/zoomin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/zoomin.svg -------------------------------------------------------------------------------- /img/dark/zoomout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/dark/zoomout.svg -------------------------------------------------------------------------------- /img/filetypes.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes.qrc -------------------------------------------------------------------------------- /img/filetypes/3fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/3fr.svg -------------------------------------------------------------------------------- /img/filetypes/3g2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/3g2.svg -------------------------------------------------------------------------------- /img/filetypes/3gp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/3gp.svg -------------------------------------------------------------------------------- /img/filetypes/7z.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/7z.svg -------------------------------------------------------------------------------- /img/filetypes/aai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/aai.svg -------------------------------------------------------------------------------- /img/filetypes/afm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/afm.svg -------------------------------------------------------------------------------- /img/filetypes/ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ai.svg -------------------------------------------------------------------------------- /img/filetypes/alb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/alb.svg -------------------------------------------------------------------------------- /img/filetypes/alias.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/alias.svg -------------------------------------------------------------------------------- /img/filetypes/als.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/als.svg -------------------------------------------------------------------------------- /img/filetypes/amv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/amv.svg -------------------------------------------------------------------------------- /img/filetypes/ani.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ani.svg -------------------------------------------------------------------------------- /img/filetypes/apm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/apm.svg -------------------------------------------------------------------------------- /img/filetypes/apng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/apng.svg -------------------------------------------------------------------------------- /img/filetypes/ari.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ari.svg -------------------------------------------------------------------------------- /img/filetypes/arq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/arq.svg -------------------------------------------------------------------------------- /img/filetypes/art.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/art.svg -------------------------------------------------------------------------------- /img/filetypes/arw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/arw.svg -------------------------------------------------------------------------------- /img/filetypes/asf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/asf.svg -------------------------------------------------------------------------------- /img/filetypes/avi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/avi.svg -------------------------------------------------------------------------------- /img/filetypes/avif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/avif.svg -------------------------------------------------------------------------------- /img/filetypes/avifs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/avifs.svg -------------------------------------------------------------------------------- /img/filetypes/avs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/avs.svg -------------------------------------------------------------------------------- /img/filetypes/bay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/bay.svg -------------------------------------------------------------------------------- /img/filetypes/bie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/bie.svg -------------------------------------------------------------------------------- /img/filetypes/bm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/bm.svg -------------------------------------------------------------------------------- /img/filetypes/bmp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/bmp.svg -------------------------------------------------------------------------------- /img/filetypes/bmq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/bmq.svg -------------------------------------------------------------------------------- /img/filetypes/bpg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/bpg.svg -------------------------------------------------------------------------------- /img/filetypes/bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/bw.svg -------------------------------------------------------------------------------- /img/filetypes/c4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/c4.svg -------------------------------------------------------------------------------- /img/filetypes/cal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/cal.svg -------------------------------------------------------------------------------- /img/filetypes/cals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/cals.svg -------------------------------------------------------------------------------- /img/filetypes/cap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/cap.svg -------------------------------------------------------------------------------- /img/filetypes/cb7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/cb7.svg -------------------------------------------------------------------------------- /img/filetypes/cbr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/cbr.svg -------------------------------------------------------------------------------- /img/filetypes/cbt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/cbt.svg -------------------------------------------------------------------------------- /img/filetypes/cbz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/cbz.svg -------------------------------------------------------------------------------- /img/filetypes/cg3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/cg3.svg -------------------------------------------------------------------------------- /img/filetypes/cg4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/cg4.svg -------------------------------------------------------------------------------- /img/filetypes/ch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ch.svg -------------------------------------------------------------------------------- /img/filetypes/cine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/cine.svg -------------------------------------------------------------------------------- /img/filetypes/cr2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/cr2.svg -------------------------------------------------------------------------------- /img/filetypes/cr3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/cr3.svg -------------------------------------------------------------------------------- /img/filetypes/crr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/crr.svg -------------------------------------------------------------------------------- /img/filetypes/crw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/crw.svg -------------------------------------------------------------------------------- /img/filetypes/cs1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/cs1.svg -------------------------------------------------------------------------------- /img/filetypes/ct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ct.svg -------------------------------------------------------------------------------- /img/filetypes/ct1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ct1.svg -------------------------------------------------------------------------------- /img/filetypes/ct2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ct2.svg -------------------------------------------------------------------------------- /img/filetypes/ct3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ct3.svg -------------------------------------------------------------------------------- /img/filetypes/ct4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ct4.svg -------------------------------------------------------------------------------- /img/filetypes/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/cube.svg -------------------------------------------------------------------------------- /img/filetypes/cur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/cur.svg -------------------------------------------------------------------------------- /img/filetypes/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/cut.svg -------------------------------------------------------------------------------- /img/filetypes/dc2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/dc2.svg -------------------------------------------------------------------------------- /img/filetypes/dcm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/dcm.svg -------------------------------------------------------------------------------- /img/filetypes/dcr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/dcr.svg -------------------------------------------------------------------------------- /img/filetypes/dcs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/dcs.svg -------------------------------------------------------------------------------- /img/filetypes/dcx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/dcx.svg -------------------------------------------------------------------------------- /img/filetypes/dds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/dds.svg -------------------------------------------------------------------------------- /img/filetypes/dfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/dfont.svg -------------------------------------------------------------------------------- /img/filetypes/dib.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/dib.svg -------------------------------------------------------------------------------- /img/filetypes/dic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/dic.svg -------------------------------------------------------------------------------- /img/filetypes/djv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/djv.svg -------------------------------------------------------------------------------- /img/filetypes/djvu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/djvu.svg -------------------------------------------------------------------------------- /img/filetypes/dng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/dng.svg -------------------------------------------------------------------------------- /img/filetypes/dpx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/dpx.svg -------------------------------------------------------------------------------- /img/filetypes/drf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/drf.svg -------------------------------------------------------------------------------- /img/filetypes/dxo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/dxo.svg -------------------------------------------------------------------------------- /img/filetypes/eip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/eip.svg -------------------------------------------------------------------------------- /img/filetypes/epi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/epi.svg -------------------------------------------------------------------------------- /img/filetypes/eps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/eps.svg -------------------------------------------------------------------------------- /img/filetypes/epsf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/epsf.svg -------------------------------------------------------------------------------- /img/filetypes/epsi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/epsi.svg -------------------------------------------------------------------------------- /img/filetypes/ept.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ept.svg -------------------------------------------------------------------------------- /img/filetypes/erf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/erf.svg -------------------------------------------------------------------------------- /img/filetypes/exr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/exr.svg -------------------------------------------------------------------------------- /img/filetypes/f4v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/f4v.svg -------------------------------------------------------------------------------- /img/filetypes/ff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ff.svg -------------------------------------------------------------------------------- /img/filetypes/fff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/fff.svg -------------------------------------------------------------------------------- /img/filetypes/fit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/fit.svg -------------------------------------------------------------------------------- /img/filetypes/fits.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/fits.svg -------------------------------------------------------------------------------- /img/filetypes/fl32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/fl32.svg -------------------------------------------------------------------------------- /img/filetypes/flv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/flv.svg -------------------------------------------------------------------------------- /img/filetypes/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/folder.svg -------------------------------------------------------------------------------- /img/filetypes/fts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/fts.svg -------------------------------------------------------------------------------- /img/filetypes/ftx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ftx.svg -------------------------------------------------------------------------------- /img/filetypes/g3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/g3.svg -------------------------------------------------------------------------------- /img/filetypes/g4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/g4.svg -------------------------------------------------------------------------------- /img/filetypes/gg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/gg.svg -------------------------------------------------------------------------------- /img/filetypes/gif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/gif.svg -------------------------------------------------------------------------------- /img/filetypes/gig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/gig.svg -------------------------------------------------------------------------------- /img/filetypes/gpr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/gpr.svg -------------------------------------------------------------------------------- /img/filetypes/hdp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/hdp.svg -------------------------------------------------------------------------------- /img/filetypes/hdr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/hdr.svg -------------------------------------------------------------------------------- /img/filetypes/heic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/heic.svg -------------------------------------------------------------------------------- /img/filetypes/heif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/heif.svg -------------------------------------------------------------------------------- /img/filetypes/hrz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/hrz.svg -------------------------------------------------------------------------------- /img/filetypes/icb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/icb.svg -------------------------------------------------------------------------------- /img/filetypes/icns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/icns.svg -------------------------------------------------------------------------------- /img/filetypes/ico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ico.svg -------------------------------------------------------------------------------- /img/filetypes/iff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/iff.svg -------------------------------------------------------------------------------- /img/filetypes/iiq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/iiq.svg -------------------------------------------------------------------------------- /img/filetypes/im1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/im1.svg -------------------------------------------------------------------------------- /img/filetypes/im24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/im24.svg -------------------------------------------------------------------------------- /img/filetypes/im32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/im32.svg -------------------------------------------------------------------------------- /img/filetypes/im8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/im8.svg -------------------------------------------------------------------------------- /img/filetypes/img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/img.svg -------------------------------------------------------------------------------- /img/filetypes/inf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/inf.svg -------------------------------------------------------------------------------- /img/filetypes/j2k.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/j2k.svg -------------------------------------------------------------------------------- /img/filetypes/jbg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/jbg.svg -------------------------------------------------------------------------------- /img/filetypes/jbig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/jbig.svg -------------------------------------------------------------------------------- /img/filetypes/jfif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/jfif.svg -------------------------------------------------------------------------------- /img/filetypes/jif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/jif.svg -------------------------------------------------------------------------------- /img/filetypes/jng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/jng.svg -------------------------------------------------------------------------------- /img/filetypes/jp2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/jp2.svg -------------------------------------------------------------------------------- /img/filetypes/jpc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/jpc.svg -------------------------------------------------------------------------------- /img/filetypes/jpe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/jpe.svg -------------------------------------------------------------------------------- /img/filetypes/jpeg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/jpeg.svg -------------------------------------------------------------------------------- /img/filetypes/jpeg2000.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/jpeg2000.svg -------------------------------------------------------------------------------- /img/filetypes/jpg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/jpg.svg -------------------------------------------------------------------------------- /img/filetypes/jpx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/jpx.svg -------------------------------------------------------------------------------- /img/filetypes/jxl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/jxl.svg -------------------------------------------------------------------------------- /img/filetypes/jxr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/jxr.svg -------------------------------------------------------------------------------- /img/filetypes/k25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/k25.svg -------------------------------------------------------------------------------- /img/filetypes/kc2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/kc2.svg -------------------------------------------------------------------------------- /img/filetypes/kdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/kdc.svg -------------------------------------------------------------------------------- /img/filetypes/kla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/kla.svg -------------------------------------------------------------------------------- /img/filetypes/koa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/koa.svg -------------------------------------------------------------------------------- /img/filetypes/kra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/kra.svg -------------------------------------------------------------------------------- /img/filetypes/lbm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/lbm.svg -------------------------------------------------------------------------------- /img/filetypes/liq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/liq.svg -------------------------------------------------------------------------------- /img/filetypes/m2ts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/m2ts.svg -------------------------------------------------------------------------------- /img/filetypes/m2v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/m2v.svg -------------------------------------------------------------------------------- /img/filetypes/m4v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/m4v.svg -------------------------------------------------------------------------------- /img/filetypes/mat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mat.svg -------------------------------------------------------------------------------- /img/filetypes/mbfavs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mbfavs.svg -------------------------------------------------------------------------------- /img/filetypes/mdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mdc.svg -------------------------------------------------------------------------------- /img/filetypes/mef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mef.svg -------------------------------------------------------------------------------- /img/filetypes/mfw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mfw.svg -------------------------------------------------------------------------------- /img/filetypes/mif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mif.svg -------------------------------------------------------------------------------- /img/filetypes/miff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/miff.svg -------------------------------------------------------------------------------- /img/filetypes/mkv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mkv.svg -------------------------------------------------------------------------------- /img/filetypes/mng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mng.svg -------------------------------------------------------------------------------- /img/filetypes/mos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mos.svg -------------------------------------------------------------------------------- /img/filetypes/mov.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mov.svg -------------------------------------------------------------------------------- /img/filetypes/mp2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mp2.svg -------------------------------------------------------------------------------- /img/filetypes/mp4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mp4.svg -------------------------------------------------------------------------------- /img/filetypes/mpc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mpc.svg -------------------------------------------------------------------------------- /img/filetypes/mpe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mpe.svg -------------------------------------------------------------------------------- /img/filetypes/mpeg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mpeg.svg -------------------------------------------------------------------------------- /img/filetypes/mpg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mpg.svg -------------------------------------------------------------------------------- /img/filetypes/mpv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mpv.svg -------------------------------------------------------------------------------- /img/filetypes/mrw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mrw.svg -------------------------------------------------------------------------------- /img/filetypes/mts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mts.svg -------------------------------------------------------------------------------- /img/filetypes/mtv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mtv.svg -------------------------------------------------------------------------------- /img/filetypes/mvg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mvg.svg -------------------------------------------------------------------------------- /img/filetypes/mxf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/mxf.svg -------------------------------------------------------------------------------- /img/filetypes/nef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/nef.svg -------------------------------------------------------------------------------- /img/filetypes/network_3fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_3fr.svg -------------------------------------------------------------------------------- /img/filetypes/network_3g2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_3g2.svg -------------------------------------------------------------------------------- /img/filetypes/network_3gp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_3gp.svg -------------------------------------------------------------------------------- /img/filetypes/network_7z.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_7z.svg -------------------------------------------------------------------------------- /img/filetypes/network_aai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_aai.svg -------------------------------------------------------------------------------- /img/filetypes/network_afm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_afm.svg -------------------------------------------------------------------------------- /img/filetypes/network_ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ai.svg -------------------------------------------------------------------------------- /img/filetypes/network_alb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_alb.svg -------------------------------------------------------------------------------- /img/filetypes/network_alias.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_alias.svg -------------------------------------------------------------------------------- /img/filetypes/network_als.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_als.svg -------------------------------------------------------------------------------- /img/filetypes/network_amv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_amv.svg -------------------------------------------------------------------------------- /img/filetypes/network_ani.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ani.svg -------------------------------------------------------------------------------- /img/filetypes/network_apm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_apm.svg -------------------------------------------------------------------------------- /img/filetypes/network_apng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_apng.svg -------------------------------------------------------------------------------- /img/filetypes/network_ari.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ari.svg -------------------------------------------------------------------------------- /img/filetypes/network_arq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_arq.svg -------------------------------------------------------------------------------- /img/filetypes/network_art.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_art.svg -------------------------------------------------------------------------------- /img/filetypes/network_arw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_arw.svg -------------------------------------------------------------------------------- /img/filetypes/network_asf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_asf.svg -------------------------------------------------------------------------------- /img/filetypes/network_avi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_avi.svg -------------------------------------------------------------------------------- /img/filetypes/network_avif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_avif.svg -------------------------------------------------------------------------------- /img/filetypes/network_avifs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_avifs.svg -------------------------------------------------------------------------------- /img/filetypes/network_avs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_avs.svg -------------------------------------------------------------------------------- /img/filetypes/network_bay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_bay.svg -------------------------------------------------------------------------------- /img/filetypes/network_bie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_bie.svg -------------------------------------------------------------------------------- /img/filetypes/network_bm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_bm.svg -------------------------------------------------------------------------------- /img/filetypes/network_bmp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_bmp.svg -------------------------------------------------------------------------------- /img/filetypes/network_bmq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_bmq.svg -------------------------------------------------------------------------------- /img/filetypes/network_bpg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_bpg.svg -------------------------------------------------------------------------------- /img/filetypes/network_bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_bw.svg -------------------------------------------------------------------------------- /img/filetypes/network_c4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_c4.svg -------------------------------------------------------------------------------- /img/filetypes/network_cal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_cal.svg -------------------------------------------------------------------------------- /img/filetypes/network_cals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_cals.svg -------------------------------------------------------------------------------- /img/filetypes/network_cap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_cap.svg -------------------------------------------------------------------------------- /img/filetypes/network_cb7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_cb7.svg -------------------------------------------------------------------------------- /img/filetypes/network_cbr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_cbr.svg -------------------------------------------------------------------------------- /img/filetypes/network_cbt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_cbt.svg -------------------------------------------------------------------------------- /img/filetypes/network_cbz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_cbz.svg -------------------------------------------------------------------------------- /img/filetypes/network_cg3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_cg3.svg -------------------------------------------------------------------------------- /img/filetypes/network_cg4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_cg4.svg -------------------------------------------------------------------------------- /img/filetypes/network_ch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ch.svg -------------------------------------------------------------------------------- /img/filetypes/network_cine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_cine.svg -------------------------------------------------------------------------------- /img/filetypes/network_cr2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_cr2.svg -------------------------------------------------------------------------------- /img/filetypes/network_cr3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_cr3.svg -------------------------------------------------------------------------------- /img/filetypes/network_crr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_crr.svg -------------------------------------------------------------------------------- /img/filetypes/network_crw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_crw.svg -------------------------------------------------------------------------------- /img/filetypes/network_cs1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_cs1.svg -------------------------------------------------------------------------------- /img/filetypes/network_ct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ct.svg -------------------------------------------------------------------------------- /img/filetypes/network_ct1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ct1.svg -------------------------------------------------------------------------------- /img/filetypes/network_ct2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ct2.svg -------------------------------------------------------------------------------- /img/filetypes/network_ct3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ct3.svg -------------------------------------------------------------------------------- /img/filetypes/network_ct4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ct4.svg -------------------------------------------------------------------------------- /img/filetypes/network_cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_cube.svg -------------------------------------------------------------------------------- /img/filetypes/network_cur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_cur.svg -------------------------------------------------------------------------------- /img/filetypes/network_cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_cut.svg -------------------------------------------------------------------------------- /img/filetypes/network_dc2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_dc2.svg -------------------------------------------------------------------------------- /img/filetypes/network_dcm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_dcm.svg -------------------------------------------------------------------------------- /img/filetypes/network_dcr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_dcr.svg -------------------------------------------------------------------------------- /img/filetypes/network_dcs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_dcs.svg -------------------------------------------------------------------------------- /img/filetypes/network_dcx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_dcx.svg -------------------------------------------------------------------------------- /img/filetypes/network_dds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_dds.svg -------------------------------------------------------------------------------- /img/filetypes/network_dfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_dfont.svg -------------------------------------------------------------------------------- /img/filetypes/network_dib.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_dib.svg -------------------------------------------------------------------------------- /img/filetypes/network_dic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_dic.svg -------------------------------------------------------------------------------- /img/filetypes/network_djv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_djv.svg -------------------------------------------------------------------------------- /img/filetypes/network_djvu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_djvu.svg -------------------------------------------------------------------------------- /img/filetypes/network_dng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_dng.svg -------------------------------------------------------------------------------- /img/filetypes/network_dpx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_dpx.svg -------------------------------------------------------------------------------- /img/filetypes/network_drf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_drf.svg -------------------------------------------------------------------------------- /img/filetypes/network_dxo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_dxo.svg -------------------------------------------------------------------------------- /img/filetypes/network_eip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_eip.svg -------------------------------------------------------------------------------- /img/filetypes/network_epi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_epi.svg -------------------------------------------------------------------------------- /img/filetypes/network_eps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_eps.svg -------------------------------------------------------------------------------- /img/filetypes/network_epsf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_epsf.svg -------------------------------------------------------------------------------- /img/filetypes/network_epsi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_epsi.svg -------------------------------------------------------------------------------- /img/filetypes/network_ept.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ept.svg -------------------------------------------------------------------------------- /img/filetypes/network_erf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_erf.svg -------------------------------------------------------------------------------- /img/filetypes/network_exr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_exr.svg -------------------------------------------------------------------------------- /img/filetypes/network_f4v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_f4v.svg -------------------------------------------------------------------------------- /img/filetypes/network_ff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ff.svg -------------------------------------------------------------------------------- /img/filetypes/network_fff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_fff.svg -------------------------------------------------------------------------------- /img/filetypes/network_fit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_fit.svg -------------------------------------------------------------------------------- /img/filetypes/network_fits.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_fits.svg -------------------------------------------------------------------------------- /img/filetypes/network_fl32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_fl32.svg -------------------------------------------------------------------------------- /img/filetypes/network_flv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_flv.svg -------------------------------------------------------------------------------- /img/filetypes/network_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_folder.svg -------------------------------------------------------------------------------- /img/filetypes/network_fts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_fts.svg -------------------------------------------------------------------------------- /img/filetypes/network_ftx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ftx.svg -------------------------------------------------------------------------------- /img/filetypes/network_g3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_g3.svg -------------------------------------------------------------------------------- /img/filetypes/network_g4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_g4.svg -------------------------------------------------------------------------------- /img/filetypes/network_gg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_gg.svg -------------------------------------------------------------------------------- /img/filetypes/network_gif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_gif.svg -------------------------------------------------------------------------------- /img/filetypes/network_gig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_gig.svg -------------------------------------------------------------------------------- /img/filetypes/network_gpr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_gpr.svg -------------------------------------------------------------------------------- /img/filetypes/network_hdp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_hdp.svg -------------------------------------------------------------------------------- /img/filetypes/network_hdr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_hdr.svg -------------------------------------------------------------------------------- /img/filetypes/network_heic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_heic.svg -------------------------------------------------------------------------------- /img/filetypes/network_heif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_heif.svg -------------------------------------------------------------------------------- /img/filetypes/network_hrz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_hrz.svg -------------------------------------------------------------------------------- /img/filetypes/network_icb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_icb.svg -------------------------------------------------------------------------------- /img/filetypes/network_icns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_icns.svg -------------------------------------------------------------------------------- /img/filetypes/network_ico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ico.svg -------------------------------------------------------------------------------- /img/filetypes/network_iff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_iff.svg -------------------------------------------------------------------------------- /img/filetypes/network_iiq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_iiq.svg -------------------------------------------------------------------------------- /img/filetypes/network_im1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_im1.svg -------------------------------------------------------------------------------- /img/filetypes/network_im24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_im24.svg -------------------------------------------------------------------------------- /img/filetypes/network_im32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_im32.svg -------------------------------------------------------------------------------- /img/filetypes/network_im8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_im8.svg -------------------------------------------------------------------------------- /img/filetypes/network_img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_img.svg -------------------------------------------------------------------------------- /img/filetypes/network_inf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_inf.svg -------------------------------------------------------------------------------- /img/filetypes/network_j2k.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_j2k.svg -------------------------------------------------------------------------------- /img/filetypes/network_jbg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_jbg.svg -------------------------------------------------------------------------------- /img/filetypes/network_jbig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_jbig.svg -------------------------------------------------------------------------------- /img/filetypes/network_jfif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_jfif.svg -------------------------------------------------------------------------------- /img/filetypes/network_jif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_jif.svg -------------------------------------------------------------------------------- /img/filetypes/network_jng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_jng.svg -------------------------------------------------------------------------------- /img/filetypes/network_jp2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_jp2.svg -------------------------------------------------------------------------------- /img/filetypes/network_jpc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_jpc.svg -------------------------------------------------------------------------------- /img/filetypes/network_jpe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_jpe.svg -------------------------------------------------------------------------------- /img/filetypes/network_jpeg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_jpeg.svg -------------------------------------------------------------------------------- /img/filetypes/network_jpg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_jpg.svg -------------------------------------------------------------------------------- /img/filetypes/network_jpx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_jpx.svg -------------------------------------------------------------------------------- /img/filetypes/network_jxl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_jxl.svg -------------------------------------------------------------------------------- /img/filetypes/network_jxr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_jxr.svg -------------------------------------------------------------------------------- /img/filetypes/network_k25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_k25.svg -------------------------------------------------------------------------------- /img/filetypes/network_kc2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_kc2.svg -------------------------------------------------------------------------------- /img/filetypes/network_kdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_kdc.svg -------------------------------------------------------------------------------- /img/filetypes/network_kla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_kla.svg -------------------------------------------------------------------------------- /img/filetypes/network_koa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_koa.svg -------------------------------------------------------------------------------- /img/filetypes/network_kra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_kra.svg -------------------------------------------------------------------------------- /img/filetypes/network_lbm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_lbm.svg -------------------------------------------------------------------------------- /img/filetypes/network_liq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_liq.svg -------------------------------------------------------------------------------- /img/filetypes/network_m2ts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_m2ts.svg -------------------------------------------------------------------------------- /img/filetypes/network_m2v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_m2v.svg -------------------------------------------------------------------------------- /img/filetypes/network_m4v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_m4v.svg -------------------------------------------------------------------------------- /img/filetypes/network_mat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mat.svg -------------------------------------------------------------------------------- /img/filetypes/network_mbfavs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mbfavs.svg -------------------------------------------------------------------------------- /img/filetypes/network_mdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mdc.svg -------------------------------------------------------------------------------- /img/filetypes/network_mef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mef.svg -------------------------------------------------------------------------------- /img/filetypes/network_mfw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mfw.svg -------------------------------------------------------------------------------- /img/filetypes/network_mif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mif.svg -------------------------------------------------------------------------------- /img/filetypes/network_miff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_miff.svg -------------------------------------------------------------------------------- /img/filetypes/network_mkv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mkv.svg -------------------------------------------------------------------------------- /img/filetypes/network_mng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mng.svg -------------------------------------------------------------------------------- /img/filetypes/network_mos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mos.svg -------------------------------------------------------------------------------- /img/filetypes/network_mov.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mov.svg -------------------------------------------------------------------------------- /img/filetypes/network_mp2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mp2.svg -------------------------------------------------------------------------------- /img/filetypes/network_mp4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mp4.svg -------------------------------------------------------------------------------- /img/filetypes/network_mpc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mpc.svg -------------------------------------------------------------------------------- /img/filetypes/network_mpe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mpe.svg -------------------------------------------------------------------------------- /img/filetypes/network_mpeg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mpeg.svg -------------------------------------------------------------------------------- /img/filetypes/network_mpg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mpg.svg -------------------------------------------------------------------------------- /img/filetypes/network_mpv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mpv.svg -------------------------------------------------------------------------------- /img/filetypes/network_mrw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mrw.svg -------------------------------------------------------------------------------- /img/filetypes/network_mts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mts.svg -------------------------------------------------------------------------------- /img/filetypes/network_mtv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mtv.svg -------------------------------------------------------------------------------- /img/filetypes/network_mvg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mvg.svg -------------------------------------------------------------------------------- /img/filetypes/network_mxf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_mxf.svg -------------------------------------------------------------------------------- /img/filetypes/network_nef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_nef.svg -------------------------------------------------------------------------------- /img/filetypes/network_nif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_nif.svg -------------------------------------------------------------------------------- /img/filetypes/network_nrw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_nrw.svg -------------------------------------------------------------------------------- /img/filetypes/network_obm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_obm.svg -------------------------------------------------------------------------------- /img/filetypes/network_ofm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ofm.svg -------------------------------------------------------------------------------- /img/filetypes/network_ogg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ogg.svg -------------------------------------------------------------------------------- /img/filetypes/network_ogv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ogv.svg -------------------------------------------------------------------------------- /img/filetypes/network_ora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ora.svg -------------------------------------------------------------------------------- /img/filetypes/network_orf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_orf.svg -------------------------------------------------------------------------------- /img/filetypes/network_ori.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ori.svg -------------------------------------------------------------------------------- /img/filetypes/network_otb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_otb.svg -------------------------------------------------------------------------------- /img/filetypes/network_otc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_otc.svg -------------------------------------------------------------------------------- /img/filetypes/network_otf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_otf.svg -------------------------------------------------------------------------------- /img/filetypes/network_p7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_p7.svg -------------------------------------------------------------------------------- /img/filetypes/network_pal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pal.svg -------------------------------------------------------------------------------- /img/filetypes/network_palm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_palm.svg -------------------------------------------------------------------------------- /img/filetypes/network_pam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pam.svg -------------------------------------------------------------------------------- /img/filetypes/network_pbm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pbm.svg -------------------------------------------------------------------------------- /img/filetypes/network_pcd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pcd.svg -------------------------------------------------------------------------------- /img/filetypes/network_pcds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pcds.svg -------------------------------------------------------------------------------- /img/filetypes/network_pct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pct.svg -------------------------------------------------------------------------------- /img/filetypes/network_pcx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pcx.svg -------------------------------------------------------------------------------- /img/filetypes/network_pdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pdb.svg -------------------------------------------------------------------------------- /img/filetypes/network_pdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pdd.svg -------------------------------------------------------------------------------- /img/filetypes/network_pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pdf.svg -------------------------------------------------------------------------------- /img/filetypes/network_pef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pef.svg -------------------------------------------------------------------------------- /img/filetypes/network_pes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pes.svg -------------------------------------------------------------------------------- /img/filetypes/network_pfa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pfa.svg -------------------------------------------------------------------------------- /img/filetypes/network_pfb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pfb.svg -------------------------------------------------------------------------------- /img/filetypes/network_pfm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pfm.svg -------------------------------------------------------------------------------- /img/filetypes/network_pgm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pgm.svg -------------------------------------------------------------------------------- /img/filetypes/network_pgx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pgx.svg -------------------------------------------------------------------------------- /img/filetypes/network_phm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_phm.svg -------------------------------------------------------------------------------- /img/filetypes/network_pic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pic.svg -------------------------------------------------------------------------------- /img/filetypes/network_picon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_picon.svg -------------------------------------------------------------------------------- /img/filetypes/network_pict.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pict.svg -------------------------------------------------------------------------------- /img/filetypes/network_pix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pix.svg -------------------------------------------------------------------------------- /img/filetypes/network_pm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pm.svg -------------------------------------------------------------------------------- /img/filetypes/network_png.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_png.svg -------------------------------------------------------------------------------- /img/filetypes/network_pnm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pnm.svg -------------------------------------------------------------------------------- /img/filetypes/network_ppm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ppm.svg -------------------------------------------------------------------------------- /img/filetypes/network_ps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ps.svg -------------------------------------------------------------------------------- /img/filetypes/network_ps2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ps2.svg -------------------------------------------------------------------------------- /img/filetypes/network_ps3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ps3.svg -------------------------------------------------------------------------------- /img/filetypes/network_psb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_psb.svg -------------------------------------------------------------------------------- /img/filetypes/network_psd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_psd.svg -------------------------------------------------------------------------------- /img/filetypes/network_psdt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_psdt.svg -------------------------------------------------------------------------------- /img/filetypes/network_ptif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ptif.svg -------------------------------------------------------------------------------- /img/filetypes/network_ptiff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ptiff.svg -------------------------------------------------------------------------------- /img/filetypes/network_ptx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ptx.svg -------------------------------------------------------------------------------- /img/filetypes/network_pwm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pwm.svg -------------------------------------------------------------------------------- /img/filetypes/network_pwp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pwp.svg -------------------------------------------------------------------------------- /img/filetypes/network_pxn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pxn.svg -------------------------------------------------------------------------------- /img/filetypes/network_pxr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_pxr.svg -------------------------------------------------------------------------------- /img/filetypes/network_qoi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_qoi.svg -------------------------------------------------------------------------------- /img/filetypes/network_qt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_qt.svg -------------------------------------------------------------------------------- /img/filetypes/network_qtk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_qtk.svg -------------------------------------------------------------------------------- /img/filetypes/network_r3d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_r3d.svg -------------------------------------------------------------------------------- /img/filetypes/network_rad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_rad.svg -------------------------------------------------------------------------------- /img/filetypes/network_raf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_raf.svg -------------------------------------------------------------------------------- /img/filetypes/network_rar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_rar.svg -------------------------------------------------------------------------------- /img/filetypes/network_ras.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ras.svg -------------------------------------------------------------------------------- /img/filetypes/network_rast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_rast.svg -------------------------------------------------------------------------------- /img/filetypes/network_raw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_raw.svg -------------------------------------------------------------------------------- /img/filetypes/network_rdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_rdc.svg -------------------------------------------------------------------------------- /img/filetypes/network_rgb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_rgb.svg -------------------------------------------------------------------------------- /img/filetypes/network_rgba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_rgba.svg -------------------------------------------------------------------------------- /img/filetypes/network_rgbe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_rgbe.svg -------------------------------------------------------------------------------- /img/filetypes/network_rgf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_rgf.svg -------------------------------------------------------------------------------- /img/filetypes/network_rla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_rla.svg -------------------------------------------------------------------------------- /img/filetypes/network_rle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_rle.svg -------------------------------------------------------------------------------- /img/filetypes/network_rm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_rm.svg -------------------------------------------------------------------------------- /img/filetypes/network_rs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_rs.svg -------------------------------------------------------------------------------- /img/filetypes/network_rw2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_rw2.svg -------------------------------------------------------------------------------- /img/filetypes/network_rwl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_rwl.svg -------------------------------------------------------------------------------- /img/filetypes/network_rwz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_rwz.svg -------------------------------------------------------------------------------- /img/filetypes/network_sai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_sai.svg -------------------------------------------------------------------------------- /img/filetypes/network_scr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_scr.svg -------------------------------------------------------------------------------- /img/filetypes/network_sct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_sct.svg -------------------------------------------------------------------------------- /img/filetypes/network_sfw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_sfw.svg -------------------------------------------------------------------------------- /img/filetypes/network_sgi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_sgi.svg -------------------------------------------------------------------------------- /img/filetypes/network_sixel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_sixel.svg -------------------------------------------------------------------------------- /img/filetypes/network_sr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_sr.svg -------------------------------------------------------------------------------- /img/filetypes/network_sr2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_sr2.svg -------------------------------------------------------------------------------- /img/filetypes/network_srf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_srf.svg -------------------------------------------------------------------------------- /img/filetypes/network_srw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_srw.svg -------------------------------------------------------------------------------- /img/filetypes/network_sti.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_sti.svg -------------------------------------------------------------------------------- /img/filetypes/network_sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_sun.svg -------------------------------------------------------------------------------- /img/filetypes/network_svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_svg.svg -------------------------------------------------------------------------------- /img/filetypes/network_svgz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_svgz.svg -------------------------------------------------------------------------------- /img/filetypes/network_tZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_tZ.svg -------------------------------------------------------------------------------- /img/filetypes/network_taZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_taZ.svg -------------------------------------------------------------------------------- /img/filetypes/network_tar.Z.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_tar.Z.svg -------------------------------------------------------------------------------- /img/filetypes/network_tar.gz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_tar.gz.svg -------------------------------------------------------------------------------- /img/filetypes/network_tar.lz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_tar.lz.svg -------------------------------------------------------------------------------- /img/filetypes/network_tar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_tar.svg -------------------------------------------------------------------------------- /img/filetypes/network_tar.xz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_tar.xz.svg -------------------------------------------------------------------------------- /img/filetypes/network_taz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_taz.svg -------------------------------------------------------------------------------- /img/filetypes/network_tb2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_tb2.svg -------------------------------------------------------------------------------- /img/filetypes/network_tbz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_tbz.svg -------------------------------------------------------------------------------- /img/filetypes/network_tbz2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_tbz2.svg -------------------------------------------------------------------------------- /img/filetypes/network_tga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_tga.svg -------------------------------------------------------------------------------- /img/filetypes/network_tgz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_tgz.svg -------------------------------------------------------------------------------- /img/filetypes/network_tif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_tif.svg -------------------------------------------------------------------------------- /img/filetypes/network_tiff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_tiff.svg -------------------------------------------------------------------------------- /img/filetypes/network_tim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_tim.svg -------------------------------------------------------------------------------- /img/filetypes/network_tlz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_tlz.svg -------------------------------------------------------------------------------- /img/filetypes/network_ts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ts.svg -------------------------------------------------------------------------------- /img/filetypes/network_ttc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ttc.svg -------------------------------------------------------------------------------- /img/filetypes/network_ttf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_ttf.svg -------------------------------------------------------------------------------- /img/filetypes/network_txz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_txz.svg -------------------------------------------------------------------------------- /img/filetypes/network_tz2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_tz2.svg -------------------------------------------------------------------------------- /img/filetypes/network_tzst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_tzst.svg -------------------------------------------------------------------------------- /img/filetypes/network_vda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_vda.svg -------------------------------------------------------------------------------- /img/filetypes/network_vic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_vic.svg -------------------------------------------------------------------------------- /img/filetypes/network_vicar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_vicar.svg -------------------------------------------------------------------------------- /img/filetypes/network_viff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_viff.svg -------------------------------------------------------------------------------- /img/filetypes/network_vob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_vob.svg -------------------------------------------------------------------------------- /img/filetypes/network_vst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_vst.svg -------------------------------------------------------------------------------- /img/filetypes/network_vtf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_vtf.svg -------------------------------------------------------------------------------- /img/filetypes/network_wbmp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_wbmp.svg -------------------------------------------------------------------------------- /img/filetypes/network_wdp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_wdp.svg -------------------------------------------------------------------------------- /img/filetypes/network_webm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_webm.svg -------------------------------------------------------------------------------- /img/filetypes/network_webp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_webp.svg -------------------------------------------------------------------------------- /img/filetypes/network_wmf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_wmf.svg -------------------------------------------------------------------------------- /img/filetypes/network_wmv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_wmv.svg -------------------------------------------------------------------------------- /img/filetypes/network_wmz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_wmz.svg -------------------------------------------------------------------------------- /img/filetypes/network_wpg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_wpg.svg -------------------------------------------------------------------------------- /img/filetypes/network_x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_x.svg -------------------------------------------------------------------------------- /img/filetypes/network_x3f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_x3f.svg -------------------------------------------------------------------------------- /img/filetypes/network_xbm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_xbm.svg -------------------------------------------------------------------------------- /img/filetypes/network_xcf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_xcf.svg -------------------------------------------------------------------------------- /img/filetypes/network_xpm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_xpm.svg -------------------------------------------------------------------------------- /img/filetypes/network_xv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_xv.svg -------------------------------------------------------------------------------- /img/filetypes/network_xwd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_xwd.svg -------------------------------------------------------------------------------- /img/filetypes/network_zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/network_zip.svg -------------------------------------------------------------------------------- /img/filetypes/nif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/nif.svg -------------------------------------------------------------------------------- /img/filetypes/nrw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/nrw.svg -------------------------------------------------------------------------------- /img/filetypes/obm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/obm.svg -------------------------------------------------------------------------------- /img/filetypes/ofm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ofm.svg -------------------------------------------------------------------------------- /img/filetypes/ogg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ogg.svg -------------------------------------------------------------------------------- /img/filetypes/ogv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ogv.svg -------------------------------------------------------------------------------- /img/filetypes/ora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ora.svg -------------------------------------------------------------------------------- /img/filetypes/orf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/orf.svg -------------------------------------------------------------------------------- /img/filetypes/ori.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ori.svg -------------------------------------------------------------------------------- /img/filetypes/otb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/otb.svg -------------------------------------------------------------------------------- /img/filetypes/otc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/otc.svg -------------------------------------------------------------------------------- /img/filetypes/otf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/otf.svg -------------------------------------------------------------------------------- /img/filetypes/p7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/p7.svg -------------------------------------------------------------------------------- /img/filetypes/pal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pal.svg -------------------------------------------------------------------------------- /img/filetypes/palm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/palm.svg -------------------------------------------------------------------------------- /img/filetypes/pam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pam.svg -------------------------------------------------------------------------------- /img/filetypes/pbm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pbm.svg -------------------------------------------------------------------------------- /img/filetypes/pcd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pcd.svg -------------------------------------------------------------------------------- /img/filetypes/pcds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pcds.svg -------------------------------------------------------------------------------- /img/filetypes/pct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pct.svg -------------------------------------------------------------------------------- /img/filetypes/pcx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pcx.svg -------------------------------------------------------------------------------- /img/filetypes/pdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pdb.svg -------------------------------------------------------------------------------- /img/filetypes/pdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pdd.svg -------------------------------------------------------------------------------- /img/filetypes/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pdf.svg -------------------------------------------------------------------------------- /img/filetypes/pef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pef.svg -------------------------------------------------------------------------------- /img/filetypes/pes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pes.svg -------------------------------------------------------------------------------- /img/filetypes/pfa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pfa.svg -------------------------------------------------------------------------------- /img/filetypes/pfb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pfb.svg -------------------------------------------------------------------------------- /img/filetypes/pfm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pfm.svg -------------------------------------------------------------------------------- /img/filetypes/pgm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pgm.svg -------------------------------------------------------------------------------- /img/filetypes/pgx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pgx.svg -------------------------------------------------------------------------------- /img/filetypes/phm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/phm.svg -------------------------------------------------------------------------------- /img/filetypes/pic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pic.svg -------------------------------------------------------------------------------- /img/filetypes/picon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/picon.svg -------------------------------------------------------------------------------- /img/filetypes/pict.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pict.svg -------------------------------------------------------------------------------- /img/filetypes/pix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pix.svg -------------------------------------------------------------------------------- /img/filetypes/pm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pm.svg -------------------------------------------------------------------------------- /img/filetypes/png.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/png.svg -------------------------------------------------------------------------------- /img/filetypes/pnm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pnm.svg -------------------------------------------------------------------------------- /img/filetypes/ppm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ppm.svg -------------------------------------------------------------------------------- /img/filetypes/ps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ps.svg -------------------------------------------------------------------------------- /img/filetypes/ps2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ps2.svg -------------------------------------------------------------------------------- /img/filetypes/ps3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ps3.svg -------------------------------------------------------------------------------- /img/filetypes/psb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/psb.svg -------------------------------------------------------------------------------- /img/filetypes/psd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/psd.svg -------------------------------------------------------------------------------- /img/filetypes/psdt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/psdt.svg -------------------------------------------------------------------------------- /img/filetypes/ptif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ptif.svg -------------------------------------------------------------------------------- /img/filetypes/ptiff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ptiff.svg -------------------------------------------------------------------------------- /img/filetypes/ptx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ptx.svg -------------------------------------------------------------------------------- /img/filetypes/pwm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pwm.svg -------------------------------------------------------------------------------- /img/filetypes/pwp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pwp.svg -------------------------------------------------------------------------------- /img/filetypes/pxn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pxn.svg -------------------------------------------------------------------------------- /img/filetypes/pxr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/pxr.svg -------------------------------------------------------------------------------- /img/filetypes/qoi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/qoi.svg -------------------------------------------------------------------------------- /img/filetypes/qt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/qt.svg -------------------------------------------------------------------------------- /img/filetypes/qtk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/qtk.svg -------------------------------------------------------------------------------- /img/filetypes/r3d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/r3d.svg -------------------------------------------------------------------------------- /img/filetypes/rad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/rad.svg -------------------------------------------------------------------------------- /img/filetypes/raf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/raf.svg -------------------------------------------------------------------------------- /img/filetypes/rar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/rar.svg -------------------------------------------------------------------------------- /img/filetypes/ras.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ras.svg -------------------------------------------------------------------------------- /img/filetypes/rast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/rast.svg -------------------------------------------------------------------------------- /img/filetypes/raw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/raw.svg -------------------------------------------------------------------------------- /img/filetypes/rdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/rdc.svg -------------------------------------------------------------------------------- /img/filetypes/rgb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/rgb.svg -------------------------------------------------------------------------------- /img/filetypes/rgba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/rgba.svg -------------------------------------------------------------------------------- /img/filetypes/rgbe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/rgbe.svg -------------------------------------------------------------------------------- /img/filetypes/rgf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/rgf.svg -------------------------------------------------------------------------------- /img/filetypes/rla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/rla.svg -------------------------------------------------------------------------------- /img/filetypes/rle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/rle.svg -------------------------------------------------------------------------------- /img/filetypes/rm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/rm.svg -------------------------------------------------------------------------------- /img/filetypes/rs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/rs.svg -------------------------------------------------------------------------------- /img/filetypes/rw2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/rw2.svg -------------------------------------------------------------------------------- /img/filetypes/rwl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/rwl.svg -------------------------------------------------------------------------------- /img/filetypes/rwz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/rwz.svg -------------------------------------------------------------------------------- /img/filetypes/sai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/sai.svg -------------------------------------------------------------------------------- /img/filetypes/scr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/scr.svg -------------------------------------------------------------------------------- /img/filetypes/sct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/sct.svg -------------------------------------------------------------------------------- /img/filetypes/sfw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/sfw.svg -------------------------------------------------------------------------------- /img/filetypes/sgi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/sgi.svg -------------------------------------------------------------------------------- /img/filetypes/sixel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/sixel.svg -------------------------------------------------------------------------------- /img/filetypes/sr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/sr.svg -------------------------------------------------------------------------------- /img/filetypes/sr2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/sr2.svg -------------------------------------------------------------------------------- /img/filetypes/srf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/srf.svg -------------------------------------------------------------------------------- /img/filetypes/srw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/srw.svg -------------------------------------------------------------------------------- /img/filetypes/sti.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/sti.svg -------------------------------------------------------------------------------- /img/filetypes/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/sun.svg -------------------------------------------------------------------------------- /img/filetypes/svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/svg.svg -------------------------------------------------------------------------------- /img/filetypes/svgz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/svgz.svg -------------------------------------------------------------------------------- /img/filetypes/tZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tZ.svg -------------------------------------------------------------------------------- /img/filetypes/taZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/taZ.svg -------------------------------------------------------------------------------- /img/filetypes/tar.Z.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tar.Z.svg -------------------------------------------------------------------------------- /img/filetypes/tar.bz2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tar.bz2.svg -------------------------------------------------------------------------------- /img/filetypes/tar.gz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tar.gz.svg -------------------------------------------------------------------------------- /img/filetypes/tar.lz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tar.lz.svg -------------------------------------------------------------------------------- /img/filetypes/tar.lzma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tar.lzma.svg -------------------------------------------------------------------------------- /img/filetypes/tar.lzo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tar.lzo.svg -------------------------------------------------------------------------------- /img/filetypes/tar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tar.svg -------------------------------------------------------------------------------- /img/filetypes/tar.xz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tar.xz.svg -------------------------------------------------------------------------------- /img/filetypes/tar.zst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tar.zst.svg -------------------------------------------------------------------------------- /img/filetypes/taz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/taz.svg -------------------------------------------------------------------------------- /img/filetypes/tb2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tb2.svg -------------------------------------------------------------------------------- /img/filetypes/tbz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tbz.svg -------------------------------------------------------------------------------- /img/filetypes/tbz2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tbz2.svg -------------------------------------------------------------------------------- /img/filetypes/tga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tga.svg -------------------------------------------------------------------------------- /img/filetypes/tgz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tgz.svg -------------------------------------------------------------------------------- /img/filetypes/tif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tif.svg -------------------------------------------------------------------------------- /img/filetypes/tiff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tiff.svg -------------------------------------------------------------------------------- /img/filetypes/tim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tim.svg -------------------------------------------------------------------------------- /img/filetypes/tlz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tlz.svg -------------------------------------------------------------------------------- /img/filetypes/ts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ts.svg -------------------------------------------------------------------------------- /img/filetypes/ttc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ttc.svg -------------------------------------------------------------------------------- /img/filetypes/ttf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/ttf.svg -------------------------------------------------------------------------------- /img/filetypes/txz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/txz.svg -------------------------------------------------------------------------------- /img/filetypes/tz2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tz2.svg -------------------------------------------------------------------------------- /img/filetypes/tzst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/tzst.svg -------------------------------------------------------------------------------- /img/filetypes/unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/unknown.svg -------------------------------------------------------------------------------- /img/filetypes/vda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/vda.svg -------------------------------------------------------------------------------- /img/filetypes/vic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/vic.svg -------------------------------------------------------------------------------- /img/filetypes/vicar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/vicar.svg -------------------------------------------------------------------------------- /img/filetypes/viff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/viff.svg -------------------------------------------------------------------------------- /img/filetypes/vob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/vob.svg -------------------------------------------------------------------------------- /img/filetypes/vst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/vst.svg -------------------------------------------------------------------------------- /img/filetypes/vtf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/vtf.svg -------------------------------------------------------------------------------- /img/filetypes/wbmp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/wbmp.svg -------------------------------------------------------------------------------- /img/filetypes/wdp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/wdp.svg -------------------------------------------------------------------------------- /img/filetypes/webm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/webm.svg -------------------------------------------------------------------------------- /img/filetypes/webp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/webp.svg -------------------------------------------------------------------------------- /img/filetypes/wmf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/wmf.svg -------------------------------------------------------------------------------- /img/filetypes/wmv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/wmv.svg -------------------------------------------------------------------------------- /img/filetypes/wmz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/wmz.svg -------------------------------------------------------------------------------- /img/filetypes/wpg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/wpg.svg -------------------------------------------------------------------------------- /img/filetypes/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/x.svg -------------------------------------------------------------------------------- /img/filetypes/x3f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/x3f.svg -------------------------------------------------------------------------------- /img/filetypes/xbm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/xbm.svg -------------------------------------------------------------------------------- /img/filetypes/xcf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/xcf.svg -------------------------------------------------------------------------------- /img/filetypes/xpm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/xpm.svg -------------------------------------------------------------------------------- /img/filetypes/xv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/xv.svg -------------------------------------------------------------------------------- /img/filetypes/xwd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/xwd.svg -------------------------------------------------------------------------------- /img/filetypes/zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/filetypes/zip.svg -------------------------------------------------------------------------------- /img/img.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/img.qrc -------------------------------------------------------------------------------- /img/light/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/about.svg -------------------------------------------------------------------------------- /img/light/actualsize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/actualsize.svg -------------------------------------------------------------------------------- /img/light/application.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/application.svg -------------------------------------------------------------------------------- /img/light/aspectratioignore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/aspectratioignore.svg -------------------------------------------------------------------------------- /img/light/aspectratiokeep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/aspectratiokeep.svg -------------------------------------------------------------------------------- /img/light/autoplay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/autoplay.svg -------------------------------------------------------------------------------- /img/light/autoplay_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/autoplay_off.svg -------------------------------------------------------------------------------- /img/light/backwards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/backwards.svg -------------------------------------------------------------------------------- /img/light/breadcrumb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/breadcrumb.svg -------------------------------------------------------------------------------- /img/light/browse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/browse.svg -------------------------------------------------------------------------------- /img/light/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/checkmark.svg -------------------------------------------------------------------------------- /img/light/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/clipboard.svg -------------------------------------------------------------------------------- /img/light/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/close.svg -------------------------------------------------------------------------------- /img/light/computer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/computer.svg -------------------------------------------------------------------------------- /img/light/convert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/convert.svg -------------------------------------------------------------------------------- /img/light/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/copy.svg -------------------------------------------------------------------------------- /img/light/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/crop.svg -------------------------------------------------------------------------------- /img/light/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/cut.svg -------------------------------------------------------------------------------- /img/light/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/delete.svg -------------------------------------------------------------------------------- /img/light/deselectfile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/deselectfile.svg -------------------------------------------------------------------------------- /img/light/draghandler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/draghandler.svg -------------------------------------------------------------------------------- /img/light/editpath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/editpath.svg -------------------------------------------------------------------------------- /img/light/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/exit.svg -------------------------------------------------------------------------------- /img/light/faces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/faces.svg -------------------------------------------------------------------------------- /img/light/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/filter.svg -------------------------------------------------------------------------------- /img/light/first.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/first.svg -------------------------------------------------------------------------------- /img/light/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/folder.svg -------------------------------------------------------------------------------- /img/light/forwards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/forwards.svg -------------------------------------------------------------------------------- /img/light/fullscreen_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/fullscreen_off.svg -------------------------------------------------------------------------------- /img/light/fullscreen_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/fullscreen_on.svg -------------------------------------------------------------------------------- /img/light/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/globe.svg -------------------------------------------------------------------------------- /img/light/handle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/handle.svg -------------------------------------------------------------------------------- /img/light/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/help.svg -------------------------------------------------------------------------------- /img/light/histogram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/histogram.svg -------------------------------------------------------------------------------- /img/light/iconview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/iconview.svg -------------------------------------------------------------------------------- /img/light/keepforeground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/keepforeground.svg -------------------------------------------------------------------------------- /img/light/last.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/last.svg -------------------------------------------------------------------------------- /img/light/leftarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/leftarrow.svg -------------------------------------------------------------------------------- /img/light/leftrightarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/leftrightarrow.svg -------------------------------------------------------------------------------- /img/light/listview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/listview.svg -------------------------------------------------------------------------------- /img/light/maplocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/maplocation.png -------------------------------------------------------------------------------- /img/light/mapmarker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/mapmarker.svg -------------------------------------------------------------------------------- /img/light/masonryview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/masonryview.svg -------------------------------------------------------------------------------- /img/light/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/maximize.svg -------------------------------------------------------------------------------- /img/light/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/menu.svg -------------------------------------------------------------------------------- /img/light/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/minimize.svg -------------------------------------------------------------------------------- /img/light/mirrorhor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/mirrorhor.svg -------------------------------------------------------------------------------- /img/light/mirrorver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/mirrorver.svg -------------------------------------------------------------------------------- /img/light/mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/mouse.svg -------------------------------------------------------------------------------- /img/light/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/move.svg -------------------------------------------------------------------------------- /img/light/network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/network.svg -------------------------------------------------------------------------------- /img/light/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/next.svg -------------------------------------------------------------------------------- /img/light/padlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/padlock.svg -------------------------------------------------------------------------------- /img/light/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/pause.svg -------------------------------------------------------------------------------- /img/light/photosphere.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/photosphere.svg -------------------------------------------------------------------------------- /img/light/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/play.svg -------------------------------------------------------------------------------- /img/light/popinpopout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/popinpopout.svg -------------------------------------------------------------------------------- /img/light/previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/previous.svg -------------------------------------------------------------------------------- /img/light/qrcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/qrcode.svg -------------------------------------------------------------------------------- /img/light/quit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/quit.svg -------------------------------------------------------------------------------- /img/light/remember.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/remember.svg -------------------------------------------------------------------------------- /img/light/rename.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/rename.svg -------------------------------------------------------------------------------- /img/light/reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/reset.svg -------------------------------------------------------------------------------- /img/light/restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/restore.svg -------------------------------------------------------------------------------- /img/light/rightarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/rightarrow.svg -------------------------------------------------------------------------------- /img/light/rotateleft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/rotateleft.svg -------------------------------------------------------------------------------- /img/light/rotateright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/rotateright.svg -------------------------------------------------------------------------------- /img/light/scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/scale.svg -------------------------------------------------------------------------------- /img/light/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/select.svg -------------------------------------------------------------------------------- /img/light/selectfile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/selectfile.svg -------------------------------------------------------------------------------- /img/light/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/settings.svg -------------------------------------------------------------------------------- /img/light/setup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/setup.svg -------------------------------------------------------------------------------- /img/light/slideshow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/slideshow.svg -------------------------------------------------------------------------------- /img/light/slideshownext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/slideshownext.svg -------------------------------------------------------------------------------- /img/light/slideshowprev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/slideshowprev.svg -------------------------------------------------------------------------------- /img/light/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/sort.svg -------------------------------------------------------------------------------- /img/light/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/star.svg -------------------------------------------------------------------------------- /img/light/star_empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/star_empty.svg -------------------------------------------------------------------------------- /img/light/streaming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/streaming.svg -------------------------------------------------------------------------------- /img/light/thumbnail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/thumbnail.svg -------------------------------------------------------------------------------- /img/light/updownarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/updownarrow.svg -------------------------------------------------------------------------------- /img/light/upwards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/upwards.svg -------------------------------------------------------------------------------- /img/light/viewermode_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/viewermode_off.svg -------------------------------------------------------------------------------- /img/light/viewermode_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/viewermode_on.svg -------------------------------------------------------------------------------- /img/light/volume_high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/volume_high.svg -------------------------------------------------------------------------------- /img/light/volume_low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/volume_low.svg -------------------------------------------------------------------------------- /img/light/volume_medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/volume_medium.svg -------------------------------------------------------------------------------- /img/light/volume_mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/volume_mute.svg -------------------------------------------------------------------------------- /img/light/volume_noaudio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/volume_noaudio.svg -------------------------------------------------------------------------------- /img/light/windows-maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/windows-maximize.svg -------------------------------------------------------------------------------- /img/light/windows-minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/windows-minimize.svg -------------------------------------------------------------------------------- /img/light/windows-restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/windows-restore.svg -------------------------------------------------------------------------------- /img/light/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/x.svg -------------------------------------------------------------------------------- /img/light/zoomin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/zoomin.svg -------------------------------------------------------------------------------- /img/light/zoomout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/light/zoomout.svg -------------------------------------------------------------------------------- /img/other/checkerboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/other/checkerboard.png -------------------------------------------------------------------------------- /img/other/chromecastactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/other/chromecastactive.svg -------------------------------------------------------------------------------- /img/other/errorimage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/other/errorimage.svg -------------------------------------------------------------------------------- /img/other/filedialog-folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/other/filedialog-folder.svg -------------------------------------------------------------------------------- /img/other/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/other/logo.svg -------------------------------------------------------------------------------- /img/other/logo_chromecast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/other/logo_chromecast.jpg -------------------------------------------------------------------------------- /img/other/logo_full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/other/logo_full.svg -------------------------------------------------------------------------------- /img/other/logo_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/other/logo_white.svg -------------------------------------------------------------------------------- /img/other/verified_no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/other/verified_no.svg -------------------------------------------------------------------------------- /img/other/verified_yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/other/verified_yes.svg -------------------------------------------------------------------------------- /img/other/wizardwatermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/other/wizardwatermark.png -------------------------------------------------------------------------------- /img/other/wizardwatermark.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/img/other/wizardwatermark.xcf -------------------------------------------------------------------------------- /lang/photoqt_de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/lang/photoqt_de_DE.ts -------------------------------------------------------------------------------- /lang/photoqt_es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/lang/photoqt_es_ES.ts -------------------------------------------------------------------------------- /lang/photoqt_lt_LT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/lang/photoqt_lt_LT.ts -------------------------------------------------------------------------------- /lang/photoqt_nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/lang/photoqt_nl_NL.ts -------------------------------------------------------------------------------- /lang/photoqt_ru_RU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/lang/photoqt_ru_RU.ts -------------------------------------------------------------------------------- /lang/photoqt_uk_UA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/lang/photoqt_uk_UA.ts -------------------------------------------------------------------------------- /lang/photoqt_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/lang/photoqt_zh_CN.ts -------------------------------------------------------------------------------- /misc/checksettings.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/checksettings.db -------------------------------------------------------------------------------- /misc/contextmenu.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/contextmenu.db -------------------------------------------------------------------------------- /misc/defaultsettings.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/defaultsettings.db -------------------------------------------------------------------------------- /misc/extensions/public_rsa.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/extensions/public_rsa.pem -------------------------------------------------------------------------------- /misc/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/generate.py -------------------------------------------------------------------------------- /misc/go-png2ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/go-png2ico -------------------------------------------------------------------------------- /misc/icons/doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/doc.svg -------------------------------------------------------------------------------- /misc/icons/doc_network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/doc_network.svg -------------------------------------------------------------------------------- /misc/icons/doc_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/doc_small.svg -------------------------------------------------------------------------------- /misc/icons/doc_squared.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/doc_squared.svg -------------------------------------------------------------------------------- /misc/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/folder.svg -------------------------------------------------------------------------------- /misc/icons/folder_listicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/folder_listicon.svg -------------------------------------------------------------------------------- /misc/icons/folder_network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/folder_network.svg -------------------------------------------------------------------------------- /misc/icons/folder_squared.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/folder_squared.svg -------------------------------------------------------------------------------- /misc/icons/iconcolors.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/iconcolors.db -------------------------------------------------------------------------------- /misc/icons/img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/img.svg -------------------------------------------------------------------------------- /misc/icons/img_network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/img_network.svg -------------------------------------------------------------------------------- /misc/icons/img_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/img_small.svg -------------------------------------------------------------------------------- /misc/icons/img_squared.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/img_squared.svg -------------------------------------------------------------------------------- /misc/icons/pac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/pac.svg -------------------------------------------------------------------------------- /misc/icons/pac_network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/pac_network.svg -------------------------------------------------------------------------------- /misc/icons/pac_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/pac_small.svg -------------------------------------------------------------------------------- /misc/icons/pac_squared.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/pac_squared.svg -------------------------------------------------------------------------------- /misc/icons/svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/svg.svg -------------------------------------------------------------------------------- /misc/icons/svg_network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/svg_network.svg -------------------------------------------------------------------------------- /misc/icons/svg_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/svg_small.svg -------------------------------------------------------------------------------- /misc/icons/svg_squared.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/svg_squared.svg -------------------------------------------------------------------------------- /misc/icons/vid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/vid.svg -------------------------------------------------------------------------------- /misc/icons/vid_network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/vid_network.svg -------------------------------------------------------------------------------- /misc/icons/vid_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/vid_small.svg -------------------------------------------------------------------------------- /misc/icons/vid_squared.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/icons/vid_squared.svg -------------------------------------------------------------------------------- /misc/imageformats.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/imageformats.db -------------------------------------------------------------------------------- /misc/imgurhistory.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/imgurhistory.db -------------------------------------------------------------------------------- /misc/location.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/location.db -------------------------------------------------------------------------------- /misc/misc.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/misc.qrc -------------------------------------------------------------------------------- /misc/shortcuts.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/shortcuts.db -------------------------------------------------------------------------------- /misc/usersettings.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/misc/usersettings.db -------------------------------------------------------------------------------- /python/chromecast_cast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/python/chromecast_cast.py -------------------------------------------------------------------------------- /python/python.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/python/python.qrc -------------------------------------------------------------------------------- /qml/PQMainWindow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/PQMainWindow.qml -------------------------------------------------------------------------------- /qml/actions/PQAbout.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/actions/PQAbout.qml -------------------------------------------------------------------------------- /qml/actions/PQCopy.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/actions/PQCopy.qml -------------------------------------------------------------------------------- /qml/actions/PQDelete.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/actions/PQDelete.qml -------------------------------------------------------------------------------- /qml/actions/PQFilter.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/actions/PQFilter.qml -------------------------------------------------------------------------------- /qml/actions/PQMove.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/actions/PQMove.qml -------------------------------------------------------------------------------- /qml/actions/PQRename.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/actions/PQRename.qml -------------------------------------------------------------------------------- /qml/image/PQImage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/image/PQImage.qml -------------------------------------------------------------------------------- /qml/image/PQImageDisplay.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/image/PQImageDisplay.qml -------------------------------------------------------------------------------- /qml/loaders/PQLoaderAbout.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/loaders/PQLoaderAbout.qml -------------------------------------------------------------------------------- /qml/loaders/PQLoaderCopy.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/loaders/PQLoaderCopy.qml -------------------------------------------------------------------------------- /qml/loaders/PQLoaderImage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/loaders/PQLoaderImage.qml -------------------------------------------------------------------------------- /qml/loaders/PQLoaderMove.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/loaders/PQLoaderMove.qml -------------------------------------------------------------------------------- /qml/ongoing/PQChromeCast.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/ongoing/PQChromeCast.qml -------------------------------------------------------------------------------- /qml/ongoing/PQContextMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/ongoing/PQContextMenu.qml -------------------------------------------------------------------------------- /qml/ongoing/PQLogging.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/ongoing/PQLogging.qml -------------------------------------------------------------------------------- /qml/ongoing/PQThumbnails.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/ongoing/PQThumbnails.qml -------------------------------------------------------------------------------- /qml/ongoing/PQTrayIcon.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/ongoing/PQTrayIcon.qml -------------------------------------------------------------------------------- /qml/other/PQGenericStuff.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/other/PQGenericStuff.qml -------------------------------------------------------------------------------- /qml/other/PQLoader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/other/PQLoader.qml -------------------------------------------------------------------------------- /qml/other/PQMasterItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/other/PQMasterItem.qml -------------------------------------------------------------------------------- /qml/other/PQMultiEffect.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/other/PQMultiEffect.qml -------------------------------------------------------------------------------- /qml/other/PQScrollManager.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/other/PQScrollManager.qml -------------------------------------------------------------------------------- /qml/other/PQShadowEffect.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/other/PQShadowEffect.qml -------------------------------------------------------------------------------- /qml/other/PQShortcuts.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/other/PQShortcuts.qml -------------------------------------------------------------------------------- /qml/other/PQWorking.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/qml/other/PQWorking.qml -------------------------------------------------------------------------------- /testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/testing/CMakeLists.txt -------------------------------------------------------------------------------- /testing/resources/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/testing/resources/blue.png -------------------------------------------------------------------------------- /testing/resources/testing.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/testing/resources/testing.qrc -------------------------------------------------------------------------------- /windows/AdvUninstLog2.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/windows/AdvUninstLog2.nsh -------------------------------------------------------------------------------- /windows/FileAssociation.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/windows/FileAssociation.nsh -------------------------------------------------------------------------------- /windows/filetypes/image.x.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/windows/filetypes/image.x.ico -------------------------------------------------------------------------------- /windows/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/windows/icon.ico -------------------------------------------------------------------------------- /windows/icon_install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/windows/icon_install.ico -------------------------------------------------------------------------------- /windows/icon_portable.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/windows/icon_portable.ico -------------------------------------------------------------------------------- /windows/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/windows/license.txt -------------------------------------------------------------------------------- /windows/photoqt-setup.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/windows/photoqt-setup.nsi -------------------------------------------------------------------------------- /windows/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/windows/vcpkg.json -------------------------------------------------------------------------------- /windowsicons.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luspi/photoqt/HEAD/windowsicons.rc --------------------------------------------------------------------------------