Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-10-10 | Stop logging incoming Atom | Eugen Rochko | |
2016-10-10 | Log incoming Atom from PuSH | Eugen Rochko | |
2016-10-09 | Public timeline to exclude users you blocked | Eugen Rochko | |
2016-10-09 | Adding domain blocks | Eugen Rochko | |
2016-10-07 | Adding public timeline | Eugen Rochko | |
2016-10-06 | Fix #73 - Click on in-UI profile avatar/name to open public profile | Eugen Rochko | |
2016-10-06 | Fix #72 - add follow/unfollow button to public profiles | Eugen Rochko | |
2016-10-06 | Better comparison of "local" domain | Eugen Rochko | |
2016-10-06 | Fix sign-in redirecting "back" to a missing image because missing static ↵ | Eugen Rochko | |
files hit the raise_not_found method | |||
2016-10-06 | Catch Paperclip errors on /api/v1/media, return early from update profile ↵ | Eugen Rochko | |
service if XML given is nil | |||
2016-10-05 | Catching more exceptions that slipped through, removing AR logging from | Eugen Rochko | |
production as it's very verbose and not very useful | |||
2016-10-03 | API for blocking and unblocking | Eugen Rochko | |
2016-10-03 | Integrating block relationships into the API (read-only for now) | Eugen Rochko | |
2016-10-03 | Adding a block model and filter mentions from blocked users (fix #60) | Eugen Rochko | |
2016-10-03 | Adding e-mail confirmations | Eugen Rochko | |
2016-10-03 | Making public pages responsive, removing reblogs/favs counts from them | Eugen Rochko | |
2016-10-02 | Add since_id param to feeds | Eugen Rochko | |
2016-10-02 | Redirect after sign in to previous page (unless it's a sign in/up/etc page) | Eugen Rochko | |
2016-10-02 | Add API for getting info about authenticated user: ↵ | Eugen Rochko | |
/api/v1/accounts/verify_credentials | |||
2016-09-30 | Meaningful validation errors in API response | Eugen Rochko | |
2016-09-30 | Adjust client registration API | Eugen Rochko | |
2016-09-30 | Deleting statuses from UI | Eugen Rochko | |
2016-09-29 | Improve code style | Eugen Rochko | |
2016-09-27 | Adding landing page | Eugen Rochko | |
2016-09-27 | Fix #52 - Add API versioning (v1) | Eugen Rochko | |
2016-09-26 | Replace logo, fix #57 - delete/unreblog/unfavourite API, fix #45 - app | Eugen Rochko | |
registration API | |||
2016-09-25 | Improved style of settings page | Eugen Rochko | |
2016-09-23 | Change output of api/accounts/:id/follow and unfollow to return relationship | Eugen Rochko | |
Track relationship in redux state. Display follow/unfollow and following-back information on account view (unstyled) | |||
2016-09-22 | Uploading/undoing media modifies status text. Also: status text trimmed ↵ | Eugen Rochko | |
before validation | |||
2016-09-21 | Fix #50 - Order ancestors/descendants by tree path | Eugen Rochko | |
2016-09-21 | Fix notifications in UI, added new API for fetching account relationships | Eugen Rochko | |
2016-09-21 | Fix #24 - Thread resolving for remote statuses | Eugen Rochko | |
This is a big one, so let me enumerate: Accounts as well as stream entry pages now contain Link headers that reference the Atom feed and Webfinger URL for the former and Atom entry for the latter. So you only need to HEAD those resources to get that information, no need to download and parse HTML <link>s. ProcessFeedService will now queue ThreadResolveWorker for each remote status that it cannot find otherwise. Furthermore, entries are now processed in reverse order (from bottom to top) in case a newer entry references a chronologically previous one. ThreadResolveWorker uses FetchRemoteStatusService to obtain a status and attach the child status it was queued for to it. FetchRemoteStatusService looks up the URL, first with a HEAD, tests if it's an Atom feed, in which case it processes it directly. Next for Link headers to the Atom feed, in which case that is fetched and processed. Lastly if it's HTML, it is checked for <link>s to the Atom feed, and if such is found, that is fetched and processed. The account for the status is derived from author/name attribute in the XML and the hostname in the URL (domain). FollowRemoteAccountService and ProcessFeedService are used. This means that potentially threads are resolved recursively until a dead-end is encountered, however it is performed asynchronously over background jobs, so it should be ok. | |||
2016-09-20 | Since GNU Social hubs don't seem to return a hub.lease_seconds param in the ↵ | Eugen Rochko | |
subscription confirmation request, we'll have to default that value to the GS "minimum" (from their code) which is 24 hours. | |||
2016-09-20 | More debugging for PuSH confirmations | Eugen Rochko | |
2016-09-20 | Add more logging to PuSH callback | Eugen Rochko | |
2016-09-20 | Upgrade to PubSubHubbub 0.4 (removing verify_token) | Eugen Rochko | |
2016-09-20 | Separate PuSH subscriptions from following, add mastodon:push:refresh task, | Eugen Rochko | |
respect hub.lease_seconds (fix #46) | |||
2016-09-18 | Fix #43 | Eugen Rochko | |
2016-09-17 | Adding media controller, 1 webm/compose form allowed, previews generated | Eugen Rochko | |
2016-09-17 | Improved error handling for FollowRemoteService | Eugen Rochko | |
2016-09-17 | Fix #41, debug #42 | Eugen Rochko | |
2016-09-16 | Setting up preliminary "detailed" routes in the UI, new API end-point for ↵ | Eugen Rochko | |
fetching status context | |||
2016-09-12 | Adding a notification stack for error messages | Eugen Rochko | |
2016-09-08 | Fix for single status pages | Eugen Rochko | |
2016-09-08 | Optimized n+1 queries in accounts Atom and HTML views | Eugen Rochko | |
Added stack trace for SQL queries in development Removed badly thought out accounts/lookup API | |||
2016-09-08 | Fix local follows, 404 in logs | Eugen Rochko | |
2016-09-08 | Improving production logs, removing n+1 on media attachments in atom, | Eugen Rochko | |
adding attachments display to static views | |||
2016-09-05 | PostStatusService can attach media to status, ProcessFeedService likewise | Eugen Rochko | |
2016-09-05 | Add API to upload media attachments | Eugen Rochko | |
2016-09-04 | Possibly fix issue with stale favourite/reblog information after API call | Eugen Rochko | |