You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the beta-2 release of ImageGlass Kobe version 9. Many features of the version 8 are missing and there are a lot of breaking changes. All features and settings may be changed when the official version 9 is released.
To follow the progress of version 9 beta 3, please visit: https://github.com/d2phap/ImageGlass/projects/13.
You also can support this project by making a donation or purchasing the Microsoft Store version (version 8):
Introduces new classes for user actions that being used widely in the app:
SingleAction: contains a single action that can be chained. For example:
Click to enter Full screen mode and then set zoom to 200%.
See more details in the "Toolbar component" section.
ToggleAction: contains ToggleOn and ToggleOff action. Each of them is a SingleAction. ToggleOn and ToggleOff are taken turn to call to switch on or off a feature. For example:
First double click to enter Full screen mode.
If double click again, exit Full screen mode.
See more details in the "ImageGlass.Views" section.
Action for mouse click is ToggleAction which means you can configure on and off event separately. Each on and off action can be chained as well.
Example:
"MouseClickActions": {"LeftDoubleClick": {// first left click to enable full screen mode and set zoom factor to 50%"ToggleOn": {"Executable": "IG_ToggleFullScreen","Argument": true,"NextAction": {"Executable": "IG_SetZoom","Argument": 0.5,}},// second left click to exit full screen mode"ToggleOff": {"Executable": "IG_ToggleFullScreen","Argument": false}}},
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
⚠ Breaking changes
This is the beta-2 release of ImageGlass Kobe version 9. Many features of the version 8 are missing and there are a lot of breaking changes. All features and settings may be changed when the official version 9 is released.
To follow the progress of version 9 beta 3, please visit: https://github.com/d2phap/ImageGlass/projects/13.
You also can support this project by making a donation or purchasing the Microsoft Store version (version 8):
🎐 Minimum requirements
📝 Changelog:
Show / hide details
🟣 General changes
igtask.exe
to run admin commandsSingleAction
: contains a single action that can be chained. For example:ToggleAction
: containsToggleOn
andToggleOff
action. Each of them is aSingleAction
.ToggleOn
andToggleOff
are taken turn to call to switch on or off a feature. For example:🟣 New viewer component:
ImageGlass.Views
ImageGlass.Views
is based on D2Phap.DXControl which supports both Direct2D and GDI+ graphics thanks to WicNet library.ImageGlass.PhotoBox
withImageGlass.Views
, supports Direct2D 1.3 features.Added support for custom mouse actions:
Mouse click actions (#381, #648, #748, #909, #991, #1337):
MouseClickActions
.ToggleAction
which means you can configure on and off event separately. Each on and off action can be chained as well.Mouse wheel actions:
MouseWheelActions
.🟣 Thumbnails bar component
🟣 Toolbar component
OnClick
is aSingleAction
. So you can set a chain of actions to run.Image
inToolbarItems
inigconfig.json
. The path can be absolute or relative.🟣 Image Booster component
🟣 New features
🥒 Checksums:
0488E3B86564CE1BA8725354C56F1B991604E374
This discussion was created from the release ImageGlass Moon 9.0 beta 2.
Beta Was this translation helpful? Give feedback.
All reactions