aboutsummaryrefslogtreecommitdiffstats
path: root/version.inc
Commit message (Collapse)AuthorAgeFilesLines
* remove hard-coded url to caterva.eu from events code.friendica2015-01-041-1/+1
|
* doc updatesfriendica2015-01-021-1/+1
|
* revupfriendica2015-01-011-1/+1
|
* revupfriendica2014-12-291-1/+1
|
* filter posts you author from unseen notifications - note there are other ↵friendica2014-12-281-1/+1
| | | | ways to do this, but involve some code complexity. This is easier to implement but may have a slight impact on the ping query performance. It's not horrid, just mentioning for the record.
* revupfriendica2014-12-271-1/+1
|
* doc updatefriendica2014-12-261-1/+1
|
* cleanup bb2diaspora - was getting cruftyfriendica2014-12-231-1/+1
|
* revupfriendica2014-12-221-1/+1
|
* fix double encoding of homepage in profile activity - not as ↵friendica2014-12-211-1/+1
| | | | straight-forward as it looked
* rev updatefriendica2014-12-201-1/+1
|
* doc updatesfriendica2014-12-191-1/+1
|
* mod/import: try ten times to create a unique webbie if the chosen one is in use.friendica2014-12-181-1/+1
|
* critical notifier fix to make diaspora delivery work reliably again. If ↵friendica2014-12-171-1/+1
| | | | everything breaks revert or debug.
* add Thomas's Diaspora repair script as include/fixd.php - altered so it can ↵friendica2014-12-161-1/+1
| | | | | | be re-run if necessary with a count of remaining hublocs to be fixed. Some sites are down so it probably can't ever get to zero. The check for a null join is quite an expensive query. It could block your DB for a couple minutes while it runs. Also some preliminary work on a means to take the channel module out of list/forum mode if a specific mid is requested.
* wall tagsfriendica2014-12-151-1/+1
|
* don't remove obsolete hublocs that have no sitekey - it will remove all ↵friendica2014-12-141-1/+1
| | | | kinds of other hublocs it isn't supposed to (e.g. diaspora).
* don't import to sys channel from self-censored authorsfriendica2014-12-121-1/+1
|
* block adult channels from inclusion in public content feedsfriendica2014-12-101-1/+1
|
* add comodo intermediate certs and a method to add other intermediate certs.friendica2014-12-031-2/+1
|
* Merge https://github.com/friendica/red into pending_mergefriendica2014-12-011-1/+2
|\ | | | | | | | | Conflicts: version.inc
| * Don't allow affinity of 0 in connedit.Thomas Willingham2014-12-021-1/+1
| |
* | rev updatefriendica2014-12-011-1/+1
|/
* update mozilla cacert.pemfriendica2014-11-281-1/+1
|
* revupfriendica2014-11-271-1/+1
|
* revupfriendica2014-11-261-1/+1
|
* add event export (this month) to event UIfriendica2014-11-241-1/+1
|
* project roadmapfriendica2014-11-231-1/+1
|
* random block widgetfriendica2014-11-221-1/+1
|
* friendica commenters are currently shown using "Diaspora" app. Try and fix ↵friendica2014-11-201-1/+1
| | | | this where we can.
* there's still a permission issue delivering a public post directly to the ↵friendica2014-11-191-1/+1
| | | | sys channel (on the local system), but this puts the local sys channel in the public delivery chain and fixes an issue with unseen counts showing on the discover page (where you can't do anything about it).
* undo disabled submit buttons now that ACL is initialised when page loadedfriendica2014-11-181-1/+1
|
* add unseen count and way to mark unseen to list mode. Also fix automatic ↵friendica2014-11-171-1/+1
| | | | mark of unseen so as to work with list mode.
* some poller optimisations and a fix for undefined (empty) dbtype which shows ↵friendica2014-11-161-1/+1
| | | | up as a mysql error that 'rand' isn't found.
* minor changes to support forum modefriendica2014-11-151-1/+1
|
* let's try this without a timeoutfriendica2014-11-131-1/+1
|
* extend sys support to layoutsfriendica2014-11-121-1/+1
|
* the code is a bit crufty, but this should fix issue #687friendica2014-11-111-1/+1
|
* class is a reserved wordfriendica2014-11-101-1/+1
|
* directory listing shows phantom keywordsfriendica2014-11-091-1/+1
|
* add acl loading fix to menu-item editsfriendica2014-11-081-1/+1
|
* rev updatefriendica2014-11-071-1/+1
|
* category tagblockfriendica2014-11-061-1/+1
|
* some minor cleanup of unreported (and as yet undiscovered) issues with ↵friendica2014-11-051-1/+1
| | | | permissions toggling. No smoking guns and no obvious issues discovered here. Repeated and tried to duplicate zottell's issue as described without seeing any obvious problems.
* it appears bootbox was lost in a bootstrap upgradefriendica2014-11-041-1/+1
|
* provide example import scriptfriendica2014-11-031-1/+1
|
* add some more safety checks before turning the conversation request messages ↵friendica2014-11-021-1/+1
| | | | back on
* disable request message response until we work through thisfriendica2014-11-011-1/+1
|
* doc updatesfriendica2014-10-311-1/+1
|
* What this checkin does is catch the case where a comment arrived and there's ↵friendica2014-10-301-1/+1
| | | | a missing top-level post to match it with. So we'll send a request back to the sender that you've never seen this thread and please send a fresh copy of the entire conversation to date. We could soon have posts in the matrix from different platforms from days gone by, which have been migrated into the modern world. We'll be polite and not deliver these to everybody. However, if someone comments on one of these antique threads we wouldn't be able to see it in our own matrix because we won't have a copy of the parent post. So this rectifies that situation. Be aware that item deletion may need to change to keep "hard deleted" items indefinitely so that they don't keep coming back. We'll have to null out the important data of the former item to accomplish the deletion aspect.