Releases: d2phap/ExifGlass
ExifGlass 1.7
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.
Changelog
- Updated the internal ExifTool.exe to v12.99
- Added support for choosing which columns to show via context menu (#12)
Full Changelog: 1.6.0.0...1.7.0.0
ExifGlass 1.6
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.
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
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.
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
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.
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
To support the development of ExifGlass and gain access to future updates, consider purchasing it from the Microsoft Store.
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
To support the development of ExifGlass and gain access to future updates, consider purchasing it from the Microsoft Store.
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
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.
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
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.
Changelog
- Breaking change:
- Upgrades
ImageGlass.Tools
library to be compatible with ImageGlass 9.0 beta 5 or later.
ImageGlass 9.0 beta 4 will not work with ExifGlass 1.1.
- Upgrades
- 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
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 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:
- 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.
- If you downloaded the ZIP file, extract its contents into a folder.
- 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:
- Open
igconfig.json
file with a text editor such as NotePad or VS Code. - Ensure that ImageGlass app is not running.
- In the
Tools
section of theigconfig.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.
- 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
}
- Save the file, and you're done! Now you can enjoy using ExifGlass as an external tool with ImageGlass 9 beta 4.