commit 37e3ac9a22dc7db0a97bbaa6edfafa40bd652afb Author: Colin Watson Date: Mon Feb 15 14:18:07 2016 +0000 Release version 0.3.0. NEWS | 6 ++++++ 1 file changed, 6 insertions(+) commit 4ea4ce58266bcd3d7fa8ef6e345ed252b75ea169 Author: Colin Watson Date: Mon Feb 15 14:12:37 2016 +0000 * README: valac is only required to rebuild C files. README | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit d4c4a95f5a74d4397a8c55dee39541eea1a72283 Author: Colin Watson Date: Mon Feb 15 14:09:01 2016 +0000 Fix distcheck * src/paths.vala.in: Rename to ... * src/paths.c.in: ... this, translated to C. (This is needed so that builds from tarballs do not require valac.) * src/paths.h, src/paths.vapi: New files. * src/Makefile.am (telegnome_SOURCES): Replace paths.vala with paths.h and paths.vapi. (telegnome_built): Add paths.c. (CLEANFILES): Remove *.c. (paths.vala): Replace with similar rule producing paths.c. (EXTRA_DIST): Add default-channels.cfg and paths.c.in. * src/.gitignore: Replace paths.vala with paths.c. * po/POTFILES.skip: New file, listing src/gui.c. po/POTFILES.skip | 1 + src/.gitignore | 2 +- src/Makefile.am | 21 ++++++++------------- src/paths.c.in | 28 ++++++++++++++++++++++++++++ src/paths.h | 23 +++++++++++++++++++++++ src/paths.vala.in | 32 -------------------------------- src/paths.vapi | 26 ++++++++++++++++++++++++++ 7 files changed, 87 insertions(+), 46 deletions(-) commit 16e8d9f1f50663c3372085f6eb7bf1501bb4594e Author: Colin Watson Date: Mon Feb 15 13:37:00 2016 +0000 Version: 0.3.0 (belated post-release increment) NEWS | 3 +++ configure.ac | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) commit 1ecc75bc261f0cfdfbcaccea500bc86a7ca5654b Author: Colin Watson Date: Mon Feb 15 13:34:29 2016 +0000 Remove obsolete bug listing * BUGS: Remove file. * Makefile.am (EXTRA_DIST): Remove BUGS. BUGS | 7 ------- Makefile.am | 1 - 2 files changed, 8 deletions(-) commit a99a9a39374ae09b18da55aba1bd8c20448d0407 Author: Colin Watson Date: Mon Feb 15 13:31:21 2016 +0000 Move default channel list into a separate file * src/default-channels.cfg: New file. * src/telegnome.gresource.xml: Add default-channels.cfg. * src/gui.vala (Gui.get_default_channel_value): New method. (Gui.reload_channels): Read default channels from resource. src/default-channels.cfg | 61 ++++++++++++++++++++++++++ src/gui.vala | 102 ++++++++++++++++++++------------------------ src/telegnome.gresource.xml | 1 + 3 files changed, 109 insertions(+), 55 deletions(-) commit 4acc73ad94bdd094e961a07e11468ad50b0a8dac Author: Colin Watson Date: Mon Feb 15 12:06:23 2016 +0000 Translate to Vala * src/app.c, src/app.h: Translate to ... * src/app.vala: ... this. * src/channel.c, src/channel.h: Translate to ... * src/channel.vala: ... this. * src/gui.c, src/gui.h: Translate to ... * src/gui.vala: ... this. * src/http.c, src/http.h: Translate to ... * src/http.vala: ... this. * src/legacy-config.c, src/legacy-config.h: Translate to ... * src/legacy-config.vala: ... this. * src/main.c, src/main.h: Translate to ... * src/main.vala: ... this. * src/paths.vala.in: New file. * src/pixpack.c, src/pixpack.h: Translate to ... * src/pixpack.vala: ... this. * src/prefs.c, src/prefs.h: Translate to ... * src/prefs.vala: ... this. * src/uuid.vapi: New file, downloaded from . * src/prefs.ui, src/telegnome.ui: Remove signal connections; these are now made in code instead, partly to separate code from presentation and partly because this makes it easier to ensure we connect them to methods on the correct objects. * src/Makefile.am (AM_CPPFLAGS): Add -include $(top_builddir)/config.h. Move *_CFLAGS to ... (AM_CFLAGS): ... here. Add $(VALA_CFLAGS). (AM_VALAFLAGS): Add. (telegnome_SOURCES): Replace with Vala source files. (CLEANFILES): Add generated C files. (paths.vala): New rule. * configure.ac: Test for src/main.vala rather than src/main.c. Test for valac. * autogen.sh: Test for src/main.vala rather than src/gui.c. * po/POTFILES.in: Replace src/gui.c with src/gui.vala. * README: Document new valac requirement. * src/.gitignore: Add *.c, paths.vala, and telegnome_vala.stamp*. README | 1 + autogen.sh | 2 +- configure.ac | 4 +- po/POTFILES.in | 2 +- src/.gitignore | 3 + src/Makefile.am | 52 ++- src/app.c | 91 ----- src/app.h | 42 --- src/app.vala | 89 +++++ src/channel.c | 269 -------------- src/channel.h | 48 --- src/channel.vala | 82 +++++ src/gui.c | 928 ------------------------------------------------- src/gui.h | 83 ----- src/gui.vala | 557 +++++++++++++++++++++++++++++ src/http.c | 177 ---------- src/http.h | 44 --- src/http.vala | 105 ++++++ src/legacy-config.c | 209 ----------- src/legacy-config.h | 37 -- src/legacy-config.vala | 150 ++++++++ src/main.c | 45 --- src/main.h | 51 --- src/main.vala | 29 ++ src/paths.vala.in | 32 ++ src/pixpack.c | 257 -------------- src/pixpack.h | 44 --- src/pixpack.vala | 110 ++++++ src/prefs.c | 406 ---------------------- src/prefs.h | 39 --- src/prefs.ui | 20 +- src/prefs.vala | 270 ++++++++++++++ src/telegnome.ui | 17 +- src/uuid.vapi | 65 ++++ 34 files changed, 1542 insertions(+), 2818 deletions(-) commit b9d7c1dd33c7215629a927101395bea6b6a33e11 Author: Guido Trentalancia Date: Sun Feb 7 15:51:29 2016 +0100 Add Italian teletext channel * po/it.po: Update some translations. * src/gui.c (tg_gui_reload_channels): Add the main Italian teletext channel. po/it.po | 10 +++++----- src/gui.c | 12 +++++++++++- 2 files changed, 16 insertions(+), 6 deletions(-) commit 2ca11655643c702013fed9704ea83e6a3dd9703b Author: Mario Blättermann Date: Mon Feb 8 22:19:39 2016 +0100 Updated German translation po/de.po | 248 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 127 insertions(+), 121 deletions(-) commit a739511d5f89ba7684b1e299cbac26e0b4becae5 Author: Daniel Mustieles Date: Sun Feb 7 13:21:11 2016 +0100 Updated Spanish translation po/es.po | 265 ++++++++++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 187 insertions(+), 78 deletions(-)