├── CHANGES.html ├── DisplayCAL-3DLUT-maker.pyw ├── DisplayCAL-VRML-to-X3D-converter-console.py ├── DisplayCAL-VRML-to-X3D-converter.pyw ├── DisplayCAL-apply-profiles.pyw ├── DisplayCAL-curve-viewer.pyw ├── DisplayCAL-eeColor-to-madVR-converter.py ├── DisplayCAL-profile-info.pyw ├── DisplayCAL-scripting-client.pyw ├── DisplayCAL-synthprofile.pyw ├── DisplayCAL-testchart-editor.pyw ├── DisplayCAL.pyw ├── DisplayCAL ├── CGATS.py ├── ColorLookupTable.fx ├── DisplayCAL.py ├── ICCProfile.py ├── RealDisplaySizeMM.c ├── RealDisplaySizeMM.py ├── __init__.py ├── __main__.py ├── argyll_RGB2XYZ.py ├── argyll_cgats.py ├── argyll_instruments.py ├── argyll_names.py ├── audio.py ├── beep.wav ├── camera_shutter.wav ├── ccmx.py ├── chromecast_patterngenerator.py ├── colord.py ├── colormath.py ├── config.py ├── cubeiterator.py ├── debughelpers.py ├── defaultpaths.py ├── demjson_compat.py ├── edid.py ├── embeddedimage.py ├── encodedstdio.py ├── encoding.py ├── floatspin.py ├── gtypes.py ├── imfile.py ├── jsondict.py ├── jspacker.py ├── lang │ ├── de.yaml │ ├── en.yaml │ ├── es.yaml │ ├── fr.yaml │ ├── it.yaml │ ├── ko.yaml │ ├── ru.yaml │ ├── ukr.yaml │ ├── zh_cn.yaml │ └── zh_hk.yaml ├── lazydict.py ├── lib │ ├── __init__.py │ └── agw │ │ ├── __init__.py │ │ ├── artmanager.py │ │ ├── fmresources.py │ │ ├── fourwaysplitter.py │ │ ├── gradientbutton.py │ │ ├── labelbook.py │ │ └── pygauge.py ├── lib32 │ ├── RealDisplaySizeMM.so │ ├── __init__.py │ ├── python26 │ │ ├── RealDisplaySizeMM.so │ │ └── __init__.py │ └── python27 │ │ ├── RealDisplaySizeMM.pyd │ │ ├── RealDisplaySizeMM.so │ │ └── __init__.py ├── lib64 │ ├── RealDisplaySizeMM.so │ ├── __init__.py │ ├── python26 │ │ ├── RealDisplaySizeMM.so │ │ └── __init__.py │ └── python27 │ │ ├── RealDisplaySizeMM.so │ │ └── __init__.py ├── linear.cal ├── localization.py ├── log.py ├── madvr.py ├── main.py ├── meta.py ├── multiprocess.py ├── network.py ├── options.py ├── ordereddict.py ├── patterngenerators.py ├── pnp.ids ├── postinstall.py ├── presets │ ├── default.icc │ ├── laptop.icc │ ├── office_web.icc │ ├── photo.icc │ ├── sRGB.icc │ ├── softproof.icc │ ├── video.icc │ ├── video_Prisma.icc │ ├── video_ReShade.icc │ ├── video_eeColor.icc │ ├── video_madVR.icc │ ├── video_madVR_ST2084.icc │ ├── video_resolve.icc │ └── video_resolve_ST2084_clip.icc ├── profile_loader.py ├── pyi_md5pickuphelper.py ├── ref │ ├── ACES.icm │ ├── ACEScg.icm │ ├── CMYK_IDEAlliance_ControlStrip_2009.ti1 │ ├── CMYK_IDEAlliance_ISO_12647-7_Control_Wedge_2013.ti1 │ ├── CMYK_ISO_12647-7_outer_gamut.ti1 │ ├── ClayRGB1998.gam │ ├── ColorCheckerDC.cie │ ├── ColorCheckerSG.cie │ ├── DCDM X'Y'Z'.icm │ ├── ISO_12646-2008_color_accuracy_and_gray_balance.ti1 │ ├── ISO_14861_color_accuracy_RGB318.ti1 │ ├── PhotoPrintRGB_Lstar.icc │ ├── Rec2020_2084.icm │ ├── Rec2020_HLG1000_cLUT.icm │ ├── SMPTE240M.icm │ ├── SMPTE431_P3.gam │ ├── SMPTE431_P3_D65.icm │ ├── SMPTE431_P3_D65_2084.icm │ ├── SMPTE431_P3_D65_HLG1000_cLUT.icm │ ├── XYZ D50 (ICC PCS encoding).icm │ ├── XYZ D50.icm │ ├── sRGB.gam │ ├── verify.ti1 │ ├── verify_extended.ti1 │ ├── verify_grayscale.ti1 │ ├── verify_large.ti1 │ ├── verify_video.ti1 │ ├── verify_video_extended.ti1 │ ├── verify_video_extended_hlg_p3_2020.ti1 │ ├── verify_video_extended_smpte2084_1000_p3_2020.ti1 │ ├── verify_video_extended_smpte2084_100_p3_2020.ti1 │ ├── verify_video_extended_smpte2084_200_p3_2020.ti1 │ ├── verify_video_extended_smpte2084_500_p3_2020.ti1 │ ├── verify_video_large.ti1 │ ├── verify_video_xl.ti1 │ ├── verify_video_xxl.ti1 │ ├── verify_video_xxxl.ti1 │ ├── verify_xl.ti1 │ ├── verify_xxl.ti1 │ └── verify_xxxl.ti1 ├── report.py ├── report │ ├── base.css │ ├── compare.constants.js │ ├── compare.css │ ├── compare.functions.js │ ├── compare.init.js │ ├── compare.variables.js │ ├── jsapi-packages.js │ ├── jsapi-patches.js │ ├── print.css │ ├── report.html │ ├── uniformity.functions.js │ └── uniformity.html ├── safe_print.py ├── setup.py ├── systrayicon.py ├── taskbar.py ├── taskscheduler.py ├── test.cal ├── theme │ ├── beep_boop.wav │ ├── checkerboard-10x10x2-333-444.png │ ├── checkerboard-32x32x5-333-444.png │ ├── colorwheel.png │ ├── colorwheel@2x.png │ ├── cross-2px-12x12-fff.png │ ├── dashed-16x2-666.png │ ├── dropdown-arrow.png │ ├── dropdown-arrow@2x.png │ ├── engine_hum_loop.wav │ ├── gradient.png │ ├── header.png │ ├── header@2x.png │ ├── header_minimal.png │ ├── header_minimal@2x.png │ ├── headericon.png │ ├── headericon@2x.png │ ├── icons │ │ ├── 10x10 │ │ │ ├── back.png │ │ │ ├── back@2x.png │ │ │ ├── pause.png │ │ │ ├── pause@2x.png │ │ │ ├── play.png │ │ │ ├── play@2x.png │ │ │ ├── record.png │ │ │ ├── record@2x.png │ │ │ ├── record_outline.png │ │ │ ├── record_outline@2x.png │ │ │ ├── skip.png │ │ │ ├── skip@2x.png │ │ │ ├── spin_down.png │ │ │ ├── spin_down@2x.png │ │ │ ├── spin_up.png │ │ │ └── spin_up@2x.png │ │ ├── 128x128 │ │ │ ├── displaycal-3dlut-maker.png │ │ │ ├── displaycal-apply-profiles.png │ │ │ ├── displaycal-curve-viewer.png │ │ │ ├── displaycal-profile-info.png │ │ │ ├── displaycal-scripting-client.png │ │ │ ├── displaycal-synthprofile.png │ │ │ ├── displaycal-testchart-editor.png │ │ │ ├── displaycal-vrml-to-x3d-converter.png │ │ │ └── displaycal.png │ │ ├── 16x16 │ │ │ ├── 3D.png │ │ │ ├── 3D@2x.png │ │ │ ├── applications-system.png │ │ │ ├── applications-system@2x.png │ │ │ ├── apply-profiles-error.png │ │ │ ├── apply-profiles-error@2x.png │ │ │ ├── apply-profiles-reset.png │ │ │ ├── apply-profiles-reset@2x.png │ │ │ ├── apply-profiles-tray-135.png │ │ │ ├── apply-profiles-tray-180.png │ │ │ ├── apply-profiles-tray-225.png │ │ │ ├── apply-profiles-tray-270.png │ │ │ ├── apply-profiles-tray-315.png │ │ │ ├── apply-profiles-tray-45.png │ │ │ ├── apply-profiles-tray-90.png │ │ │ ├── apply-profiles-tray.png │ │ │ ├── black_level.png │ │ │ ├── black_level@2x.png │ │ │ ├── black_point.png │ │ │ ├── black_point@2x.png │ │ │ ├── button-pin.png │ │ │ ├── button-pin@2x.png │ │ │ ├── checkmark.png │ │ │ ├── checkmark@2x.png │ │ │ ├── color.png │ │ │ ├── color@2x.png │ │ │ ├── contrast.png │ │ │ ├── contrast@2x.png │ │ │ ├── dialog-information.png │ │ │ ├── dialog-warning.png │ │ │ ├── displaycal-3dlut-maker.png │ │ │ ├── displaycal-apply-profiles.png │ │ │ ├── displaycal-curve-viewer.png │ │ │ ├── displaycal-profile-info.png │ │ │ ├── displaycal-scripting-client.png │ │ │ ├── displaycal-synthprofile.png │ │ │ ├── displaycal-testchart-editor.png │ │ │ ├── displaycal-vrml-to-x3d-converter.png │ │ │ ├── displaycal.png │ │ │ ├── document-open.png │ │ │ ├── document-open@2x.png │ │ │ ├── document-open@4x.png │ │ │ ├── document-save-as.png │ │ │ ├── document-save-as@2x.png │ │ │ ├── edit-delete.png │ │ │ ├── edit-delete@2x.png │ │ │ ├── edit-delete@4x.png │ │ │ ├── image-x-generic.png │ │ │ ├── image-x-generic@2x.png │ │ │ ├── info.png │ │ │ ├── info@2x.png │ │ │ ├── info@4x.png │ │ │ ├── install.png │ │ │ ├── install@2x.png │ │ │ ├── install@4x.png │ │ │ ├── list-add.png │ │ │ ├── list-add@2x.png │ │ │ ├── list-add@4x.png │ │ │ ├── luminance.png │ │ │ ├── luminance@2x.png │ │ │ ├── package-x-generic.png │ │ │ ├── package-x-generic@2x.png │ │ │ ├── package-x-generic@4x.png │ │ │ ├── palette-black.png │ │ │ ├── palette-black@2x.png │ │ │ ├── palette-white.png │ │ │ ├── palette-white@2x.png │ │ │ ├── question.png │ │ │ ├── question@2x.png │ │ │ ├── rgb_gain_blue.png │ │ │ ├── rgb_gain_green.png │ │ │ ├── rgb_gain_red.png │ │ │ ├── rgb_offset_blue.png │ │ │ ├── rgb_offset_green.png │ │ │ ├── rgb_offset_red.png │ │ │ ├── rgbsquares.png │ │ │ ├── rgbsquares@2x.png │ │ │ ├── sound_off.png │ │ │ ├── sound_off@2x.png │ │ │ ├── sound_volume_full.png │ │ │ ├── sound_volume_full@2x.png │ │ │ ├── spectral_curves.png │ │ │ ├── spectral_curves@2x.png │ │ │ ├── start.png │ │ │ ├── start@2x.png │ │ │ ├── stock_3d-color-picker.png │ │ │ ├── stock_3d-color-picker@2x.png │ │ │ ├── stock_lock-open.png │ │ │ ├── stock_lock-open@2x.png │ │ │ ├── stock_lock.png │ │ │ ├── stock_lock@2x.png │ │ │ ├── stock_refresh.png │ │ │ ├── stock_refresh@2x.png │ │ │ ├── web.png │ │ │ ├── web@2x.png │ │ │ ├── web@4x.png │ │ │ ├── white_point.png │ │ │ ├── white_point@2x.png │ │ │ ├── window-center-outline.png │ │ │ ├── window-center-outline@2x.png │ │ │ ├── window-center.png │ │ │ ├── window-center@2x.png │ │ │ ├── x.png │ │ │ ├── x@2x.png │ │ │ ├── zoom-best-fit.png │ │ │ ├── zoom-best-fit@2x.png │ │ │ ├── zoom-in.png │ │ │ ├── zoom-in@2x.png │ │ │ ├── zoom-original-outline.png │ │ │ ├── zoom-original-outline@2x.png │ │ │ ├── zoom-original.png │ │ │ ├── zoom-original@2x.png │ │ │ ├── zoom-out.png │ │ │ └── zoom-out@2x.png │ │ ├── 22x22 │ │ │ ├── displaycal-3dlut-maker.png │ │ │ ├── displaycal-apply-profiles.png │ │ │ ├── displaycal-curve-viewer.png │ │ │ ├── displaycal-profile-info.png │ │ │ ├── displaycal-scripting-client.png │ │ │ ├── displaycal-synthprofile.png │ │ │ ├── displaycal-testchart-editor.png │ │ │ ├── displaycal-vrml-to-x3d-converter.png │ │ │ └── displaycal.png │ │ ├── 24x24 │ │ │ ├── displaycal-3dlut-maker.png │ │ │ ├── displaycal-apply-profiles.png │ │ │ ├── displaycal-curve-viewer.png │ │ │ ├── displaycal-profile-info.png │ │ │ ├── displaycal-scripting-client.png │ │ │ ├── displaycal-synthprofile.png │ │ │ ├── displaycal-testchart-editor.png │ │ │ ├── displaycal-vrml-to-x3d-converter.png │ │ │ └── displaycal.png │ │ ├── 256x256 │ │ │ ├── 3d-primitives.png │ │ │ ├── displaycal-3dlut-maker.png │ │ │ ├── displaycal-apply-profiles.png │ │ │ ├── displaycal-curve-viewer.png │ │ │ ├── displaycal-profile-info.png │ │ │ ├── displaycal-scripting-client.png │ │ │ ├── displaycal-synthprofile.png │ │ │ ├── displaycal-testchart-editor.png │ │ │ ├── displaycal-vrml-to-x3d-converter.png │ │ │ └── displaycal.png │ │ ├── 32x32 │ │ │ ├── 3dlut.png │ │ │ ├── 3dlut@2x.png │ │ │ ├── apply-profiles-tray-135.png │ │ │ ├── apply-profiles-tray-180.png │ │ │ ├── apply-profiles-tray-225.png │ │ │ ├── apply-profiles-tray-270.png │ │ │ ├── apply-profiles-tray-315.png │ │ │ ├── apply-profiles-tray-45.png │ │ │ ├── apply-profiles-tray-90.png │ │ │ ├── apply-profiles-tray.png │ │ │ ├── calibration.png │ │ │ ├── calibration@2x.png │ │ │ ├── clock.png │ │ │ ├── clock@2x.png │ │ │ ├── dialog-error.png │ │ │ ├── dialog-error@2x.png │ │ │ ├── dialog-information.png │ │ │ ├── dialog-information@2x.png │ │ │ ├── dialog-ok.png │ │ │ ├── dialog-ok@2x.png │ │ │ ├── dialog-question.png │ │ │ ├── dialog-question@2x.png │ │ │ ├── dialog-warning.png │ │ │ ├── dialog-warning@2x.png │ │ │ ├── display-instrument.png │ │ │ ├── display-instrument@2x.png │ │ │ ├── display.png │ │ │ ├── display@2x.png │ │ │ ├── displaycal-3dlut-maker.png │ │ │ ├── displaycal-apply-profiles.png │ │ │ ├── displaycal-curve-viewer.png │ │ │ ├── displaycal-profile-info.png │ │ │ ├── displaycal-scripting-client.png │ │ │ ├── displaycal-synthprofile.png │ │ │ ├── displaycal-testchart-editor.png │ │ │ ├── displaycal-vrml-to-x3d-converter.png │ │ │ ├── displaycal.png │ │ │ ├── lock.png │ │ │ ├── lock@2x.png │ │ │ ├── profiling.png │ │ │ └── profiling@2x.png │ │ ├── 48x48 │ │ │ ├── displaycal-3dlut-maker.png │ │ │ ├── displaycal-apply-profiles.png │ │ │ ├── displaycal-curve-viewer.png │ │ │ ├── displaycal-profile-info.png │ │ │ ├── displaycal-scripting-client.png │ │ │ ├── displaycal-synthprofile.png │ │ │ ├── displaycal-testchart-editor.png │ │ │ ├── displaycal-vrml-to-x3d-converter.png │ │ │ └── displaycal.png │ │ ├── 512x512 │ │ │ └── 3d-primitives.png │ │ ├── 64x64 │ │ │ ├── displaycal-3dlut-maker.png │ │ │ ├── displaycal-apply-profiles.png │ │ │ ├── displaycal-curve-viewer.png │ │ │ ├── displaycal-profile-info.png │ │ │ ├── displaycal-scripting-client.png │ │ │ ├── displaycal-synthprofile.png │ │ │ ├── displaycal-testchart-editor.png │ │ │ ├── displaycal-vrml-to-x3d-converter.png │ │ │ └── displaycal.png │ │ ├── 72x72 │ │ │ ├── black_luminance.png │ │ │ ├── black_luminance@2x.png │ │ │ ├── black_point.png │ │ │ ├── black_point@2x.png │ │ │ ├── check_all.png │ │ │ ├── check_all@2x.png │ │ │ ├── contrast.png │ │ │ ├── contrast@2x.png │ │ │ ├── luminance.png │ │ │ ├── luminance@2x.png │ │ │ ├── white_point.png │ │ │ └── white_point@2x.png │ │ ├── DisplayCAL-3DLUT-maker.icns │ │ ├── DisplayCAL-3DLUT-maker.ico │ │ ├── DisplayCAL-VRML-to-X3D-converter.icns │ │ ├── DisplayCAL-VRML-to-X3D-converter.ico │ │ ├── DisplayCAL-apply-profiles.ico │ │ ├── DisplayCAL-curve-viewer.icns │ │ ├── DisplayCAL-curve-viewer.ico │ │ ├── DisplayCAL-profile-info.icns │ │ ├── DisplayCAL-profile-info.ico │ │ ├── DisplayCAL-scripting-client.icns │ │ ├── DisplayCAL-scripting-client.ico │ │ ├── DisplayCAL-synthprofile.icns │ │ ├── DisplayCAL-synthprofile.ico │ │ ├── DisplayCAL-testchart-editor.icns │ │ ├── DisplayCAL-testchart-editor.ico │ │ ├── DisplayCAL-uninstall.ico │ │ ├── DisplayCAL.icns │ │ └── DisplayCAL.ico │ ├── intro_new.wav │ ├── jet_anim │ │ ├── jet_anim_01.png │ │ ├── jet_anim_02.png │ │ ├── jet_anim_03.png │ │ ├── jet_anim_04.png │ │ ├── jet_anim_05.png │ │ ├── jet_anim_06.png │ │ ├── jet_anim_07.png │ │ └── jet_anim_08.png │ ├── marker_btm.png │ ├── marker_btm@2x.png │ ├── marker_top.png │ ├── marker_top@2x.png │ ├── patch_anim │ │ ├── patch_anim_01.png │ │ ├── patch_anim_02.png │ │ ├── patch_anim_03.png │ │ ├── patch_anim_04.png │ │ ├── patch_anim_05.png │ │ ├── patch_anim_06.png │ │ ├── patch_anim_07.png │ │ ├── patch_anim_08.png │ │ └── patch_anim_09.png │ ├── pulsing_loop.wav │ ├── sash-left.png │ ├── sash-right.png │ ├── sash.png │ ├── shadow-bordertop.png │ ├── shadow.png │ ├── shutter_anim │ │ ├── shutter_anim_01.png │ │ ├── shutter_anim_02.png │ │ ├── shutter_anim_03.png │ │ ├── shutter_anim_04.png │ │ ├── shutter_anim_05.png │ │ ├── shutter_anim_06.png │ │ ├── shutter_anim_07.png │ │ ├── shutter_anim_08.png │ │ └── shutter_anim_09.png │ ├── solid-16x1-fff.png │ ├── solid-16x2-666.png │ ├── splash-mask.png │ ├── splash.png │ ├── splash_anim │ │ ├── splash_anim_01.png │ │ ├── splash_anim_02.png │ │ ├── splash_anim_03.png │ │ ├── splash_anim_04.png │ │ ├── splash_anim_05.png │ │ ├── splash_anim_06.png │ │ ├── splash_anim_07.png │ │ ├── splash_anim_08.png │ │ ├── splash_anim_09.png │ │ ├── splash_anim_10.png │ │ ├── splash_anim_11.png │ │ ├── splash_anim_12.png │ │ ├── splash_anim_13.png │ │ ├── splash_anim_14.png │ │ ├── splash_anim_15.png │ │ └── splash_anim_16.png │ ├── splash_version.png │ ├── tab_hilite.png │ ├── tab_hilite@2x.png │ ├── tab_selected.png │ ├── tab_selected@2x.png │ ├── theme-info.txt │ ├── x-2px-12x12-999.png │ └── x-2px-12x12-999@2x.png ├── ti1 │ ├── ccxx.ti1 │ ├── d3-e4-s17-g52-m17-b0-f0.ti1 │ ├── d3-e4-s2-g28-m0-b0-f0.ti1 │ ├── d3-e4-s3-g52-m3-b0-f0.ti1 │ ├── d3-e4-s4-g52-m4-b0-f0.ti1 │ ├── d3-e4-s5-g52-m5-b0-f0.ti1 │ └── d3-e4-s9-g52-m9-b0-f0.ti1 ├── trash.py ├── util_dbus.py ├── util_decimal.py ├── util_http.py ├── util_io.py ├── util_list.py ├── util_mac.py ├── util_os.py ├── util_str.py ├── util_win.py ├── util_x.py ├── util_xml.py ├── webwin.py ├── wexpect.py ├── win_handles.py ├── win_knownpaths.py ├── win_structs.py ├── worker.py ├── worker_base.py ├── wxCCXXPlot.py ├── wxDisplayAdjustmentFrame.py ├── wxDisplayUniformityFrame.py ├── wxLUT3DFrame.py ├── wxLUTViewer.py ├── wxMeasureFrame.py ├── wxProfileInfo.py ├── wxReportFrame.py ├── wxScriptingClient.py ├── wxSynthICCFrame.py ├── wxTestchartEditor.py ├── wxUntetheredFrame.py ├── wxVRML2X3D.py ├── wxVisualWhitepointEditor.py ├── wxaddons.py ├── wxenhancedplot.py ├── wxfixes.py ├── wxversion.py ├── wxwindows.py ├── x3d-viewer │ ├── x3d-viewer.css │ ├── x3d-viewer.html │ └── x3d-viewer.js ├── x3dom.py ├── xh_bitmapctrls.py ├── xh_fancytext.py ├── xh_filebrowsebutton.py ├── xh_floatspin.py ├── xh_hstretchstatbmp.py ├── xrandr.py └── xrc │ ├── 3dlut.xrc │ ├── extra.xrc │ ├── gamap.xrc │ ├── main.xrc │ ├── mainmenu.xrc │ ├── report.xrc │ └── synthicc.xrc ├── LICENSE.txt ├── Makefile ├── README-fr.html ├── README.html ├── README.md ├── VERSION_BASE ├── history.html ├── man ├── displaycal-3dlut-maker.1 ├── displaycal-apply-profiles.1 ├── displaycal-curve-viewer.1 ├── displaycal-profile-info.1 ├── displaycal-scripting-client.1 ├── displaycal-synthprofile.1 ├── displaycal-testchart-editor.1 ├── displaycal-vrml-to-x3d-converter.1 └── displaycal.1 ├── misc ├── 0install │ ├── 0install-icon.png │ ├── 0install-main.png │ ├── 0install.png │ ├── 7z.xml │ ├── DisplayCAL-linux.xml │ ├── DisplayCAL-mac.xml │ ├── DisplayCAL-win32.xml │ ├── DisplayCAL.dsc │ ├── DisplayCAL.spec │ ├── DisplayCAL.xml │ ├── PKGBUILD │ ├── Pillow.xml │ ├── SDL.xml │ ├── argyllcms.xml │ ├── comtypes.xml │ ├── debian.changelog │ ├── debian.control │ ├── debian.postinst │ ├── debian.postrm │ ├── debian.rules │ ├── displaycal-0install.install │ ├── enum34.xml │ ├── faulthandler.xml │ ├── interface.xsl │ ├── interface1.css │ ├── netifaces.xml │ ├── numpy.xml │ ├── protobuf.xml │ ├── pychromecast.xml │ ├── pyglet.xml │ ├── pywin32.xml │ ├── requests.xml │ ├── six.xml │ ├── wmi.xml │ ├── wxpython.xml │ └── zeroconf.xml ├── 45-Argyll.rules ├── 55-Argyll.rules ├── Argyll ├── Argyll.usermap ├── CHANGES.template.html ├── DisplayCAL-Setup-0install-per-user.iss ├── DisplayCAL-Setup-0install.iss ├── DisplayCAL-Setup-py2exe.iss ├── DisplayCAL.changes ├── DisplayCAL.doap ├── DisplayCAL.dsc ├── DisplayCAL.exe.amd64.VC90.manifest ├── DisplayCAL.exe.manifest ├── DisplayCAL.exe.x86.VC90.manifest ├── DisplayCAL.pkgproj ├── DisplayCAL.pyi.spec ├── DisplayCAL.spec ├── Info.plist ├── InnoSetup │ └── v5 │ │ ├── Default.isl │ │ └── Languages │ │ ├── French.isl │ │ ├── German.isl │ │ ├── Italian.isl │ │ └── Spanish.isl ├── PKGBUILD ├── README-fr.template.html ├── README.template.html ├── alien.rules ├── appimage.yml ├── debian.changelog ├── debian.compat ├── debian.control ├── debian.copyright ├── debian.postinst ├── debian.postrm ├── debian.rules ├── displaycal-3dlut-maker.desktop ├── displaycal-apply-profiles.desktop ├── displaycal-curve-viewer.desktop ├── displaycal-profile-info.desktop ├── displaycal-readme ├── displaycal-scripting-client.desktop ├── displaycal-synthprofile.desktop ├── displaycal-testchart-editor.desktop ├── displaycal-vrml-to-x3d-converter.desktop ├── displaycal.desktop ├── displaycal.install ├── distutils.msvc9compiler.msvc9_for_python2.7.patch ├── history.template.html ├── low_contrast.icc ├── media │ ├── icon-install.bmp │ ├── install-py.bmp │ └── install.bmp ├── net.displaycal.DisplayCAL.appdata.xml ├── py2exe │ ├── README.txt │ ├── boot_common.py │ ├── build_exe.py.patch │ └── icon.py ├── setup.debian.cfg ├── setup.fedora.cfg ├── setup.mandriva.cfg ├── setup.mandriva64.cfg ├── setup.openSUSE.cfg ├── setup.ubuntu.cfg ├── tests │ ├── fakecgats.txt │ ├── junk.cal │ ├── junk.icc │ ├── junk.icm │ ├── junk.ti1 │ ├── junk.ti2 │ └── junk.ti3 ├── ti3 │ ├── default.ti3 │ ├── laptop.ti3 │ ├── office_web.ti3 │ ├── photo.ti3 │ ├── sRGB.ti3 │ ├── softproof.ti3 │ ├── video.ti3 │ ├── video_Prisma.ti3 │ ├── video_ReShade.ti3 │ ├── video_eeColor.ti3 │ ├── video_madVR.ti3 │ ├── video_madVR_ST2084.ti3 │ ├── video_resolve.ti3 │ └── video_resolve_ST2084_clip.ti3 ├── winversion.txt ├── xrced_plugins │ ├── fancytext.crx │ ├── filebrowsebutton.crx │ ├── floatspin.crx │ ├── hstretchstatbmp.crx │ └── xh_floatspin.py └── z-displaycal-apply-profiles.desktop ├── screenshots ├── DisplayCAL-screenshot-GNOME-1024x576.png ├── DisplayCAL-screenshot-GNOME-3DLUT-settings-thumb.png ├── DisplayCAL-screenshot-GNOME-3DLUT-settings.png ├── DisplayCAL-screenshot-GNOME-adjust-1024x576.png ├── DisplayCAL-screenshot-GNOME-adjust-thumb.png ├── DisplayCAL-screenshot-GNOME-adjust.png ├── DisplayCAL-screenshot-GNOME-calibration-settings-thumb.png ├── DisplayCAL-screenshot-GNOME-calibration-settings.png ├── DisplayCAL-screenshot-GNOME-edit-testchart-thumb.png ├── DisplayCAL-screenshot-GNOME-edit-testchart.png ├── DisplayCAL-screenshot-GNOME-profile-information-thumb.png ├── DisplayCAL-screenshot-GNOME-profile-information.png ├── DisplayCAL-screenshot-GNOME-profiling-settings-thumb.png ├── DisplayCAL-screenshot-GNOME-profiling-settings.png ├── DisplayCAL-screenshot-GNOME-thumb.png ├── DisplayCAL-screenshot-GNOME-verification-settings-thumb.png ├── DisplayCAL-screenshot-GNOME-verification-settings.png ├── DisplayCAL-screenshot-GNOME-view-curves-thumb.png ├── DisplayCAL-screenshot-GNOME-view-curves.png ├── DisplayCAL-screenshot-GNOME.png ├── DisplayCAL-screenshot-KDE5-thumb.png ├── DisplayCAL-screenshot-KDE5.png ├── DisplayCAL-screenshot-Mac-thumb.png ├── DisplayCAL-screenshot-Mac.png ├── DisplayCAL-screenshot-Win10-thumb.png └── DisplayCAL-screenshot-Win10.png ├── scripts ├── displaycal ├── displaycal-3dlut-maker ├── displaycal-apply-profiles ├── displaycal-apply-profiles-launcher ├── displaycal-curve-viewer ├── displaycal-eecolor-to-madvr-converter ├── displaycal-profile-info ├── displaycal-scripting-client ├── displaycal-synthprofile ├── displaycal-testchart-editor ├── displaycal-vrml-to-x3d-converter └── displaycal-vrml-to-x3d-converter-console ├── setup.cfg ├── setup.py ├── tests ├── vcgt_cm_test_blueish_yellowish.icc ├── vcgt_cm_test_blueish_yellowish_clut.icc ├── vcgt_cm_test_cyanish_reddish.icc ├── vcgt_cm_test_cyanish_reddish_clut.icc ├── vcgt_cm_test_greenish_purplish.icc ├── vcgt_cm_test_greenish_purplish_clut.icc ├── vcgt_cm_test_purplish_greenish.icc ├── vcgt_cm_test_purplish_greenish_clut.icc ├── vcgt_cm_test_reddish_cyanish.icc ├── vcgt_cm_test_reddish_cyanish_clut.icc ├── vcgt_cm_test_yellowish_blueish.icc └── vcgt_cm_test_yellowish_blueish_clut.icc ├── theme ├── DisplayCAL-adjust-reflection-GNOME.png ├── DisplayCAL-adjust-reflection-Mac.png ├── DisplayCAL-adjust-reflection.png ├── DisplayCAL-main_window-reflection-GNOME.png ├── DisplayCAL-main_window-reflection-Mac.png ├── DisplayCAL-main_window-reflection.png ├── DisplayCAL-main_window-shadow-GNOME.png ├── DisplayCAL-main_window-shadow-Mac.png ├── DisplayCAL-main_window-shadow.png ├── bg.png ├── icon-reflection.png ├── icons │ └── favicon.ico ├── jquery.js ├── jquery.localscroll.js ├── jquery.scrollTo.js ├── list-dot.png ├── prism.css ├── prism.js ├── readme.css ├── readme.js ├── refresh.svg └── slimbox2 │ ├── slimbox2.css │ └── slimbox2.js └── util ├── 0install_desktop.py ├── DisplayCAL_postinstall.py ├── DisplayCAL_postuninstall.py ├── apply_cal_diff_from_icc.py ├── bt2390_test.pyw ├── change_display_profile_cal_whitepoint.py ├── check-install.sh ├── check_changelog_match.py ├── check_x_xrandr_icc.py ├── convert_hwdb_to_pnp_ids.py ├── convert_translations_json_to_yaml.py ├── create_8bit_gradient.py ├── create_rendering_intent_test_profile.py ├── create_testcharts.py ├── createpresets.cmd ├── createpresets.sh ├── crushpng.cmd ├── cubicgrid.py ├── dist.cmd ├── dist_0install.cmd ├── dist_0install.sh ├── dist_debian.sh ├── dist_fedora.sh ├── dist_mandriva.sh ├── dist_mandriva64.sh ├── dist_obs.sh ├── dist_openSUSE.sh ├── dist_osx.sh ├── dist_py2exe.cmd ├── dist_ubuntu.sh ├── dump_x_profiles.py ├── ez_setup.py ├── find_abstract_profiles.py ├── find_argl_profiles.py ├── find_chad_profiles.py ├── find_chrm_profiles.py ├── find_clrt_profiles.py ├── find_colorspace_profiles.py ├── find_iCCP_pngs.py ├── find_icc_v2_unicode_desc_profiles.py ├── find_icc_v4_profiles.py ├── find_identity_curve_profiles.py ├── generate_HLG_P3_2020_r_ti3.cmd ├── generate_SMPTE2084_P3_2020_r_ti3.cmd ├── lincal.py ├── list-autostarts.sh ├── list-color-conffiles.sh ├── list-device-profiles.sh ├── localization_find_potentially_unused_strings.py ├── make-site-package-dist.py ├── nearneutrals.py ├── ppdir.py ├── profileinfo.py ├── rpm_postinstall.sh ├── rpm_postuninstall.sh ├── scale_cal.py ├── sdist.cmd ├── sdist.sh ├── set_profile_desc_to_basename_sans_ext.py ├── sign_dist.cmd ├── spyd4cal_to_ccss.py ├── standalone-tools-icons.py ├── switchvc90.cmd ├── sync_translations.py ├── tidy_dist.py ├── update_pnp_ids.cmd ├── update_pnp_ids.sh ├── update_presets.py ├── vc90crt.py ├── winmanifest.py ├── winmanifest_util.py ├── winresource.py └── winversion.py /CHANGES.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/CHANGES.html -------------------------------------------------------------------------------- /DisplayCAL-3DLUT-maker.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL-3DLUT-maker.pyw -------------------------------------------------------------------------------- /DisplayCAL-VRML-to-X3D-converter-console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL-VRML-to-X3D-converter-console.py -------------------------------------------------------------------------------- /DisplayCAL-VRML-to-X3D-converter.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL-VRML-to-X3D-converter.pyw -------------------------------------------------------------------------------- /DisplayCAL-apply-profiles.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL-apply-profiles.pyw -------------------------------------------------------------------------------- /DisplayCAL-curve-viewer.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL-curve-viewer.pyw -------------------------------------------------------------------------------- /DisplayCAL-eeColor-to-madVR-converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL-eeColor-to-madVR-converter.py -------------------------------------------------------------------------------- /DisplayCAL-profile-info.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL-profile-info.pyw -------------------------------------------------------------------------------- /DisplayCAL-scripting-client.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL-scripting-client.pyw -------------------------------------------------------------------------------- /DisplayCAL-synthprofile.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL-synthprofile.pyw -------------------------------------------------------------------------------- /DisplayCAL-testchart-editor.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL-testchart-editor.pyw -------------------------------------------------------------------------------- /DisplayCAL.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL.pyw -------------------------------------------------------------------------------- /DisplayCAL/CGATS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/CGATS.py -------------------------------------------------------------------------------- /DisplayCAL/ColorLookupTable.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ColorLookupTable.fx -------------------------------------------------------------------------------- /DisplayCAL/DisplayCAL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/DisplayCAL.py -------------------------------------------------------------------------------- /DisplayCAL/ICCProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ICCProfile.py -------------------------------------------------------------------------------- /DisplayCAL/RealDisplaySizeMM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/RealDisplaySizeMM.c -------------------------------------------------------------------------------- /DisplayCAL/RealDisplaySizeMM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/RealDisplaySizeMM.py -------------------------------------------------------------------------------- /DisplayCAL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/__init__.py -------------------------------------------------------------------------------- /DisplayCAL/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/__main__.py -------------------------------------------------------------------------------- /DisplayCAL/argyll_RGB2XYZ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/argyll_RGB2XYZ.py -------------------------------------------------------------------------------- /DisplayCAL/argyll_cgats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/argyll_cgats.py -------------------------------------------------------------------------------- /DisplayCAL/argyll_instruments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/argyll_instruments.py -------------------------------------------------------------------------------- /DisplayCAL/argyll_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/argyll_names.py -------------------------------------------------------------------------------- /DisplayCAL/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/audio.py -------------------------------------------------------------------------------- /DisplayCAL/beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/beep.wav -------------------------------------------------------------------------------- /DisplayCAL/camera_shutter.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/camera_shutter.wav -------------------------------------------------------------------------------- /DisplayCAL/ccmx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ccmx.py -------------------------------------------------------------------------------- /DisplayCAL/chromecast_patterngenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/chromecast_patterngenerator.py -------------------------------------------------------------------------------- /DisplayCAL/colord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/colord.py -------------------------------------------------------------------------------- /DisplayCAL/colormath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/colormath.py -------------------------------------------------------------------------------- /DisplayCAL/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/config.py -------------------------------------------------------------------------------- /DisplayCAL/cubeiterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/cubeiterator.py -------------------------------------------------------------------------------- /DisplayCAL/debughelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/debughelpers.py -------------------------------------------------------------------------------- /DisplayCAL/defaultpaths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/defaultpaths.py -------------------------------------------------------------------------------- /DisplayCAL/demjson_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/demjson_compat.py -------------------------------------------------------------------------------- /DisplayCAL/edid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/edid.py -------------------------------------------------------------------------------- /DisplayCAL/embeddedimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/embeddedimage.py -------------------------------------------------------------------------------- /DisplayCAL/encodedstdio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/encodedstdio.py -------------------------------------------------------------------------------- /DisplayCAL/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/encoding.py -------------------------------------------------------------------------------- /DisplayCAL/floatspin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/floatspin.py -------------------------------------------------------------------------------- /DisplayCAL/gtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/gtypes.py -------------------------------------------------------------------------------- /DisplayCAL/imfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/imfile.py -------------------------------------------------------------------------------- /DisplayCAL/jsondict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/jsondict.py -------------------------------------------------------------------------------- /DisplayCAL/jspacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/jspacker.py -------------------------------------------------------------------------------- /DisplayCAL/lang/de.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lang/de.yaml -------------------------------------------------------------------------------- /DisplayCAL/lang/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lang/en.yaml -------------------------------------------------------------------------------- /DisplayCAL/lang/es.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lang/es.yaml -------------------------------------------------------------------------------- /DisplayCAL/lang/fr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lang/fr.yaml -------------------------------------------------------------------------------- /DisplayCAL/lang/it.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lang/it.yaml -------------------------------------------------------------------------------- /DisplayCAL/lang/ko.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lang/ko.yaml -------------------------------------------------------------------------------- /DisplayCAL/lang/ru.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lang/ru.yaml -------------------------------------------------------------------------------- /DisplayCAL/lang/ukr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lang/ukr.yaml -------------------------------------------------------------------------------- /DisplayCAL/lang/zh_cn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lang/zh_cn.yaml -------------------------------------------------------------------------------- /DisplayCAL/lang/zh_hk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lang/zh_hk.yaml -------------------------------------------------------------------------------- /DisplayCAL/lazydict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lazydict.py -------------------------------------------------------------------------------- /DisplayCAL/lib/__init__.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /DisplayCAL/lib/agw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lib/agw/__init__.py -------------------------------------------------------------------------------- /DisplayCAL/lib/agw/artmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lib/agw/artmanager.py -------------------------------------------------------------------------------- /DisplayCAL/lib/agw/fmresources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lib/agw/fmresources.py -------------------------------------------------------------------------------- /DisplayCAL/lib/agw/fourwaysplitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lib/agw/fourwaysplitter.py -------------------------------------------------------------------------------- /DisplayCAL/lib/agw/gradientbutton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lib/agw/gradientbutton.py -------------------------------------------------------------------------------- /DisplayCAL/lib/agw/labelbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lib/agw/labelbook.py -------------------------------------------------------------------------------- /DisplayCAL/lib/agw/pygauge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lib/agw/pygauge.py -------------------------------------------------------------------------------- /DisplayCAL/lib32/RealDisplaySizeMM.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lib32/RealDisplaySizeMM.so -------------------------------------------------------------------------------- /DisplayCAL/lib32/__init__.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /DisplayCAL/lib32/python26/RealDisplaySizeMM.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lib32/python26/RealDisplaySizeMM.so -------------------------------------------------------------------------------- /DisplayCAL/lib32/python26/__init__.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /DisplayCAL/lib32/python27/RealDisplaySizeMM.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lib32/python27/RealDisplaySizeMM.pyd -------------------------------------------------------------------------------- /DisplayCAL/lib32/python27/RealDisplaySizeMM.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lib32/python27/RealDisplaySizeMM.so -------------------------------------------------------------------------------- /DisplayCAL/lib32/python27/__init__.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /DisplayCAL/lib64/RealDisplaySizeMM.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lib64/RealDisplaySizeMM.so -------------------------------------------------------------------------------- /DisplayCAL/lib64/__init__.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /DisplayCAL/lib64/python26/RealDisplaySizeMM.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lib64/python26/RealDisplaySizeMM.so -------------------------------------------------------------------------------- /DisplayCAL/lib64/python26/__init__.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /DisplayCAL/lib64/python27/RealDisplaySizeMM.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/lib64/python27/RealDisplaySizeMM.so -------------------------------------------------------------------------------- /DisplayCAL/lib64/python27/__init__.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /DisplayCAL/linear.cal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/linear.cal -------------------------------------------------------------------------------- /DisplayCAL/localization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/localization.py -------------------------------------------------------------------------------- /DisplayCAL/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/log.py -------------------------------------------------------------------------------- /DisplayCAL/madvr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/madvr.py -------------------------------------------------------------------------------- /DisplayCAL/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/main.py -------------------------------------------------------------------------------- /DisplayCAL/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/meta.py -------------------------------------------------------------------------------- /DisplayCAL/multiprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/multiprocess.py -------------------------------------------------------------------------------- /DisplayCAL/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/network.py -------------------------------------------------------------------------------- /DisplayCAL/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/options.py -------------------------------------------------------------------------------- /DisplayCAL/ordereddict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ordereddict.py -------------------------------------------------------------------------------- /DisplayCAL/patterngenerators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/patterngenerators.py -------------------------------------------------------------------------------- /DisplayCAL/pnp.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/pnp.ids -------------------------------------------------------------------------------- /DisplayCAL/postinstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/postinstall.py -------------------------------------------------------------------------------- /DisplayCAL/presets/default.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/presets/default.icc -------------------------------------------------------------------------------- /DisplayCAL/presets/laptop.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/presets/laptop.icc -------------------------------------------------------------------------------- /DisplayCAL/presets/office_web.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/presets/office_web.icc -------------------------------------------------------------------------------- /DisplayCAL/presets/photo.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/presets/photo.icc -------------------------------------------------------------------------------- /DisplayCAL/presets/sRGB.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/presets/sRGB.icc -------------------------------------------------------------------------------- /DisplayCAL/presets/softproof.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/presets/softproof.icc -------------------------------------------------------------------------------- /DisplayCAL/presets/video.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/presets/video.icc -------------------------------------------------------------------------------- /DisplayCAL/presets/video_Prisma.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/presets/video_Prisma.icc -------------------------------------------------------------------------------- /DisplayCAL/presets/video_ReShade.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/presets/video_ReShade.icc -------------------------------------------------------------------------------- /DisplayCAL/presets/video_eeColor.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/presets/video_eeColor.icc -------------------------------------------------------------------------------- /DisplayCAL/presets/video_madVR.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/presets/video_madVR.icc -------------------------------------------------------------------------------- /DisplayCAL/presets/video_madVR_ST2084.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/presets/video_madVR_ST2084.icc -------------------------------------------------------------------------------- /DisplayCAL/presets/video_resolve.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/presets/video_resolve.icc -------------------------------------------------------------------------------- /DisplayCAL/presets/video_resolve_ST2084_clip.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/presets/video_resolve_ST2084_clip.icc -------------------------------------------------------------------------------- /DisplayCAL/profile_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/profile_loader.py -------------------------------------------------------------------------------- /DisplayCAL/pyi_md5pickuphelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/pyi_md5pickuphelper.py -------------------------------------------------------------------------------- /DisplayCAL/ref/ACES.icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/ACES.icm -------------------------------------------------------------------------------- /DisplayCAL/ref/ACEScg.icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/ACEScg.icm -------------------------------------------------------------------------------- /DisplayCAL/ref/CMYK_IDEAlliance_ControlStrip_2009.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/CMYK_IDEAlliance_ControlStrip_2009.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ref/CMYK_ISO_12647-7_outer_gamut.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/CMYK_ISO_12647-7_outer_gamut.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ref/ClayRGB1998.gam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/ClayRGB1998.gam -------------------------------------------------------------------------------- /DisplayCAL/ref/ColorCheckerDC.cie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/ColorCheckerDC.cie -------------------------------------------------------------------------------- /DisplayCAL/ref/ColorCheckerSG.cie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/ColorCheckerSG.cie -------------------------------------------------------------------------------- /DisplayCAL/ref/DCDM X'Y'Z'.icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/DCDM X'Y'Z'.icm -------------------------------------------------------------------------------- /DisplayCAL/ref/ISO_14861_color_accuracy_RGB318.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/ISO_14861_color_accuracy_RGB318.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ref/PhotoPrintRGB_Lstar.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/PhotoPrintRGB_Lstar.icc -------------------------------------------------------------------------------- /DisplayCAL/ref/Rec2020_2084.icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/Rec2020_2084.icm -------------------------------------------------------------------------------- /DisplayCAL/ref/Rec2020_HLG1000_cLUT.icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/Rec2020_HLG1000_cLUT.icm -------------------------------------------------------------------------------- /DisplayCAL/ref/SMPTE240M.icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/SMPTE240M.icm -------------------------------------------------------------------------------- /DisplayCAL/ref/SMPTE431_P3.gam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/SMPTE431_P3.gam -------------------------------------------------------------------------------- /DisplayCAL/ref/SMPTE431_P3_D65.icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/SMPTE431_P3_D65.icm -------------------------------------------------------------------------------- /DisplayCAL/ref/SMPTE431_P3_D65_2084.icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/SMPTE431_P3_D65_2084.icm -------------------------------------------------------------------------------- /DisplayCAL/ref/SMPTE431_P3_D65_HLG1000_cLUT.icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/SMPTE431_P3_D65_HLG1000_cLUT.icm -------------------------------------------------------------------------------- /DisplayCAL/ref/XYZ D50 (ICC PCS encoding).icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/XYZ D50 (ICC PCS encoding).icm -------------------------------------------------------------------------------- /DisplayCAL/ref/XYZ D50.icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/XYZ D50.icm -------------------------------------------------------------------------------- /DisplayCAL/ref/sRGB.gam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/sRGB.gam -------------------------------------------------------------------------------- /DisplayCAL/ref/verify.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/verify.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ref/verify_extended.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/verify_extended.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ref/verify_grayscale.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/verify_grayscale.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ref/verify_large.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/verify_large.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ref/verify_video.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/verify_video.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ref/verify_video_extended.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/verify_video_extended.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ref/verify_video_extended_hlg_p3_2020.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/verify_video_extended_hlg_p3_2020.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ref/verify_video_large.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/verify_video_large.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ref/verify_video_xl.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/verify_video_xl.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ref/verify_video_xxl.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/verify_video_xxl.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ref/verify_video_xxxl.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/verify_video_xxxl.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ref/verify_xl.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/verify_xl.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ref/verify_xxl.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/verify_xxl.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ref/verify_xxxl.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ref/verify_xxxl.ti1 -------------------------------------------------------------------------------- /DisplayCAL/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/report.py -------------------------------------------------------------------------------- /DisplayCAL/report/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/report/base.css -------------------------------------------------------------------------------- /DisplayCAL/report/compare.constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/report/compare.constants.js -------------------------------------------------------------------------------- /DisplayCAL/report/compare.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/report/compare.css -------------------------------------------------------------------------------- /DisplayCAL/report/compare.functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/report/compare.functions.js -------------------------------------------------------------------------------- /DisplayCAL/report/compare.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/report/compare.init.js -------------------------------------------------------------------------------- /DisplayCAL/report/compare.variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/report/compare.variables.js -------------------------------------------------------------------------------- /DisplayCAL/report/jsapi-packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/report/jsapi-packages.js -------------------------------------------------------------------------------- /DisplayCAL/report/jsapi-patches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/report/jsapi-patches.js -------------------------------------------------------------------------------- /DisplayCAL/report/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/report/print.css -------------------------------------------------------------------------------- /DisplayCAL/report/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/report/report.html -------------------------------------------------------------------------------- /DisplayCAL/report/uniformity.functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/report/uniformity.functions.js -------------------------------------------------------------------------------- /DisplayCAL/report/uniformity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/report/uniformity.html -------------------------------------------------------------------------------- /DisplayCAL/safe_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/safe_print.py -------------------------------------------------------------------------------- /DisplayCAL/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/setup.py -------------------------------------------------------------------------------- /DisplayCAL/systrayicon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/systrayicon.py -------------------------------------------------------------------------------- /DisplayCAL/taskbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/taskbar.py -------------------------------------------------------------------------------- /DisplayCAL/taskscheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/taskscheduler.py -------------------------------------------------------------------------------- /DisplayCAL/test.cal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/test.cal -------------------------------------------------------------------------------- /DisplayCAL/theme/beep_boop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/beep_boop.wav -------------------------------------------------------------------------------- /DisplayCAL/theme/checkerboard-10x10x2-333-444.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/checkerboard-10x10x2-333-444.png -------------------------------------------------------------------------------- /DisplayCAL/theme/checkerboard-32x32x5-333-444.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/checkerboard-32x32x5-333-444.png -------------------------------------------------------------------------------- /DisplayCAL/theme/colorwheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/colorwheel.png -------------------------------------------------------------------------------- /DisplayCAL/theme/colorwheel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/colorwheel@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/cross-2px-12x12-fff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/cross-2px-12x12-fff.png -------------------------------------------------------------------------------- /DisplayCAL/theme/dashed-16x2-666.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/dashed-16x2-666.png -------------------------------------------------------------------------------- /DisplayCAL/theme/dropdown-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/dropdown-arrow.png -------------------------------------------------------------------------------- /DisplayCAL/theme/dropdown-arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/dropdown-arrow@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/engine_hum_loop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/engine_hum_loop.wav -------------------------------------------------------------------------------- /DisplayCAL/theme/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/gradient.png -------------------------------------------------------------------------------- /DisplayCAL/theme/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/header.png -------------------------------------------------------------------------------- /DisplayCAL/theme/header@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/header@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/header_minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/header_minimal.png -------------------------------------------------------------------------------- /DisplayCAL/theme/header_minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/header_minimal@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/headericon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/headericon.png -------------------------------------------------------------------------------- /DisplayCAL/theme/headericon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/headericon@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/10x10/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/10x10/back.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/10x10/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/10x10/back@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/10x10/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/10x10/pause.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/10x10/pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/10x10/pause@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/10x10/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/10x10/play.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/10x10/play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/10x10/play@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/10x10/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/10x10/record.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/10x10/record@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/10x10/record@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/10x10/record_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/10x10/record_outline.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/10x10/record_outline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/10x10/record_outline@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/10x10/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/10x10/skip.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/10x10/skip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/10x10/skip@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/10x10/spin_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/10x10/spin_down.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/10x10/spin_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/10x10/spin_down@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/10x10/spin_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/10x10/spin_up.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/10x10/spin_up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/10x10/spin_up@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/128x128/displaycal-3dlut-maker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/128x128/displaycal-3dlut-maker.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/128x128/displaycal-apply-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/128x128/displaycal-apply-profiles.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/128x128/displaycal-curve-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/128x128/displaycal-curve-viewer.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/128x128/displaycal-profile-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/128x128/displaycal-profile-info.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/128x128/displaycal-synthprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/128x128/displaycal-synthprofile.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/128x128/displaycal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/128x128/displaycal.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/3D.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/3D@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/3D@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/applications-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/applications-system.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/applications-system@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/applications-system@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/apply-profiles-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/apply-profiles-error.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/apply-profiles-error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/apply-profiles-error@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/apply-profiles-reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/apply-profiles-reset.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/apply-profiles-reset@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/apply-profiles-reset@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/apply-profiles-tray-135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/apply-profiles-tray-135.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/apply-profiles-tray-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/apply-profiles-tray-180.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/apply-profiles-tray-225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/apply-profiles-tray-225.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/apply-profiles-tray-270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/apply-profiles-tray-270.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/apply-profiles-tray-315.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/apply-profiles-tray-315.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/apply-profiles-tray-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/apply-profiles-tray-45.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/apply-profiles-tray-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/apply-profiles-tray-90.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/apply-profiles-tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/apply-profiles-tray.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/black_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/black_level.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/black_level@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/black_level@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/black_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/black_point.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/black_point@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/black_point@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/button-pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/button-pin.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/button-pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/button-pin@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/checkmark.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/checkmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/checkmark@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/color.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/color@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/color@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/contrast.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/contrast@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/dialog-information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/dialog-information.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/dialog-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/dialog-warning.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/displaycal-3dlut-maker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/displaycal-3dlut-maker.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/displaycal-apply-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/displaycal-apply-profiles.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/displaycal-curve-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/displaycal-curve-viewer.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/displaycal-profile-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/displaycal-profile-info.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/displaycal-scripting-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/displaycal-scripting-client.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/displaycal-synthprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/displaycal-synthprofile.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/displaycal-testchart-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/displaycal-testchart-editor.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/displaycal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/displaycal.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/document-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/document-open.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/document-open@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/document-open@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/document-open@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/document-open@4x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/document-save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/document-save-as.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/document-save-as@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/document-save-as@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/edit-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/edit-delete.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/edit-delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/edit-delete@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/edit-delete@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/edit-delete@4x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/image-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/image-x-generic.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/image-x-generic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/image-x-generic@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/info.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/info@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/info@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/info@4x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/install.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/install@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/install@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/install@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/install@4x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/list-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/list-add.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/list-add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/list-add@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/list-add@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/list-add@4x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/luminance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/luminance.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/luminance@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/luminance@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/package-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/package-x-generic.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/package-x-generic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/package-x-generic@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/package-x-generic@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/package-x-generic@4x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/palette-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/palette-black.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/palette-black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/palette-black@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/palette-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/palette-white.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/palette-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/palette-white@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/question.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/question@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/question@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/rgb_gain_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/rgb_gain_blue.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/rgb_gain_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/rgb_gain_green.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/rgb_gain_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/rgb_gain_red.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/rgb_offset_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/rgb_offset_blue.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/rgb_offset_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/rgb_offset_green.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/rgb_offset_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/rgb_offset_red.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/rgbsquares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/rgbsquares.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/rgbsquares@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/rgbsquares@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/sound_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/sound_off.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/sound_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/sound_off@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/sound_volume_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/sound_volume_full.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/sound_volume_full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/sound_volume_full@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/spectral_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/spectral_curves.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/spectral_curves@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/spectral_curves@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/start.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/start@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/start@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/stock_3d-color-picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/stock_3d-color-picker.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/stock_3d-color-picker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/stock_3d-color-picker@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/stock_lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/stock_lock-open.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/stock_lock-open@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/stock_lock-open@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/stock_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/stock_lock.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/stock_lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/stock_lock@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/stock_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/stock_refresh.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/stock_refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/stock_refresh@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/web.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/web@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/web@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/web@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/web@4x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/white_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/white_point.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/white_point@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/white_point@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/window-center-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/window-center-outline.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/window-center-outline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/window-center-outline@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/window-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/window-center.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/window-center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/window-center@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/x@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/zoom-best-fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/zoom-best-fit.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/zoom-best-fit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/zoom-best-fit@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/zoom-in.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/zoom-in@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/zoom-in@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/zoom-original-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/zoom-original-outline.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/zoom-original-outline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/zoom-original-outline@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/zoom-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/zoom-original.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/zoom-original@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/zoom-original@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/zoom-out.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/16x16/zoom-out@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/16x16/zoom-out@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/22x22/displaycal-3dlut-maker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/22x22/displaycal-3dlut-maker.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/22x22/displaycal-apply-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/22x22/displaycal-apply-profiles.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/22x22/displaycal-curve-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/22x22/displaycal-curve-viewer.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/22x22/displaycal-profile-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/22x22/displaycal-profile-info.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/22x22/displaycal-scripting-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/22x22/displaycal-scripting-client.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/22x22/displaycal-synthprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/22x22/displaycal-synthprofile.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/22x22/displaycal-testchart-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/22x22/displaycal-testchart-editor.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/22x22/displaycal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/22x22/displaycal.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/24x24/displaycal-3dlut-maker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/24x24/displaycal-3dlut-maker.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/24x24/displaycal-apply-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/24x24/displaycal-apply-profiles.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/24x24/displaycal-curve-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/24x24/displaycal-curve-viewer.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/24x24/displaycal-profile-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/24x24/displaycal-profile-info.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/24x24/displaycal-scripting-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/24x24/displaycal-scripting-client.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/24x24/displaycal-synthprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/24x24/displaycal-synthprofile.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/24x24/displaycal-testchart-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/24x24/displaycal-testchart-editor.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/24x24/displaycal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/24x24/displaycal.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/256x256/3d-primitives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/256x256/3d-primitives.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/256x256/displaycal-3dlut-maker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/256x256/displaycal-3dlut-maker.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/256x256/displaycal-apply-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/256x256/displaycal-apply-profiles.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/256x256/displaycal-curve-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/256x256/displaycal-curve-viewer.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/256x256/displaycal-profile-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/256x256/displaycal-profile-info.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/256x256/displaycal-synthprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/256x256/displaycal-synthprofile.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/256x256/displaycal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/256x256/displaycal.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/3dlut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/3dlut.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/3dlut@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/3dlut@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/apply-profiles-tray-135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/apply-profiles-tray-135.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/apply-profiles-tray-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/apply-profiles-tray-180.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/apply-profiles-tray-225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/apply-profiles-tray-225.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/apply-profiles-tray-270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/apply-profiles-tray-270.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/apply-profiles-tray-315.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/apply-profiles-tray-315.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/apply-profiles-tray-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/apply-profiles-tray-45.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/apply-profiles-tray-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/apply-profiles-tray-90.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/apply-profiles-tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/apply-profiles-tray.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/calibration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/calibration.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/calibration@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/calibration@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/clock.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/clock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/clock@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/dialog-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/dialog-error.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/dialog-error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/dialog-error@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/dialog-information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/dialog-information.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/dialog-information@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/dialog-information@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/dialog-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/dialog-ok.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/dialog-ok@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/dialog-ok@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/dialog-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/dialog-question.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/dialog-question@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/dialog-question@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/dialog-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/dialog-warning.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/dialog-warning@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/dialog-warning@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/display-instrument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/display-instrument.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/display-instrument@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/display-instrument@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/display.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/display@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/display@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/displaycal-3dlut-maker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/displaycal-3dlut-maker.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/displaycal-apply-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/displaycal-apply-profiles.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/displaycal-curve-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/displaycal-curve-viewer.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/displaycal-profile-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/displaycal-profile-info.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/displaycal-scripting-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/displaycal-scripting-client.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/displaycal-synthprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/displaycal-synthprofile.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/displaycal-testchart-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/displaycal-testchart-editor.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/displaycal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/displaycal.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/lock.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/lock@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/profiling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/profiling.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/32x32/profiling@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/32x32/profiling@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/48x48/displaycal-3dlut-maker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/48x48/displaycal-3dlut-maker.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/48x48/displaycal-apply-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/48x48/displaycal-apply-profiles.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/48x48/displaycal-curve-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/48x48/displaycal-curve-viewer.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/48x48/displaycal-profile-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/48x48/displaycal-profile-info.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/48x48/displaycal-synthprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/48x48/displaycal-synthprofile.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/48x48/displaycal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/48x48/displaycal.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/512x512/3d-primitives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/512x512/3d-primitives.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/64x64/displaycal-3dlut-maker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/64x64/displaycal-3dlut-maker.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/64x64/displaycal-apply-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/64x64/displaycal-apply-profiles.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/64x64/displaycal-curve-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/64x64/displaycal-curve-viewer.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/64x64/displaycal-profile-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/64x64/displaycal-profile-info.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/64x64/displaycal-synthprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/64x64/displaycal-synthprofile.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/64x64/displaycal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/64x64/displaycal.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/72x72/black_luminance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/72x72/black_luminance.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/72x72/black_luminance@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/72x72/black_luminance@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/72x72/black_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/72x72/black_point.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/72x72/black_point@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/72x72/black_point@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/72x72/check_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/72x72/check_all.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/72x72/check_all@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/72x72/check_all@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/72x72/contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/72x72/contrast.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/72x72/contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/72x72/contrast@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/72x72/luminance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/72x72/luminance.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/72x72/luminance@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/72x72/luminance@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/72x72/white_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/72x72/white_point.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/72x72/white_point@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/72x72/white_point@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/DisplayCAL-3DLUT-maker.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/DisplayCAL-3DLUT-maker.icns -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/DisplayCAL-3DLUT-maker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/DisplayCAL-3DLUT-maker.ico -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/DisplayCAL-VRML-to-X3D-converter.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/DisplayCAL-VRML-to-X3D-converter.ico -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/DisplayCAL-apply-profiles.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/DisplayCAL-apply-profiles.ico -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/DisplayCAL-curve-viewer.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/DisplayCAL-curve-viewer.icns -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/DisplayCAL-curve-viewer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/DisplayCAL-curve-viewer.ico -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/DisplayCAL-profile-info.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/DisplayCAL-profile-info.icns -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/DisplayCAL-profile-info.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/DisplayCAL-profile-info.ico -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/DisplayCAL-scripting-client.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/DisplayCAL-scripting-client.icns -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/DisplayCAL-scripting-client.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/DisplayCAL-scripting-client.ico -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/DisplayCAL-synthprofile.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/DisplayCAL-synthprofile.icns -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/DisplayCAL-synthprofile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/DisplayCAL-synthprofile.ico -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/DisplayCAL-testchart-editor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/DisplayCAL-testchart-editor.icns -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/DisplayCAL-testchart-editor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/DisplayCAL-testchart-editor.ico -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/DisplayCAL-uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/DisplayCAL-uninstall.ico -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/DisplayCAL.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/DisplayCAL.icns -------------------------------------------------------------------------------- /DisplayCAL/theme/icons/DisplayCAL.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/icons/DisplayCAL.ico -------------------------------------------------------------------------------- /DisplayCAL/theme/intro_new.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/intro_new.wav -------------------------------------------------------------------------------- /DisplayCAL/theme/jet_anim/jet_anim_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/jet_anim/jet_anim_01.png -------------------------------------------------------------------------------- /DisplayCAL/theme/jet_anim/jet_anim_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/jet_anim/jet_anim_02.png -------------------------------------------------------------------------------- /DisplayCAL/theme/jet_anim/jet_anim_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/jet_anim/jet_anim_03.png -------------------------------------------------------------------------------- /DisplayCAL/theme/jet_anim/jet_anim_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/jet_anim/jet_anim_04.png -------------------------------------------------------------------------------- /DisplayCAL/theme/jet_anim/jet_anim_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/jet_anim/jet_anim_05.png -------------------------------------------------------------------------------- /DisplayCAL/theme/jet_anim/jet_anim_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/jet_anim/jet_anim_06.png -------------------------------------------------------------------------------- /DisplayCAL/theme/jet_anim/jet_anim_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/jet_anim/jet_anim_07.png -------------------------------------------------------------------------------- /DisplayCAL/theme/jet_anim/jet_anim_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/jet_anim/jet_anim_08.png -------------------------------------------------------------------------------- /DisplayCAL/theme/marker_btm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/marker_btm.png -------------------------------------------------------------------------------- /DisplayCAL/theme/marker_btm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/marker_btm@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/marker_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/marker_top.png -------------------------------------------------------------------------------- /DisplayCAL/theme/marker_top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/marker_top@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/patch_anim/patch_anim_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/patch_anim/patch_anim_01.png -------------------------------------------------------------------------------- /DisplayCAL/theme/patch_anim/patch_anim_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/patch_anim/patch_anim_02.png -------------------------------------------------------------------------------- /DisplayCAL/theme/patch_anim/patch_anim_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/patch_anim/patch_anim_03.png -------------------------------------------------------------------------------- /DisplayCAL/theme/patch_anim/patch_anim_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/patch_anim/patch_anim_04.png -------------------------------------------------------------------------------- /DisplayCAL/theme/patch_anim/patch_anim_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/patch_anim/patch_anim_05.png -------------------------------------------------------------------------------- /DisplayCAL/theme/patch_anim/patch_anim_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/patch_anim/patch_anim_06.png -------------------------------------------------------------------------------- /DisplayCAL/theme/patch_anim/patch_anim_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/patch_anim/patch_anim_07.png -------------------------------------------------------------------------------- /DisplayCAL/theme/patch_anim/patch_anim_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/patch_anim/patch_anim_08.png -------------------------------------------------------------------------------- /DisplayCAL/theme/patch_anim/patch_anim_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/patch_anim/patch_anim_09.png -------------------------------------------------------------------------------- /DisplayCAL/theme/pulsing_loop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/pulsing_loop.wav -------------------------------------------------------------------------------- /DisplayCAL/theme/sash-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/sash-left.png -------------------------------------------------------------------------------- /DisplayCAL/theme/sash-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/sash-right.png -------------------------------------------------------------------------------- /DisplayCAL/theme/sash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/sash.png -------------------------------------------------------------------------------- /DisplayCAL/theme/shadow-bordertop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/shadow-bordertop.png -------------------------------------------------------------------------------- /DisplayCAL/theme/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/shadow.png -------------------------------------------------------------------------------- /DisplayCAL/theme/shutter_anim/shutter_anim_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/shutter_anim/shutter_anim_01.png -------------------------------------------------------------------------------- /DisplayCAL/theme/shutter_anim/shutter_anim_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/shutter_anim/shutter_anim_02.png -------------------------------------------------------------------------------- /DisplayCAL/theme/shutter_anim/shutter_anim_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/shutter_anim/shutter_anim_03.png -------------------------------------------------------------------------------- /DisplayCAL/theme/shutter_anim/shutter_anim_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/shutter_anim/shutter_anim_04.png -------------------------------------------------------------------------------- /DisplayCAL/theme/shutter_anim/shutter_anim_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/shutter_anim/shutter_anim_05.png -------------------------------------------------------------------------------- /DisplayCAL/theme/shutter_anim/shutter_anim_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/shutter_anim/shutter_anim_06.png -------------------------------------------------------------------------------- /DisplayCAL/theme/shutter_anim/shutter_anim_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/shutter_anim/shutter_anim_07.png -------------------------------------------------------------------------------- /DisplayCAL/theme/shutter_anim/shutter_anim_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/shutter_anim/shutter_anim_08.png -------------------------------------------------------------------------------- /DisplayCAL/theme/shutter_anim/shutter_anim_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/shutter_anim/shutter_anim_09.png -------------------------------------------------------------------------------- /DisplayCAL/theme/solid-16x1-fff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/solid-16x1-fff.png -------------------------------------------------------------------------------- /DisplayCAL/theme/solid-16x2-666.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/solid-16x2-666.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash-mask.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash_anim/splash_anim_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash_anim/splash_anim_01.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash_anim/splash_anim_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash_anim/splash_anim_02.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash_anim/splash_anim_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash_anim/splash_anim_03.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash_anim/splash_anim_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash_anim/splash_anim_04.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash_anim/splash_anim_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash_anim/splash_anim_05.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash_anim/splash_anim_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash_anim/splash_anim_06.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash_anim/splash_anim_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash_anim/splash_anim_07.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash_anim/splash_anim_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash_anim/splash_anim_08.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash_anim/splash_anim_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash_anim/splash_anim_09.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash_anim/splash_anim_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash_anim/splash_anim_10.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash_anim/splash_anim_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash_anim/splash_anim_11.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash_anim/splash_anim_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash_anim/splash_anim_12.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash_anim/splash_anim_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash_anim/splash_anim_13.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash_anim/splash_anim_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash_anim/splash_anim_14.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash_anim/splash_anim_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash_anim/splash_anim_15.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash_anim/splash_anim_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash_anim/splash_anim_16.png -------------------------------------------------------------------------------- /DisplayCAL/theme/splash_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/splash_version.png -------------------------------------------------------------------------------- /DisplayCAL/theme/tab_hilite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/tab_hilite.png -------------------------------------------------------------------------------- /DisplayCAL/theme/tab_hilite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/tab_hilite@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/tab_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/tab_selected.png -------------------------------------------------------------------------------- /DisplayCAL/theme/tab_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/tab_selected@2x.png -------------------------------------------------------------------------------- /DisplayCAL/theme/theme-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/theme-info.txt -------------------------------------------------------------------------------- /DisplayCAL/theme/x-2px-12x12-999.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/x-2px-12x12-999.png -------------------------------------------------------------------------------- /DisplayCAL/theme/x-2px-12x12-999@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/theme/x-2px-12x12-999@2x.png -------------------------------------------------------------------------------- /DisplayCAL/ti1/ccxx.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ti1/ccxx.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ti1/d3-e4-s17-g52-m17-b0-f0.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ti1/d3-e4-s17-g52-m17-b0-f0.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ti1/d3-e4-s2-g28-m0-b0-f0.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ti1/d3-e4-s2-g28-m0-b0-f0.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ti1/d3-e4-s3-g52-m3-b0-f0.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ti1/d3-e4-s3-g52-m3-b0-f0.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ti1/d3-e4-s4-g52-m4-b0-f0.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ti1/d3-e4-s4-g52-m4-b0-f0.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ti1/d3-e4-s5-g52-m5-b0-f0.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ti1/d3-e4-s5-g52-m5-b0-f0.ti1 -------------------------------------------------------------------------------- /DisplayCAL/ti1/d3-e4-s9-g52-m9-b0-f0.ti1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/ti1/d3-e4-s9-g52-m9-b0-f0.ti1 -------------------------------------------------------------------------------- /DisplayCAL/trash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/trash.py -------------------------------------------------------------------------------- /DisplayCAL/util_dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/util_dbus.py -------------------------------------------------------------------------------- /DisplayCAL/util_decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/util_decimal.py -------------------------------------------------------------------------------- /DisplayCAL/util_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/util_http.py -------------------------------------------------------------------------------- /DisplayCAL/util_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/util_io.py -------------------------------------------------------------------------------- /DisplayCAL/util_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/util_list.py -------------------------------------------------------------------------------- /DisplayCAL/util_mac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/util_mac.py -------------------------------------------------------------------------------- /DisplayCAL/util_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/util_os.py -------------------------------------------------------------------------------- /DisplayCAL/util_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/util_str.py -------------------------------------------------------------------------------- /DisplayCAL/util_win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/util_win.py -------------------------------------------------------------------------------- /DisplayCAL/util_x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/util_x.py -------------------------------------------------------------------------------- /DisplayCAL/util_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/util_xml.py -------------------------------------------------------------------------------- /DisplayCAL/webwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/webwin.py -------------------------------------------------------------------------------- /DisplayCAL/wexpect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wexpect.py -------------------------------------------------------------------------------- /DisplayCAL/win_handles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/win_handles.py -------------------------------------------------------------------------------- /DisplayCAL/win_knownpaths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/win_knownpaths.py -------------------------------------------------------------------------------- /DisplayCAL/win_structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/win_structs.py -------------------------------------------------------------------------------- /DisplayCAL/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/worker.py -------------------------------------------------------------------------------- /DisplayCAL/worker_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/worker_base.py -------------------------------------------------------------------------------- /DisplayCAL/wxCCXXPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxCCXXPlot.py -------------------------------------------------------------------------------- /DisplayCAL/wxDisplayAdjustmentFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxDisplayAdjustmentFrame.py -------------------------------------------------------------------------------- /DisplayCAL/wxDisplayUniformityFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxDisplayUniformityFrame.py -------------------------------------------------------------------------------- /DisplayCAL/wxLUT3DFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxLUT3DFrame.py -------------------------------------------------------------------------------- /DisplayCAL/wxLUTViewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxLUTViewer.py -------------------------------------------------------------------------------- /DisplayCAL/wxMeasureFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxMeasureFrame.py -------------------------------------------------------------------------------- /DisplayCAL/wxProfileInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxProfileInfo.py -------------------------------------------------------------------------------- /DisplayCAL/wxReportFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxReportFrame.py -------------------------------------------------------------------------------- /DisplayCAL/wxScriptingClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxScriptingClient.py -------------------------------------------------------------------------------- /DisplayCAL/wxSynthICCFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxSynthICCFrame.py -------------------------------------------------------------------------------- /DisplayCAL/wxTestchartEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxTestchartEditor.py -------------------------------------------------------------------------------- /DisplayCAL/wxUntetheredFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxUntetheredFrame.py -------------------------------------------------------------------------------- /DisplayCAL/wxVRML2X3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxVRML2X3D.py -------------------------------------------------------------------------------- /DisplayCAL/wxVisualWhitepointEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxVisualWhitepointEditor.py -------------------------------------------------------------------------------- /DisplayCAL/wxaddons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxaddons.py -------------------------------------------------------------------------------- /DisplayCAL/wxenhancedplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxenhancedplot.py -------------------------------------------------------------------------------- /DisplayCAL/wxfixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxfixes.py -------------------------------------------------------------------------------- /DisplayCAL/wxversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxversion.py -------------------------------------------------------------------------------- /DisplayCAL/wxwindows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/wxwindows.py -------------------------------------------------------------------------------- /DisplayCAL/x3d-viewer/x3d-viewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/x3d-viewer/x3d-viewer.css -------------------------------------------------------------------------------- /DisplayCAL/x3d-viewer/x3d-viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/x3d-viewer/x3d-viewer.html -------------------------------------------------------------------------------- /DisplayCAL/x3d-viewer/x3d-viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/x3d-viewer/x3d-viewer.js -------------------------------------------------------------------------------- /DisplayCAL/x3dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/x3dom.py -------------------------------------------------------------------------------- /DisplayCAL/xh_bitmapctrls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/xh_bitmapctrls.py -------------------------------------------------------------------------------- /DisplayCAL/xh_fancytext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/xh_fancytext.py -------------------------------------------------------------------------------- /DisplayCAL/xh_filebrowsebutton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/xh_filebrowsebutton.py -------------------------------------------------------------------------------- /DisplayCAL/xh_floatspin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/xh_floatspin.py -------------------------------------------------------------------------------- /DisplayCAL/xh_hstretchstatbmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/xh_hstretchstatbmp.py -------------------------------------------------------------------------------- /DisplayCAL/xrandr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/xrandr.py -------------------------------------------------------------------------------- /DisplayCAL/xrc/3dlut.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/xrc/3dlut.xrc -------------------------------------------------------------------------------- /DisplayCAL/xrc/extra.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/xrc/extra.xrc -------------------------------------------------------------------------------- /DisplayCAL/xrc/gamap.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/xrc/gamap.xrc -------------------------------------------------------------------------------- /DisplayCAL/xrc/main.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/xrc/main.xrc -------------------------------------------------------------------------------- /DisplayCAL/xrc/mainmenu.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/xrc/mainmenu.xrc -------------------------------------------------------------------------------- /DisplayCAL/xrc/report.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/xrc/report.xrc -------------------------------------------------------------------------------- /DisplayCAL/xrc/synthicc.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/DisplayCAL/xrc/synthicc.xrc -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/Makefile -------------------------------------------------------------------------------- /README-fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/README-fr.html -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/README.md -------------------------------------------------------------------------------- /VERSION_BASE: -------------------------------------------------------------------------------- 1 | -2.4.8.9 -------------------------------------------------------------------------------- /history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/history.html -------------------------------------------------------------------------------- /man/displaycal-3dlut-maker.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/man/displaycal-3dlut-maker.1 -------------------------------------------------------------------------------- /man/displaycal-apply-profiles.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/man/displaycal-apply-profiles.1 -------------------------------------------------------------------------------- /man/displaycal-curve-viewer.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/man/displaycal-curve-viewer.1 -------------------------------------------------------------------------------- /man/displaycal-profile-info.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/man/displaycal-profile-info.1 -------------------------------------------------------------------------------- /man/displaycal-scripting-client.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/man/displaycal-scripting-client.1 -------------------------------------------------------------------------------- /man/displaycal-synthprofile.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/man/displaycal-synthprofile.1 -------------------------------------------------------------------------------- /man/displaycal-testchart-editor.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/man/displaycal-testchart-editor.1 -------------------------------------------------------------------------------- /man/displaycal-vrml-to-x3d-converter.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/man/displaycal-vrml-to-x3d-converter.1 -------------------------------------------------------------------------------- /man/displaycal.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/man/displaycal.1 -------------------------------------------------------------------------------- /misc/0install/0install-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/0install-icon.png -------------------------------------------------------------------------------- /misc/0install/0install-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/0install-main.png -------------------------------------------------------------------------------- /misc/0install/0install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/0install.png -------------------------------------------------------------------------------- /misc/0install/7z.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/7z.xml -------------------------------------------------------------------------------- /misc/0install/DisplayCAL-linux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/DisplayCAL-linux.xml -------------------------------------------------------------------------------- /misc/0install/DisplayCAL-mac.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/DisplayCAL-mac.xml -------------------------------------------------------------------------------- /misc/0install/DisplayCAL-win32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/DisplayCAL-win32.xml -------------------------------------------------------------------------------- /misc/0install/DisplayCAL.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/DisplayCAL.dsc -------------------------------------------------------------------------------- /misc/0install/DisplayCAL.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/DisplayCAL.spec -------------------------------------------------------------------------------- /misc/0install/DisplayCAL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/DisplayCAL.xml -------------------------------------------------------------------------------- /misc/0install/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/PKGBUILD -------------------------------------------------------------------------------- /misc/0install/Pillow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/Pillow.xml -------------------------------------------------------------------------------- /misc/0install/SDL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/SDL.xml -------------------------------------------------------------------------------- /misc/0install/argyllcms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/argyllcms.xml -------------------------------------------------------------------------------- /misc/0install/comtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/comtypes.xml -------------------------------------------------------------------------------- /misc/0install/debian.changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/debian.changelog -------------------------------------------------------------------------------- /misc/0install/debian.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/debian.control -------------------------------------------------------------------------------- /misc/0install/debian.postinst: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | 5 | #DEBHELPER# 6 | 7 | exit 0 8 | -------------------------------------------------------------------------------- /misc/0install/debian.postrm: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | 5 | #DEBHELPER# 6 | 7 | exit 0 8 | -------------------------------------------------------------------------------- /misc/0install/debian.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/debian.rules -------------------------------------------------------------------------------- /misc/0install/displaycal-0install.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/displaycal-0install.install -------------------------------------------------------------------------------- /misc/0install/enum34.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/enum34.xml -------------------------------------------------------------------------------- /misc/0install/faulthandler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/faulthandler.xml -------------------------------------------------------------------------------- /misc/0install/interface.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/interface.xsl -------------------------------------------------------------------------------- /misc/0install/interface1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/interface1.css -------------------------------------------------------------------------------- /misc/0install/netifaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/netifaces.xml -------------------------------------------------------------------------------- /misc/0install/numpy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/numpy.xml -------------------------------------------------------------------------------- /misc/0install/protobuf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/protobuf.xml -------------------------------------------------------------------------------- /misc/0install/pychromecast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/pychromecast.xml -------------------------------------------------------------------------------- /misc/0install/pyglet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/pyglet.xml -------------------------------------------------------------------------------- /misc/0install/pywin32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/pywin32.xml -------------------------------------------------------------------------------- /misc/0install/requests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/requests.xml -------------------------------------------------------------------------------- /misc/0install/six.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/six.xml -------------------------------------------------------------------------------- /misc/0install/wmi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/wmi.xml -------------------------------------------------------------------------------- /misc/0install/wxpython.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/wxpython.xml -------------------------------------------------------------------------------- /misc/0install/zeroconf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/0install/zeroconf.xml -------------------------------------------------------------------------------- /misc/45-Argyll.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/45-Argyll.rules -------------------------------------------------------------------------------- /misc/55-Argyll.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/55-Argyll.rules -------------------------------------------------------------------------------- /misc/Argyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/Argyll -------------------------------------------------------------------------------- /misc/Argyll.usermap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/Argyll.usermap -------------------------------------------------------------------------------- /misc/CHANGES.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/CHANGES.template.html -------------------------------------------------------------------------------- /misc/DisplayCAL-Setup-0install-per-user.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/DisplayCAL-Setup-0install-per-user.iss -------------------------------------------------------------------------------- /misc/DisplayCAL-Setup-0install.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/DisplayCAL-Setup-0install.iss -------------------------------------------------------------------------------- /misc/DisplayCAL-Setup-py2exe.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/DisplayCAL-Setup-py2exe.iss -------------------------------------------------------------------------------- /misc/DisplayCAL.changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/DisplayCAL.changes -------------------------------------------------------------------------------- /misc/DisplayCAL.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/DisplayCAL.doap -------------------------------------------------------------------------------- /misc/DisplayCAL.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/DisplayCAL.dsc -------------------------------------------------------------------------------- /misc/DisplayCAL.exe.amd64.VC90.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/DisplayCAL.exe.amd64.VC90.manifest -------------------------------------------------------------------------------- /misc/DisplayCAL.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/DisplayCAL.exe.manifest -------------------------------------------------------------------------------- /misc/DisplayCAL.exe.x86.VC90.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/DisplayCAL.exe.x86.VC90.manifest -------------------------------------------------------------------------------- /misc/DisplayCAL.pkgproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/DisplayCAL.pkgproj -------------------------------------------------------------------------------- /misc/DisplayCAL.pyi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/DisplayCAL.pyi.spec -------------------------------------------------------------------------------- /misc/DisplayCAL.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/DisplayCAL.spec -------------------------------------------------------------------------------- /misc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/Info.plist -------------------------------------------------------------------------------- /misc/InnoSetup/v5/Default.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/InnoSetup/v5/Default.isl -------------------------------------------------------------------------------- /misc/InnoSetup/v5/Languages/French.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/InnoSetup/v5/Languages/French.isl -------------------------------------------------------------------------------- /misc/InnoSetup/v5/Languages/German.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/InnoSetup/v5/Languages/German.isl -------------------------------------------------------------------------------- /misc/InnoSetup/v5/Languages/Italian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/InnoSetup/v5/Languages/Italian.isl -------------------------------------------------------------------------------- /misc/InnoSetup/v5/Languages/Spanish.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/InnoSetup/v5/Languages/Spanish.isl -------------------------------------------------------------------------------- /misc/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/PKGBUILD -------------------------------------------------------------------------------- /misc/README-fr.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/README-fr.template.html -------------------------------------------------------------------------------- /misc/README.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/README.template.html -------------------------------------------------------------------------------- /misc/alien.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/alien.rules -------------------------------------------------------------------------------- /misc/appimage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/appimage.yml -------------------------------------------------------------------------------- /misc/debian.changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/debian.changelog -------------------------------------------------------------------------------- /misc/debian.compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /misc/debian.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/debian.control -------------------------------------------------------------------------------- /misc/debian.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/debian.copyright -------------------------------------------------------------------------------- /misc/debian.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/debian.postinst -------------------------------------------------------------------------------- /misc/debian.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/debian.postrm -------------------------------------------------------------------------------- /misc/debian.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/debian.rules -------------------------------------------------------------------------------- /misc/displaycal-3dlut-maker.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/displaycal-3dlut-maker.desktop -------------------------------------------------------------------------------- /misc/displaycal-apply-profiles.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/displaycal-apply-profiles.desktop -------------------------------------------------------------------------------- /misc/displaycal-curve-viewer.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/displaycal-curve-viewer.desktop -------------------------------------------------------------------------------- /misc/displaycal-profile-info.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/displaycal-profile-info.desktop -------------------------------------------------------------------------------- /misc/displaycal-readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/displaycal-readme -------------------------------------------------------------------------------- /misc/displaycal-scripting-client.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/displaycal-scripting-client.desktop -------------------------------------------------------------------------------- /misc/displaycal-synthprofile.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/displaycal-synthprofile.desktop -------------------------------------------------------------------------------- /misc/displaycal-testchart-editor.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/displaycal-testchart-editor.desktop -------------------------------------------------------------------------------- /misc/displaycal-vrml-to-x3d-converter.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/displaycal-vrml-to-x3d-converter.desktop -------------------------------------------------------------------------------- /misc/displaycal.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/displaycal.desktop -------------------------------------------------------------------------------- /misc/displaycal.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/displaycal.install -------------------------------------------------------------------------------- /misc/distutils.msvc9compiler.msvc9_for_python2.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/distutils.msvc9compiler.msvc9_for_python2.7.patch -------------------------------------------------------------------------------- /misc/history.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/history.template.html -------------------------------------------------------------------------------- /misc/low_contrast.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/low_contrast.icc -------------------------------------------------------------------------------- /misc/media/icon-install.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/media/icon-install.bmp -------------------------------------------------------------------------------- /misc/media/install-py.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/media/install-py.bmp -------------------------------------------------------------------------------- /misc/media/install.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/media/install.bmp -------------------------------------------------------------------------------- /misc/net.displaycal.DisplayCAL.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/net.displaycal.DisplayCAL.appdata.xml -------------------------------------------------------------------------------- /misc/py2exe/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/py2exe/README.txt -------------------------------------------------------------------------------- /misc/py2exe/boot_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/py2exe/boot_common.py -------------------------------------------------------------------------------- /misc/py2exe/build_exe.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/py2exe/build_exe.py.patch -------------------------------------------------------------------------------- /misc/py2exe/icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/py2exe/icon.py -------------------------------------------------------------------------------- /misc/setup.debian.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/setup.debian.cfg -------------------------------------------------------------------------------- /misc/setup.fedora.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/setup.fedora.cfg -------------------------------------------------------------------------------- /misc/setup.mandriva.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/setup.mandriva.cfg -------------------------------------------------------------------------------- /misc/setup.mandriva64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/setup.mandriva64.cfg -------------------------------------------------------------------------------- /misc/setup.openSUSE.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/setup.openSUSE.cfg -------------------------------------------------------------------------------- /misc/setup.ubuntu.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/setup.ubuntu.cfg -------------------------------------------------------------------------------- /misc/tests/fakecgats.txt: -------------------------------------------------------------------------------- 1 | CC 2 | 3 | BEGIN_DATA -------------------------------------------------------------------------------- /misc/tests/junk.cal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/tests/junk.cal -------------------------------------------------------------------------------- /misc/tests/junk.icc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/tests/junk.icm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/tests/junk.ti1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/tests/junk.ti2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/tests/junk.ti3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/ti3/default.ti3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/ti3/default.ti3 -------------------------------------------------------------------------------- /misc/ti3/laptop.ti3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/ti3/laptop.ti3 -------------------------------------------------------------------------------- /misc/ti3/office_web.ti3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/ti3/office_web.ti3 -------------------------------------------------------------------------------- /misc/ti3/photo.ti3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/ti3/photo.ti3 -------------------------------------------------------------------------------- /misc/ti3/sRGB.ti3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/ti3/sRGB.ti3 -------------------------------------------------------------------------------- /misc/ti3/softproof.ti3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/ti3/softproof.ti3 -------------------------------------------------------------------------------- /misc/ti3/video.ti3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/ti3/video.ti3 -------------------------------------------------------------------------------- /misc/ti3/video_Prisma.ti3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/ti3/video_Prisma.ti3 -------------------------------------------------------------------------------- /misc/ti3/video_ReShade.ti3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/ti3/video_ReShade.ti3 -------------------------------------------------------------------------------- /misc/ti3/video_eeColor.ti3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/ti3/video_eeColor.ti3 -------------------------------------------------------------------------------- /misc/ti3/video_madVR.ti3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/ti3/video_madVR.ti3 -------------------------------------------------------------------------------- /misc/ti3/video_madVR_ST2084.ti3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/ti3/video_madVR_ST2084.ti3 -------------------------------------------------------------------------------- /misc/ti3/video_resolve.ti3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/ti3/video_resolve.ti3 -------------------------------------------------------------------------------- /misc/ti3/video_resolve_ST2084_clip.ti3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/ti3/video_resolve_ST2084_clip.ti3 -------------------------------------------------------------------------------- /misc/winversion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/winversion.txt -------------------------------------------------------------------------------- /misc/xrced_plugins/fancytext.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/xrced_plugins/fancytext.crx -------------------------------------------------------------------------------- /misc/xrced_plugins/filebrowsebutton.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/xrced_plugins/filebrowsebutton.crx -------------------------------------------------------------------------------- /misc/xrced_plugins/floatspin.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/xrced_plugins/floatspin.crx -------------------------------------------------------------------------------- /misc/xrced_plugins/hstretchstatbmp.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/xrced_plugins/hstretchstatbmp.crx -------------------------------------------------------------------------------- /misc/xrced_plugins/xh_floatspin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/xrced_plugins/xh_floatspin.py -------------------------------------------------------------------------------- /misc/z-displaycal-apply-profiles.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/misc/z-displaycal-apply-profiles.desktop -------------------------------------------------------------------------------- /screenshots/DisplayCAL-screenshot-GNOME-1024x576.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/screenshots/DisplayCAL-screenshot-GNOME-1024x576.png -------------------------------------------------------------------------------- /screenshots/DisplayCAL-screenshot-GNOME-3DLUT-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/screenshots/DisplayCAL-screenshot-GNOME-3DLUT-settings.png -------------------------------------------------------------------------------- /screenshots/DisplayCAL-screenshot-GNOME-adjust-1024x576.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/screenshots/DisplayCAL-screenshot-GNOME-adjust-1024x576.png -------------------------------------------------------------------------------- /screenshots/DisplayCAL-screenshot-GNOME-adjust-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/screenshots/DisplayCAL-screenshot-GNOME-adjust-thumb.png -------------------------------------------------------------------------------- /screenshots/DisplayCAL-screenshot-GNOME-adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/screenshots/DisplayCAL-screenshot-GNOME-adjust.png -------------------------------------------------------------------------------- /screenshots/DisplayCAL-screenshot-GNOME-edit-testchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/screenshots/DisplayCAL-screenshot-GNOME-edit-testchart.png -------------------------------------------------------------------------------- /screenshots/DisplayCAL-screenshot-GNOME-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/screenshots/DisplayCAL-screenshot-GNOME-thumb.png -------------------------------------------------------------------------------- /screenshots/DisplayCAL-screenshot-GNOME-view-curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/screenshots/DisplayCAL-screenshot-GNOME-view-curves.png -------------------------------------------------------------------------------- /screenshots/DisplayCAL-screenshot-GNOME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/screenshots/DisplayCAL-screenshot-GNOME.png -------------------------------------------------------------------------------- /screenshots/DisplayCAL-screenshot-KDE5-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/screenshots/DisplayCAL-screenshot-KDE5-thumb.png -------------------------------------------------------------------------------- /screenshots/DisplayCAL-screenshot-KDE5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/screenshots/DisplayCAL-screenshot-KDE5.png -------------------------------------------------------------------------------- /screenshots/DisplayCAL-screenshot-Mac-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/screenshots/DisplayCAL-screenshot-Mac-thumb.png -------------------------------------------------------------------------------- /screenshots/DisplayCAL-screenshot-Mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/screenshots/DisplayCAL-screenshot-Mac.png -------------------------------------------------------------------------------- /screenshots/DisplayCAL-screenshot-Win10-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/screenshots/DisplayCAL-screenshot-Win10-thumb.png -------------------------------------------------------------------------------- /screenshots/DisplayCAL-screenshot-Win10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/screenshots/DisplayCAL-screenshot-Win10.png -------------------------------------------------------------------------------- /scripts/displaycal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/scripts/displaycal -------------------------------------------------------------------------------- /scripts/displaycal-3dlut-maker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/scripts/displaycal-3dlut-maker -------------------------------------------------------------------------------- /scripts/displaycal-apply-profiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/scripts/displaycal-apply-profiles -------------------------------------------------------------------------------- /scripts/displaycal-apply-profiles-launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/scripts/displaycal-apply-profiles-launcher -------------------------------------------------------------------------------- /scripts/displaycal-curve-viewer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/scripts/displaycal-curve-viewer -------------------------------------------------------------------------------- /scripts/displaycal-eecolor-to-madvr-converter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/scripts/displaycal-eecolor-to-madvr-converter -------------------------------------------------------------------------------- /scripts/displaycal-profile-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/scripts/displaycal-profile-info -------------------------------------------------------------------------------- /scripts/displaycal-scripting-client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/scripts/displaycal-scripting-client -------------------------------------------------------------------------------- /scripts/displaycal-synthprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/scripts/displaycal-synthprofile -------------------------------------------------------------------------------- /scripts/displaycal-testchart-editor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/scripts/displaycal-testchart-editor -------------------------------------------------------------------------------- /scripts/displaycal-vrml-to-x3d-converter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/scripts/displaycal-vrml-to-x3d-converter -------------------------------------------------------------------------------- /scripts/displaycal-vrml-to-x3d-converter-console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/scripts/displaycal-vrml-to-x3d-converter-console -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/setup.py -------------------------------------------------------------------------------- /tests/vcgt_cm_test_blueish_yellowish.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/tests/vcgt_cm_test_blueish_yellowish.icc -------------------------------------------------------------------------------- /tests/vcgt_cm_test_blueish_yellowish_clut.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/tests/vcgt_cm_test_blueish_yellowish_clut.icc -------------------------------------------------------------------------------- /tests/vcgt_cm_test_cyanish_reddish.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/tests/vcgt_cm_test_cyanish_reddish.icc -------------------------------------------------------------------------------- /tests/vcgt_cm_test_cyanish_reddish_clut.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/tests/vcgt_cm_test_cyanish_reddish_clut.icc -------------------------------------------------------------------------------- /tests/vcgt_cm_test_greenish_purplish.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/tests/vcgt_cm_test_greenish_purplish.icc -------------------------------------------------------------------------------- /tests/vcgt_cm_test_greenish_purplish_clut.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/tests/vcgt_cm_test_greenish_purplish_clut.icc -------------------------------------------------------------------------------- /tests/vcgt_cm_test_purplish_greenish.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/tests/vcgt_cm_test_purplish_greenish.icc -------------------------------------------------------------------------------- /tests/vcgt_cm_test_purplish_greenish_clut.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/tests/vcgt_cm_test_purplish_greenish_clut.icc -------------------------------------------------------------------------------- /tests/vcgt_cm_test_reddish_cyanish.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/tests/vcgt_cm_test_reddish_cyanish.icc -------------------------------------------------------------------------------- /tests/vcgt_cm_test_reddish_cyanish_clut.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/tests/vcgt_cm_test_reddish_cyanish_clut.icc -------------------------------------------------------------------------------- /tests/vcgt_cm_test_yellowish_blueish.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/tests/vcgt_cm_test_yellowish_blueish.icc -------------------------------------------------------------------------------- /tests/vcgt_cm_test_yellowish_blueish_clut.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/tests/vcgt_cm_test_yellowish_blueish_clut.icc -------------------------------------------------------------------------------- /theme/DisplayCAL-adjust-reflection-GNOME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/DisplayCAL-adjust-reflection-GNOME.png -------------------------------------------------------------------------------- /theme/DisplayCAL-adjust-reflection-Mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/DisplayCAL-adjust-reflection-Mac.png -------------------------------------------------------------------------------- /theme/DisplayCAL-adjust-reflection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/DisplayCAL-adjust-reflection.png -------------------------------------------------------------------------------- /theme/DisplayCAL-main_window-reflection-GNOME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/DisplayCAL-main_window-reflection-GNOME.png -------------------------------------------------------------------------------- /theme/DisplayCAL-main_window-reflection-Mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/DisplayCAL-main_window-reflection-Mac.png -------------------------------------------------------------------------------- /theme/DisplayCAL-main_window-reflection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/DisplayCAL-main_window-reflection.png -------------------------------------------------------------------------------- /theme/DisplayCAL-main_window-shadow-GNOME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/DisplayCAL-main_window-shadow-GNOME.png -------------------------------------------------------------------------------- /theme/DisplayCAL-main_window-shadow-Mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/DisplayCAL-main_window-shadow-Mac.png -------------------------------------------------------------------------------- /theme/DisplayCAL-main_window-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/DisplayCAL-main_window-shadow.png -------------------------------------------------------------------------------- /theme/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/bg.png -------------------------------------------------------------------------------- /theme/icon-reflection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/icon-reflection.png -------------------------------------------------------------------------------- /theme/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/icons/favicon.ico -------------------------------------------------------------------------------- /theme/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/jquery.js -------------------------------------------------------------------------------- /theme/jquery.localscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/jquery.localscroll.js -------------------------------------------------------------------------------- /theme/jquery.scrollTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/jquery.scrollTo.js -------------------------------------------------------------------------------- /theme/list-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/list-dot.png -------------------------------------------------------------------------------- /theme/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/prism.css -------------------------------------------------------------------------------- /theme/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/prism.js -------------------------------------------------------------------------------- /theme/readme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/readme.css -------------------------------------------------------------------------------- /theme/readme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/readme.js -------------------------------------------------------------------------------- /theme/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/refresh.svg -------------------------------------------------------------------------------- /theme/slimbox2/slimbox2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/slimbox2/slimbox2.css -------------------------------------------------------------------------------- /theme/slimbox2/slimbox2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/theme/slimbox2/slimbox2.js -------------------------------------------------------------------------------- /util/0install_desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/0install_desktop.py -------------------------------------------------------------------------------- /util/DisplayCAL_postinstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/DisplayCAL_postinstall.py -------------------------------------------------------------------------------- /util/DisplayCAL_postuninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/DisplayCAL_postuninstall.py -------------------------------------------------------------------------------- /util/apply_cal_diff_from_icc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/apply_cal_diff_from_icc.py -------------------------------------------------------------------------------- /util/bt2390_test.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/bt2390_test.pyw -------------------------------------------------------------------------------- /util/change_display_profile_cal_whitepoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/change_display_profile_cal_whitepoint.py -------------------------------------------------------------------------------- /util/check-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/check-install.sh -------------------------------------------------------------------------------- /util/check_changelog_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/check_changelog_match.py -------------------------------------------------------------------------------- /util/check_x_xrandr_icc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/check_x_xrandr_icc.py -------------------------------------------------------------------------------- /util/convert_hwdb_to_pnp_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/convert_hwdb_to_pnp_ids.py -------------------------------------------------------------------------------- /util/convert_translations_json_to_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/convert_translations_json_to_yaml.py -------------------------------------------------------------------------------- /util/create_8bit_gradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/create_8bit_gradient.py -------------------------------------------------------------------------------- /util/create_rendering_intent_test_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/create_rendering_intent_test_profile.py -------------------------------------------------------------------------------- /util/create_testcharts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/create_testcharts.py -------------------------------------------------------------------------------- /util/createpresets.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/createpresets.cmd -------------------------------------------------------------------------------- /util/createpresets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/createpresets.sh -------------------------------------------------------------------------------- /util/crushpng.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/crushpng.cmd -------------------------------------------------------------------------------- /util/cubicgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/cubicgrid.py -------------------------------------------------------------------------------- /util/dist.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/dist.cmd -------------------------------------------------------------------------------- /util/dist_0install.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | python setup.py 0install %* 4 | -------------------------------------------------------------------------------- /util/dist_0install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ./setup.py 0install $* 4 | -------------------------------------------------------------------------------- /util/dist_debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/dist_debian.sh -------------------------------------------------------------------------------- /util/dist_fedora.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/dist_fedora.sh -------------------------------------------------------------------------------- /util/dist_mandriva.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/dist_mandriva.sh -------------------------------------------------------------------------------- /util/dist_mandriva64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/dist_mandriva64.sh -------------------------------------------------------------------------------- /util/dist_obs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/dist_obs.sh -------------------------------------------------------------------------------- /util/dist_openSUSE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/dist_openSUSE.sh -------------------------------------------------------------------------------- /util/dist_osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/dist_osx.sh -------------------------------------------------------------------------------- /util/dist_py2exe.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/dist_py2exe.cmd -------------------------------------------------------------------------------- /util/dist_ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/dist_ubuntu.sh -------------------------------------------------------------------------------- /util/dump_x_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/dump_x_profiles.py -------------------------------------------------------------------------------- /util/ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/ez_setup.py -------------------------------------------------------------------------------- /util/find_abstract_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/find_abstract_profiles.py -------------------------------------------------------------------------------- /util/find_argl_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/find_argl_profiles.py -------------------------------------------------------------------------------- /util/find_chad_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/find_chad_profiles.py -------------------------------------------------------------------------------- /util/find_chrm_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/find_chrm_profiles.py -------------------------------------------------------------------------------- /util/find_clrt_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/find_clrt_profiles.py -------------------------------------------------------------------------------- /util/find_colorspace_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/find_colorspace_profiles.py -------------------------------------------------------------------------------- /util/find_iCCP_pngs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/find_iCCP_pngs.py -------------------------------------------------------------------------------- /util/find_icc_v2_unicode_desc_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/find_icc_v2_unicode_desc_profiles.py -------------------------------------------------------------------------------- /util/find_icc_v4_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/find_icc_v4_profiles.py -------------------------------------------------------------------------------- /util/find_identity_curve_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/find_identity_curve_profiles.py -------------------------------------------------------------------------------- /util/generate_HLG_P3_2020_r_ti3.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/generate_HLG_P3_2020_r_ti3.cmd -------------------------------------------------------------------------------- /util/generate_SMPTE2084_P3_2020_r_ti3.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/generate_SMPTE2084_P3_2020_r_ti3.cmd -------------------------------------------------------------------------------- /util/lincal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/lincal.py -------------------------------------------------------------------------------- /util/list-autostarts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/list-autostarts.sh -------------------------------------------------------------------------------- /util/list-color-conffiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/list-color-conffiles.sh -------------------------------------------------------------------------------- /util/list-device-profiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/list-device-profiles.sh -------------------------------------------------------------------------------- /util/localization_find_potentially_unused_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/localization_find_potentially_unused_strings.py -------------------------------------------------------------------------------- /util/make-site-package-dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/make-site-package-dist.py -------------------------------------------------------------------------------- /util/nearneutrals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/nearneutrals.py -------------------------------------------------------------------------------- /util/ppdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/ppdir.py -------------------------------------------------------------------------------- /util/profileinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/profileinfo.py -------------------------------------------------------------------------------- /util/rpm_postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/rpm_postinstall.sh -------------------------------------------------------------------------------- /util/rpm_postuninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/rpm_postuninstall.sh -------------------------------------------------------------------------------- /util/scale_cal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/scale_cal.py -------------------------------------------------------------------------------- /util/sdist.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/sdist.cmd -------------------------------------------------------------------------------- /util/sdist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/sdist.sh -------------------------------------------------------------------------------- /util/set_profile_desc_to_basename_sans_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/set_profile_desc_to_basename_sans_ext.py -------------------------------------------------------------------------------- /util/sign_dist.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/sign_dist.cmd -------------------------------------------------------------------------------- /util/spyd4cal_to_ccss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/spyd4cal_to_ccss.py -------------------------------------------------------------------------------- /util/standalone-tools-icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/standalone-tools-icons.py -------------------------------------------------------------------------------- /util/switchvc90.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/switchvc90.cmd -------------------------------------------------------------------------------- /util/sync_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/sync_translations.py -------------------------------------------------------------------------------- /util/tidy_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/tidy_dist.py -------------------------------------------------------------------------------- /util/update_pnp_ids.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/update_pnp_ids.cmd -------------------------------------------------------------------------------- /util/update_pnp_ids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/update_pnp_ids.sh -------------------------------------------------------------------------------- /util/update_presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/update_presets.py -------------------------------------------------------------------------------- /util/vc90crt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/vc90crt.py -------------------------------------------------------------------------------- /util/winmanifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/winmanifest.py -------------------------------------------------------------------------------- /util/winmanifest_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/winmanifest_util.py -------------------------------------------------------------------------------- /util/winresource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/winresource.py -------------------------------------------------------------------------------- /util/winversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomanHargrave/displaycal/HEAD/util/winversion.py --------------------------------------------------------------------------------