friendica.git/.git
5 years agoMerge pull request #5664 from annando/issue-4726
Tobias Diekershoff [Sat, 25 Aug 2018 17:55:36 +0000 (19:55 +0200)]
Merge pull request #5664 from annando/issue-4726

Isse 4726: Fixes the condition for showing hidden contacts

5 years agoIsse 4726: Fixes the condition for showing hidden contacts
Michael [Sat, 25 Aug 2018 16:38:26 +0000 (16:38 +0000)]
Isse 4726: Fixes the condition for showing hidden contacts

5 years agoMerge pull request #5662 from annando/messages-po
Tobias Diekershoff [Sat, 25 Aug 2018 16:31:24 +0000 (18:31 +0200)]
Merge pull request #5662 from annando/messages-po

Added strings

5 years agoAdded strings
Michael [Sat, 25 Aug 2018 15:38:34 +0000 (15:38 +0000)]
Added strings

5 years agoIssue 4960: Ignoring and blocking of contacts should work again (#5657)
Michael Vogel [Sat, 25 Aug 2018 13:48:00 +0000 (13:48 +0000)]
Issue 4960: Ignoring and blocking of contacts should work again (#5657)

* Issue 4960: Ignoring and blocking of contacts should work again

* Renamed functions

* This function should be renamed as well.

* We now have a frontend to block and ignore public contacts

* Hide some parts for public contacts

* Removed notices, public contact is now accessible from dirfind as well

* We now show contact conversations and contact posts

* We now use a new conversation mode

* The update functionality is disabled until it will work completely

* Fixing tabs chaos

* Update after posts on the contacts page will now work

* Show connect link

5 years agoMerge pull request #5659 from annando/notices-oh-no
Tobias Diekershoff [Fri, 24 Aug 2018 12:46:21 +0000 (14:46 +0200)]
Merge pull request #5659 from annando/notices-oh-no

Oh no ... there are still some notices that want to be removed ...

5 years agoOh no ... there are still some notices that want to be removed ...
Michael [Fri, 24 Aug 2018 11:09:58 +0000 (11:09 +0000)]
Oh no ... there are still some notices that want to be removed ...

5 years agoCleanups: isResult() more used, readability improved (#5608)
Roland Häder [Fri, 24 Aug 2018 05:05:49 +0000 (07:05 +0200)]
Cleanups: isResult() more used, readability improved (#5608)

* [diaspora]: Maybe SimpleXMLElement is the right type-hint?

* Changes proposed + pre-renaming:
- pre-renamed $db -> $connection
- added TODOs for not allowing bad method invocations (there is a
  BadMethodCallException in SPL)

* If no record is found, below $r[0] will fail with a E_NOTICE and the code
doesn't behave as expected.

* Ops, one more left ...

* Continued:
- added documentation for Contact::updateSslPolicy() method
- added type-hint for $contact of same method
- empty lines added + TODO where the bug origins that $item has no element 'body'

* Added empty lines for better readability

* Cleaned up:
- no more x() (deprecated) usage but empty() instead
- fixed mixing of space/tab indending
- merged else/if block goether in elseif() (lesser nested code blocks)

* Re-fixed DBM -> DBA switch

* Fixes/rewrites:
- use empty()/isset() instead of deprecated x()
- merged 2 nested if() blocks into one
- avoided nested if() block inside else block by rewriting it to elseif()
- $contact_id is an integer, let's test on > 0 here
- added a lot spaces and some empty lines for better readability

* Rewrite:
- moved all CONTACT_* constants from boot.php to Contact class

* CR request:
- renamed Contact::CONTACT_IS_* -> Contact::* ;-)

* Rewrites:
- moved PAGE_* to Friendica\Model\Profile class
- fixed mixure with "Contact::* rewrite"

* Ops, one still there (return is no function)

* Rewrite to Proxy class:
- introduced new Friendica\Network\Proxy class for in exchange of proxy_*()
  functions
- moved also all PROXY_* constants there as Proxy::*
- removed now no longer needed mod/proxy.php loading as composer's auto-load
  will do this for us
- renamed those proxy_*() functions to better names:
  + proxy_init()           -> Proxy::init()         (public)
  + proxy_url()            -> Proxy::proxifyUrl()   (public)
  + proxy_parse_html()     -> Proxy::proxifyHtml()  (public)
  + proxy_is_local_image() -> Proxy::isLocalImage() (private)
  + proxy_parse_query()    -> Proxy::parseQuery()   (private)
  + proxy_img_cb()         -> Proxy::replaceUrl()   (private)

* CR request:
- moved all PAGE_* constants to Friendica\Model\Contact class
- fixed all references of both classes

* Ops, need to set $a here ...

* CR request:
- moved Proxy class to Friendica\Module
- extended BaseModule

* Ops, no need for own instance of $a when self::getApp() is around.

* Proxy-rewrite:
- proxy_url() and proxy_parse_html() are both non-module functions (now
  methods)
- so they must be splitted into a seperate class
- also the SIZE_* and DEFAULT_TIME constants are both not relevant to module

* No instances from utility classes

* Fixed error:
- proxify*() is now located in `Friendica\Util\ProxyUtils`

* Moved back to original place, ops? How did they move here? Well, it was not
intended by me.

* Removed duplicate (left-over from split) constants and static array. Thank to
MrPetovan finding it.

* Renamed ProxyUtils -> Proxy and aliased it back to ProxyUtils.

* Rewrite:
- stopped using deprecated NETWORK_* constants, now Protocol::* should be used
- still left them intact for slow/lazy developers ...

* Ops, was added accidentally ...

* Ops, why these wrong moves?

* Ops, one to much (thanks to MrPetovan)

* Ops, wrong moving ...

* moved back to original place ...

* spaces added

* empty lines add for better readability.

* convertered spaces -> tab for code indenting.

* CR request: Add space between if and brace.

* CR requests fixed + move reverted
- ops, src/Module/*.php has been moved to src/Network/ accidentally
- reverted some parts in src/Database/DBA.php as pointed out by Annando
- removed internal TODO items
- added some spaces for better readability

5 years agoAPI: add private value (bool) to item results (#5647)
fabrixxm [Thu, 23 Aug 2018 14:09:50 +0000 (16:09 +0200)]
API: add private value (bool) to item results (#5647)

* API: add private value (bool) to item results

friendica:private for xml
friendica_privarte for json

* API Docs: add a section about custom value returned in status data

5 years ago"dba" is now "DBA". This hadn't been respected at some places (#5655)
Michael Vogel [Thu, 23 Aug 2018 13:51:58 +0000 (15:51 +0200)]
"dba" is now "DBA". This hadn't been respected at some places (#5655)

* "dba" is now "DBA". This hadn't been respected at some places

* Cleaning up unneeded stuff

5 years agoFix: Mail notifications arrive again (#5654)
Michael Vogel [Thu, 23 Aug 2018 08:00:25 +0000 (10:00 +0200)]
Fix: Mail notifications arrive again (#5654)

* Fix: Mail notifications arrive again

* Ensure that user data is always there

5 years agoRemoving a small notice in the network.php (#5652)
Michael Vogel [Wed, 22 Aug 2018 22:46:44 +0000 (00:46 +0200)]
Removing a small notice in the network.php (#5652)

5 years agoFix the settings in frio (#5650)
Michael Vogel [Wed, 22 Aug 2018 04:14:16 +0000 (06:14 +0200)]
Fix the settings in frio (#5650)

5 years agofix redirection - don't dfrn auth when contact is still pending (#5648)
rabuzarus [Wed, 22 Aug 2018 03:58:09 +0000 (05:58 +0200)]
fix redirection - don't dfrn auth when contact is still pending (#5648)

5 years agoYou can now filter the community page by account types (#5649)
Michael Vogel [Tue, 21 Aug 2018 15:39:49 +0000 (17:39 +0200)]
You can now filter the community page by account types (#5649)

* You can now filter the community page by account types

* Better use "null"

5 years agoMerge pull request #5646 from annando/notes
Tobias Diekershoff [Tue, 21 Aug 2018 15:36:15 +0000 (17:36 +0200)]
Merge pull request #5646 from annando/notes

The notes are now fetching their content from a central function

5 years agoRemoved notices that revealed themselfes over night ... (#5645)
Michael Vogel [Tue, 21 Aug 2018 15:35:09 +0000 (17:35 +0200)]
Removed notices that revealed themselfes over night ... (#5645)

* Removed notices that revealed themselfes over night ...

* And more notices removed that occured over night

* One more ..

* Some more notices of the day ...

5 years agoThe notes are now fetching their content from a central function
Michael [Tue, 21 Aug 2018 07:35:22 +0000 (07:35 +0000)]
The notes are now fetching their content from a central function

5 years agoMerge pull request #5644 from annando/notices
Tobias Diekershoff [Tue, 21 Aug 2018 04:06:52 +0000 (06:06 +0200)]
Merge pull request #5644 from annando/notices

And again ... notices

5 years agoAnd again ... notices
Michael [Mon, 20 Aug 2018 21:20:21 +0000 (21:20 +0000)]
And again ... notices

5 years agoThe content generation for the display page is now using a centralized function ...
Michael Vogel [Mon, 20 Aug 2018 20:32:55 +0000 (22:32 +0200)]
The content generation for the display page is now using a centralized function (#5642)

* The content generation for the display page is now using a centralized function

* Small correction to avoid notices

5 years agoAutomatic Installation fix (#5565)
Philipp [Mon, 20 Aug 2018 20:15:39 +0000 (22:15 +0200)]
Automatic Installation fix (#5565)

* Automatic Install Config Fix

* new unittest for AutomaticInstallation

* unittest for autoinstall
- removed password check

* removed bak-file

* automatic install
- always save environment variables
- just skip db environment if not `--savedb` is set

* fixed help (options)

* fixed help (options)

* Deleting Auto-Install tests until fix for proper DB restoring

5 years agoFix for double $$ (#5641)
Michael Vogel [Mon, 20 Aug 2018 05:54:26 +0000 (07:54 +0200)]
Fix for double $$ (#5641)

* Fix for double $$

* And a second $$

5 years agotypo in config/settings.ini.php (#5640)
Tobias Diekershoff [Mon, 20 Aug 2018 04:30:30 +0000 (06:30 +0200)]
typo in config/settings.ini.php (#5640)

5 years agoFrio: new photos upload template (#5637)
rabuzarus [Mon, 20 Aug 2018 04:29:50 +0000 (06:29 +0200)]
Frio: new photos upload template (#5637)

* frio - add missing page template to various photo pages (fix missing background)

* frio - rework photo upload album selection

* frio - rework photo upload button

* frio - fix photo upload button and acl

5 years agoImproved profile page, improved "limit" handling (#5639)
Michael Vogel [Mon, 20 Aug 2018 04:26:05 +0000 (06:26 +0200)]
Improved profile page, improved "limit" handling (#5639)

* Improved profile page, improved "limit" handling

* Update will now work again

* Update will work now

5 years agoMerge pull request #5634 from astifter/photo_view_page_icons
rabuzarus [Sun, 19 Aug 2018 21:04:28 +0000 (23:04 +0200)]
Merge pull request #5634 from astifter/photo_view_page_icons

[frio] Add icons on photo view page.

5 years agoAdd icons on photo view page.
Andreas Neustifter [Sat, 18 Aug 2018 21:47:04 +0000 (23:47 +0200)]
Add icons on photo view page.

This page still had textual links, change them to icons. Also remove missleading header.

5 years agoWe now use a central function to fetch the importer (#5636)
Michael Vogel [Sun, 19 Aug 2018 13:37:56 +0000 (15:37 +0200)]
We now use a central function to fetch the importer (#5636)

5 years agoSome easy to replace "q" calls have been replaced by "DBA" calls (#5632)
Michael Vogel [Sun, 19 Aug 2018 12:46:11 +0000 (14:46 +0200)]
Some easy to replace "q" calls have been replaced by "DBA" calls (#5632)

* Some easy to replace "q" calls have been replaced by "DBA" calls

* Simplified the GUID creation

* And one in the API ...

* And OStatus has got some DBA calls more

* Just some more replaced database calls

* The event query is now simplified

* Events are now shown again

* subthread is now using the DBA calls as well

* Some more replaced database calls

* And some more replaced database calls and prevented notices

* Better use gravity

* Some more replaced database stuff

* Some more replaced database calls in DFRN.php

* The gcontact class now has got the new DBA functions as well

* The Contact class is now changed to new database functions as well

* Small correction

* We can now delete without cascade

* One more functionality is safe for future changes

5 years agoAvoid blocks with invalid entries in superblock (#5635)
Michael Vogel [Sun, 19 Aug 2018 10:14:12 +0000 (12:14 +0200)]
Avoid blocks with invalid entries in superblock (#5635)

5 years ago[frio] Vertically align toolbar items. (#5633)
Andreas Neustifter [Sun, 19 Aug 2018 02:19:36 +0000 (04:19 +0200)]
[frio] Vertically align toolbar items. (#5633)

5 years agoplaceholder for a funny commit description for removing some more notices (#5631)
Michael Vogel [Sun, 19 Aug 2018 01:52:21 +0000 (03:52 +0200)]
placeholder for a funny commit description for removing some more notices (#5631)

5 years agoAnd still there are notices that have to be removed ... (#5629)
Michael Vogel [Sat, 18 Aug 2018 06:20:50 +0000 (08:20 +0200)]
And still there are notices that have to be removed ... (#5629)

* And still there are notices that have to be removed ...

* Notice removed in ACL part

* Fix missing fields for notifications

* Fixes issue 5630

5 years agoConfig Console Tests (#5621)
Philipp [Fri, 17 Aug 2018 19:41:46 +0000 (21:41 +0200)]
Config Console Tests (#5621)

* Config Console Tests
- `MultiUseConsole` is now a testable console
- `ConsoleTest` is a abstract TestClass for console tests
- `ConfigConsoleTest` tests the config console commands

* disable preserve global state because of smarty

* fixed requires & basepath für Console Test

5 years agoMerge pull request #5628 from tobiasd/20180817-cs
Michael Vogel [Fri, 17 Aug 2018 11:44:06 +0000 (13:44 +0200)]
Merge pull request #5628 from tobiasd/20180817-cs

CS translation update THX Aditoo

5 years agoCS translation update THX Aditoo
Tobias Diekershoff [Fri, 17 Aug 2018 08:28:57 +0000 (10:28 +0200)]
CS translation update THX Aditoo

5 years agoMerge pull request #5626 from annando/notices-oh-yeah
Tobias Diekershoff [Fri, 17 Aug 2018 07:33:02 +0000 (09:33 +0200)]
Merge pull request #5626 from annando/notices-oh-yeah

Removed notices, will it ever end?

5 years agoMerge pull request #5617 from MrPetovan/task/use-contact-network
Michael Vogel [Fri, 17 Aug 2018 03:31:06 +0000 (05:31 +0200)]
Merge pull request #5617 from MrPetovan/task/use-contact-network

Fix bug with ACL and contact network page

5 years agoRemoved notices, will it ever end?
Michael [Fri, 17 Aug 2018 03:19:42 +0000 (03:19 +0000)]
Removed notices, will it ever end?

5 years agoMerge pull request #5624 from fabrixxm/fix/api-seen
Michael Vogel [Thu, 16 Aug 2018 10:41:57 +0000 (12:41 +0200)]
Merge pull request #5624 from fabrixxm/fix/api-seen

api: fix `friendica/notification/seen` api call

5 years agoapi: fix `friendica/notification/seen` api call
fabrixxm [Thu, 16 Aug 2018 09:46:53 +0000 (11:46 +0200)]
api: fix `friendica/notification/seen` api call

Fix return item related to notification when notification is set as seen

5 years agoMerge pull request #5622 from annando/forum-storage
Tobias Diekershoff [Thu, 16 Aug 2018 07:28:57 +0000 (09:28 +0200)]
Merge pull request #5622 from annando/forum-storage

Fix for storing posts of private forums

5 years agoFix for storing posts of private forums
Michael [Wed, 15 Aug 2018 20:13:10 +0000 (20:13 +0000)]
Fix for storing posts of private forums

5 years agoMerge pull request #5620 from annando/fix-remove
Tobias Diekershoff [Wed, 15 Aug 2018 12:31:13 +0000 (14:31 +0200)]
Merge pull request #5620 from annando/fix-remove

Fix a fatal error when removing contacts

5 years agoRevert "Change contact post link to contact network page"
Hypolite Petovan [Wed, 15 Aug 2018 10:12:49 +0000 (12:12 +0200)]
Revert "Change contact post link to contact network page"

This reverts commit 4c32661022ae2cabb548333862e3974b75678980.

5 years agoFix a fatal error when removing contacts
Michael [Wed, 15 Aug 2018 09:27:25 +0000 (09:27 +0000)]
Fix a fatal error when removing contacts

5 years agoFixes the missing refresh after ignoring or unignoring a thread (#5614)
Michael Vogel [Wed, 15 Aug 2018 09:27:11 +0000 (11:27 +0200)]
Fixes the missing refresh after ignoring or unignoring a thread (#5614)

* Fixes the missing refresh after ignoring or unignoring a thread

* Use numeric values to make the JSON output happy

5 years agoMerge pull request #5619 from annando/dba-item
Tobias Diekershoff [Wed, 15 Aug 2018 05:23:02 +0000 (07:23 +0200)]
Merge pull request #5619 from annando/dba-item

Use the Item class instead of DBA calls when possible

5 years agoUse the Item class instead of DBA calls when possible
Michael [Wed, 15 Aug 2018 04:41:49 +0000 (04:41 +0000)]
Use the Item class instead of DBA calls when possible

5 years agofrio - add missing page template to various photo pages (fix missing background)...
rabuzarus [Tue, 14 Aug 2018 23:58:51 +0000 (01:58 +0200)]
frio - add missing page template to various photo pages (fix missing background) (#5613)

5 years agoChange contact post link to contact network page
Hypolite Petovan [Tue, 14 Aug 2018 22:43:45 +0000 (00:43 +0200)]
Change contact post link to contact network page

5 years agoFix bug with ACL and contact network page
Hypolite Petovan [Tue, 14 Aug 2018 22:43:27 +0000 (00:43 +0200)]
Fix bug with ACL and contact network page

- Require user array parameter in ACL::getFullSelectorHTML
- Change all wrong uses where user array was replaced by default
permissions array

5 years agoRemoved notices in the frio theme (#5610)
Michael Vogel [Tue, 14 Aug 2018 19:37:44 +0000 (21:37 +0200)]
Removed notices in the frio theme (#5610)

* Removed notices in the frio theme

* And fixed notices in the notifications

* And some more in frio

* Null is the default value

* And some small notice in the probing removed

* Added note

* Clarified note

* And a removed notice in OStatus

5 years agoMerge pull request #5612 from tobiasd/20180814-it
Michael Vogel [Tue, 14 Aug 2018 10:39:18 +0000 (12:39 +0200)]
Merge pull request #5612 from tobiasd/20180814-it

IT translations THX Fabio

5 years agoIT translations THX Fabio
Tobias Diekershoff [Tue, 14 Aug 2018 08:01:09 +0000 (10:01 +0200)]
IT translations THX Fabio

5 years agoMerge pull request #5611 from MrPetovan/task/defer-ping-acl
Michael Vogel [Tue, 14 Aug 2018 04:08:32 +0000 (06:08 +0200)]
Merge pull request #5611 from MrPetovan/task/defer-ping-acl

Call asynchronous JS after complete page load

5 years agoFix: Wrong array element / added logging for DFRN connects (#5609)
Michael Vogel [Tue, 14 Aug 2018 01:15:39 +0000 (03:15 +0200)]
Fix: Wrong array element / added logging for DFRN connects (#5609)

5 years agoCall asynchronous JS after complete page load
Hypolite Petovan [Tue, 14 Aug 2018 01:01:36 +0000 (03:01 +0200)]
Call asynchronous JS after complete page load

5 years agoMerge pull request #5607 from annando/remove-contact
Tobias Diekershoff [Mon, 13 Aug 2018 04:42:08 +0000 (06:42 +0200)]
Merge pull request #5607 from annando/remove-contact

Remove contacts in the background

5 years agoMerge pull request #5606 from annando/issue-5605
Tobias Diekershoff [Mon, 13 Aug 2018 04:38:36 +0000 (06:38 +0200)]
Merge pull request #5606 from annando/issue-5605

Issue-5605: Fixes notice

5 years agoRemove contacts in the background
Michael [Sun, 12 Aug 2018 17:15:47 +0000 (17:15 +0000)]
Remove contacts in the background

5 years agoIssue-5605: Fixes notice
Michael [Sun, 12 Aug 2018 08:00:37 +0000 (08:00 +0000)]
Issue-5605: Fixes notice

5 years agoMerge pull request #5604 from tobiasd/20180812-cs
Michael Vogel [Sun, 12 Aug 2018 06:27:39 +0000 (08:27 +0200)]
Merge pull request #5604 from tobiasd/20180812-cs

CS translation update THX Aditoo

5 years agoMerge pull request #5603 from annando/fix-notification
Tobias Diekershoff [Sun, 12 Aug 2018 05:55:35 +0000 (07:55 +0200)]
Merge pull request #5603 from annando/fix-notification

Fix: We now are notified again when a new post had been created

5 years agoCS translation update THX Aditoo
Tobias Diekershoff [Sun, 12 Aug 2018 05:05:05 +0000 (07:05 +0200)]
CS translation update THX Aditoo

5 years agoFix: We now are notified again when a new post had been created
Michael [Sun, 12 Aug 2018 04:34:56 +0000 (04:34 +0000)]
Fix: We now are notified again when a new post had been created

5 years agoAnd again, and again, and again, ... some more notices removed (#5601)
Michael Vogel [Sat, 11 Aug 2018 21:05:42 +0000 (23:05 +0200)]
And again, and again, and again, ... some more notices removed (#5601)

* And again, and again, and again, ... some more notices removed

* And some more notices ...

* Some more place

5 years agoStopped using deprecated constants NETWORK_* (#5537)
Roland Häder [Sat, 11 Aug 2018 20:40:44 +0000 (22:40 +0200)]
Stopped using deprecated constants NETWORK_* (#5537)

* Rewrite:
- stopped using deprecated NETWORK_* constants, now Protocol::* should be used
- still left them intact for slow/lazy developers ...

* Removed deprecated NETWORK_* constants as per code reviewer's request.

5 years agoMerge pull request #5602 from rabuzarus/20180811_-_frio_hover_effects
Michael Vogel [Sat, 11 Aug 2018 13:07:18 +0000 (15:07 +0200)]
Merge pull request #5602 from rabuzarus/20180811_-_frio_hover_effects

frio - improve some hover effects to action link/buttons

5 years agofrio - improve some hover effects to action link/buttons
rabuzarus [Sat, 11 Aug 2018 11:41:55 +0000 (13:41 +0200)]
frio - improve some hover effects to action link/buttons

5 years agoMerge pull request #5598 from annando/issue-3838
Tobias Diekershoff [Sat, 11 Aug 2018 05:48:33 +0000 (07:48 +0200)]
Merge pull request #5598 from annando/issue-3838

Added a note concerning the question how to fix issue 3838

5 years agoMerge pull request #5599 from annando/postupdate
Tobias Diekershoff [Sat, 11 Aug 2018 05:47:28 +0000 (07:47 +0200)]
Merge pull request #5599 from annando/postupdate

Console script to ensure that all post updates are finished

5 years agoMerge pull request #5597 from annando/even-more-notices
Tobias Diekershoff [Sat, 11 Aug 2018 05:44:30 +0000 (07:44 +0200)]
Merge pull request #5597 from annando/even-more-notices

Some more removed notices

5 years agoConsole script to ensure that all post updates are finished
Michael [Fri, 10 Aug 2018 21:20:25 +0000 (21:20 +0000)]
Console script to ensure that all post updates are finished

5 years agoAdded a note concerning the question how to fix issue 3838
Michael [Fri, 10 Aug 2018 20:28:41 +0000 (20:28 +0000)]
Added a note concerning the question how to fix issue 3838

5 years agoSome more removed notices
Michael [Fri, 10 Aug 2018 19:39:43 +0000 (19:39 +0000)]
Some more removed notices

5 years agoMerge pull request #5595 from annando/deprecated-networks
Tobias Diekershoff [Fri, 10 Aug 2018 05:07:40 +0000 (07:07 +0200)]
Merge pull request #5595 from annando/deprecated-networks

Hide deprecated networks

5 years agoMerge pull request #5594 from tobiasd/20180810-cs
Michael Vogel [Fri, 10 Aug 2018 05:01:20 +0000 (07:01 +0200)]
Merge pull request #5594 from tobiasd/20180810-cs

CS translation update THX Aditoo

5 years agoHide deprecated networks
Michael [Fri, 10 Aug 2018 04:59:26 +0000 (04:59 +0000)]
Hide deprecated networks

5 years agoCS translation update THX Aditoo
Tobias Diekershoff [Fri, 10 Aug 2018 04:57:34 +0000 (06:57 +0200)]
CS translation update THX Aditoo

5 years agoMerge pull request #5593 from annando/issue-4507
Tobias Diekershoff [Fri, 10 Aug 2018 04:54:53 +0000 (06:54 +0200)]
Merge pull request #5593 from annando/issue-4507

Issue 4507: Superblock does now work on comments as well

5 years agoIssue 4507: Superblock does now work on comments as well
Michael [Fri, 10 Aug 2018 04:27:52 +0000 (04:27 +0000)]
Issue 4507: Superblock does now work on comments as well

5 years agoupdate PL translations THX waldis (#5590)
Tobias Diekershoff [Thu, 9 Aug 2018 09:38:42 +0000 (11:38 +0200)]
update PL translations THX waldis (#5590)

* update PL translations THX waldis

* missing space

5 years agoMerge pull request #5592 from annando/avoid-probe
Tobias Diekershoff [Thu, 9 Aug 2018 07:16:11 +0000 (09:16 +0200)]
Merge pull request #5592 from annando/avoid-probe

Avoid probing for contacts if we don't want to update

5 years agoAvoid probing for contacts if we don't want to update
Michael [Thu, 9 Aug 2018 06:19:23 +0000 (06:19 +0000)]
Avoid probing for contacts if we don't want to update

5 years agoMerge pull request #5591 from annando/fix-collapse
Tobias Diekershoff [Thu, 9 Aug 2018 05:51:45 +0000 (07:51 +0200)]
Merge pull request #5591 from annando/fix-collapse

Fix: Prevent threads from being collapsed in network view

5 years agoFix: Prevent threads from being collapsed in network view
Michael [Thu, 9 Aug 2018 05:40:35 +0000 (05:40 +0000)]
Fix: Prevent threads from being collapsed in network view

5 years agoMerge pull request #5589 from annando/and-again
Tobias Diekershoff [Thu, 9 Aug 2018 04:28:23 +0000 (06:28 +0200)]
Merge pull request #5589 from annando/and-again

And again removed notices

5 years agoAnd again removed notices
Michael [Thu, 9 Aug 2018 04:20:31 +0000 (04:20 +0000)]
And again removed notices

5 years agoIssue 5158: Ignore all threads, even public ones (#5588)
Michael Vogel [Wed, 8 Aug 2018 20:32:11 +0000 (22:32 +0200)]
Issue 5158: Ignore all threads, even public ones (#5588)

* Issue 5158: Ignore all threads, even public ones

* Remove some notice

* Now it really should work

* Using "defaults"

5 years agodefault branch defined for codecov.io (#5586)
Philipp [Wed, 8 Aug 2018 19:34:47 +0000 (21:34 +0200)]
default branch defined for codecov.io (#5586)

* default branch defined for codecov.io

* improvements codecov
- disable comments
- enable checks

* removed mods from codecov statistic

5 years agoMerge pull request #5587 from annando/notice-tt
Tobias Diekershoff [Wed, 8 Aug 2018 14:43:05 +0000 (16:43 +0200)]
Merge pull request #5587 from annando/notice-tt

Notice in tt fixed that happens with chinese translations

5 years agoNotice in tt fixed that happens with chinese translations
Michael [Wed, 8 Aug 2018 12:17:49 +0000 (12:17 +0000)]
Notice in tt fixed that happens with chinese translations

5 years agoFrio - Bring back some padding space (#5585)
rabuzarus [Wed, 8 Aug 2018 10:58:58 +0000 (12:58 +0200)]
Frio - Bring back some padding space (#5585)

* frio - bring back the optical dividing space in the profile widget

* frio - bring back the optical dividing space between the profile picture and the separator line

5 years agoAdding Code-Coverage to the Friendica code-base (#5570)
Philipp [Wed, 8 Aug 2018 09:43:06 +0000 (11:43 +0200)]
Adding Code-Coverage to the Friendica code-base (#5570)

* friendica-5568 Adding Code-Coverage to the Friendica code-base

* Adding codecov.io-badge

* removing badge for now

5 years agoMerge pull request #5584 from tobiasd/20180808-lng
Michael Vogel [Wed, 8 Aug 2018 07:45:39 +0000 (09:45 +0200)]
Merge pull request #5584 from tobiasd/20180808-lng

update PL translations THX waldis

5 years agoupdate PL translations THX waldis
Tobias Diekershoff [Wed, 8 Aug 2018 06:40:21 +0000 (08:40 +0200)]
update PL translations THX waldis

5 years agoDE translation update
Tobias Diekershoff [Wed, 8 Aug 2018 06:40:16 +0000 (08:40 +0200)]
DE translation update

5 years agoFix for duplicated addon entries in the hook table (#5583)
Michael Vogel [Tue, 7 Aug 2018 21:03:38 +0000 (23:03 +0200)]
Fix for duplicated addon entries in the hook table (#5583)