Based on the feedback of users (e.g., ubacher or Arthur) in the 2017.13.2 thread (https://www.photools.com/community/index.php?topic=7639.0) I've made some improvements on the Pinboard app for the next release. For handling hidden elements, <tab> for moving the focus etc.
I'll keep the Release Notes up-to-date (https://www.photools.com/release-notes/) while I enhance the app. Keep the feedback coming in the appropriate feature request board.
Can I change the background of the pinboard-App in a nonpinboard black or grey color?
Yes. You mean removing the "cork" background?
I have prepared the app for "theming" but not implemented any user interface for it.
The background is controlled via the CSS file
C:\ProgramData\photools.com\IMatch6\webroot\imatch\apps\pinboard\styles\themes\default\theme.css
Open this file in a proper text editor and then change this:
body {
padding:0;
margin:0;
background: url(images/background-2.jpg);
}
to
body {
padding:0;
margin:0;
background: url(images/background-1.jpg);
}
to get
(https://www.photools.com/community/index.php?action=dlattach;topic=7648.0;attach=17397;image)
or
body {
padding:0;
margin:0;
background-color: #000
}
(solid black background color).
Note: These changes will be overwritten when you install a new version of IMatch.
Cool. Thank you a lot, Mario.