summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2020-05-02 15:56:14 +0100
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2020-05-02 16:15:30 +0100
commit9d289d73c14fbeb00b7fb43f7e3261c76e524934 (patch)
treef286de6e25651a36aeccf20cff68ef016ba7b123
parent33dfe6899c703a43adcd8925ff46d843385c37a6 (diff)
downloadenlightenment-9d289d73c14fbeb00b7fb43f7e3261c76e524934.tar.gz
0.24 - prepare dotting i's and crossing t's for 0.24 alpha 1
-rw-r--r--COPYING2
-rw-r--r--NEWS25
-rw-r--r--meson.build28
-rw-r--r--po/ar.po2
-rw-r--r--po/bg.po2
-rw-r--r--po/ca.po2
-rw-r--r--po/cs.po2
-rw-r--r--po/da.po2
-rw-r--r--po/de.po4
-rw-r--r--po/el.po2
-rw-r--r--po/eo.po2
-rw-r--r--po/es.po2
-rw-r--r--po/et.po2
-rw-r--r--po/fi.po2
-rw-r--r--po/fo.po2
-rw-r--r--po/fr.po4
-rw-r--r--po/fr_CH.po2
-rw-r--r--po/gl.po2
-rw-r--r--po/he.po2
-rw-r--r--po/hr.po2
-rw-r--r--po/hu.po2
-rw-r--r--po/it.po4
-rw-r--r--po/ja.po2
-rw-r--r--po/km.po2
-rw-r--r--po/ko.po2
-rw-r--r--po/lt.po2
-rw-r--r--po/ms.po2
-rw-r--r--po/nb.po2
-rw-r--r--po/nl.po2
-rw-r--r--po/pl.po2
-rw-r--r--po/pt.po2
-rw-r--r--po/pt_BR.po2
-rw-r--r--po/ro.po2
-rw-r--r--po/ru.po2
-rw-r--r--po/sk.po2
-rw-r--r--po/sl.po2
-rw-r--r--po/sr.po2
-rw-r--r--po/sv.po2
-rw-r--r--po/tr.po2
-rw-r--r--po/uk.po2
-rw-r--r--po/vi.po2
-rw-r--r--po/zh_CN.po2
-rw-r--r--po/zh_TW.po2
-rw-r--r--src/bin/e_about.c2
44 files changed, 84 insertions, 59 deletions
diff --git a/COPYING b/COPYING
index dd45656242..c090c4bb4f 100644
--- a/COPYING
+++ b/COPYING
@@ -1,6 +1,6 @@
Copyright notice for Enlightenment:
-Copyright (C) 2000-2012 Carsten Haitzler and various contributors (see AUTHORS)
+Copyright (C) 2000-2020 Carsten Haitzler and various contributors (see AUTHORS)
All rights reserved.
diff --git a/NEWS b/NEWS
index bf147381d5..ad1a4794b7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,28 @@
+Release 0.24.0:
+---------------------
+Hilights:
+ * New and improved shot module with editor and cropper
+ * Reduced number of setuid tools (merged many into single system tool)
+ * External monitor backlight and brightness controls via (lib)ddctil
+ * Improved resolution of EFM thumbnails to 256x256 by default
+ * New and improved crash handling guru meditation
+ * Restarts are now seamless with fade in and out and zero glitches
+ * Wallpaper import generates multiple resolutions for better efficiency
+ * Regularly malloc_trim if available to keep mem down
+ * All restarts are now handled by enlightenment_start, not e itself
+ * Enforce pointer lock to screen in X to stop pointer out-of-bounds
+ * Pager plain is gone - use the regular "miniature preview" pager
+ * Music control auto-runs your selected media player if not there
+ * Handle exception for steam games to find the right desktop file
+ * Polkit auth agent support as new core module - no extra daemons
+ * Drop comp fast effects - Should be edje transition factor + theme tags
+ * Easier config of specific desktop wallpaper straight from pager
+ * Startup should be smoother with IO prefetch thread
+ * New special blanking timeout for when locked that can be shorter
+ * Bluez4 gone now as Bluez5 is done and working fine
+ * Down to zero outstanding coverity issues
+ * The usual batches of bug fixes and minor improvements
+
Release 0.23.0:
---------------------
Hilights:
diff --git a/meson.build b/meson.build
index 2da6866b08..d01aaec73f 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
##### project
project('enlightenment', 'c',
- version : '0.23.99',
+ version : '0.24.0',
license : 'BSD 2 clause',
default_options: [ 'buildtype=release', 'c_std=gnu99', 'warning_level=2' ],
meson_version : '>= 0.47.0')
@@ -20,22 +20,22 @@ config_h = configuration_data()
e_version = ver.split('.')
#### FOR RELEASE
-#e_version_rev = '.'.join([ver])
-#release = '@0@.@1@.@2@'.format(e_version[0], e_version[1], e_version[2])
-#config_h.set('E_RELEASE_BUILD' , '1')
+e_version_rev = '.'.join([ver, 'alpha1'])
+release = '@0@.@1@.@2@'.format(e_version[0], e_version[1], e_version[2])
+config_h.set('E_RELEASE_BUILD' , '1')
####
#### FOR DEVELOPMENT
-git_version = '0'
-git = find_program('git', required: false)
-if git.found() == true
- git_cmd = run_command(git.path(), 'rev-list', '--count', 'HEAD')
- if git_cmd.returncode() == 0
- git_version = git_cmd.stdout().strip()
- endif
-endif
-e_version_rev = '.'.join([ver, git_version])
-release = 'dev-0.23.99'
+#git_version = '0'
+#git = find_program('git', required: false)
+#if git.found() == true
+# git_cmd = run_command(git.path(), 'rev-list', '--count', 'HEAD')
+# if git_cmd.returncode() == 0
+# git_version = git_cmd.stdout().strip()
+# endif
+#endif
+#e_version_rev = '.'.join([ver, git_version])
+#release = 'dev-0.24.99'
####
efl_version = '>= 1.24.0'
diff --git a/po/ar.po b/po/ar.po
index f2d8b8f2dc..c89511961b 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -9435,7 +9435,7 @@ msgstr "عن إنلايتنمينت"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/bg.po b/po/bg.po
index 62426167df..15fd0a7972 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -9878,7 +9878,7 @@ msgstr "За Enlightenment"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/ca.po b/po/ca.po
index dd792517a8..10f0688252 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -9334,7 +9334,7 @@ msgstr "Quant a Enlightenment"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/cs.po b/po/cs.po
index d8be5d9063..9dae160d9e 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -9425,7 +9425,7 @@ msgstr "O Enlightenmentu"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/da.po b/po/da.po
index a380384450..85edd1fcb5 100644
--- a/po/da.po
+++ b/po/da.po
@@ -9245,7 +9245,7 @@ msgstr "Om Enlightenment"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/de.po b/po/de.po
index 1007158d3c..d39e165097 100644
--- a/po/de.po
+++ b/po/de.po
@@ -9210,12 +9210,12 @@ msgstr "Über Enlightenment"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
msgstr ""
-"<title>Copyright &copy; 2000-2019, durch das Enlightenment Entwicklungsteam</"
+"<title>Copyright &copy; 2000-2020, durch das Enlightenment Entwicklungsteam</"
"><br><br>Wir hoffen, Ihnen macht das Benutzen dieser Software so viel Spaß "
"wie uns das Schreiben derselben.<br><br>Um uns zu Kontaktieren, bitte "
"besuchen Sie:<br><hilight>http://www.enlightenment.org</><br><br>"
diff --git a/po/el.po b/po/el.po
index 1da6786550..effc827e1c 100644
--- a/po/el.po
+++ b/po/el.po
@@ -9389,7 +9389,7 @@ msgstr "Σχετικά με το Enlightenment"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/eo.po b/po/eo.po
index cca7c61996..905c0d4af2 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -9260,7 +9260,7 @@ msgstr "Pri Enlightenment"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/es.po b/po/es.po
index d587c5b14c..23b547bde0 100644
--- a/po/es.po
+++ b/po/es.po
@@ -9619,7 +9619,7 @@ msgstr "Acerca de Enlightenment"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/et.po b/po/et.po
index 0177528816..9f965f61a4 100644
--- a/po/et.po
+++ b/po/et.po
@@ -10079,7 +10079,7 @@ msgstr "Teave Enlightment'ist"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/fi.po b/po/fi.po
index 9b29c21329..d62f3e5f92 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -9225,7 +9225,7 @@ msgstr "Tietoa Enlightenmentista"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/fo.po b/po/fo.po
index e05241d7b6..353c9c17ea 100644
--- a/po/fo.po
+++ b/po/fo.po
@@ -9127,7 +9127,7 @@ msgstr "Um Enlightenment"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/fr.po b/po/fr.po
index 82c2a91f4e..5d99651bc7 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -9210,12 +9210,12 @@ msgstr "À propos d’Enlightenment"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
msgstr ""
-"<title>Copyright &copy; 2000-2019, par l'équipe de développement "
+"<title>Copyright &copy; 2000-2020, par l'équipe de développement "
"d'Enlightenment</><ps/><ps/>Nous espérons que vous aurez autant de plaisir à "
"utiliser ce logiciel que nous en avons eu à l'écrire.<ps/><ps/>Pour nous "
"contacter, veuillez visiter :<ps/><hilight>http://www.enlightenment.org</"
diff --git a/po/fr_CH.po b/po/fr_CH.po
index 33ec2fdcb7..d19df32214 100644
--- a/po/fr_CH.po
+++ b/po/fr_CH.po
@@ -9906,7 +9906,7 @@ msgstr "À propos d'Enlightenment"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/gl.po b/po/gl.po
index d76ea45fb6..7f3473cfda 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -9344,7 +9344,7 @@ msgstr "Sobre Enlightenment"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/he.po b/po/he.po
index 6c7f3c340f..7fef2b7753 100644
--- a/po/he.po
+++ b/po/he.po
@@ -10040,7 +10040,7 @@ msgstr "אודות Enlightenment"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/hr.po b/po/hr.po
index 9fa53d8169..82e4505098 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -9792,7 +9792,7 @@ msgstr "O Enlightenment"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/hu.po b/po/hu.po
index 5098992b0c..37a60b53f3 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -9332,7 +9332,7 @@ msgstr "Az Enlightenment névjegye"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/it.po b/po/it.po
index 925e3ae8ba..5e1d134667 100644
--- a/po/it.po
+++ b/po/it.po
@@ -9226,12 +9226,12 @@ msgstr "Informazioni su Enlightenment"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
msgstr ""
-"<title>Copyright &copy; 2000-2019, dell'Enlightenment Development Team.</"
+"<title>Copyright &copy; 2000-2020, dell'Enlightenment Development Team.</"
"><ps/><ps/>Ci auguriamo che vi piacerà usare questo software tanto quanto a "
"noi è piaciuto scriverlo.<ps/><ps/>Per contattarci visitate:<ps/"
"><hilight>http://www.enlightenment.org</><ps/><ps/>"
diff --git a/po/ja.po b/po/ja.po
index 113146353b..44e63d16bb 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -9695,7 +9695,7 @@ msgstr "Enlightenment について"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/km.po b/po/km.po
index f764eeb600..ee061cd46b 100644
--- a/po/km.po
+++ b/po/km.po
@@ -9067,7 +9067,7 @@ msgstr "អំពី Enlightenment"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/ko.po b/po/ko.po
index 9a6c2bfedc..c1cca91ad5 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -9349,7 +9349,7 @@ msgstr "인라이튼먼트 정보"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/lt.po b/po/lt.po
index 01fa046768..67043fe1f9 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -9127,7 +9127,7 @@ msgstr "Apie Enlightenment"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/ms.po b/po/ms.po
index 3ff803b4c6..59e07d3d40 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -10086,7 +10086,7 @@ msgstr "Mengenai Enlightment"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/nb.po b/po/nb.po
index 556a914548..7f5c47621c 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -9960,7 +9960,7 @@ msgstr "Om Enlightenment"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/nl.po b/po/nl.po
index 8c5449b8de..1973a4678a 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -9602,7 +9602,7 @@ msgstr "Over Enlightenment"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/pl.po b/po/pl.po
index d1ad900d9e..31eac2481f 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -9823,7 +9823,7 @@ msgstr "O Enlightenment"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/pt.po b/po/pt.po
index d5132ad46b..1385f45798 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -9336,7 +9336,7 @@ msgstr "Sobre o Enlightenment"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index c8c6bd647d..7cd19c251c 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -9415,7 +9415,7 @@ msgstr "Sobre o Enlightenment"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/ro.po b/po/ro.po
index eb906ee0dd..db558fc809 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -10052,7 +10052,7 @@ msgstr "Despre Enlightenment"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/ru.po b/po/ru.po
index 5a04090cfe..6cb875dcb9 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -9359,7 +9359,7 @@ msgstr "Об Enlightenment"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/sk.po b/po/sk.po
index 992430c35b..99d947e183 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -9872,7 +9872,7 @@ msgstr "O Enlightenment"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/sl.po b/po/sl.po
index 075aa30700..34f99098ad 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -9337,7 +9337,7 @@ msgstr "O Enlightenment"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/sr.po b/po/sr.po
index 24c0dca0fb..aeb6b7ef8e 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -9265,7 +9265,7 @@ msgstr "О Просвећењу"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/sv.po b/po/sv.po
index ff0c3e5294..fee7ad6150 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -9949,7 +9949,7 @@ msgstr "Om Enlightenment"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/tr.po b/po/tr.po
index 0654c1b928..8098e89153 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -9320,7 +9320,7 @@ msgstr "Enlightenment Hakkında"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/uk.po b/po/uk.po
index b35cd4189f..3446301ab0 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -9788,7 +9788,7 @@ msgstr "Про Enlightenment"
#: src/bin/e_about.c:26
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/vi.po b/po/vi.po
index edbc402eb6..fa55594b8d 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -9292,7 +9292,7 @@ msgstr "Giới thiệu Enlightenment"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index fca9f1ce24..013a35a22c 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -9277,7 +9277,7 @@ msgstr "关于 Enlightenment"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 13f7b119d6..0398e27e8e 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -9125,7 +9125,7 @@ msgstr "關於 Enlightenment"
#: src/bin/e_about.c:26
#, fuzzy
msgid ""
-"<title>Copyright &copy; 2000-2019, by the Enlightenment Development Team</"
+"<title>Copyright &copy; 2000-2020, by the Enlightenment Development Team</"
"><ps/><ps/>We hope you enjoy using this software as much as we enjoyed "
"writing it.<ps/><ps/>To contact us please visit:<ps/><hilight>http://www."
"enlightenment.org</><ps/><ps/>"
diff --git a/src/bin/e_about.c b/src/bin/e_about.c
index 12aaa980d2..c7c8fd0bf6 100644
--- a/src/bin/e_about.c
+++ b/src/bin/e_about.c
@@ -23,7 +23,7 @@ e_about_new(void)
snprintf
(buf, sizeof(buf), "%s%s",
_(
- "<title>Copyright &copy; 2000-2019, by the Enlightenment "
+ "<title>Copyright &copy; 2000-2020, by the Enlightenment "
"Development Team</><ps/>"
"<ps/>"
"We hope you enjoy using this software as much as we enjoyed "