File tree Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Notable changes to Mailpit will be documented in this file.
4
4
5
+ ## [ v1.19.2]
6
+
7
+ ### Chore
8
+ - Update Go dependencies
9
+
10
+ ### Fix
11
+ - Update Inbox "Delete All" count when new messages are detected ([ #334 ] ( https://github.com/axllent/mailpit/issues/334 ) )
12
+
13
+
5
14
## [ v1.19.1]
6
15
7
16
### Feature
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ require (
59
59
golang.org/x/sys v0.22.0 // indirect
60
60
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
61
61
modernc.org/gc/v3 v3.0.0-20240304020402-f0dba7c97c2b // indirect
62
- modernc.org/libc v1.55.1 // indirect
62
+ modernc.org/libc v1.55.3 // indirect
63
63
modernc.org/mathutil v1.6.0 // indirect
64
64
modernc.org/memory v1.8.0 // indirect
65
65
modernc.org/strutil v1.2.0 // indirect
Original file line number Diff line number Diff line change @@ -205,8 +205,8 @@ modernc.org/gc/v2 v2.4.1 h1:9cNzOqPyMJBvrUipmynX0ZohMhcxPtMccYgGOJdOiBw=
205
205
modernc.org/gc/v2 v2.4.1 /go.mod h1:wzN5dK1AzVGoH6XOzc3YZ+ey/jPgYHLuVckd62P0GYU =
206
206
modernc.org/gc/v3 v3.0.0-20240304020402-f0dba7c97c2b h1:BnN1t+pb1cy61zbvSUV7SeI0PwosMhlAEi/vBY4qxp8 =
207
207
modernc.org/gc/v3 v3.0.0-20240304020402-f0dba7c97c2b /go.mod h1:Qz0X07sNOR1jWYCrJMEnbW/X55x206Q7Vt4mz6/wHp4 =
208
- modernc.org/libc v1.55.1 h1:2K/vMbMDGymj0CO4mcQybYW8SW3czB+u9rlghpMkTrI =
209
- modernc.org/libc v1.55.1 /go.mod h1:qFXepLhz+JjFThQ4kzwzOjA/y/artDeg+pcYnY+Q83w =
208
+ modernc.org/libc v1.55.3 h1:AzcW1mhlPNrRtjS5sS+eW2ISCgSOLLNyFzRh/V3Qj/U =
209
+ modernc.org/libc v1.55.3 /go.mod h1:qFXepLhz+JjFThQ4kzwzOjA/y/artDeg+pcYnY+Q83w =
210
210
modernc.org/mathutil v1.6.0 h1:fRe9+AmYlaej+64JsEEhoWuAYBkOtQiMEU7n/XgfYi4 =
211
211
modernc.org/mathutil v1.6.0 /go.mod h1:Ui5Q9q1TR2gFm0AQRqQUaBWFLAhQpCwNcuhBOSedWPo =
212
212
modernc.org/memory v1.8.0 h1:IqGTL6eFMaDZZhEWwcREgeMXYwmW83LYW8cROZYkg+E =
Original file line number Diff line number Diff line change @@ -131,8 +131,8 @@ export default {
131
131
< button type= " button" class = " btn-close" data- bs- dismiss= " modal" aria- label= " Close" >< / button>
132
132
< / div>
133
133
< div class = " modal-body" >
134
- This will permanently delete {{ formatNumber (mailbox .count ) }}
135
- message< span v- if = " mailbox.count > 1" > s< / span> .
134
+ This will permanently delete {{ formatNumber (mailbox .total ) }}
135
+ message< span v- if = " mailbox.total > 1" > s< / span> .
136
136
< / div>
137
137
< div class = " modal-footer" >
138
138
< button type= " button" class = " btn btn-outline-secondary" data- bs- dismiss= " modal" > Cancel< / button>
You can’t perform that action at this time.
0 commit comments