Re: [Pan-users] Pan doesn't delete cached article files on GUI article delete - Bug? Change in behavior?

2016-03-13 Thread Andrew Nile
Hi Duncan, I don't know if this helps, but I tested a few builds to see what happens. In version 0.14.2, it works as you remember. When you delete a message from the header pane, it is also deleted from the cache. However, in version 0.91 (and 0.132 to present) it remains in the cache. _

Re: [Pan-users] Pan @ IRC & GitHub

2016-03-07 Thread Andrew Nile
Hi Petr, I have a few tiny patches to suggest before the possible 0.140. I made them many months ago but I have been using them with no issues. A quick summary of the changes within: - Remove erroneous tab characters from one of my last patches (sorry!) - Prevent EOF character from stopping a bi

Re: [Pan-users] Select Headers with RE in the Subject/Author Entryfield?

2015-06-14 Thread Andrew Nile
On 12 June 2015 at 23:20, Duncan <1i5t5.dun...@cox.net> wrote: > Question: Is that code used for just the subject/author search regex > matching, or is it used in the group regex matching and scoring regex > matching as well? If it's used in all three places the patch's effect on > log-spamming co

Re: [Pan-users] Select Headers with RE in the Subject/Author Entryfield?

2015-06-12 Thread Andrew Nile
On 12 June 2015 at 13:59, Duncan <1i5t5.dun...@cox.net> wrote: > [...] It may be that the code deliberately > shuts off parsing in this case, and "forgets" to turn it back on again, > thus leaving the process stuck until toggled. I reckon this is probably the right answer. I've found the code wher

Re: [Pan-users] Select Headers with RE in the Subject/Author Entryfield?

2015-06-10 Thread Andrew Nile
On 10 Jun 2015 01:47, "Duncan" <1i5t5.dun...@cox.net> wrote: > (At least in live-git pan) There's a dropdown menu (click the magnifying > glass icon at the left of the box) that lists various search types, > including Sub or Auth (regex), which is the one I'm testing, and which > I'm presuming Hein

Re: [Pan-users] Select Headers with RE in the Subject/Author Entryfield?

2015-06-09 Thread Andrew Nile
On 8 June 2015 at 08:16, Heinz Mezera wrote: > I'd like to select Headers in the Header-Pan with a regular expresssion > in the Subject/Author field and need your help. Is this possible and how > do I do it. Hi, I'm pretty sure that field doesn't accept regular expressions. It only matches chara

Re: [Pan-users] Attn Andrew, Steve - report on your versions of 0.140

2014-12-19 Thread Andrew Nile
Hi Steve, Sure. The build I gave to Dick uses: GMIME 2.6.20 GNUTLS 3.3.9 (with GMP 6.0.0 and nettle 2.7.1) gtkspell 2.0.16 libenchant 1.6 glib 2.41.3 libiconv 1.14 zlib 1.2.8 Compiled with MinGW's GCC 4.8.2. It's a shame that the updated GMIME didn't fix it, as it was the most likely candidate.

Re: [Pan-users] Attn Andrew, Steve - report on your versions of 0.140

2014-12-17 Thread Andrew Nile
On 15 December 2014 at 21:43, Dick Baker wrote: > Gents, [...] did you every make any further progress on this issue? Hi, kinda but not really. The patch I gave to Steve that he included into build 215 did have some positive effect. Posts no longer terminate after a few KB, as you can see in the

Re: [Pan-users] New Win32 build available

2014-11-11 Thread Andrew Nile
Hi Steve, Thanks for this. The link for pan-0.140.214.msi on your site points to pan-0.140.213.msi which confused me at first! Would it be OK if I e-mailed you with a few questions about your build process? Andrew ___ Pan-users mailing list Pan-users@

Re: [Pan-users] Unable to upload binaries in Pan

2014-11-11 Thread Andrew Nile
Hi, In your screenshots I can see that Local Folders is missing. It might be worth going to Help -> About to make sure that you're using 0.140 with build date 20141024 before continuing, and also closing and restarting any instances of Pan. > First, more good news. I expanded your 0.140 version

Re: [Pan-users] Unable to upload binaries in Pan

2014-11-10 Thread Andrew Nile
>Can I just install your 0.140 right over the current >installation? It would probably be better to extract it to a new folder instead so that it doesn't mess with Steve's upgrade system. That way you can also make 100% sure the uploading works. My build uses a different location for the profile

Re: [Pan-users] Unable to upload binaries in Pan

2014-11-10 Thread Andrew Nile
Hi, are you using the Windows version of Pan 0.139? If you like I can send you my Windows build of Pan GIT (0.140) that includes the binary upload fixes I submitted recently. ___ Pan-users mailing list Pan-users@nongnu.org https://lists.nongnu.org/mailm

Re: [Pan-users] Messed up .newsrc

2014-10-12 Thread Andrew Nile
On 12 October 2014 04:35, Duncan <1i5t5.dun...@cox.net> wrote: > Same iterator assertion error. =:^( Hi Duncan, I had a quick look at this. When Pan starts it attempts to restore whatever group was open last time. If the group is missing from the group list (as is the case when the newsrc file i

Re: [Pan-users] use-after-free in latest pan.git [FIXED]

2014-05-11 Thread Andrew Nile
Hi Walt & Heinrich, I've been thinking about Walt's backtrace. I wonder if the fix is as simple as moving the compression = false line up in nntp.cc. Instead of 64: _listener = 0; 65: l->on_nntp_done (this, health, response); 66: _compression = false; it becomes 64: _listener = 0; 65: _com

Re: [Pan-users] Compile error in latest git

2014-03-26 Thread Andrew Nile
Yay, glad it works! :D On 26 March 2014 12:10, Duncan <1i5t5.dun...@cox.net> wrote: > But what color redraw procedure needs called where in ordered to get it > to take "live", without a pan restart needed? Oops, I knew I was forgetting something :) Here's a patch that should make the colour dialo

Re: [Pan-users] Compile error in latest git

2014-03-23 Thread Andrew Nile
Hi Heinrich, sure, here it is. A simple patch prefs-ui.cc < prefs-ui.cc.patch in the pan/gui directory will apply this patch in case anyone wants to try it. Andrew prefs-ui.cc.patch Description: Binary data ___ Pan-users mailing list Pan-users@nongn

Re: [Pan-users] Compile error in latest git

2014-03-23 Thread Andrew Nile
On 23 March 2014 13:31, Duncan <1i5t5.dun...@cox.net> wrote: > Any ideas on that, Andrew (or anyone else)? Hi Duncan, I do have an idea (at least as a temporary measure). Each quote level can have its own background colour too, but the preferences dialog only sets one. Open up your preferences.x

Re: [Pan-users] Various possible bug fixes

2014-03-19 Thread Andrew Nile
Hi Heinrich, looks great. My patches in the first post turned out quite a bit messy and hard to follow, sorry. :( Two tiny things though, line 1996 of header-pane.cc should also be changed to _bg(prefs.get_color_str_wo_fallback ("text-color-bg")) so that the background colour is fixed, and the ne

[Pan-users] Various possible bug fixes

2014-03-05 Thread Andrew Nile
Hi! I have been playing around with the Pan source a bit and I think I have a few fixes for you guys to consider. Please feel free to use any or none of these. I have never used a mailing list before, so if I do something wrong, I'm sorry. Strange colours on first run patch: --- a/header-pane.cc