I've been considering a "known issues" list in the support section of our website. Would that help? Discussion could take place here on the forum, though I might need an email wakeup call occasionally. Once things are defined and confirmed, I could update the website with a summary.

All submitted bug reports are investigated, but only a few are confirmed. The investigation process is part of my support responsibility, as is the listing of the issues.

I believe there are currently two confirmed bugs in PBP 2.60.

1.) The WRITE command issue described in this thread. The best workaround is the define that Darrel mentioned:

Code:
DEFINE WRITE_USED 1
2.) The header files 16F1826.BAS and 16F1827.BAS have bad register aliases. Each file can be corrected with:

Code:
PORTL   VAR     PORTB
PORTH   VAR     PORTA  ' PORTC invalid, change to PORTA
TRISL   VAR     TRISB
TRISH   VAR     TRISA  ' TRISC invalid, change to TRISA