Releases: Schlaefer/Saito
Releases · Schlaefer/Saito
4.3.1
4.3.0
What's new
- + make ignored postings more flexible by using a CSS
.ignored
class #287 - + improves detection for password autofill
- + prevents iframe embedding by setting
X-Frame-Options
header - + help pages open in new window
- ✓ improves blackholed behavior and documentation #286
- Δ move "Advanced Search"/"Simple Search" navigation to navbar #288
- Δ refactors thread-tree and mix-tree rendering
4.2.1
What's new
- + show postings in profile of ignored user #280
- ✓ default search order is not applied in users/index #282
- ✓ "Neu Antwort" in german l10n email notification #279
- ✓ deleting category in admin backend fails #285
- ✓ creating new category in admin panel doesn't empty category cache #284
- Δ update to CakePHP 2.5.4+ #283
4.2.0
What's new
- + ignore users #276
- + performance improvements in mix view
- ✓ i10n in contacts/<*> headers #277
- ✓ adds missing back-links in contact form
- ✓ cache prefix not set for default cache #278
- Δ switch thread cache from whole threads to thread-lines #275
Migration Notes
DB Changes
Note: If you use a table prefix you have to prepend it to the table name.
CREATE TABLE `user_ignores` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`created` datetime DEFAULT NULL,
`modified` datetime DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
`blocked_user_id` int(11) DEFAULT NULL,
`timestamp` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`),
KEY `blocked_user_id` (`blocked_user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
ALTER TABLE `users` ADD `ignore_count` int(10) unsigned NOT NULL DEFAULT '0';
4.1.0
What's new
This release improves user experience for non-logged-in users by providing a MAR. This may increase server load.
- + Mark As Read for anonymous users #274
- + link to help-page source in help-page footer
- + requests (view, mix) of non-public posting asks for login to access that posting instead of redirecting to homepage
- + on registration a new username must at least two characters off to any existing username to be available
- ✓ fixes dummy_data shell
- Δ refactors contact code
- Δ URL to contact admin changes from
/users/contact/0
to/contacts/owner/
- Δ URL to contact users changes from
/users/contact/<id>
to/contacts/user/<id>
- Δ URL to contact admin changes from
4.0.5
4.0.4
What's new
- + switches BBCode parser to jBBCode
- Δ changes languages selection in [code]-tag from
[code <lang>]
to[code=<lang>]
(no backwards compatibility/breaks existing BBCode)
- Δ changes languages selection in [code]-tag from
- + less strict security settings to prevent overly eager CSRF-blackholing
- + adds vine to to allowed video domains
- + makes simple search available for non-logged in users
- + performance improvements
- ✓ fixes new threads don't show up in recent entries s(l)idebar
- ✓ fixes orphaned entries in
user_read
table - ✓ fixes no eng. l10n for markitup link-popup
- ✓ breaks long words in slidetab to next line
- Δ updates CakePHP to 2.5.2