Desktop pre-release v3.7 is now available (Updated 28/08/2026)

I agree with Ben here that the new blue in the theme doesn't feel like an improvement. I posted a more detailed comment on Desktop, Mobile: Slightly adjust button colors and add new theme variable by personalizedrefrigerator · Pull Request #15764 · laurent22/joplin · GitHub

v3.7.10

v3.7.12

Can the new toggle AI chat toolbar button/icon on the top RHS only be visible when the AI features are enabled? And/or can there be a way to hide it?

Users who intentionally do not want AI features in Joplin probably don’t want to see it and so find it’s in the way and distracting. I’m definitely in that category and would very much prefer not to see anything AI-related. Moreover with AI features disabled the button is reductant and so should not be visible from the point of view of UI logic.

Thanks

Ben

Your logic makes sense to me that if AI features are not enabled the AI button should not be visible. Hopefully this will be modified, however in the meantime this seems to work...

userchrome.css

button[title="Toggle AI Chat"] {
    /* removes the AI Chat button */
    display: none;
}

v3.7.13