chore: update version to 1.2.4
This commit is contained in:
@@ -1,5 +1,28 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.2.4 (2026-03-14)
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- **Tags**: Show total and unread email counts next to each tag in the sidebar
|
||||||
|
- **Tags**: Instant tag count refresh after adding or removing a tag
|
||||||
|
- **Search**: Wildcard query functionality for enhanced search capabilities
|
||||||
|
- **Search**: Support OR conditions across multiple fields in email search
|
||||||
|
- **Search**: Improved search results display with pluralization and localization
|
||||||
|
- **Email**: Dropdown menus for actions in email viewer
|
||||||
|
- **Email**: Improved email list messages for clarity and localization
|
||||||
|
- **Email**: Enhanced unsubscribe banner with destructive color styling
|
||||||
|
- **Auth**: Centralized Stalwart credentials management
|
||||||
|
- **Login**: Configurable logo with light/dark mode support
|
||||||
|
- **Avatar**: Dev mode configuration for profile picture retrieval
|
||||||
|
- **DevOps**: Added `.env.dev.example` for development configuration
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
- **Email**: Prevent browser auth dialog when viewing emails with inline images
|
||||||
|
- **Login**: Optimize theme store usage with shallow comparison
|
||||||
|
- **Git**: Add local private data directory to `.gitignore`
|
||||||
|
|
||||||
## 1.2.3 (2026-03-13)
|
## 1.2.3 (2026-03-13)
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ A modern, self-hosted webmail client for [Stalwart Mail Server](https://stalw.ar
|
|||||||
Built with Next.js and the JMAP protocol.
|
Built with Next.js and the JMAP protocol.
|
||||||
|
|
||||||
[](LICENSE)
|
[](LICENSE)
|
||||||
[](CHANGELOG.md)
|
[](CHANGELOG.md)
|
||||||
[](https://ghcr.io/bulwarkmail/webmail)
|
[](https://ghcr.io/bulwarkmail/webmail)
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ import { discoverOAuth, type OAuthMetadata } from "@/lib/oauth/discovery";
|
|||||||
import { generateCodeVerifier, generateCodeChallenge, generateState } from "@/lib/oauth/pkce";
|
import { generateCodeVerifier, generateCodeChallenge, generateState } from "@/lib/oauth/pkce";
|
||||||
import { OAUTH_SCOPES } from "@/lib/oauth/tokens";
|
import { OAUTH_SCOPES } from "@/lib/oauth/tokens";
|
||||||
|
|
||||||
const APP_VERSION = "1.2.3";
|
const APP_VERSION = "1.2.4";
|
||||||
|
|
||||||
const THEME_OPTIONS = [
|
const THEME_OPTIONS = [
|
||||||
{ value: "light" as const, icon: Sun, label: "Light" },
|
{ value: "light" as const, icon: Sun, label: "Light" },
|
||||||
|
|||||||
Generated
+2
-2
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "bulwark-webmail",
|
"name": "bulwark-webmail",
|
||||||
"version": "1.2.3",
|
"version": "1.2.4",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "bulwark-webmail",
|
"name": "bulwark-webmail",
|
||||||
"version": "1.2.3",
|
"version": "1.2.4",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@tanstack/react-virtual": "^3.13.18",
|
"@tanstack/react-virtual": "^3.13.18",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "bulwark-webmail",
|
"name": "bulwark-webmail",
|
||||||
"version": "1.2.3",
|
"version": "1.2.4",
|
||||||
"description": "Bulwark Webmail — a modern webmail client built for Stalwart Mail Server",
|
"description": "Bulwark Webmail — a modern webmail client built for Stalwart Mail Server",
|
||||||
"author": "Matthieu MALVACHE <matthieu@root.cloud>",
|
"author": "Matthieu MALVACHE <matthieu@root.cloud>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
Reference in New Issue
Block a user