]> git.mxchange.org Git - friendica.git/log
friendica.git
5 months agoOps, double/redundant code!
Roland Häder [Wed, 18 Oct 2023 17:48:27 +0000 (19:48 +0200)]
Ops, double/redundant code!

5 months agoNetwork, Channels and Community are children of timeline
Michael [Sat, 9 Sep 2023 09:14:36 +0000 (09:14 +0000)]
Network, Channels and Community are children of timeline

5 months agoLanguage specific median calculations / collection
Michael [Fri, 8 Sep 2023 05:06:27 +0000 (05:06 +0000)]
Language specific median calculations / collection

5 months agoFixes the score calculation concerning the relation-cid / cid interaction
Michael [Thu, 7 Sep 2023 12:34:46 +0000 (12:34 +0000)]
Fixes the score calculation concerning the relation-cid / cid interaction

5 months agoContinued:
Roland Häder [Sat, 12 Aug 2023 16:10:01 +0000 (18:10 +0200)]
Continued:
- adapted from upstream/develop

5 months agoContinued:
Roland Häder [Sun, 11 Jun 2023 23:16:51 +0000 (01:16 +0200)]
Continued:
- added `border-radius: 3px` for buttons

5 months agoContinued:
Roland Häder [Wed, 7 Jun 2023 14:44:18 +0000 (16:44 +0200)]
Continued:
- re-colored more

5 months agoContinued:
Roland Häder [Wed, 7 Jun 2023 00:49:00 +0000 (02:49 +0200)]
Continued:
- fixed some colors

5 months agoContinued:
Roland Häder [Wed, 7 Jun 2023 00:32:32 +0000 (02:32 +0200)]
Continued:
- also re-colored some parts into #StolzMonat

5 months agoContinued:
Roland Häder [Tue, 6 Jun 2023 23:25:43 +0000 (01:25 +0200)]
Continued:
- hover background color is black now

5 months agoAdded #Stolzmonat sub-theme for Germany
Roland Häder [Tue, 6 Jun 2023 23:13:14 +0000 (01:13 +0200)]
Added #Stolzmonat sub-theme for Germany

5 months agoContinued:
Roland Häder [Fri, 26 May 2023 15:49:51 +0000 (17:49 +0200)]
Continued:
- someone removed these checks, if the GServer's url is blocked, flooders like
  activitypub-troll.cf will then be able to flood your gserver table again

Signed-off-by: Roland Häder <roland@mxchange.org>
5 months agoContinued:
Roland Häder [Thu, 11 May 2023 23:37:40 +0000 (01:37 +0200)]
Continued:
- it is $this->config now (ops)

Signed-off-by: Roland Häder <roland@mxchange.org>
5 months agoOps, my bad
Roland Häder [Fri, 20 Jan 2023 00:07:05 +0000 (01:07 +0100)]
Ops, my bad

5 months agoOps, double-added.
Roland Häder [Tue, 25 Oct 2022 23:25:12 +0000 (01:25 +0200)]
Ops, double-added.

5 months agoAdded sample pre-commit hook to give you an idea how to start to include:
Roland Häder [Tue, 25 Oct 2022 20:55:15 +0000 (22:55 +0200)]
Added sample pre-commit hook to give you an idea how to start to include:
- lint check by `php -l $CHANGED_FILE`
- code-style check by php-cs --dry-run
- executing unit-tests (non-fatal)

Please feel free to modify it.

5 months agoDon't cherry-pick:
Roland Häder [Tue, 25 Oct 2022 17:34:12 +0000 (19:34 +0200)]
Don't cherry-pick:
- changing the word "blacklist" to "denylist" won't stop racism from happening,
  "someone" thinks it does and it is his right to believe it. But making it
  part of a software and naming-convention, that's ideologically driven, means
  it has nothing to do with reality.
- PS: My girlfriend comes from Zambia, so how can I be a racist?

5 months agoRewrite:
Roland Häder [Mon, 12 Sep 2022 21:12:11 +0000 (23:12 +0200)]
Rewrite:
- moved constants GRAVITY_* from boot.php to Friendica\Model\Item
- also rewrote some array initialization:

