Skip to content

Commit

Permalink
Gromox 2.31
Browse files Browse the repository at this point in the history
  • Loading branch information
jengelh committed Aug 14, 2024
1 parent e62e1b3 commit 4d271dc
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ tests_jsontest_LDADD = ${jsoncpp_LIBS} libgromox_common.la libgromox_email.la
tests_lzxpress_SOURCES = tests/lzxpress.cpp
tests_lzxpress_LDADD = ${libHX_LIBS} libgromox_mapi.la
tests_oxcmail_ie_SOURCES = tests/oxcmail_ie.cpp
tests_oxcmail_ie_LDADD = libgromox_email.la libgromox_mapi.la
tests_oxcmail_ie_LDADD = ${libHX_LIBS} libgromox_common.la libgromox_email.la libgromox_mapi.la
tests_ucvttest_SOURCES = tests/ucvttest.cpp
tests_ucvttest_LDADD = libgromox_mapi.la
tests_utiltest_SOURCES = tests/utiltest.cpp
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([gromox], [2.30])
AC_INIT([gromox], [2.31])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([build-aux])
AC_PREFIX_DEFAULT([/usr])
Expand Down
23 changes: 23 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
Gromox 2.31 (2024-08-14)
========================

Fixes:

* freebusy: get_freebusy erroneously underreported occurrences for
yearly occurrences
* freebusy: the get_freebusy routine erroneously landed in an infinite loop if
a yearly-recurring February 29 appointment was originally created in a year
not divisible by 12.

Enhancements:

* oxcmail: take /etc/mime.types under consideration when adding extensions
to attachments

Changes:

* oxcmail: priorities for MIME parts have been rectified for
multipart/alternative and non-alternative containers; the conversion routine
is no longer making picks across multiple container siblings.


2.30 (2024-06-21)
=================

Expand Down
1 change: 0 additions & 1 deletion tests/oxcmail_ie.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ static int select_parts_3()
assert(m.load_from_str_move(data, std::size(data)));
auto mc = oxcmail_import("us-ascii", "UTC", &m, g_alloc, ee_get_propids);
assert(mc != nullptr);
gi_print(0, *mc);
auto atl = mc->children.pattachments;
assert(atl != nullptr);
if (atl->count != 3)
Expand Down

0 comments on commit 4d271dc

Please sign in to comment.