View | Details | Raw Unified | Return to bug 163610
Collapse All | Expand All

(-)net/liferea/Makefile (+1 lines)
Lines 7-12 Link Here
7
7
8
PORTNAME=	liferea
8
PORTNAME=	liferea
9
PORTVERSION=	1.8.0
9
PORTVERSION=	1.8.0
10
PORTREVISION=	1
10
CATEGORIES=	net gnome
11
CATEGORIES=	net gnome
11
MASTER_SITES=	SF/${PORTNAME}/Liferea%20Stable/${PORTVERSION}
12
MASTER_SITES=	SF/${PORTNAME}/Liferea%20Stable/${PORTVERSION}
12
13
(-)net/liferea/files/patch-proxy-fix-1376046 (+45 lines)
Line 0 Link Here
1
From 137604683770cae900d5835befefd95c65866cd7 Mon Sep 17 00:00:00 2001
2
From: Lars Lindner <lars.lindner@gmail.com>
3
Date: Wed, 14 Dec 2011 18:18:02 +0100
4
Subject: [PATCH] Fixes proxy preference not affecting the HTML widget.
5
6
---
7
 ChangeLog                 |    8 ++++++++
8
 src/ui/liferea_htmlview.c |    5 +++++
9
 2 files changed, 13 insertions(+), 0 deletions(-)
10
11
diff --git ChangeLog ChangeLog
12
index 251bdb9..12724e5 100644
13
--- ChangeLog
14
+++ ChangeLog
15
@@ -1,3 +1,11 @@
16
+2011-12-??  ???
17
+
18
+	Version 1.8.1
19
+
20
+	* Fixes proxy preference not affecting the HTML widget.
21
+	  (reported by Chris Siebenmann)
22
+
23
+
24
 2011-12-10  Lars Lindner <lars.lindner@gmail.com>
25
 
26
 	Version 1.8.0
27
diff --git src/ui/liferea_htmlview.c src/ui/liferea_htmlview.c
28
index 7642c3a..afb20f8 100644
29
--- src/ui/liferea_htmlview.c
30
+++ src/ui/liferea_htmlview.c
31
@@ -181,6 +181,11 @@ liferea_htmlview_new (gboolean forceInternalBrowsing)
32
 	g_signal_connect (network_monitor_get (), "proxy-changed",
33
 	                  G_CALLBACK (liferea_htmlview_proxy_changed),
34
 	                  htmlview);
35
+
36
+	if (NULL != network_get_proxy_host ()) {
37
+		debug0 (DEBUG_NET, "Setting initial HTML widget proxy...");
38
+		liferea_htmlview_proxy_changed (network_monitor_get (), htmlview);
39
+	}
40
 	
41
 	return htmlview;
42
 }
43
-- 
44
1.7.8
45

Return to bug 163610