What I’m trying to do
After the update, my custom callouts partially stopped working (the icons remained, but the color stopped working).
Also, the new change to how attachments work simply prevents me from working with them properly - I can’t edit the file name, only edit size, and even then in a not very convenient form.
Things I have tried
Reverting to 1.11 worked until it updated upon restart, even though I disabled this in the settings. Searching in the settings has not yielded any results yet.
I figured out how to work with the images - a second look at the changelog showed me how to handle them now.
For the callouts, you’ll probably need to update the --callout-color values:
/* Previously callout colors expected an RGB triplet. */
--callout-color: 255,0,0;
/* Now any valid CSS color is valid */
--callout-color: #ff0000;
--callout-color: rgb(255,0,0);
For exposing the embedded image link without using the mouse, you can type Enter when your cursor is on the image (you’ll see an outline) to expose the link and Tab to expose the image size if one is set.

Thank you, now everything works)
I only have one question left - I don’t have the icon to the right of the magnifying glass in the corner of the images.
Maybe a theme issue? Try updating your theme or switch to the default theme to check it there.
Yeah, that’s exactly it =\
Thank you again.