netstar pushed a commit to branch master. http://git.enlightenment.org/apps/evisum.git/commit/?id=0b8a372cc552ec86eb0cfe9e16b0bfb7eafb862a
commit 0b8a372cc552ec86eb0cfe9e16b0bfb7eafb862a Author: Alastair Poole <nets...@gmail.com> Date: Mon Sep 14 23:49:01 2020 +0100 0.5.6: Document Why Calling elm_win_resize_object_add doesn't do anything here, the function returns with a warning, which is being reported by packagers. Completely harmless and the warning about using this after an EO API call doesn't make any sense as there is no use of the unified API. It's just easier to remove this useless call. Nice that people spend time packaging up software. Have had two e-mails in the space of one hour asking about this...so to avoid another one... :) --- NEWS | 7 +++++++ VERSION | 2 +- meson.build | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 31f0d32..78178fe 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +============ +Evisum 0.5.6 +============ + + * Remove useless code to silence a + warning from EFL. + ============ Evisum 0.5.5 ============ diff --git a/VERSION b/VERSION index d1d899f..b49b253 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.5.5 +0.5.6 diff --git a/meson.build b/meson.build index 409d650..10c336f 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ ##### Project project('evisum', 'c', - version : '0.5.5', + version : '0.5.6', meson_version : '>= 0.40.0') efl_version = '>= 1.22.0' --