From:
````
<?php
$arr = [];
$arr['foo'] = "FOO";
````

To:
````
<?php
$arr['foo'] = "FOO";
````
- added a few type-hints

5 months agoChanges:
Roland Häder [Mon, 24 Oct 2022 00:42:19 +0000 (02:42 +0200)]
Changes:
- converted many `$array['foo'] = $foo;` to a single $array = ['foo' => $foo];
  statement
- changed more double-quotes to single
- added spaces for better readability
- added missing type-hints (both parameters and returned value) if possible
- added/removed empty lines for better readability
- added missing documentation

5 months agoReverted:
Roland Häder [Sun, 23 Oct 2022 11:58:33 +0000 (13:58 +0200)]
Reverted:
- $post -> $item

5 months agoChanges:
Roland Häder [Mon, 26 Sep 2022 08:20:56 +0000 (10:20 +0200)]
Changes:
- on local networks (LANs) you may not always have valid email addresses, e.g.
  mine here are structured as user@host.local which are not valid and won't
  pass validation check.
- for these rare cases you can bypass the regex check but be warned to NEVER
  do this on a public server!!!

5 months agoChanges:
Roland Häder [Thu, 15 Sep 2022 00:29:46 +0000 (02:29 +0200)]
Changes:
- Parameter `$nodeinfo_url` was no longer present, instead an instance of
  `ICanHandleHttpResponses` is now given (documentation updated)
- sorted a bit setting array values

5 months agoChanges:
Roland Häder [Wed, 14 Sep 2022 23:23:38 +0000 (01:23 +0200)]
Changes:
- added missing type-hints
- added missing documentation
- changed double-quotes to single
- Setters do ALWAYS return void

5 months agoChanged:
Roland Häder [Wed, 14 Sep 2022 22:39:39 +0000 (00:39 +0200)]
Changed:
- I was to lazy at that time to name my variable/parameter correctly!

5 months agoChanges:
Roland Häder [Tue, 13 Sep 2022 13:00:23 +0000 (15:00 +0200)]
Changes:
- added 3rd parameter to send Pragma/Cache-Control headers
- maybe there is a better one in some composer package?

5 months agoRewrite:
Roland Häder [Mon, 12 Sep 2022 21:12:11 +0000 (23:12 +0200)]
Rewrite:
- moved constants GRAVITY_* from boot.php to Friendica\Model\Item
- also rewrote some array initialization:

From:
````
<?php
$arr = [];
$arr['foo'] = "FOO";
````

To:
````
<?php
$arr['foo'] = "FOO";
````
- added a few type-hints

5 months agoDon't merge:
Roland Häder [Mon, 18 Jul 2022 23:45:44 +0000 (01:45 +0200)]
Don't merge:
- updated database structure files from reverted commit #BlacklistIsNoRacism

