Known Bugs
All versions
- Tags consisting entirely of numbers
or starting with numbers (like '770' or '3gpp') are not displayed correctly.
Background feed updates are not actually asynchronous, e.g. block other requests/frontend activity. this should be fixed already -fox
- Update daemon may die in several situations. See ticket 77 for more information.
- If you experience "headlines_count_obj has no properties" error when loading feeds, try setting ENABLE_TAGWALL in config.php to false.
1.2.23
- You may need to force-refresh the stylesheet in Preferences, if you experience weird graphical issues (see #208)
1.2.18
1.2.6 and lower
- Tag browser doesn't work for users with UID not equal to 2. Fix: apply this patch.
1.1
- In vanilla 1.1 XML import fails to work. It was fixed just a few hours after I released 1.1, so if you downloaded b0rked version - just download it again (the fixed one is marked 1.1.p1 at the bottom of the page). Sorry for the mess, but I can't force myself to do a formal release for one bugfix right now.
- #3 -- Another XML import bug, see ticket for details (affects 1.1 and 1.1.p1).
- Tag counters may display incorrectly when browsing by tags, they may spontaneously reset to zero, etc. See changeset:693.
1.0.7
- When upgrading from 1.0.6 schema, column "update_interval" is not being created in update script.
begin;
alter table ttrss_feeds add column update_interval integer;
update ttrss_feeds set update_interval = 0;
alter table ttrss_feeds alter column update_interval set not null;
alter table ttrss_feeds alter column update_interval set default 0;
commit;
- Another schema update issue here.