aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog12
-rw-r--r--NEWS68
-rw-r--r--configure.in2
-rw-r--r--embed/downloader-view.c10
4 files changed, 81 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index 2a800d215..41fdc292d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2004-02-15 Marco Pesenti Gritti <marco@gnome.org>
+
+ * NEWS:
+ * configure.in:
+
+ Prepare for 1.1.8
+
+ * embed/downloader-view.c: (downloader_view_build_ui):
+
+ Revert the timeout for now, I dont think it's mature
+ for the release.
+
2004-02-14 Xan Lopez <xan@gnome.org>
* data/.cvsignore:
diff --git a/NEWS b/NEWS
index 72dc649ac..f4240d9d7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,72 @@
==============
+Epiphany 1.1.8
+==============
+
+Code changes
+
+ * Use gnome-common to generate help makefiles (Marco)
+
+Interface improvements
+
+ * Use title capitalisation in the clear history dialog (Piers Cornwell)
+ * Use a default width/height for dialogs with treeviews
+ that don't have a fixed requisition (Biggest Flake Ever)
+ * Set a default height/width for the encoding dialog (Dave)
+ * Don't show Find, Add Language, and Encodings dialogue in
+ window list.
+ * Now that GtkComboBox supports mnemonic activation,
+ set the focus target of the combos labels (Christian)
+ * Make resume dialog warning message selectable
+ per HIG (Piers Cornwell)
+ * Make columns resizable (Marco Pesenti Gritti)
+
+Bugfixes
+
+ * Fix a lot of memleaks (Christian)
+ * Fix toolbar overflow menus creation (Christian)
+ * Honour the --with-gconf-schema-file-dir and
+ --disable-schemas-install configure options
+ (Julio M. Merino Vidal)
+ * Fixup completion matching and priority calculation (Marco)
+ * Put the serial numbers in duplicated filenames just before
+ the last dot so we won't confuse apps like file-roller. (Xan)
+ * In downloader when open is explicitly requested from
+ the dialog use a temporary file (Marco)
+ * Sync with mozilla 1.7a api (Christian)
+ * Reenable indentation of node xml (Christian)
+ * Fix numerous places where we weren't properly
+ converting between UTF-8 and filename encoding. (Christian)
+ * Unify fallback downloads dir to get the
+ home directory (Christian)
+ * Don't set entries insensitive, only set the non-editable when the
+ gconf key isn't writable. (Christian)
+ * Changed .pc file version to 1.2 (Christian)
+ * Make statusbar api public for plugins (Christian)
+ * Fix several problems in the safe/unsafe downloads logic (Marco)
+
+Translations
+
+ * Ales Nyakhaychyk (be)
+ * Arafat Medini (ar)
+ * Changwoo Ryu (ko)
+ * Christian Neumair (de)
+ * Christophe Merlet (RedFox) (fr)
+ * Danilo Segan (sr)
+ * Duarte Loreto (pt)
+ * Francisco Javier F. Serrador (es)
+ * Funda Wang (zh_CN)
+ * GNOME PL Team (pl)
+ * Hasbullah Bin Pit (ms)
+ * John C Barstow (mi)
+ * Kjartan Maraas (no)
+ * Kostas Papadimas (el)
+ * Laurent Dhima (sq)
+ * Maxim Dziumanenko (uk)
+ * Miloslav Trmac (cs)
+ * Pauli Virtanen (fi)
+ * Žygimantas Beručka (lt)
+
+==============
Epiphany 1.1.6
==============
diff --git a/configure.in b/configure.in
index e2775051b..0d04a2e8f 100644
--- a/configure.in
+++ b/configure.in
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(epiphany, 1.1.7,
+AC_INIT(epiphany, 1.1.8,
[http://bugzilla.gnome.org/enter_bug.cgi?product=epiphany])
EPIPHANY_MAJOR=1.1
diff --git a/embed/downloader-view.c b/embed/downloader-view.c
index 160346380..18b2f940c 100644
--- a/embed/downloader-view.c
+++ b/embed/downloader-view.c
@@ -40,7 +40,6 @@
#include <glib/gi18n.h>
#define CONF_DOWNLOADING_SHOW_DETAILS "/apps/epiphany/dialogs/downloader_show_details"
-#define DIALOG_MINIMUM_DISPLAY_TIMEOUT 5000
enum
{
@@ -471,12 +470,6 @@ selection_changed (GtkTreeSelection *selection, DownloaderView *dv)
update_buttons (dv);
}
-static gboolean unref_return_false (void *data)
-{
- g_object_unref (data);
- return FALSE;
-}
-
static void
downloader_view_build_ui (DownloaderView *dv)
{
@@ -562,9 +555,6 @@ downloader_view_build_ui (DownloaderView *dv)
selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (priv->treeview));
g_signal_connect (selection, "changed", G_CALLBACK (selection_changed), dv);
-
- g_object_ref (dv);
- g_timeout_add (DIALOG_MINIMUM_DISPLAY_TIMEOUT, unref_return_false, dv);
}
void