aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@src.gnome.org>2004-03-15 23:51:31 +0800
committerMarco Pesenti Gritti <marco@src.gnome.org>2004-03-15 23:51:31 +0800
commit9732e759a0a248bf880963b5850e5d958c5b17ec (patch)
treeae3a85f2a93a16ac3bf2a77b0bdd20a4e55332a5
parentd222bedec7864707d3754ab888b9701cf7e56fbb (diff)
downloadgsoc2013-epiphany-9732e759a0a248bf880963b5850e5d958c5b17ec.tar
gsoc2013-epiphany-9732e759a0a248bf880963b5850e5d958c5b17ec.tar.gz
gsoc2013-epiphany-9732e759a0a248bf880963b5850e5d958c5b17ec.tar.bz2
gsoc2013-epiphany-9732e759a0a248bf880963b5850e5d958c5b17ec.tar.lz
gsoc2013-epiphany-9732e759a0a248bf880963b5850e5d958c5b17ec.tar.xz
gsoc2013-epiphany-9732e759a0a248bf880963b5850e5d958c5b17ec.tar.zst
gsoc2013-epiphany-9732e759a0a248bf880963b5850e5d958c5b17ec.zip
*** empty log message ***Release120
-rw-r--r--ChangeLog11
-rw-r--r--NEWS23
-rw-r--r--configure.in4
-rw-r--r--embed/mozilla/mozilla-download.cpp2
4 files changed, 38 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index fe281ed79..81672dccb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2004-03-15 Marco Pesenti Gritti <marco@gnome.org>
+
+ * NEWS
+ * configure.in:
+
+ Update for 1.2.0.
+
+ * embed/mozilla/mozilla-download.cpp:
+
+ Register the private structure.
+
2004-03-14 Marco Pesenti Gritti <marco@gnome.org>
* lib/egg/egg-editable-toolbar.c: (drag_data_received_cb),
diff --git a/NEWS b/NEWS
index 5164f9fc7..304e4f721 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,27 @@
===============
+Epiphany 1.2.0
+===============
+
+Bug fixes:
+ * Fix a crash when dragging an url from an external application to
+ epiphany (Marco)
+ * Fix crash when downloading a link on Freebsd (Joe Marcus Clarke)
+
+Translations:
+
+ * Åsmund Skjæveland (nn)
+ * Gustavo Maciel Dias Vieira (pt_BR)
+ * John C Barstow (mi)
+ * Ma SivaKumar (ta)
+ * Miloslav Trmac (cs)
+ * Priit Laes (et)
+ * Progga (bn)
+ * Roozbeh Pournader (fa)
+ * Takeshi AIHANA (ja)
+ * tunggul arif siswoyo (id)
+ * Vladimir Petkov (bg)
+
+===============
Epiphany 1.1.12
===============
diff --git a/configure.in b/configure.in
index 5b1202959..96f1978eb 100644
--- a/configure.in
+++ b/configure.in
@@ -1,9 +1,9 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(epiphany, 1.1.12,
+AC_INIT(epiphany, 1.2.0,
[http://bugzilla.gnome.org/enter_bug.cgi?product=epiphany])
-EPIPHANY_MAJOR=1.1
+EPIPHANY_MAJOR=1.2
AC_SUBST(EPIPHANY_MAJOR)
AM_CONFIG_HEADER(config.h)
diff --git a/embed/mozilla/mozilla-download.cpp b/embed/mozilla/mozilla-download.cpp
index 8405ba29d..136d05491 100644
--- a/embed/mozilla/mozilla-download.cpp
+++ b/embed/mozilla/mozilla-download.cpp
@@ -264,6 +264,8 @@ mozilla_download_class_init (MozillaDownloadClass *klass)
download_class->pause = impl_pause;
download_class->resume = impl_resume;
+ g_type_class_add_private (klass, sizeof (MozillaDownloadPrivate));
+
g_object_class_install_property (object_class,
PROP_MOZDOWNLOAD,
g_param_spec_pointer ("mozilla-download",