Skip to content

Releases: d2phap/ExifGlass

ExifGlass 1.6

12 Jul 08:09
Compare
Choose a tag to compare

You can download ExifGlass for free.
To support the development of ExifGlass and gain access to future updates, consider purchasing it from the Microsoft Store.

ExifGlass on Microsoft Store

Downloads

Changelog

  • Updated the internal ExifTool.exe to v12.88
  • Added Exit menu to Main Menu
  • Added support for pressing ESC key to close the app & other windows (d2phap/ImageGlass#1957)

Full Changelog: 1.5.0.0...1.6.0.0

ExifGlass 1.5

11 Mar 14:18
Compare
Choose a tag to compare
ExifGlass 1.5

You can download ExifGlass for free.
To support the development of ExifGlass and gain access to future updates, consider purchasing it from the Microsoft Store.

ExifGlass on Microsoft Store

Downloads

Changelog

  • Added support for Windows 10 version 1809 (build 17763)
  • Added support for changing app theme mode in Settings
  • If user does not specify the path for ExifTool, it will use the included "exiftool.exe" by default

Full Changelog: 1.4.1.0...1.5.0.0

ExifGlass 1.4.1

18 Dec 11:37
Compare
Choose a tag to compare
ExifGlass 1.4.1

You can download ExifGlass for free.
To support the development of ExifGlass and gain access to future updates, consider purchasing it from the Microsoft Store.

ExifGlass on Microsoft Store

Downloads

Changelog

  • Fixed an issue where ExifGlass failed to save user settings (#8)

Full Changelog: 1.4.0.0...1.4.1.0

ExifGlass 1.4

15 Dec 08:04
Compare
Choose a tag to compare

To support the development of ExifGlass and gain access to future updates, consider purchasing it from the Microsoft Store.

ExifGlass on Microsoft Store

Downloads

Changelog

  • Upgraded Avalonia framework to v11.0.6
  • Fixed an issue where ExifGlass window became transparent on Windows 10 (#7)

Full Changelog: 1.3.0.0...1.4.0.0

ExifGlass 1.3

23 Nov 02:46
Compare
Choose a tag to compare

To support the development of ExifGlass and gain access to future updates, consider purchasing it from the Microsoft Store.

ExifGlass on Microsoft Store

Downloads

Changelog

  • Added support for ImageGlass 9 official release
  • Updated dependencies: .NET 8, Avalonia 11.0.5, ImageGlass.Tools 1.9070.0

Full Changelog: 1.2.0.0...1.3.0.0

ExifGlass 1.2

01 Aug 15:32
caecc05
Compare
Choose a tag to compare

You can download ExifGlass for free.
To support the development of ExifGlass and gain access to future updates, consider purchasing it from the Microsoft Store.

ExifGlass on Microsoft Store

Downloads

Changelog

  • Added support for resizing column Tag Name and Tag Value
  • Added support for auto-adjusting Tag Value column according to the window size
  • Added context menu to copy the selected value
  • Added support for extracting thumbnail image via context menu
  • Improved viewing long text data by auto-wrapping tag value (#3, #5)
  • Improved app styles for Windows 11
  • Fixed a bug where ExifGlass shows "-- press ENTER --" message when using the default filename of ExifTool exiftool(-k).exe (#2)

Full Changelog: 1.1.0.0...1.2.0.0

ExifGlass 1.1

25 Jul 13:11
Compare
Choose a tag to compare

You can download ExifGlass for free.
To support the development of ExifGlass and gain access to future updates, consider purchasing it from the Microsoft Store.

ExifGlass on Microsoft Store

Downloads

Changelog

  • Breaking change:
  • Adds support for auto-updating accent color when the system accent color is changed.
  • Fixed a bug where user cannot copy the selected value (#4).

ExifGlass 1.0 - Initial release

15 Apr 03:01
6f3b490
Compare
Choose a tag to compare
ExifGlass 1.0

You can download ExifGlass for free.
To support the development of ExifGlass and gain access to future updates, consider purchasing it from the Microsoft Store.

ExifGlass on Microsoft Store

Downloads

ExifGlass features

Feature Free version ExifGlass Store
Reads EXIF metadata βœ… βœ…
Seamlessly works with ImageGlass 9 βœ… βœ…
Drag-n-drop file to view metadata βœ… βœ…
Copy metadata βœ… βœ…
Export as Text, JSON, CSV βœ… βœ…
Custom ExifTool's command-line arguments βœ… βœ…
.NET 7 self-contained ❌ βœ…
Seamless auto-update ❌ βœ…
Launch ExifGlass with protocol exifglass: ❌ βœ…
Launch ExifGlass with command exifglass ❌ βœ…

Configure ExifGlass

If you want to configure ExifGlass to work with your system, follow these steps:

  1. Download ExifTool by Phil Harvey. You can also use the ExifTool Windows Installer if you prefer, which will automatically register the executable file of ExifTool on your system. ExifGlass can detect it automatically.
  2. If you downloaded the ZIP file, extract its contents into a folder.
  3. Open ExifGlass Settings (press Ctrl+,) and go to "Executable path". Locate the exiftool(-k).exe file that you extracted in step 2.

Integrate ExifGlass into ImageGlass 9

Follow these steps to add ExifGlass as an external tool to ImageGlass 9 beta 4:

  1. Open igconfig.json file with a text editor such as NotePad or VS Code.
  2. Ensure that ImageGlass app is not running.
  3. In the Tools section of the igconfig.json file, add the following code:
// in igconfig.json
"Tools": [
  {
    "ToolId": "Tool_ExifGlass", // a unique ID
    "ToolName": "ExifGlass - Exif metadata viewer", // name of the tool
    "Executable": "path\\to\\ExifGlass.exe", // or "exifglass" for ExifGlass Store
    "Argument": "<file>",
    "IsIntegrated": true
  }
]

Note that if you have installed ExifGlass Store, you can use "exifglass" for the Executable field.

  1. To assign hotkeys to the ExifGlass tool, add the following code:
// in igconfig.json
"MenuHotkeys": {
  "Tool_ExifGlass": ["X", "Ctrl+E"] // press X or Ctrl+E to open/close ExifGlass tool
}
  1. Save the file, and you're done! Now you can enjoy using ExifGlass as an external tool with ImageGlass 9 beta 4.