5 months agoChanged type from varbinary (Adminer and Co. do HEX() calls around those
Roland Häder [Tue, 1 Dec 2020 21:55:05 +0000 (22:55 +0100)]
Changed type from varbinary (Adminer and Co. do HEX() calls around those
columns) to varchar.

Signed-off-by: Roland Häder <roland@mxchange.org>
5 months agoRevert "Rename system config value to db_log_index_denylist"
Roland Häder [Mon, 31 Aug 2020 23:20:18 +0000 (01:20 +0200)]
Revert "Rename system config value to db_log_index_denylist"

This reverts commit 530ff5189853c22348f7c79c22b92075145f4c25.

5 months agoRevert "Rename contact table column to ffi_keyword_denylist"
Roland Häder [Mon, 31 Aug 2020 23:19:58 +0000 (01:19 +0200)]
Revert "Rename contact table column to ffi_keyword_denylist"

This reverts commit 34463f37e4a3226709853bd3e35e6c22da45502c.

Signed-off-by: Roland Häder <roland@mxchange.org>
5 months agoMerge pull request #13831 from friendica/warning
Hypolite Petovan [Mon, 15 Jan 2024 19:17:06 +0000 (14:17 -0500)]
Merge pull request #13831 from friendica/warning

Fix warning concerning a missing "created" field

5 months agoMerge pull request #13835 from annando/no-any-value
Hypolite Petovan [Mon, 15 Jan 2024 19:16:12 +0000 (14:16 -0500)]
Merge pull request #13835 from annando/no-any-value

"ANY_VALUE" is removed

5 months agoImprove query
Michael [Mon, 15 Jan 2024 17:00:32 +0000 (17:00 +0000)]
Improve query

5 months agoUpdated messages.po
Michael [Mon, 15 Jan 2024 16:53:24 +0000 (16:53 +0000)]
Updated messages.po

5 months ago"ANY_VALUE" is removed
Michael [Mon, 15 Jan 2024 16:45:24 +0000 (16:45 +0000)]
"ANY_VALUE" is removed

5 months agoMerge pull request #13824 from toddy15/php-cs-fixer
Hypolite Petovan [Mon, 15 Jan 2024 12:53:39 +0000 (07:53 -0500)]
Merge pull request #13824 from toddy15/php-cs-fixer

Update and install PHP-CS-Fixer

5 months agoMerge pull request #13832 from mexon/console-set-password
Hypolite Petovan [Mon, 15 Jan 2024 12:43:23 +0000 (07:43 -0500)]
Merge pull request #13832 from mexon/console-set-password

Update use of PasswordExposed API

5 months agoAdd license header to php-cs-fixer configuration file
Dr. Tobias Quathamer [Mon, 15 Jan 2024 12:31:29 +0000 (13:31 +0100)]
Add license header to php-cs-fixer configuration file

5 months agoRegenerate composer.lock
Dr. Tobias Quathamer [Mon, 15 Jan 2024 11:52:28 +0000 (12:52 +0100)]
Regenerate composer.lock

5 months agoDo not reformat addon directory
Dr. Tobias Quathamer [Thu, 11 Jan 2024 19:17:40 +0000 (20:17 +0100)]
Do not reformat addon directory

5 months agoUpdate .gitignore for new php-cs-fixer filename
Dr. Tobias Quathamer [Thu, 11 Jan 2024 19:16:20 +0000 (20:16 +0100)]
Update .gitignore for new php-cs-fixer filename

5 months agoRemove unneeded requirement of autoload file
Dr. Tobias Quathamer [Thu, 11 Jan 2024 19:12:44 +0000 (20:12 +0100)]
Remove unneeded requirement of autoload file

5 months agoCopy php-cs-fixer configuration file to currently expected name
Dr. Tobias Quathamer [Thu, 11 Jan 2024 19:12:01 +0000 (20:12 +0100)]
Copy php-cs-fixer configuration file to currently expected name

5 months agoAdd new script commands for php-cs-fixer
Dr. Tobias Quathamer [Thu, 11 Jan 2024 19:10:43 +0000 (20:10 +0100)]
Add new script commands for php-cs-fixer

5 months agoAdd friendsofphp/php-cs-fixer to development packages
Dr. Tobias Quathamer [Sun, 14 Jan 2024 13:47:19 +0000 (14:47 +0100)]
Add friendsofphp/php-cs-fixer to development packages

5 months agoMerge pull request #13833 from mexon/create-user-photo
Hypolite Petovan [Mon, 15 Jan 2024 06:09:01 +0000 (01:09 -0500)]
Merge pull request #13833 from mexon/create-user-photo

Allow setting user avatar in the console at creation

5 months agoMerge pull request #13827 from annando/ocr
Hypolite Petovan [Mon, 15 Jan 2024 06:06:50 +0000 (01:06 -0500)]
Merge pull request #13827 from annando/ocr

Use OCR to fetch text in images

5 months agoMove to addon
Michael [Sun, 14 Jan 2024 19:18:41 +0000 (19:18 +0000)]
Move to addon

5 months agoComposer
Michael [Sun, 14 Jan 2024 18:40:32 +0000 (18:40 +0000)]
Composer

5 months agoComposer
Michael [Sun, 14 Jan 2024 18:38:22 +0000 (18:38 +0000)]
Composer

5 months agoMerge remote-tracking branch 'upstream/develop' into ocr
Michael [Sun, 14 Jan 2024 18:33:02 +0000 (18:33 +0000)]
Merge remote-tracking branch 'upstream/develop' into ocr

5 months agoUpdate use of PasswordExposed API
Matthew Exon [Sun, 14 Jan 2024 15:20:11 +0000 (16:20 +0100)]
Update use of PasswordExposed API

5 months agoAllow setting user avatar in the console at creation
Matthew Exon [Sun, 14 Jan 2024 15:19:20 +0000 (16:19 +0100)]
Allow setting user avatar in the console at creation

5 months agoMerge remote-tracking branch 'upstream/develop' into warning
Michael [Sun, 14 Jan 2024 12:13:10 +0000 (12:13 +0000)]
Merge remote-tracking branch 'upstream/develop' into warning

5 months agoFix warning concerning a missing "created" field
Michael [Sun, 14 Jan 2024 11:58:06 +0000 (11:58 +0000)]
Fix warning concerning a missing "created" field

5 months agoIssue 13828: Use the alias as profile link if present (#13829)
Michael Vogel [Sun, 14 Jan 2024 09:08:00 +0000 (10:08 +0100)]
Issue 13828: Use the alias as profile link if present (#13829)

* Issue 13828: Use the alias as profile link if present

* Updated messages.po

5 months agoMerge pull request #13826 from MrPetovan/bug/deprecated
Michael Vogel [Sat, 13 Jan 2024 20:38:22 +0000 (21:38 +0100)]
Merge pull request #13826 from MrPetovan/bug/deprecated

[Composer] Bump guzzlehttp/guzzle to version 7 to suppress deprecation notices

5 months agoImproved config description
Michael [Sat, 13 Jan 2024 19:37:24 +0000 (19:37 +0000)]
Improved config description

5 months agoUse OCR to fetch text in images
Michael [Sat, 13 Jan 2024 19:30:20 +0000 (19:30 +0000)]
Use OCR to fetch text in images

5 months ago[Composer] Bump guzzlehttp/guzzle to version 7 to suppress deprecation notices
Hypolite Petovan [Fri, 12 Jan 2024 06:12:48 +0000 (01:12 -0500)]
[Composer] Bump guzzlehttp/guzzle to version 7 to suppress deprecation notices

- Bump divineomega/password_exposed to version 3 to remove dependency on Guzzle version 6
- Add new ICanHandleHttpResponses->getBodyString method to solve inheritance mismatch with GuzzleHttp\Psr7\ResponseInterface->getBody return type

5 months agoMerge pull request #13825 from toddy15/undefined-array-key
Hypolite Petovan [Fri, 12 Jan 2024 05:19:48 +0000 (00:19 -0500)]
Merge pull request #13825 from toddy15/undefined-array-key

Fix Undefined array key.

5 months agoFix Undefined array key.
Dr. Tobias Quathamer [Thu, 11 Jan 2024 22:38:29 +0000 (23:38 +0100)]
Fix Undefined array key.

- Address https://github.com/friendica/friendica/issues/13761#issuecomment-1878806230

5 months agoMerge pull request #13820 from haheute/remove-01
Michael Vogel [Wed, 10 Jan 2024 17:09:33 +0000 (18:09 +0100)]
Merge pull request #13820 from haheute/remove-01

remove a superfluous '01' that appeared next to checkboxes from templ…

5 months agoremove a superfluous '01' that appeared next to checkboxes from template file
Hannes Heute [Wed, 10 Jan 2024 16:41:53 +0000 (17:41 +0100)]
remove a superfluous '01' that appeared next to checkboxes from template file

5 months agoMerge pull request #13807 from toddy15/develop
Hypolite Petovan [Mon, 8 Jan 2024 15:12:07 +0000 (10:12 -0500)]
Merge pull request #13807 from toddy15/develop

Clean up smarty templates.

5 months agoUse double quotes where possible
Dr. Tobias Quathamer [Sun, 7 Jan 2024 20:48:22 +0000 (21:48 +0100)]
Use double quotes where possible

5 months agoClean up smarty templates.
Dr. Tobias Quathamer [Sat, 6 Jan 2024 19:00:33 +0000 (20:00 +0100)]
Clean up smarty templates.

This simplifies some logic in if-conditions, because
smarty just returns an empty string for undefined
variables.

Also, this commit removes unnecessary values from
HTML input attributes.

5 months agoMerge pull request #13808 from mexon/allow-ipv6-failure
Hypolite Petovan [Sun, 7 Jan 2024 02:03:52 +0000 (21:03 -0500)]
Merge pull request #13808 from mexon/allow-ipv6-failure

allow hosts to be validated even if ipv6 fails

5 months agoallow hosts to be validated even if ipv6 fails
Matthew Exon [Sat, 6 Jan 2024 22:56:11 +0000 (23:56 +0100)]
allow hosts to be validated even if ipv6 fails

5 months agoMerge pull request #13805 from toddy15/develop
Hypolite Petovan [Sat, 6 Jan 2024 16:13:54 +0000 (11:13 -0500)]
Merge pull request #13805 from toddy15/develop

Enable HTML attributes in all form fields.

5 months agoEnable HTML attributes in all form fields.
Dr. Tobias Quathamer [Sat, 6 Jan 2024 15:10:49 +0000 (16:10 +0100)]
Enable HTML attributes in all form fields.

Closes #13804

5 months agoMerge pull request #13800 from annando/channel-languages
Hypolite Petovan [Wed, 3 Jan 2024 23:48:51 +0000 (18:48 -0500)]
Merge pull request #13800 from annando/channel-languages

User defined channels can now have got individual language definitions

5 months agoFixed indentation
Michael [Wed, 3 Jan 2024 19:22:53 +0000 (19:22 +0000)]
Fixed indentation

5 months agoUpdated messages.po / database.sql
Michael [Wed, 3 Jan 2024 19:20:56 +0000 (19:20 +0000)]
Updated messages.po / database.sql

5 months agoMerge remote-tracking branch 'upstream/develop' into channel-languages
Michael [Wed, 3 Jan 2024 19:17:58 +0000 (19:17 +0000)]
Merge remote-tracking branch 'upstream/develop' into channel-languages

5 months agoUser defined channels can now have got individual language definitions
Michael [Wed, 3 Jan 2024 19:17:14 +0000 (19:17 +0000)]
User defined channels can now have got individual language definitions

5 months agoMerge pull request #13799 from foss-/patch-12
Hypolite Petovan [Wed, 3 Jan 2024 15:13:05 +0000 (10:13 -0500)]
Merge pull request #13799 from foss-/patch-12

Update README.md: fixing links for mobile screenshots

5 months agoUpdate README.md: fixing links for mobile screenshots
foss- [Wed, 3 Jan 2024 15:08:18 +0000 (16:08 +0100)]
Update README.md: fixing links for mobile screenshots

5 months agoMerge pull request #13798 from annando/unkmail2
Hypolite Petovan [Wed, 3 Jan 2024 15:02:31 +0000 (10:02 -0500)]
Merge pull request #13798 from annando/unkmail2

The "unkmail" functionality is removed

5 months agoMerge pull request #13785 from foss-/patch-11
Hypolite Petovan [Wed, 3 Jan 2024 14:59:01 +0000 (09:59 -0500)]
Merge pull request #13785 from foss-/patch-11

Update README.md

5 months agoFix formatting and wording in README
Hypolite Petovan [Wed, 3 Jan 2024 14:58:20 +0000 (09:58 -0500)]
Fix formatting and wording in README

5 months agoFix absolute image paths in README
Hypolite Petovan [Wed, 3 Jan 2024 14:56:11 +0000 (09:56 -0500)]
Fix absolute image paths in README

5 months agoUpdate README screenshot
Hypolite Petovan [Wed, 3 Jan 2024 14:55:51 +0000 (09:55 -0500)]
Update README screenshot

5 months agoMerge pull request #13797 from tobiasd/20240103-lang
Michael Vogel [Wed, 3 Jan 2024 10:44:49 +0000 (11:44 +0100)]
Merge pull request #13797 from tobiasd/20240103-lang

DE, FR, RO translation updates

5 months agoThe "unkmail" functionality is removed
Michael [Wed, 3 Jan 2024 10:23:11 +0000 (10:23 +0000)]
The "unkmail" functionality is removed

5 months agoDE, FR, RO translation updates
Tobias Diekershoff [Wed, 3 Jan 2024 09:39:42 +0000 (10:39 +0100)]
DE, FR, RO translation updates

5 months agoMerge pull request #13795 from annando/copyright
Hypolite Petovan [Wed, 3 Jan 2024 02:28:02 +0000 (21:28 -0500)]
Merge pull request #13795 from annando/copyright

Friendica copyright changed from 2023 to 2034

5 months agoMerge pull request #13794 from annando/simplified-group-display
Hypolite Petovan [Wed, 3 Jan 2024 02:27:31 +0000 (21:27 -0500)]
Merge pull request #13794 from annando/simplified-group-display

There is now a single way to display group postings

5 months agoMerge pull request #13796 from annando/discoverable
Hypolite Petovan [Wed, 3 Jan 2024 02:25:17 +0000 (21:25 -0500)]
Merge pull request #13796 from annando/discoverable

Don't set a profile to "discoverable" for restricted hosts

5 months agoDon't set a profile to "discoverable" for restricted hosts
Michael [Wed, 3 Jan 2024 00:55:21 +0000 (00:55 +0000)]
Don't set a profile to "discoverable" for restricted hosts

5 months agoUpdated messages.po
Michael [Tue, 2 Jan 2024 20:59:23 +0000 (20:59 +0000)]
Updated messages.po

5 months agoFriendica copyright changed from 2023 to 2034
Michael [Tue, 2 Jan 2024 20:57:26 +0000 (20:57 +0000)]
Friendica copyright changed from 2023 to 2034

5 months agoThere is now a single way to display group postings
Michael [Tue, 2 Jan 2024 20:45:02 +0000 (20:45 +0000)]
There is now a single way to display group postings

5 months agoImproved server detection / new servers added to federation statistics (#13793)
Michael Vogel [Tue, 2 Jan 2024 19:12:37 +0000 (20:12 +0100)]
Improved server detection / new servers added to federation statistics (#13793)

* Improved server detection / new servers added to federation statistics

* Fix wrong color code

5 months agoFixed detection for empty server data in apcontact (#13791)
Michael Vogel [Tue, 2 Jan 2024 13:56:08 +0000 (14:56 +0100)]
Fixed detection for empty server data in apcontact (#13791)

5 months agoadded jit and preload explanation in comment
hoergen [Mon, 1 Jan 2024 17:01:22 +0000 (18:01 +0100)]
added jit and preload explanation in comment

added information to identify which parameter causes which result

5 months agoUpdate README.md
foss- [Sun, 31 Dec 2023 13:51:14 +0000 (14:51 +0100)]
Update README.md

- updated main screenshot (changed post action icons, text no longer shown)
- fixed path for mobile screenshots
- removed vier screenshot (it as not seen any development for ages, is not the default and thus not representative or needed for a first impression)
- tweaked humane tech mention text

5 months agoUse the post-counts table to display content (#13781)
Michael Vogel [Sun, 31 Dec 2023 11:50:07 +0000 (12:50 +0100)]
Use the post-counts table to display content (#13781)

* Use the post-counts table to display content

* Use verb instead of vid

* Use verb

* Update counter on delete

5 months agoRemove 'blocklist' pconfig functionality (#13780)
Michael Vogel [Fri, 29 Dec 2023 23:51:41 +0000 (00:51 +0100)]
Remove 'blocklist' pconfig functionality (#13780)

* Cache blocklist

* Remove 'blocklist' pconfig functionality

* The blocklist variable isn't used anymore

5 months agoTransmitting events to Diaspora does work again (#13777)
Michael Vogel [Fri, 29 Dec 2023 23:43:14 +0000 (00:43 +0100)]
Transmitting events to Diaspora does work again (#13777)