diff --git a/.phpstan.neon b/.phpstan.neon
new file mode 100644
index 0000000000..2a89c7ae1a
--- /dev/null
+++ b/.phpstan.neon
@@ -0,0 +1,66 @@
+# SPDX-FileCopyrightText: 2010 - 2024 the Friendica project
+#
+# SPDX-License-Identifier: CC0-1.0
+
+parameters:
+ level: 2
+
+ paths:
+ - addon/
+ - src/
+
+ excludePaths:
+ analyse:
+ - addon/*/lang/*
+ - addon/*/vendor/*
+ - addon/convert/UnitConvertor.php
+ - addon/pumpio/oauth/*
+
+ scanDirectories:
+ - mod
+ - static
+ - vendor
+ - view
+
+ dynamicConstantNames:
+ - DB_UPDATE_VERSION
+
+ ignoreErrors:
+ -
+ # Ignore missing GdImage class in PHP <= 7.4
+ message: '(^Property .+ has unknown class GdImage as its type\.$)'
+ path: src
+
+ -
+ # Ignore missing IMAP\Connection class in PHP <= 8.0
+ message: '(^Method .+ has invalid return type IMAP\\Connection\.$)'
+ path: src
+
+ -
+ # Ignore missing IMAP\Connection class in PHP <= 8.0
+ message: '(^Parameter .+ has invalid type IMAP\\Connection\.$)'
+ path: src
+
+ -
+ # Ignore missing SMTP class in PHPMailer 5.2.21
+ # see https://github.com/PHPMailer/PHPMailer/blob/v5.2.21/class.smtp.php
+ message: '(^.+ an unknown class SMTP\.$)'
+ path: addon/mailstream/phpmailer
+
+ -
+ # Ignore missing SMTP class in PHPMailer 5.2.21
+ # see https://github.com/PHPMailer/PHPMailer/blob/v5.2.21/class.smtp.php
+ message: '(^Property .+ has unknown class SMTP as its type\.$)'
+ path: addon/mailstream/phpmailer
+
+ -
+ # Ignore missing SMTP class in PHPMailer 5.2.21
+ # see https://github.com/PHPMailer/PHPMailer/blob/v5.2.21/class.smtp.php
+ message: '(^Method .+ has invalid return type SMTP\.$)'
+ path: addon/mailstream/phpmailer
+
+ -
+ # Ignore missing SMTP class in PHPMailer 5.2.21
+ # see https://github.com/PHPMailer/PHPMailer/blob/v5.2.21/class.smtp.php
+ message: '(^Instantiated class SMTP not found\.$)'
+ path: addon/mailstream/phpmailer
diff --git a/.woodpecker/.continuous-deployment.yml b/.woodpecker/.continuous-deployment.yml
index eff4ae0cff..dde6af8ff3 100644
--- a/.woodpecker/.continuous-deployment.yml
+++ b/.woodpecker/.continuous-deployment.yml
@@ -45,6 +45,7 @@ steps:
composer_install:
image: friendicaci/php8.2:php8.2.16
commands:
+ - mkdir addon # create empty addon folder to appease composer
- export COMPOSER_HOME=.composer
- composer validate
- composer install --no-dev --optimize-autoloader
diff --git a/.woodpecker/.phpunit.yml b/.woodpecker/.phpunit.yml
index 63309d0928..9cb3b63ff9 100644
--- a/.woodpecker/.phpunit.yml
+++ b/.woodpecker/.phpunit.yml
@@ -38,7 +38,7 @@ steps:
composer_install:
image: friendicaci/php${PHP_MAJOR_VERSION}:php${PHP_VERSION}
commands:
- - mkdir addon # create empty addon folder to appease composer
+ - git clone -b develop --single-branch https://git.friendi.ca/friendica/friendica-addons.git addon
- export COMPOSER_HOME=.composer
- ./bin/composer.phar validate
- ./bin/composer.phar install --prefer-dist
@@ -55,6 +55,13 @@ steps:
- '.composer'
volumes:
- /tmp/drone-cache:/tmp/cache
+ phpstan:
+ image: friendicaci/php${PHP_MAJOR_VERSION}:php${PHP_VERSION}
+ when:
+ matrix:
+ PHP_MAJOR_VERSION: 8.2
+ commands:
+ - bin/composer.phar run phpstan;
test:
image: friendicaci/php${PHP_MAJOR_VERSION}:php${PHP_VERSION}
environment:
diff --git a/.woodpecker/.releaser.yml b/.woodpecker/.releaser.yml
index 0c7caac009..794ba5fbd3 100644
--- a/.woodpecker/.releaser.yml
+++ b/.woodpecker/.releaser.yml
@@ -43,6 +43,7 @@ steps:
composer_install:
image: friendicaci/php8.2:php8.2.16
commands:
+ - mkdir addon # create empty addon folder to appease composer
- export COMPOSER_HOME=.composer
- composer validate
- composer install --no-dev --optimize-autoloader
diff --git a/CHANGELOG b/CHANGELOG
index 49c15aa1e2..c6d00f5183 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,10 @@
+Version 2024.12 (unreleased)
+ Friendica Core
+
+ Friendica Addons
+
+ Closed Issues
+
Version 2024.09 (unreleased)
Friendica Core
diff --git a/LICENSES/AGPL-3.0-only.txt b/LICENSES/AGPL-3.0-only.txt
new file mode 100644
index 0000000000..be3f7b28e5
--- /dev/null
+++ b/LICENSES/AGPL-3.0-only.txt
@@ -0,0 +1,661 @@
+ GNU AFFERO GENERAL PUBLIC LICENSE
+ Version 3, 19 November 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU Affero General Public License is a free, copyleft license for
+software and other kinds of works, specifically designed to ensure
+cooperation with the community in the case of network server software.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+our General Public Licenses are intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ Developers that use our General Public Licenses protect your rights
+with two steps: (1) assert copyright on the software, and (2) offer
+you this License which gives you legal permission to copy, distribute
+and/or modify the software.
+
+ A secondary benefit of defending all users' freedom is that
+improvements made in alternate versions of the program, if they
+receive widespread use, become available for other developers to
+incorporate. Many developers of free software are heartened and
+encouraged by the resulting cooperation. However, in the case of
+software used on network servers, this result may fail to come about.
+The GNU General Public License permits making a modified version and
+letting the public access it on a server without ever releasing its
+source code to the public.
+
+ The GNU Affero General Public License is designed specifically to
+ensure that, in such cases, the modified source code becomes available
+to the community. It requires the operator of a network server to
+provide the source code of the modified version running there to the
+users of that server. Therefore, public use of a modified version, on
+a publicly accessible server, gives the public access to the source
+code of the modified version.
+
+ An older license, called the Affero General Public License and
+published by Affero, was designed to accomplish similar goals. This is
+a different license, not a version of the Affero GPL, but Affero has
+released a new version of the Affero GPL which permits relicensing under
+this license.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU Affero General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Remote Network Interaction; Use with the GNU General Public License.
+
+ Notwithstanding any other provision of this License, if you modify the
+Program, your modified version must prominently offer all users
+interacting with it remotely through a computer network (if your version
+supports such interaction) an opportunity to receive the Corresponding
+Source of your version by providing access to the Corresponding Source
+from a network server at no charge, through some standard or customary
+means of facilitating copying of software. This Corresponding Source
+shall include the Corresponding Source for any work covered by version 3
+of the GNU General Public License that is incorporated pursuant to the
+following paragraph.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the work with which it is combined will remain governed by version
+3 of the GNU General Public License.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU Affero General Public License from time to time. Such new versions
+will be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU Affero General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU Affero General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU Affero General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If your software can interact with users remotely through a computer
+network, you should also make sure that it provides a way for users to
+get its source. For example, if your program is a web application, its
+interface could display a "Source" link that leads users to an archive
+of the code. There are many ways you could offer source, and different
+solutions will be better for different programs; see section 13 for the
+specific requirements.
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU AGPL, see
+.
diff --git a/LICENSES/CC-PDDC.txt b/LICENSES/CC-PDDC.txt
new file mode 100644
index 0000000000..846c9c00b8
--- /dev/null
+++ b/LICENSES/CC-PDDC.txt
@@ -0,0 +1,9 @@
+Creative Commons Public Domain Dedication and Certification
+
+The person or persons who have associated work with this document (the "Dedicator" or "Certifier") hereby either (a) certifies that, to the best of his knowledge, the work of authorship identified is in the public domain of the country from which the work is published, or (b) hereby dedicates whatever copyright the dedicators holds in the work of authorship identified below (the "Work") to the public domain. A certifier, moreover, dedicates any copyright interest he may have in the associated work, and for these purposes, is described as a "dedicator" below.
+
+A certifier has taken reasonable steps to verify the copyright status of this work. Certifier recognizes that his good faith efforts may not shield him from liability if in fact the work certified is not in the public domain.
+
+Dedicator makes this dedication for the benefit of the public at large and to the detriment of the Dedicator's heirs and successors. Dedicator intends this dedication to be an overt act of relinquishment in perpetuity of all present and future rights under copyright law, whether vested or contingent, in the Work. Dedicator understands that such relinquishment of all rights includes the relinquishment of all rights to enforce (by lawsuit or otherwise) those copyrights in the Work.
+
+Dedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived.
diff --git a/REUSE.toml b/REUSE.toml
index 7f6336e640..b7e959535b 100644
--- a/REUSE.toml
+++ b/REUSE.toml
@@ -129,7 +129,10 @@ SPDX-FileCopyrightText = "2010-2024 The Friendica Project"
SPDX-License-Identifier = "CC0-1.0"
[[annotations]]
-path = "view/lang/**/strings.php"
+path = [
+ "view/lang/**/strings.php",
+ "view/lang/**/messages.po"
+ ]
SPDX-FileCopyrightText = "2010-2024 The Friendica Project"
SPDX-License-Identifier = "AGPL-3.0-or-later"
diff --git a/VERSION b/VERSION
index 17fb4fb56b..36a4cb0dc4 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2024.09-dev
+2024.12-dev
diff --git a/bin/jetstream.php b/bin/jetstream.php
new file mode 100755
index 0000000000..c4075ff652
--- /dev/null
+++ b/bin/jetstream.php
@@ -0,0 +1,184 @@
+#!/usr/bin/env php
+addRules(include __DIR__ . '/../static/dependencies.config.php');
+/** @var \Friendica\Core\Addon\Capability\ICanLoadAddons $addonLoader */
+$addonLoader = $dice->create(\Friendica\Core\Addon\Capability\ICanLoadAddons::class);
+$dice = $dice->addRules($addonLoader->getActiveAddonConfig('dependencies'));
+$dice = $dice->addRule(LoggerInterface::class, ['constructParams' => [Logger\Capability\LogChannel::DAEMON]]);
+
+DI::init($dice);
+\Friendica\Core\Logger\Handler\ErrorHandler::register($dice->create(\Psr\Log\LoggerInterface::class));
+Addon::loadAddons();
+Hook::loadHooks();
+DI::config()->reload();
+
+if (DI::mode()->isInstall()) {
+ die("Friendica isn't properly installed yet.\n");
+}
+
+if (empty(DI::config()->get('jetstream', 'pidfile'))) {
+ die(<< [
+ 'pidfile' => '/path/to/jetstream.pid',
+ ],
+TXT);
+}
+
+if (!Addon::isEnabled('bluesky')) {
+ die("Bluesky has to be enabled.\n");
+}
+
+$pidfile = DI::config()->get('jetstream', 'pidfile');
+
+if (in_array('start', (array)$_SERVER['argv'])) {
+ $mode = 'start';
+}
+
+if (in_array('stop', (array)$_SERVER['argv'])) {
+ $mode = 'stop';
+}
+
+if (in_array('status', (array)$_SERVER['argv'])) {
+ $mode = 'status';
+}
+
+if (!isset($mode)) {
+ die("Please use either 'start', 'stop' or 'status'.\n");
+}
+
+// Get options
+$shortopts = 'f';
+$longopts = ['foreground'];
+$options = getopt($shortopts, $longopts);
+
+$foreground = array_key_exists('f', $options) || array_key_exists('foreground', $options);
+
+if (empty($_SERVER['argv'][0])) {
+ die("Unexpected script behaviour. This message should never occur.\n");
+}
+
+$pid = null;
+
+if (is_readable($pidfile)) {
+ $pid = intval(file_get_contents($pidfile));
+}
+
+if (empty($pid) && in_array($mode, ['stop', 'status'])) {
+ die("Pidfile wasn't found. Is jetstream running?\n");
+}
+
+if ($mode == 'status') {
+ if (posix_kill($pid, 0)) {
+ die("Jetstream process $pid is running.\n");
+ }
+
+ unlink($pidfile);
+
+ die("Jetstream process $pid isn't running.\n");
+}
+
+if ($mode == 'stop') {
+ posix_kill($pid, SIGTERM);
+
+ unlink($pidfile);
+
+ Logger::notice('Jetstream process was killed', ['pid' => $pid]);
+
+ die("Jetstream process $pid was killed.\n");
+}
+
+if (!empty($pid) && posix_kill($pid, 0)) {
+ die("Jetstream process $pid is already running.\n");
+}
+
+Logger::notice('Starting jetstream daemon.', ['pid' => $pid]);
+
+if (!$foreground) {
+ echo "Starting jetstream daemon.\n";
+
+ DBA::disconnect();
+
+ // Fork a daemon process
+ $pid = pcntl_fork();
+ if ($pid == -1) {
+ echo "Daemon couldn't be forked.\n";
+ Logger::warning('Could not fork daemon');
+ exit(1);
+ } elseif ($pid) {
+ // The parent process continues here
+ if (!file_put_contents($pidfile, $pid)) {
+ echo "Pid file wasn't written.\n";
+ Logger::warning('Could not store pid file');
+ posix_kill($pid, SIGTERM);
+ exit(1);
+ }
+ echo 'Child process started with pid ' . $pid . ".\n";
+ Logger::notice('Child process started', ['pid' => $pid]);
+ exit(0);
+ }
+
+ // We now are in the child process
+ register_shutdown_function('shutdown');
+
+ // Make the child the main process, detach it from the terminal
+ if (posix_setsid() < 0) {
+ return;
+ }
+
+ // Closing all existing connections with the outside
+ fclose(STDIN);
+
+ // And now connect the database again
+ DBA::connect();
+}
+
+// Just to be sure that this script really runs endlessly
+set_time_limit(0);
+
+// Now running as a daemon.
+$jetstream = $dice->create(Jetstream::class);
+$jetstream->listen();
+
+function shutdown()
+{
+ posix_kill(posix_getpid(), SIGTERM);
+ posix_kill(posix_getpid(), SIGHUP);
+}
diff --git a/bin/worker.php b/bin/worker.php
index 841ac3574a..29fd5a4fb7 100755
--- a/bin/worker.php
+++ b/bin/worker.php
@@ -15,7 +15,6 @@ if (php_sapi_name() !== 'cli') {
}
use Dice\Dice;
-use Friendica\App;
use Friendica\App\Mode;
use Friendica\Core\Logger\Capability\LogChannel;
use Friendica\Core\Update;
@@ -57,7 +56,7 @@ DI::mode()->setExecutor(Mode::WORKER);
Update::check(DI::basePath(), true);
// Quit when in maintenance
-if (!DI::mode()->has(App\Mode::MAINTENANCEDISABLED)) {
+if (!DI::mode()->has(Mode::MAINTENANCEDISABLED)) {
return;
}
diff --git a/composer.json b/composer.json
index 21df229eaa..23dc4d4992 100644
--- a/composer.json
+++ b/composer.json
@@ -74,6 +74,7 @@
"psr/log": "^1.1",
"seld/cli-prompt": "^1.0",
"smarty/smarty": "^4",
+ "textalk/websocket": "^1.6",
"ua-parser/uap-php": "^3.9",
"xemlock/htmlpurifier-html5": "^0.1.11"
},
@@ -148,15 +149,20 @@
]
},
"require-dev": {
- "mockery/mockery": "^1.3",
+ "dms/phpunit-arraysubset-asserts": "^0.3.1",
"mikey179/vfsstream": "^1.6",
- "phpunit/phpunit": "^9",
- "dms/phpunit-arraysubset-asserts": "^0.3.1"
+ "mockery/mockery": "^1.3",
+ "php-mock/php-mock-phpunit": "^2.10",
+ "phpstan/phpstan": "^2.0",
+ "phpunit/phpunit": "^9"
},
"scripts": {
"test": "phpunit",
+ "test:unit": "phpunit -c tests/phpunit.xml --testsuite unit",
+ "phpstan": "phpstan analyze --memory-limit 1024M --configuration .phpstan.neon",
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './view/asset/*' -print0 | xargs -0 -n1 php -l",
"docker:translate": "docker run --rm -v $PWD:/data -w /data friendicaci/transifex bin/run_xgettext.sh",
+ "lang:recreate": "bin/run_xgettext.sh",
"cs:install": "@composer install --working-dir=bin/dev/php-cs-fixer",
"cs:check": [
"@cs:install",
diff --git a/composer.lock b/composer.lock
index 53a632fcc5..11cc407661 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "4385276f5e7c27e2ceb7b16531dbc33a",
+ "content-hash": "64436f375561718bb857e3e1b0e503c9",
"packages": [
{
"name": "asika/simple-console",
@@ -1365,6 +1365,24 @@
"html",
"markdown"
],
+ "funding": [
+ {
+ "url": "https://www.colinodell.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.paypal.me/colinpodell/10.00",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/colinodell",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/colinodell",
+ "type": "patreon"
+ }
+ ],
"time": "2020-07-01T00:34:03+00:00"
},
{
@@ -2796,6 +2814,104 @@
],
"time": "2024-03-03T02:14:58+00:00"
},
+ {
+ "name": "phrity/net-uri",
+ "version": "1.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sirn-se/phrity-net-uri.git",
+ "reference": "3f458e0c4d1ddc0e218d7a5b9420127c63925f43"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sirn-se/phrity-net-uri/zipball/3f458e0c4d1ddc0e218d7a5b9420127c63925f43",
+ "reference": "3f458e0c4d1ddc0e218d7a5b9420127c63925f43",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4 | ^8.0",
+ "psr/http-factory": "^1.0",
+ "psr/http-message": "^1.0 | ^2.0"
+ },
+ "require-dev": {
+ "php-coveralls/php-coveralls": "^2.0",
+ "phpunit/phpunit": "^9.0 | ^10.0",
+ "squizlabs/php_codesniffer": "^3.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Phrity\\Net\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Sören Jensen",
+ "email": "sirn@sirn.se",
+ "homepage": "https://phrity.sirn.se"
+ }
+ ],
+ "description": "PSR-7 Uri and PSR-17 UriFactory implementation",
+ "homepage": "https://phrity.sirn.se/net-uri",
+ "keywords": [
+ "psr-17",
+ "psr-7",
+ "uri",
+ "uri factory"
+ ],
+ "time": "2023-08-21T10:33:06+00:00"
+ },
+ {
+ "name": "phrity/util-errorhandler",
+ "version": "1.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sirn-se/phrity-util-errorhandler.git",
+ "reference": "483228156e06673963902b1cc1e6bd9541ab4d5e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sirn-se/phrity-util-errorhandler/zipball/483228156e06673963902b1cc1e6bd9541ab4d5e",
+ "reference": "483228156e06673963902b1cc1e6bd9541ab4d5e",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4 | ^8.0"
+ },
+ "require-dev": {
+ "php-coveralls/php-coveralls": "^2.0",
+ "phpunit/phpunit": "^9.0 | ^10.0 | ^11.0",
+ "squizlabs/php_codesniffer": "^3.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Phrity\\Util\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Sören Jensen",
+ "email": "sirn@sirn.se",
+ "homepage": "https://phrity.sirn.se"
+ }
+ ],
+ "description": "Inline error handler; catch and resolve errors for code block.",
+ "homepage": "https://phrity.sirn.se/util-errorhandler",
+ "keywords": [
+ "error",
+ "warning"
+ ],
+ "time": "2024-09-12T06:49:16+00:00"
+ },
{
"name": "pragmarx/google2fa",
"version": "v5.0.0",
@@ -3658,6 +3774,57 @@
],
"time": "2020-10-23T14:02:19+00:00"
},
+ {
+ "name": "textalk/websocket",
+ "version": "1.6.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Textalk/websocket-php.git",
+ "reference": "67de79745b1a357caf812bfc44e0abf481cee012"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Textalk/websocket-php/zipball/67de79745b1a357caf812bfc44e0abf481cee012",
+ "reference": "67de79745b1a357caf812bfc44e0abf481cee012",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4 | ^8.0",
+ "phrity/net-uri": "^1.0",
+ "phrity/util-errorhandler": "^1.0",
+ "psr/http-message": "^1.0",
+ "psr/log": "^1.0 | ^2.0 | ^3.0"
+ },
+ "require-dev": {
+ "php-coveralls/php-coveralls": "^2.0",
+ "phpunit/phpunit": "^9.0",
+ "squizlabs/php_codesniffer": "^3.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "WebSocket\\": "lib"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "ISC"
+ ],
+ "authors": [
+ {
+ "name": "Fredrik Liljegren"
+ },
+ {
+ "name": "Sören Jensen"
+ }
+ ],
+ "description": "WebSocket client and server",
+ "support": {
+ "issues": "https://github.com/Textalk/websocket-php/issues",
+ "source": "https://github.com/Textalk/websocket-php/tree/1.6.3"
+ },
+ "time": "2022-11-07T18:59:33+00:00"
+ },
{
"name": "ua-parser/uap-php",
"version": "v3.9.14",
@@ -4625,6 +4792,271 @@
"description": "Library for handling version information and constraints",
"time": "2022-02-21T01:04:05+00:00"
},
+ {
+ "name": "php-mock/php-mock",
+ "version": "2.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-mock/php-mock.git",
+ "reference": "fff1a621ebe54100fa3bd852e7be57773a0c0127"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-mock/php-mock/zipball/fff1a621ebe54100fa3bd852e7be57773a0c0127",
+ "reference": "fff1a621ebe54100fa3bd852e7be57773a0c0127",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.6 || ^7.0 || ^8.0",
+ "phpunit/php-text-template": "^1 || ^2 || ^3 || ^4"
+ },
+ "replace": {
+ "malkusch/php-mock": "*"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
+ "squizlabs/php_codesniffer": "^3.8"
+ },
+ "suggest": {
+ "php-mock/php-mock-phpunit": "Allows integration into PHPUnit testcase with the trait PHPMock."
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "autoload.php"
+ ],
+ "psr-4": {
+ "phpmock\\": [
+ "classes/",
+ "tests/"
+ ]
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "WTFPL"
+ ],
+ "authors": [
+ {
+ "name": "Markus Malkusch",
+ "email": "markus@malkusch.de",
+ "homepage": "http://markus.malkusch.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "PHP-Mock can mock built-in PHP functions (e.g. time()). PHP-Mock relies on PHP's namespace fallback policy. No further extension is needed.",
+ "homepage": "https://github.com/php-mock/php-mock",
+ "keywords": [
+ "BDD",
+ "TDD",
+ "function",
+ "mock",
+ "stub",
+ "test",
+ "test double",
+ "testing"
+ ],
+ "support": {
+ "issues": "https://github.com/php-mock/php-mock/issues",
+ "source": "https://github.com/php-mock/php-mock/tree/2.5.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/michalbundyra",
+ "type": "github"
+ }
+ ],
+ "time": "2024-02-10T21:07:01+00:00"
+ },
+ {
+ "name": "php-mock/php-mock-integration",
+ "version": "2.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-mock/php-mock-integration.git",
+ "reference": "ec6a00a8129d50ed0f07907c91e3274ca4ade877"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-mock/php-mock-integration/zipball/ec6a00a8129d50ed0f07907c91e3274ca4ade877",
+ "reference": "ec6a00a8129d50ed0f07907c91e3274ca4ade877",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.6",
+ "php-mock/php-mock": "^2.5",
+ "phpunit/php-text-template": "^1 || ^2 || ^3 || ^4"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^5.7.27 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "phpmock\\integration\\": "classes/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "WTFPL"
+ ],
+ "authors": [
+ {
+ "name": "Markus Malkusch",
+ "email": "markus@malkusch.de",
+ "homepage": "http://markus.malkusch.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "Integration package for PHP-Mock",
+ "homepage": "https://github.com/php-mock/php-mock-integration",
+ "keywords": [
+ "BDD",
+ "TDD",
+ "function",
+ "mock",
+ "stub",
+ "test",
+ "test double"
+ ],
+ "support": {
+ "issues": "https://github.com/php-mock/php-mock-integration/issues",
+ "source": "https://github.com/php-mock/php-mock-integration/tree/2.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/michalbundyra",
+ "type": "github"
+ }
+ ],
+ "time": "2024-02-10T21:37:25+00:00"
+ },
+ {
+ "name": "php-mock/php-mock-phpunit",
+ "version": "2.10.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-mock/php-mock-phpunit.git",
+ "reference": "e1f7e795990b00937376e345883ea68ca3bda7e0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-mock/php-mock-phpunit/zipball/e1f7e795990b00937376e345883ea68ca3bda7e0",
+ "reference": "e1f7e795990b00937376e345883ea68ca3bda7e0",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7",
+ "php-mock/php-mock-integration": "^2.3",
+ "phpunit/phpunit": "^6 || ^7 || ^8 || ^9 || ^10.0.17 || ^11"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.3.6"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "autoload.php"
+ ],
+ "psr-4": {
+ "phpmock\\phpunit\\": "classes/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "WTFPL"
+ ],
+ "authors": [
+ {
+ "name": "Markus Malkusch",
+ "email": "markus@malkusch.de",
+ "homepage": "http://markus.malkusch.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "Mock built-in PHP functions (e.g. time()) with PHPUnit. This package relies on PHP's namespace fallback policy. No further extension is needed.",
+ "homepage": "https://github.com/php-mock/php-mock-phpunit",
+ "keywords": [
+ "BDD",
+ "TDD",
+ "function",
+ "mock",
+ "phpunit",
+ "stub",
+ "test",
+ "test double",
+ "testing"
+ ],
+ "support": {
+ "issues": "https://github.com/php-mock/php-mock-phpunit/issues",
+ "source": "https://github.com/php-mock/php-mock-phpunit/tree/2.10.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/michalbundyra",
+ "type": "github"
+ }
+ ],
+ "time": "2024-02-11T07:24:16+00:00"
+ },
+ {
+ "name": "phpstan/phpstan",
+ "version": "2.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpstan/phpstan.git",
+ "reference": "ab4e9b4415a5fc9e4d27f7fe16c8bc9d067dcd6d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpstan/phpstan/zipball/ab4e9b4415a5fc9e4d27f7fe16c8bc9d067dcd6d",
+ "reference": "ab4e9b4415a5fc9e4d27f7fe16c8bc9d067dcd6d",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4|^8.0"
+ },
+ "conflict": {
+ "phpstan/phpstan-shim": "*"
+ },
+ "bin": [
+ "phpstan",
+ "phpstan.phar"
+ ],
+ "type": "library",
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "PHPStan - PHP Static Analysis Tool",
+ "keywords": [
+ "dev",
+ "static analysis"
+ ],
+ "support": {
+ "docs": "https://phpstan.org/user-guide/getting-started",
+ "forum": "https://github.com/phpstan/phpstan/discussions",
+ "issues": "https://github.com/phpstan/phpstan/issues",
+ "security": "https://github.com/phpstan/phpstan/security/policy",
+ "source": "https://github.com/phpstan/phpstan-src"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/ondrejmirtes",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/phpstan",
+ "type": "github"
+ }
+ ],
+ "time": "2024-11-11T15:43:04+00:00"
+ },
{
"name": "phpunit/php-code-coverage",
"version": "9.2.31",
diff --git a/database.sql b/database.sql
index dae766cfea..d7af7f95a1 100644
--- a/database.sql
+++ b/database.sql
@@ -1,6 +1,6 @@
-- ------------------------------------------
--- Friendica 2024.09-dev (Yellow Archangel)
--- DB_UPDATE_VERSION 1573
+-- Friendica 2024.12-dev (Yellow Archangel)
+-- DB_UPDATE_VERSION 1576
-- ------------------------------------------
@@ -2110,6 +2110,7 @@ CREATE VIEW `post-engagement-user-view` AS SELECT
`post-thread-user`.`received` AS `received`,
`post-thread-user`.`created` AS `created`,
`post-thread-user`.`network` AS `network`,
+ `post-user`.`protocol` AS `protocol`,
`post-engagement`.`language` AS `restricted`,
0 AS `comments`,
0 AS `activities`
@@ -2123,7 +2124,7 @@ CREATE VIEW `post-engagement-user-view` AS SELECT
AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`)
AND (`post-thread-user`.`hidden` IS NULL OR NOT `post-thread-user`.`hidden`)
AND NOT `authorcontact`.`blocked` AND NOT `ownercontact`.`blocked`
- AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`authorcontact`.`id`, `ownercontact`.`id`) AND (`blocked` OR `ignored`))
+ AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`authorcontact`.`id`, `ownercontact`.`id`) AND (`blocked` OR `ignored` OR `is-blocked`))
AND NOT EXISTS(SELECT `gsid` FROM `user-gserver` WHERE `uid` = `post-thread-user`.`uid` AND `gsid` IN (`authorcontact`.`gsid`, `ownercontact`.`gsid`) AND `ignored`);
--
@@ -2163,7 +2164,10 @@ CREATE VIEW `post-timeline-view` AS SELECT
`owner`.`gsid` AS `owner-gsid`,
`post-user`.`causer-id` AS `causer-id`,
`causer`.`blocked` AS `causer-blocked`,
- `causer`.`gsid` AS `causer-gsid`
+ `causer`.`gsid` AS `causer-gsid`,
+ `post-thread-user`.`network` AS `parent-network`,
+ `post-thread-user`.`owner-id` AS `parent-owner-id`,
+ `post-thread-user`.`author-id` AS `parent-author-id`
FROM `post-user`
LEFT JOIN `post-thread-user` ON `post-thread-user`.`uri-id` = `post-user`.`parent-uri-id` AND `post-thread-user`.`uid` = `post-user`.`uid`
STRAIGHT_JOIN `contact` ON `contact`.`id` = `post-user`.`contact-id`
@@ -2233,6 +2237,7 @@ CREATE VIEW `post-searchindex-user-view` AS SELECT
`post-thread-user`.`received` AS `received`,
`post-thread-user`.`created` AS `created`,
`post-thread-user`.`network` AS `network`,
+ `post-user`.`protocol` AS `protocol`,
`post-searchindex`.`language` AS `restricted`,
0 AS `comments`,
0 AS `activities`
@@ -2246,7 +2251,7 @@ CREATE VIEW `post-searchindex-user-view` AS SELECT
AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`)
AND (`post-thread-user`.`hidden` IS NULL OR NOT `post-thread-user`.`hidden`)
AND NOT `authorcontact`.`blocked` AND NOT `ownercontact`.`blocked`
- AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`authorcontact`.`id`, `ownercontact`.`id`) AND (`blocked` OR `ignored`))
+ AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`authorcontact`.`id`, `ownercontact`.`id`) AND (`blocked` OR `ignored` OR `is-blocked`))
AND NOT EXISTS(SELECT `gsid` FROM `user-gserver` WHERE `uid` = `post-thread-user`.`uid` AND `gsid` IN (`authorcontact`.`gsid`, `ownercontact`.`gsid`) AND `ignored`);
--
@@ -2414,6 +2419,7 @@ CREATE VIEW `post-origin-view` AS SELECT
`diaspora-interaction`.`interaction` AS `signed_text`,
`parent-item-uri`.`guid` AS `parent-guid`,
`post-thread-user`.`network` AS `parent-network`,
+ `post-thread-user`.`owner-id` AS `parent-owner-id`,
`post-thread-user`.`author-id` AS `parent-author-id`,
`parent-post-author`.`url` AS `parent-author-link`,
`parent-post-author`.`name` AS `parent-author-name`,
@@ -2490,6 +2496,7 @@ CREATE VIEW `post-thread-origin-view` AS SELECT
`post-user`.`global` AS `global`,
EXISTS(SELECT `type` FROM `post-collection` WHERE `type` = 0 AND `uri-id` = `post-thread-user`.`uri-id`) AS `featured`,
`post-thread-user`.`network` AS `network`,
+ `post-user`.`protocol` AS `protocol`,
`post-origin`.`vid` AS `vid`,
`post-thread-user`.`psid` AS `psid`,
IF (`post-origin`.`vid` IS NULL, '', `verb`.`name`) AS `verb`,
@@ -2607,6 +2614,7 @@ CREATE VIEW `post-thread-origin-view` AS SELECT
`diaspora-interaction`.`interaction` AS `signed_text`,
`parent-item-uri`.`guid` AS `parent-guid`,
`post-thread-user`.`network` AS `parent-network`,
+ `post-thread-user`.`owner-id` AS `parent-owner-id`,
`post-thread-user`.`author-id` AS `parent-author-id`,
`author`.`url` AS `parent-author-link`,
`author`.`name` AS `parent-author-name`,
@@ -2800,6 +2808,7 @@ CREATE VIEW `post-user-view` AS SELECT
`diaspora-interaction`.`interaction` AS `signed_text`,
`parent-item-uri`.`guid` AS `parent-guid`,
`post-thread-user`.`network` AS `parent-network`,
+ `post-thread-user`.`owner-id` AS `parent-owner-id`,
`post-thread-user`.`author-id` AS `parent-author-id`,
`parent-post-author`.`url` AS `parent-author-link`,
`parent-post-author`.`name` AS `parent-author-name`,
@@ -2875,6 +2884,7 @@ CREATE VIEW `post-thread-user-view` AS SELECT
`post-user`.`global` AS `global`,
EXISTS(SELECT `type` FROM `post-collection` WHERE `type` = 0 AND `uri-id` = `post-thread-user`.`uri-id`) AS `featured`,
`post-thread-user`.`network` AS `network`,
+ `post-user`.`protocol` AS `protocol`,
`post-user`.`vid` AS `vid`,
`post-thread-user`.`psid` AS `psid`,
IF (`post-user`.`vid` IS NULL, '', `verb`.`name`) AS `verb`,
@@ -2992,6 +3002,7 @@ CREATE VIEW `post-thread-user-view` AS SELECT
`diaspora-interaction`.`interaction` AS `signed_text`,
`parent-item-uri`.`guid` AS `parent-guid`,
`post-thread-user`.`network` AS `parent-network`,
+ `post-thread-user`.`owner-id` AS `parent-owner-id`,
`post-thread-user`.`author-id` AS `parent-author-id`,
`author`.`url` AS `parent-author-link`,
`author`.`name` AS `parent-author-name`,
@@ -3054,6 +3065,7 @@ CREATE VIEW `post-view` AS SELECT
`post`.`global` AS `global`,
EXISTS(SELECT `type` FROM `post-collection` WHERE `type` = 0 AND `uri-id` = `post`.`uri-id`) AS `featured`,
`post`.`network` AS `network`,
+ 255 AS `protocol`,
`post`.`vid` AS `vid`,
IF (`post`.`vid` IS NULL, '', `verb`.`name`) AS `verb`,
`post-content`.`title` AS `title`,
@@ -3148,6 +3160,7 @@ CREATE VIEW `post-view` AS SELECT
`diaspora-interaction`.`interaction` AS `signed_text`,
`parent-item-uri`.`guid` AS `parent-guid`,
`post-thread`.`network` AS `parent-network`,
+ `post-thread`.`owner-id` AS `parent-owner-id`,
`post-thread`.`author-id` AS `parent-author-id`,
`parent-post-author`.`url` AS `parent-author-link`,
`parent-post-author`.`name` AS `parent-author-name`,
@@ -3207,6 +3220,7 @@ CREATE VIEW `post-thread-view` AS SELECT
`post`.`global` AS `global`,
EXISTS(SELECT `type` FROM `post-collection` WHERE `type` = 0 AND `uri-id` = `post-thread`.`uri-id`) AS `featured`,
`post-thread`.`network` AS `network`,
+ 255 AS `protocol`,
`post`.`vid` AS `vid`,
IF (`post`.`vid` IS NULL, '', `verb`.`name`) AS `verb`,
`post-content`.`title` AS `title`,
@@ -3303,6 +3317,7 @@ CREATE VIEW `post-thread-view` AS SELECT
`diaspora-interaction`.`interaction` AS `signed_text`,
`parent-item-uri`.`guid` AS `parent-guid`,
`post-thread`.`network` AS `parent-network`,
+ `post-thread`.`owner-id` AS `parent-owner-id`,
`post-thread`.`author-id` AS `parent-author-id`,
`author`.`url` AS `parent-author-link`,
`author`.`name` AS `parent-author-name`,
@@ -3409,6 +3424,7 @@ CREATE VIEW `network-thread-view` AS SELECT
`post-thread-user`.`starred` AS `starred`,
`post-thread-user`.`mention` AS `mention`,
`post-thread-user`.`network` AS `network`,
+ `post-user`.`protocol` AS `protocol`,
`post-thread-user`.`contact-id` AS `contact-id`,
`ownercontact`.`contact-type` AS `contact-type`
FROM `post-thread-user`
@@ -3420,7 +3436,7 @@ CREATE VIEW `network-thread-view` AS SELECT
AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`)
AND (`post-thread-user`.`hidden` IS NULL OR NOT `post-thread-user`.`hidden`)
AND NOT `authorcontact`.`blocked` AND NOT `ownercontact`.`blocked`
- AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`post-thread-user`.`author-id`, `post-thread-user`.`owner-id`, `post-thread-user`.`causer-id`) AND (`blocked` OR `ignored` OR `channel-only`))
+ AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`post-thread-user`.`author-id`, `post-thread-user`.`owner-id`, `post-thread-user`.`causer-id`) AND (`blocked` OR `ignored` OR `is-blocked` OR `channel-only`))
AND NOT EXISTS(SELECT `gsid` FROM `user-gserver` WHERE `uid` = `post-thread-user`.`uid` AND `gsid` IN (`authorcontact`.`gsid`, `ownercontact`.`gsid`) AND `ignored`);
--
@@ -3437,6 +3453,7 @@ CREATE VIEW `network-thread-circle-view` AS SELECT
`post-thread-user`.`starred` AS `starred`,
`post-thread-user`.`mention` AS `mention`,
`post-thread-user`.`network` AS `network`,
+ `post-user`.`protocol` AS `protocol`,
`post-thread-user`.`contact-id` AS `contact-id`,
`ownercontact`.`contact-type` AS `contact-type`
FROM `post-thread-user`
@@ -3448,7 +3465,7 @@ CREATE VIEW `network-thread-circle-view` AS SELECT
AND (NOT `contact`.`readonly` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`)
AND (`post-thread-user`.`hidden` IS NULL OR NOT `post-thread-user`.`hidden`)
AND NOT `authorcontact`.`blocked` AND NOT `ownercontact`.`blocked`
- AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`post-thread-user`.`author-id`, `post-thread-user`.`owner-id`, `post-thread-user`.`causer-id`) AND (`blocked` OR `ignored`))
+ AND NOT EXISTS(SELECT `cid` FROM `user-contact` WHERE `uid` = `post-thread-user`.`uid` AND `cid` IN (`post-thread-user`.`author-id`, `post-thread-user`.`owner-id`, `post-thread-user`.`causer-id`) AND (`blocked` OR `ignored` OR `is-blocked`))
AND NOT EXISTS(SELECT `gsid` FROM `user-gserver` WHERE `uid` = `post-thread-user`.`uid` AND `gsid` IN (`authorcontact`.`gsid`, `ownercontact`.`gsid`) AND `ignored`);
--
@@ -3517,6 +3534,7 @@ CREATE VIEW `owner-view` AS SELECT
`contact`.`unsearchable` AS `unsearchable`,
`contact`.`sensitive` AS `sensitive`,
`contact`.`baseurl` AS `baseurl`,
+ `contact`.`gsid` AS `gsid`,
`contact`.`reason` AS `reason`,
`contact`.`info` AS `info`,
`contact`.`bdyear` AS `bdyear`,
@@ -3808,6 +3826,7 @@ CREATE VIEW `tag-search-view` AS SELECT
`post-user`.`gravity` AS `gravity`,
`post-user`.`received` AS `received`,
`post-user`.`network` AS `network`,
+ `post-user`.`protocol` AS `protocol`,
`post-user`.`author-id` AS `author-id`,
`tag`.`name` AS `name`
FROM `post-tag`
diff --git a/doc/AddonStorageBackend.md b/doc/AddonStorageBackend.md
index c3a6d1639c..5053b641cb 100644
--- a/doc/AddonStorageBackend.md
+++ b/doc/AddonStorageBackend.md
@@ -126,14 +126,14 @@ Override the two necessary instances:
```php
use Friendica\Core\Storage\Capability\ICanWriteToStorage;
-abstract class StorageTest
+abstract class StorageTest
{
// returns an instance of your newly created storage class
abstract protected function getInstance();
// Assertion for the option array you return for your new StorageClass
abstract protected function assertOption(ICanWriteToStorage $storage);
-}
+}
```
## Exception handling
@@ -158,7 +158,7 @@ Example:
```php
use Friendica\Core\Storage\Capability\ICanWriteToStorage;
-class ExampleStorage implements ICanWriteToStorage
+class ExampleStorage implements ICanWriteToStorage
{
public function get(string $reference) : string
{
@@ -168,7 +168,7 @@ class ExampleStorage implements ICanWriteToStorage
throw new \Friendica\Core\Storage\Exception\StorageException(sprintf('The Example Storage throws an exception for reference %s', $reference), 500, $exception);
}
}
-}
+}
```
## Example
@@ -200,11 +200,11 @@ class SampleStorageBackend implements ICanWriteToStorage
/**
* SampleStorageBackend constructor.
- *
+ *
* You can add here every dynamic class as dependency you like and add them to a private field
- * Friendica automatically creates these classes and passes them as argument to the constructor
+ * Friendica automatically creates these classes and passes them as argument to the constructor
*/
- public function __construct(string $filename)
+ public function __construct(string $filename)
{
$this->filename = $filename;
}
@@ -215,7 +215,7 @@ class SampleStorageBackend implements ICanWriteToStorage
// a config key
return file_get_contents($this->filename);
}
-
+
public function put(string $data, string $reference = '')
{
if ($reference === '') {
@@ -224,13 +224,13 @@ class SampleStorageBackend implements ICanWriteToStorage
// we don't save $data !
return $reference;
}
-
+
public function delete(string $reference)
{
// we pretend to delete the data
return true;
}
-
+
public function __toString()
{
return self::NAME;
@@ -261,11 +261,11 @@ class SampleStorageBackendConfig implements ICanConfigureStorage
/**
* SampleStorageBackendConfig constructor.
- *
+ *
* You can add here every dynamic class as dependency you like and add them to a private field
- * Friendica automatically creates these classes and passes them as argument to the constructor
+ * Friendica automatically creates these classes and passes them as argument to the constructor
*/
- public function __construct(IManageConfigValues $config, L10n $l10n)
+ public function __construct(IManageConfigValues $config, L10n $l10n)
{
$this->config = $config;
$this->l10n = $l10n;
@@ -289,12 +289,12 @@ class SampleStorageBackendConfig implements ICanConfigureStorage
],
];
}
-
+
public function saveOptions(array $data)
{
// the keys in $data are the same keys we defined in getOptions()
$newfilename = trim($data['filename']);
-
+
// this function should always validate the data.
// in this example we check if file exists
if (!file_exists($newfilename)) {
@@ -302,9 +302,9 @@ class SampleStorageBackendConfig implements ICanConfigureStorage
// ['optionname' => 'error message']
return ['filename' => 'The file doesn\'t exists'];
}
-
+
$this->config->set('storage', 'samplestorage', $newfilename);
-
+
// no errors, return empty array
return [];
}
@@ -341,13 +341,13 @@ function samplestorage_storage_uninstall()
DI::storageManager()->unregister(SampleStorageBackend::class);
}
-function samplestorage_storage_instance(App $a, array &$data)
+function samplestorage_storage_instance(AppHelper $appHelper, array &$data)
{
$config = new SampleStorageBackendConfig(DI::l10n(), DI::config());
$data['storage'] = new SampleStorageBackendConfig($config->getFileName());
}
-function samplestorage_storage_config(App $a, array &$data)
+function samplestorage_storage_config(AppHelper $appHelper, array &$data)
{
$data['storage_config'] = new SampleStorageBackendConfig(DI::l10n(), DI::config());
}
@@ -360,7 +360,7 @@ function samplestorage_storage_config(App $a, array &$data)
use Friendica\Core\Storage\Capability\ICanWriteToStorage;
use Friendica\Test\src\Core\Storage\StorageTest;
-class SampleStorageTest extends StorageTest
+class SampleStorageTest extends StorageTest
{
// returns an instance of your newly created storage class
protected function getInstance()
@@ -382,5 +382,5 @@ class SampleStorageTest extends StorageTest
],
], $storage->getOptions());
}
-}
+}
```
diff --git a/doc/Install.md b/doc/Install.md
index d7cce941a4..936d46c7a9 100644
--- a/doc/Install.md
+++ b/doc/Install.md
@@ -27,10 +27,10 @@ Due to the large variety of operating systems and PHP platforms in existence we
### Requirements
-* Apache with mod-rewrite enabled and "Options All" so you can use a local `.htaccess` file
+* Apache with mod_rewrite enabled and "[AllowOverride All](https://httpd.apache.org/docs/2.4/mod/core.html#allowoverride)" so you can use a local `.htaccess` file
* PHP 7.4+
* PHP *command line* access with register_argc_argv set to true in the php.ini file
- * Curl, GD, GMP, PDO, mbstrings, MySQLi, hash, xml, zip, IntlChar, IDN and OpenSSL extensions
+ * Curl, GD, GMP, PDO, mbstring, MySQLi, xml, zip, IntlChar, IDN and OpenSSL extensions
* The POSIX module of PHP needs to be activated (e.g. [RHEL, CentOS](http://www.bigsoft.co.uk/blog/index.php/2014/12/08/posix-php-commands-not-working-under-centos-7) have disabled it)
* Some form of email server or email gateway such that PHP mail() works.
If you cannot set up your own email server, you can use the [phpmailer](https://github.com/friendica/friendica-addons/tree/develop/phpmailer) addon and use a remote SMTP server.
@@ -58,6 +58,7 @@ If this is nothing for you, you might be interested in the following:
* [Tutorial: Creating a Friendica Server with Ubuntu 22.04](https://nequalsonelifestyle.com/2022/07/30/creating-friendica-server-ubuntu/)
* [Setting Up Friendica Daemon as a Systemd Service Tutorial](https://nequalsonelifestyle.com/2022/08/04/setting-up-friendica-daemon-systemd-service/)
* [Setting up Friendica on Unraid](https://www.jenovarain.com/2023/03/setting-up-friendica-on-unraid/) (NAS)
+* [Installing Friendica with Elastio](https://elest.io/open-source/friendica)
### Get Friendica
diff --git a/doc/autoloader.md b/doc/autoloader.md
index 954c28813c..5bc0bfe9b3 100644
--- a/doc/autoloader.md
+++ b/doc/autoloader.md
@@ -46,9 +46,9 @@ The code will be something like:
// mod/network.php
getAll();
diff --git a/doc/de/Install.md b/doc/de/Install.md
index 46e81ba24b..147a9aebc7 100644
--- a/doc/de/Install.md
+++ b/doc/de/Install.md
@@ -45,6 +45,10 @@ Falls du an automatischen Möglichkeiten interesse hast, wirf doch einen Blick a
* das [Docker image für Friendica](https://github.com/friendica/docker) oder
* die [Installation von Friendica auf YunoHost](https://github.com/YunoHost-Apps/friendica_ynh).
+* [Tutorial: Creating a Friendica Server with Ubuntu 22.04](https://nequalsonelifestyle.com/2022/07/30/creating-friendica-server-ubuntu/)
+ * [Setting Up Friendica Daemon as a Systemd Service Tutorial](https://nequalsonelifestyle.com/2022/08/04/setting-up-friendica-daemon-systemd-service/)
+* [Setting up Friendica on Unraid](https://www.jenovarain.com/2023/03/setting-up-friendica-on-unraid/) (NAS)
+* [Installing Friendica with Elastio](https://elest.io/open-source/friendica)
### Friendica
diff --git a/doc/tools.md b/doc/tools.md
index ef916553ad..2a273e3650 100644
--- a/doc/tools.md
+++ b/doc/tools.md
@@ -84,3 +84,9 @@ The following will compress */var/log/friendica* (assuming this is the location
To monitor the health status of your Friendica installation, you can use for example a tool like Zabbix. Please define 'stats_key' in your local.config.php in the 'system' section to be able to access the statistics page at /stats?key=your-defined-stats_key
The statistics contain data about the worker performance, the last cron call, number of reports, inbound and outbound packets, posts and comments.
+
+### Prometheus
+
+To use [prometheus](https://prometheus.io) for gathering metrics, use the [Friendica exporter](https://git.friendi.ca/friendica/friendica-exporter).
+
+You can find the installation instructions here: https://git.friendi.ca/friendica/friendica-exporter#installation
diff --git a/images/platforms/black/aardwolf.svg b/images/platforms/black/aardwolf.svg
new file mode 100644
index 0000000000..74558d599d
--- /dev/null
+++ b/images/platforms/black/aardwolf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/aardwolf.svg.license b/images/platforms/black/aardwolf.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/aardwolf.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/activitypods.svg b/images/platforms/black/activitypods.svg
new file mode 100644
index 0000000000..494f938ba7
--- /dev/null
+++ b/images/platforms/black/activitypods.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/activitypods.svg.license b/images/platforms/black/activitypods.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/activitypods.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/activitypub.svg b/images/platforms/black/activitypub.svg
new file mode 100644
index 0000000000..ab181102a2
--- /dev/null
+++ b/images/platforms/black/activitypub.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/images/platforms/black/activitypub.svg.license b/images/platforms/black/activitypub.svg.license
new file mode 100644
index 0000000000..33acc29726
--- /dev/null
+++ b/images/platforms/black/activitypub.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: Matthias Pfefferle https://github.com/pfefferle/openwebicons?ref=svgrepo.com
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/black/akkoma.svg b/images/platforms/black/akkoma.svg
new file mode 100644
index 0000000000..db6fbd5372
--- /dev/null
+++ b/images/platforms/black/akkoma.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/akkoma.svg.license b/images/platforms/black/akkoma.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/akkoma.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/anfora.svg b/images/platforms/black/anfora.svg
new file mode 100644
index 0000000000..953d931d5f
--- /dev/null
+++ b/images/platforms/black/anfora.svg
@@ -0,0 +1,11 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/anfora.svg.license b/images/platforms/black/anfora.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/anfora.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/awakari.svg b/images/platforms/black/awakari.svg
new file mode 100644
index 0000000000..7d65e5a68a
--- /dev/null
+++ b/images/platforms/black/awakari.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/awakari.svg.license b/images/platforms/black/awakari.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/awakari.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/azorius.svg b/images/platforms/black/azorius.svg
new file mode 100644
index 0000000000..3dcec30fce
--- /dev/null
+++ b/images/platforms/black/azorius.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/azorius.svg.license b/images/platforms/black/azorius.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/azorius.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/bluesky.svg b/images/platforms/black/bluesky.svg
new file mode 100644
index 0000000000..6e7f1bdb96
--- /dev/null
+++ b/images/platforms/black/bluesky.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/bluesky.svg.license b/images/platforms/black/bluesky.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/bluesky.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/bonfire.svg b/images/platforms/black/bonfire.svg
new file mode 100644
index 0000000000..459892408e
--- /dev/null
+++ b/images/platforms/black/bonfire.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/bonfire.svg.license b/images/platforms/black/bonfire.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/bonfire.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/bookwyrm.svg b/images/platforms/black/bookwyrm.svg
new file mode 100644
index 0000000000..df54fc74c5
--- /dev/null
+++ b/images/platforms/black/bookwyrm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/bookwyrm.svg.license b/images/platforms/black/bookwyrm.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/bookwyrm.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/bridgy_fed.svg b/images/platforms/black/bridgy_fed.svg
new file mode 100644
index 0000000000..1e202aedce
--- /dev/null
+++ b/images/platforms/black/bridgy_fed.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/bridgy_fed.svg.license b/images/platforms/black/bridgy_fed.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/bridgy_fed.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/brighteon_social.svg b/images/platforms/black/brighteon_social.svg
new file mode 100644
index 0000000000..67b9abbfd5
--- /dev/null
+++ b/images/platforms/black/brighteon_social.svg
@@ -0,0 +1,12 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/brighteon_social.svg.license b/images/platforms/black/brighteon_social.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/brighteon_social.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/brutalinks.svg b/images/platforms/black/brutalinks.svg
new file mode 100644
index 0000000000..9540a38b07
--- /dev/null
+++ b/images/platforms/black/brutalinks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/brutalinks.svg.license b/images/platforms/black/brutalinks.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/brutalinks.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/calckey.svg b/images/platforms/black/calckey.svg
new file mode 100644
index 0000000000..dd22d04466
--- /dev/null
+++ b/images/platforms/black/calckey.svg
@@ -0,0 +1,11 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/calckey.svg.license b/images/platforms/black/calckey.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/calckey.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/castopod.svg b/images/platforms/black/castopod.svg
new file mode 100644
index 0000000000..2db17e7a02
--- /dev/null
+++ b/images/platforms/black/castopod.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/castopod.svg.license b/images/platforms/black/castopod.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/castopod.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/catodon.svg b/images/platforms/black/catodon.svg
new file mode 100644
index 0000000000..dad44fcc30
--- /dev/null
+++ b/images/platforms/black/catodon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/catodon.svg.license b/images/platforms/black/catodon.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/catodon.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/chatter_net.svg b/images/platforms/black/chatter_net.svg
new file mode 100644
index 0000000000..39312ca2ea
--- /dev/null
+++ b/images/platforms/black/chatter_net.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/chatter_net.svg.license b/images/platforms/black/chatter_net.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/chatter_net.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/chuckya.svg b/images/platforms/black/chuckya.svg
new file mode 100644
index 0000000000..a4b60c4efa
--- /dev/null
+++ b/images/platforms/black/chuckya.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/chuckya.svg.license b/images/platforms/black/chuckya.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/chuckya.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/clubsall.svg b/images/platforms/black/clubsall.svg
new file mode 100644
index 0000000000..29db863218
--- /dev/null
+++ b/images/platforms/black/clubsall.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/clubsall.svg.license b/images/platforms/black/clubsall.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/clubsall.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/communecter.svg b/images/platforms/black/communecter.svg
new file mode 100644
index 0000000000..46505c9d84
--- /dev/null
+++ b/images/platforms/black/communecter.svg
@@ -0,0 +1,12 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/communecter.svg.license b/images/platforms/black/communecter.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/communecter.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/decodon.svg b/images/platforms/black/decodon.svg
new file mode 100644
index 0000000000..f2a47a722d
--- /dev/null
+++ b/images/platforms/black/decodon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/decodon.svg.license b/images/platforms/black/decodon.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/decodon.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/diaspora.svg b/images/platforms/black/diaspora.svg
new file mode 100644
index 0000000000..3087c4e6aa
--- /dev/null
+++ b/images/platforms/black/diaspora.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/diaspora.svg.license b/images/platforms/black/diaspora.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/diaspora.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/discourse.svg b/images/platforms/black/discourse.svg
new file mode 100644
index 0000000000..0359b3b004
--- /dev/null
+++ b/images/platforms/black/discourse.svg
@@ -0,0 +1,10 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/discourse.svg.license b/images/platforms/black/discourse.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/discourse.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/dolphin.svg b/images/platforms/black/dolphin.svg
new file mode 100644
index 0000000000..2d581150e1
--- /dev/null
+++ b/images/platforms/black/dolphin.svg
@@ -0,0 +1,14 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/dolphin.svg.license b/images/platforms/black/dolphin.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/dolphin.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/drupal.svg b/images/platforms/black/drupal.svg
new file mode 100644
index 0000000000..c9ab526143
--- /dev/null
+++ b/images/platforms/black/drupal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/drupal.svg.license b/images/platforms/black/drupal.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/drupal.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/email.svg b/images/platforms/black/email.svg
new file mode 100644
index 0000000000..04c39cbfd9
--- /dev/null
+++ b/images/platforms/black/email.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/email.svg.license b/images/platforms/black/email.svg.license
new file mode 100644
index 0000000000..d51dd6d76e
--- /dev/null
+++ b/images/platforms/black/email.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: Instructure Ui https://github.com/instructure/instructure-ui?ref=svgrepo.com
+SPDX-License-Identifier: MIT
diff --git a/images/platforms/black/emissary.svg b/images/platforms/black/emissary.svg
new file mode 100644
index 0000000000..b73b64f324
--- /dev/null
+++ b/images/platforms/black/emissary.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/emissary.svg.license b/images/platforms/black/emissary.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/emissary.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/epicyon.svg b/images/platforms/black/epicyon.svg
new file mode 100644
index 0000000000..ab399d6b86
--- /dev/null
+++ b/images/platforms/black/epicyon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/epicyon.svg.license b/images/platforms/black/epicyon.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/epicyon.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/f2ap.svg b/images/platforms/black/f2ap.svg
new file mode 100644
index 0000000000..5c6c37db22
--- /dev/null
+++ b/images/platforms/black/f2ap.svg
@@ -0,0 +1,32 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/f2ap.svg.license b/images/platforms/black/f2ap.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/f2ap.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/fedibird.svg b/images/platforms/black/fedibird.svg
new file mode 100644
index 0000000000..8849889a5e
--- /dev/null
+++ b/images/platforms/black/fedibird.svg
@@ -0,0 +1,12 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/fedibird.svg.license b/images/platforms/black/fedibird.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/fedibird.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/fedify.svg b/images/platforms/black/fedify.svg
new file mode 100644
index 0000000000..ee1b9b20a0
--- /dev/null
+++ b/images/platforms/black/fedify.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/fedify.svg.license b/images/platforms/black/fedify.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/fedify.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/firefish.svg b/images/platforms/black/firefish.svg
new file mode 100644
index 0000000000..b3dd710e4f
--- /dev/null
+++ b/images/platforms/black/firefish.svg
@@ -0,0 +1,36 @@
+
diff --git a/images/platforms/black/firefish.svg.license b/images/platforms/black/firefish.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/firefish.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/flipboard.svg b/images/platforms/black/flipboard.svg
new file mode 100644
index 0000000000..85494db64f
--- /dev/null
+++ b/images/platforms/black/flipboard.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/flipboard.svg.license b/images/platforms/black/flipboard.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/flipboard.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/flohmarkt.svg b/images/platforms/black/flohmarkt.svg
new file mode 100644
index 0000000000..0df94e3288
--- /dev/null
+++ b/images/platforms/black/flohmarkt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/flohmarkt.svg.license b/images/platforms/black/flohmarkt.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/flohmarkt.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/forgefriends.svg b/images/platforms/black/forgefriends.svg
new file mode 100644
index 0000000000..fd6ddcfca6
--- /dev/null
+++ b/images/platforms/black/forgefriends.svg
@@ -0,0 +1,13 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/forgefriends.svg.license b/images/platforms/black/forgefriends.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/forgefriends.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/forgejo.svg b/images/platforms/black/forgejo.svg
new file mode 100644
index 0000000000..b78d3b9c86
--- /dev/null
+++ b/images/platforms/black/forgejo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/forgejo.svg.license b/images/platforms/black/forgejo.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/forgejo.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/forte.svg b/images/platforms/black/forte.svg
new file mode 100644
index 0000000000..c5d53c8763
--- /dev/null
+++ b/images/platforms/black/forte.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/forte.svg.license b/images/platforms/black/forte.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/forte.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/foundkey.svg b/images/platforms/black/foundkey.svg
new file mode 100644
index 0000000000..071215d3df
--- /dev/null
+++ b/images/platforms/black/foundkey.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/foundkey.svg.license b/images/platforms/black/foundkey.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/foundkey.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/friendica.svg b/images/platforms/black/friendica.svg
new file mode 100644
index 0000000000..fbfc7e1221
--- /dev/null
+++ b/images/platforms/black/friendica.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/friendica.svg.license b/images/platforms/black/friendica.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/friendica.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/funkwhale.svg b/images/platforms/black/funkwhale.svg
new file mode 100644
index 0000000000..11318d562e
--- /dev/null
+++ b/images/platforms/black/funkwhale.svg
@@ -0,0 +1,14 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/funkwhale.svg.license b/images/platforms/black/funkwhale.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/funkwhale.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/gancio.svg b/images/platforms/black/gancio.svg
new file mode 100644
index 0000000000..41c28673ff
--- /dev/null
+++ b/images/platforms/black/gancio.svg
@@ -0,0 +1,12 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/gancio.svg.license b/images/platforms/black/gancio.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/gancio.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/gath.io.svg b/images/platforms/black/gath.io.svg
new file mode 100644
index 0000000000..d2e89cd6c1
--- /dev/null
+++ b/images/platforms/black/gath.io.svg
@@ -0,0 +1,11 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/gath.io.svg.license b/images/platforms/black/gath.io.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/gath.io.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/ghost.svg b/images/platforms/black/ghost.svg
new file mode 100644
index 0000000000..b7ca833be3
--- /dev/null
+++ b/images/platforms/black/ghost.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/ghost.svg.license b/images/platforms/black/ghost.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/ghost.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/gitlab.svg b/images/platforms/black/gitlab.svg
new file mode 100644
index 0000000000..23a97f4814
--- /dev/null
+++ b/images/platforms/black/gitlab.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/gitlab.svg.license b/images/platforms/black/gitlab.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/gitlab.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/glitch-soc.svg b/images/platforms/black/glitch-soc.svg
new file mode 100644
index 0000000000..b097a6608a
--- /dev/null
+++ b/images/platforms/black/glitch-soc.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/glitch-soc.svg.license b/images/platforms/black/glitch-soc.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/glitch-soc.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/glitchsoc.svg b/images/platforms/black/glitchsoc.svg
new file mode 100644
index 0000000000..b097a6608a
--- /dev/null
+++ b/images/platforms/black/glitchsoc.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/glitchsoc.svg.license b/images/platforms/black/glitchsoc.svg.license
new file mode 100644
index 0000000000..a53eead85a
--- /dev/null
+++ b/images/platforms/black/glitchsoc.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: Copyright (C) 2016-2024 Eugen Rochko & other Mastodon contributors
+SPDX-License-Identifier: AGPL-3.0-only
diff --git a/images/platforms/black/gnu_social.svg b/images/platforms/black/gnu_social.svg
new file mode 100644
index 0000000000..51790be388
--- /dev/null
+++ b/images/platforms/black/gnu_social.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/gnu_social.svg.license b/images/platforms/black/gnu_social.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/gnu_social.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/gnusocial.svg b/images/platforms/black/gnusocial.svg
new file mode 100644
index 0000000000..51790be388
--- /dev/null
+++ b/images/platforms/black/gnusocial.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/gnusocial.svg.license b/images/platforms/black/gnusocial.svg.license
new file mode 100644
index 0000000000..33acc29726
--- /dev/null
+++ b/images/platforms/black/gnusocial.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: Matthias Pfefferle https://github.com/pfefferle/openwebicons?ref=svgrepo.com
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/black/go-fed.svg b/images/platforms/black/go-fed.svg
new file mode 100644
index 0000000000..71caf52743
--- /dev/null
+++ b/images/platforms/black/go-fed.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/go-fed.svg.license b/images/platforms/black/go-fed.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/go-fed.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/goblin.svg b/images/platforms/black/goblin.svg
new file mode 100644
index 0000000000..d4024eab0a
--- /dev/null
+++ b/images/platforms/black/goblin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/goblin.svg.license b/images/platforms/black/goblin.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/goblin.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/gotosocial.svg b/images/platforms/black/gotosocial.svg
new file mode 100644
index 0000000000..128032e499
--- /dev/null
+++ b/images/platforms/black/gotosocial.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/gotosocial.svg.license b/images/platforms/black/gotosocial.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/gotosocial.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/greatape.svg b/images/platforms/black/greatape.svg
new file mode 100644
index 0000000000..ecb21e81b4
--- /dev/null
+++ b/images/platforms/black/greatape.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/greatape.svg.license b/images/platforms/black/greatape.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/greatape.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/guppe.svg b/images/platforms/black/guppe.svg
new file mode 100644
index 0000000000..f1e39eb5dd
--- /dev/null
+++ b/images/platforms/black/guppe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/guppe.svg.license b/images/platforms/black/guppe.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/guppe.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/hollo.svg b/images/platforms/black/hollo.svg
new file mode 100644
index 0000000000..c1caf81cef
--- /dev/null
+++ b/images/platforms/black/hollo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/hollo.svg.license b/images/platforms/black/hollo.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/hollo.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/hometown.svg b/images/platforms/black/hometown.svg
new file mode 100644
index 0000000000..33cc6fbe79
--- /dev/null
+++ b/images/platforms/black/hometown.svg
@@ -0,0 +1,17 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/hometown.svg.license b/images/platforms/black/hometown.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/hometown.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/honk.svg b/images/platforms/black/honk.svg
new file mode 100644
index 0000000000..6e12a2b4ab
--- /dev/null
+++ b/images/platforms/black/honk.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/honk.svg.license b/images/platforms/black/honk.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/honk.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/hubzilla.svg b/images/platforms/black/hubzilla.svg
new file mode 100644
index 0000000000..60aaa1e532
--- /dev/null
+++ b/images/platforms/black/hubzilla.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/hubzilla.svg.license b/images/platforms/black/hubzilla.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/hubzilla.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/iceshrimp.svg b/images/platforms/black/iceshrimp.svg
new file mode 100644
index 0000000000..b0eaa569ac
--- /dev/null
+++ b/images/platforms/black/iceshrimp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/iceshrimp.svg.license b/images/platforms/black/iceshrimp.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/iceshrimp.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/juick.svg b/images/platforms/black/juick.svg
new file mode 100644
index 0000000000..1cddc5135c
--- /dev/null
+++ b/images/platforms/black/juick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/juick.svg.license b/images/platforms/black/juick.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/juick.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/kazarma.svg b/images/platforms/black/kazarma.svg
new file mode 100644
index 0000000000..d7a9f0c550
--- /dev/null
+++ b/images/platforms/black/kazarma.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/kazarma.svg.license b/images/platforms/black/kazarma.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/kazarma.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/kbin.svg b/images/platforms/black/kbin.svg
new file mode 100644
index 0000000000..aa5e1ae3f1
--- /dev/null
+++ b/images/platforms/black/kbin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/kbin.svg.license b/images/platforms/black/kbin.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/kbin.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/kepi.svg b/images/platforms/black/kepi.svg
new file mode 100644
index 0000000000..96b6871e34
--- /dev/null
+++ b/images/platforms/black/kepi.svg
@@ -0,0 +1,12 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/kepi.svg.license b/images/platforms/black/kepi.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/kepi.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/kitsune.svg b/images/platforms/black/kitsune.svg
new file mode 100644
index 0000000000..a58f0d4203
--- /dev/null
+++ b/images/platforms/black/kitsune.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/kitsune.svg.license b/images/platforms/black/kitsune.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/kitsune.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/kmyblue.svg b/images/platforms/black/kmyblue.svg
new file mode 100644
index 0000000000..2c77208f3e
--- /dev/null
+++ b/images/platforms/black/kmyblue.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/kmyblue.svg.license b/images/platforms/black/kmyblue.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/kmyblue.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/kookie.svg b/images/platforms/black/kookie.svg
new file mode 100644
index 0000000000..e435201b06
--- /dev/null
+++ b/images/platforms/black/kookie.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/kookie.svg.license b/images/platforms/black/kookie.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/kookie.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/ktistec.svg b/images/platforms/black/ktistec.svg
new file mode 100644
index 0000000000..39b71d11b6
--- /dev/null
+++ b/images/platforms/black/ktistec.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/ktistec.svg.license b/images/platforms/black/ktistec.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/ktistec.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/lemmy.svg b/images/platforms/black/lemmy.svg
new file mode 100644
index 0000000000..f031bb90b5
--- /dev/null
+++ b/images/platforms/black/lemmy.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/lemmy.svg.license b/images/platforms/black/lemmy.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/lemmy.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/loops.svg b/images/platforms/black/loops.svg
new file mode 100644
index 0000000000..9ec17d9983
--- /dev/null
+++ b/images/platforms/black/loops.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/loops.svg.license b/images/platforms/black/loops.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/loops.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/mastodon.svg b/images/platforms/black/mastodon.svg
new file mode 100644
index 0000000000..f3e0e962ca
--- /dev/null
+++ b/images/platforms/black/mastodon.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/mastodon.svg.license b/images/platforms/black/mastodon.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/mastodon.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/mbin.svg b/images/platforms/black/mbin.svg
new file mode 100644
index 0000000000..70b51b4f7d
--- /dev/null
+++ b/images/platforms/black/mbin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/mbin.svg.license b/images/platforms/black/mbin.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/mbin.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/micro.blog.svg b/images/platforms/black/micro.blog.svg
new file mode 100644
index 0000000000..df4c8c06cf
--- /dev/null
+++ b/images/platforms/black/micro.blog.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/micro.blog.svg.license b/images/platforms/black/micro.blog.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/micro.blog.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/minds.svg b/images/platforms/black/minds.svg
new file mode 100644
index 0000000000..8fd98b7b3d
--- /dev/null
+++ b/images/platforms/black/minds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/minds.svg.license b/images/platforms/black/minds.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/minds.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/misskey.svg b/images/platforms/black/misskey.svg
new file mode 100644
index 0000000000..ab1c3204a0
--- /dev/null
+++ b/images/platforms/black/misskey.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/misskey.svg.license b/images/platforms/black/misskey.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/misskey.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/mistpark.svg b/images/platforms/black/mistpark.svg
new file mode 100644
index 0000000000..994ede5fe6
--- /dev/null
+++ b/images/platforms/black/mistpark.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/mistpark.svg.license b/images/platforms/black/mistpark.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/mistpark.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/mitra.svg b/images/platforms/black/mitra.svg
new file mode 100644
index 0000000000..593c62b6b1
--- /dev/null
+++ b/images/platforms/black/mitra.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/mitra.svg.license b/images/platforms/black/mitra.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/mitra.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/mobilizon.svg b/images/platforms/black/mobilizon.svg
new file mode 100644
index 0000000000..31ef831ec9
--- /dev/null
+++ b/images/platforms/black/mobilizon.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/mobilizon.svg.license b/images/platforms/black/mobilizon.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/mobilizon.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/neodb.svg b/images/platforms/black/neodb.svg
new file mode 100644
index 0000000000..adae2cf953
--- /dev/null
+++ b/images/platforms/black/neodb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/neodb.svg.license b/images/platforms/black/neodb.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/neodb.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/newsmast.svg b/images/platforms/black/newsmast.svg
new file mode 100644
index 0000000000..8331cb87e2
--- /dev/null
+++ b/images/platforms/black/newsmast.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/newsmast.svg.license b/images/platforms/black/newsmast.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/newsmast.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/nextcloud_social.svg b/images/platforms/black/nextcloud_social.svg
new file mode 100644
index 0000000000..acd6ee0f9a
--- /dev/null
+++ b/images/platforms/black/nextcloud_social.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/nextcloud_social.svg.license b/images/platforms/black/nextcloud_social.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/nextcloud_social.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/nodebb.svg b/images/platforms/black/nodebb.svg
new file mode 100644
index 0000000000..7798d3bd8a
--- /dev/null
+++ b/images/platforms/black/nodebb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/nodebb.svg.license b/images/platforms/black/nodebb.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/nodebb.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/osada.svg b/images/platforms/black/osada.svg
new file mode 100644
index 0000000000..56b4d774bb
--- /dev/null
+++ b/images/platforms/black/osada.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/osada.svg.license b/images/platforms/black/osada.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/osada.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/owncast.svg b/images/platforms/black/owncast.svg
new file mode 100644
index 0000000000..44b3f5b9b8
--- /dev/null
+++ b/images/platforms/black/owncast.svg
@@ -0,0 +1,13 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/owncast.svg.license b/images/platforms/black/owncast.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/owncast.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/peertube.svg b/images/platforms/black/peertube.svg
new file mode 100644
index 0000000000..554ca8d262
--- /dev/null
+++ b/images/platforms/black/peertube.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/peertube.svg.license b/images/platforms/black/peertube.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/peertube.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/piefed.svg b/images/platforms/black/piefed.svg
new file mode 100644
index 0000000000..87386fd939
--- /dev/null
+++ b/images/platforms/black/piefed.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/piefed.svg.license b/images/platforms/black/piefed.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/piefed.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/pinetta.svg b/images/platforms/black/pinetta.svg
new file mode 100644
index 0000000000..4d8d49d2c6
--- /dev/null
+++ b/images/platforms/black/pinetta.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/pinetta.svg.license b/images/platforms/black/pinetta.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/pinetta.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/pixelfed.svg b/images/platforms/black/pixelfed.svg
new file mode 100644
index 0000000000..4f56fe12e4
--- /dev/null
+++ b/images/platforms/black/pixelfed.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/pixelfed.svg.license b/images/platforms/black/pixelfed.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/pixelfed.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/pleroma.svg b/images/platforms/black/pleroma.svg
new file mode 100644
index 0000000000..af93e43942
--- /dev/null
+++ b/images/platforms/black/pleroma.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/pleroma.svg.license b/images/platforms/black/pleroma.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/pleroma.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/plume.svg b/images/platforms/black/plume.svg
new file mode 100644
index 0000000000..d78dc18e70
--- /dev/null
+++ b/images/platforms/black/plume.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/plume.svg.license b/images/platforms/black/plume.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/plume.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/postmarks.svg b/images/platforms/black/postmarks.svg
new file mode 100644
index 0000000000..19dda5af8f
--- /dev/null
+++ b/images/platforms/black/postmarks.svg
@@ -0,0 +1,19 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/postmarks.svg.license b/images/platforms/black/postmarks.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/postmarks.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/prismo.svg b/images/platforms/black/prismo.svg
new file mode 100644
index 0000000000..67d71635c6
--- /dev/null
+++ b/images/platforms/black/prismo.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/prismo.svg.license b/images/platforms/black/prismo.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/prismo.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/pump-io.svg b/images/platforms/black/pump-io.svg
new file mode 100644
index 0000000000..e4e4fc3533
--- /dev/null
+++ b/images/platforms/black/pump-io.svg
@@ -0,0 +1,108 @@
+
+
+
+
diff --git a/images/platforms/black/pump-io.svg.license b/images/platforms/black/pump-io.svg.license
new file mode 100644
index 0000000000..b3db2b09ce
--- /dev/null
+++ b/images/platforms/black/pump-io.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: MathiasGebbe https://commons.wikimedia.org/wiki/File:Pump.io_Logo.svg
+SPDX-License-Identifier: CC-BY-SA-3.0
diff --git a/images/platforms/black/rebased.svg b/images/platforms/black/rebased.svg
new file mode 100644
index 0000000000..e74cac4873
--- /dev/null
+++ b/images/platforms/black/rebased.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/rebased.svg.license b/images/platforms/black/rebased.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/rebased.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/redmatrix.svg b/images/platforms/black/redmatrix.svg
new file mode 100644
index 0000000000..7aebdf7b52
--- /dev/null
+++ b/images/platforms/black/redmatrix.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/redmatrix.svg.license b/images/platforms/black/redmatrix.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/redmatrix.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/reel2bits.svg b/images/platforms/black/reel2bits.svg
new file mode 100644
index 0000000000..d5b9e48a75
--- /dev/null
+++ b/images/platforms/black/reel2bits.svg
@@ -0,0 +1,14 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/reel2bits.svg.license b/images/platforms/black/reel2bits.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/reel2bits.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/rss.svg b/images/platforms/black/rss.svg
new file mode 100644
index 0000000000..9fe37b87a6
--- /dev/null
+++ b/images/platforms/black/rss.svg
@@ -0,0 +1,8 @@
+
+
+
+
\ No newline at end of file
diff --git a/images/platforms/black/rss.svg.license b/images/platforms/black/rss.svg.license
new file mode 100644
index 0000000000..33acc29726
--- /dev/null
+++ b/images/platforms/black/rss.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: Matthias Pfefferle https://github.com/pfefferle/openwebicons?ref=svgrepo.com
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/black/ruffy.svg b/images/platforms/black/ruffy.svg
new file mode 100644
index 0000000000..d6af02252a
--- /dev/null
+++ b/images/platforms/black/ruffy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/ruffy.svg.license b/images/platforms/black/ruffy.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/ruffy.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/sakura.svg b/images/platforms/black/sakura.svg
new file mode 100644
index 0000000000..1caeb82705
--- /dev/null
+++ b/images/platforms/black/sakura.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/sakura.svg.license b/images/platforms/black/sakura.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/sakura.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/seppo.svg b/images/platforms/black/seppo.svg
new file mode 100644
index 0000000000..f5ca69ba8f
--- /dev/null
+++ b/images/platforms/black/seppo.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/seppo.svg.license b/images/platforms/black/seppo.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/seppo.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/shadowfacts.svg b/images/platforms/black/shadowfacts.svg
new file mode 100644
index 0000000000..89c2cad2b5
--- /dev/null
+++ b/images/platforms/black/shadowfacts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/shadowfacts.svg.license b/images/platforms/black/shadowfacts.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/shadowfacts.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/sharky.svg b/images/platforms/black/sharky.svg
new file mode 100644
index 0000000000..4fd2f3fd09
--- /dev/null
+++ b/images/platforms/black/sharky.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/sharky.svg.license b/images/platforms/black/sharky.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/sharky.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/shuttlecraft.svg b/images/platforms/black/shuttlecraft.svg
new file mode 100644
index 0000000000..269386557c
--- /dev/null
+++ b/images/platforms/black/shuttlecraft.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/shuttlecraft.svg.license b/images/platforms/black/shuttlecraft.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/shuttlecraft.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/smilodon.svg b/images/platforms/black/smilodon.svg
new file mode 100644
index 0000000000..e418615cc7
--- /dev/null
+++ b/images/platforms/black/smilodon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/smilodon.svg.license b/images/platforms/black/smilodon.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/smilodon.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/smithereen.svg b/images/platforms/black/smithereen.svg
new file mode 100644
index 0000000000..bda9644917
--- /dev/null
+++ b/images/platforms/black/smithereen.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/smithereen.svg.license b/images/platforms/black/smithereen.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/smithereen.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/snac.svg b/images/platforms/black/snac.svg
new file mode 100644
index 0000000000..5d37b80941
--- /dev/null
+++ b/images/platforms/black/snac.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/snac.svg.license b/images/platforms/black/snac.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/snac.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/soapbox.svg b/images/platforms/black/soapbox.svg
new file mode 100644
index 0000000000..f70bcf2700
--- /dev/null
+++ b/images/platforms/black/soapbox.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/soapbox.svg.license b/images/platforms/black/soapbox.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/soapbox.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/socialhome.svg b/images/platforms/black/socialhome.svg
new file mode 100644
index 0000000000..fcd8bb08c0
--- /dev/null
+++ b/images/platforms/black/socialhome.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/socialhome.svg.license b/images/platforms/black/socialhome.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/socialhome.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/streams.svg b/images/platforms/black/streams.svg
new file mode 100644
index 0000000000..3c78ce0beb
--- /dev/null
+++ b/images/platforms/black/streams.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/streams.svg.license b/images/platforms/black/streams.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/streams.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/sublinks.svg b/images/platforms/black/sublinks.svg
new file mode 100644
index 0000000000..6e771f63bc
--- /dev/null
+++ b/images/platforms/black/sublinks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/sublinks.svg.license b/images/platforms/black/sublinks.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/sublinks.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/sutty.svg b/images/platforms/black/sutty.svg
new file mode 100644
index 0000000000..f7b9a9030c
--- /dev/null
+++ b/images/platforms/black/sutty.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/sutty.svg.license b/images/platforms/black/sutty.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/sutty.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/swanye.svg.license b/images/platforms/black/swanye.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/swanye.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/takahe.svg b/images/platforms/black/takahe.svg
new file mode 100644
index 0000000000..1faf05bfeb
--- /dev/null
+++ b/images/platforms/black/takahe.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/takahe.svg.license b/images/platforms/black/takahe.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/takahe.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/takesama.svg b/images/platforms/black/takesama.svg
new file mode 100644
index 0000000000..fdf0f65984
--- /dev/null
+++ b/images/platforms/black/takesama.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/takesama.svg.license b/images/platforms/black/takesama.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/takesama.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/threads.svg b/images/platforms/black/threads.svg
new file mode 100644
index 0000000000..0097a7aeba
--- /dev/null
+++ b/images/platforms/black/threads.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/threads.svg.license b/images/platforms/black/threads.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/threads.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/tumblr.svg b/images/platforms/black/tumblr.svg
new file mode 100644
index 0000000000..2fe91e709e
--- /dev/null
+++ b/images/platforms/black/tumblr.svg
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/images/platforms/black/tumblr.svg.license b/images/platforms/black/tumblr.svg.license
new file mode 100644
index 0000000000..4c8c4b8e5d
--- /dev/null
+++ b/images/platforms/black/tumblr.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: bypeople https://www.svgrepo.com/svg/513007/tumblr-181
+SPDX-License-Identifier: CC-PDDC
diff --git a/images/platforms/black/vernissage.svg b/images/platforms/black/vernissage.svg
new file mode 100644
index 0000000000..9c576ac7cb
--- /dev/null
+++ b/images/platforms/black/vernissage.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/vernissage.svg.license b/images/platforms/black/vernissage.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/vernissage.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/vervis.svg b/images/platforms/black/vervis.svg
new file mode 100644
index 0000000000..7c6a37f507
--- /dev/null
+++ b/images/platforms/black/vervis.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/vervis.svg.license b/images/platforms/black/vervis.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/vervis.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/vidzy.svg b/images/platforms/black/vidzy.svg
new file mode 100644
index 0000000000..953b9a5c3e
--- /dev/null
+++ b/images/platforms/black/vidzy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/vidzy.svg.license b/images/platforms/black/vidzy.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/vidzy.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/vocata.svg b/images/platforms/black/vocata.svg
new file mode 100644
index 0000000000..4d4476a320
--- /dev/null
+++ b/images/platforms/black/vocata.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/vocata.svg.license b/images/platforms/black/vocata.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/vocata.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/wafrn.svg b/images/platforms/black/wafrn.svg
new file mode 100644
index 0000000000..8e9d27df10
--- /dev/null
+++ b/images/platforms/black/wafrn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/wafrn.svg.license b/images/platforms/black/wafrn.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/wafrn.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/wildebeest.svg b/images/platforms/black/wildebeest.svg
new file mode 100644
index 0000000000..91b37d0a32
--- /dev/null
+++ b/images/platforms/black/wildebeest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/wildebeest.svg.license b/images/platforms/black/wildebeest.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/wildebeest.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/wordpress.svg b/images/platforms/black/wordpress.svg
new file mode 100644
index 0000000000..a5c5aa6249
--- /dev/null
+++ b/images/platforms/black/wordpress.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/wordpress.svg.license b/images/platforms/black/wordpress.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/wordpress.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/write.as.svg b/images/platforms/black/write.as.svg
new file mode 100644
index 0000000000..4ea60554fd
--- /dev/null
+++ b/images/platforms/black/write.as.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/write.as.svg.license b/images/platforms/black/write.as.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/write.as.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/writefreely.svg b/images/platforms/black/writefreely.svg
new file mode 100644
index 0000000000..60c8c0bb53
--- /dev/null
+++ b/images/platforms/black/writefreely.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/writefreely.svg.license b/images/platforms/black/writefreely.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/writefreely.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/wxwclub.svg b/images/platforms/black/wxwclub.svg
new file mode 100644
index 0000000000..1ec30e8d7a
--- /dev/null
+++ b/images/platforms/black/wxwclub.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/wxwclub.svg.license b/images/platforms/black/wxwclub.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/wxwclub.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/xwiki.svg b/images/platforms/black/xwiki.svg
new file mode 100644
index 0000000000..3bd39a5f89
--- /dev/null
+++ b/images/platforms/black/xwiki.svg
@@ -0,0 +1,15 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/black/xwiki.svg.license b/images/platforms/black/xwiki.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/xwiki.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/black/zap.svg b/images/platforms/black/zap.svg
new file mode 100644
index 0000000000..062b00393e
--- /dev/null
+++ b/images/platforms/black/zap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/black/zap.svg.license b/images/platforms/black/zap.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/black/zap.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/color/aardwolf.svg b/images/platforms/color/aardwolf.svg
new file mode 100644
index 0000000000..8e5fb499ed
--- /dev/null
+++ b/images/platforms/color/aardwolf.svg
@@ -0,0 +1,42 @@
+
+
\ No newline at end of file
diff --git a/images/platforms/color/aardwolf.svg.license b/images/platforms/color/aardwolf.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/color/aardwolf.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/color/activitypods.svg b/images/platforms/color/activitypods.svg
new file mode 100644
index 0000000000..1cac3f1640
--- /dev/null
+++ b/images/platforms/color/activitypods.svg
@@ -0,0 +1,15 @@
+
\ No newline at end of file
diff --git a/images/platforms/color/activitypods.svg.license b/images/platforms/color/activitypods.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/color/activitypods.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/color/activitypub.svg b/images/platforms/color/activitypub.svg
new file mode 100644
index 0000000000..f56d428fbc
--- /dev/null
+++ b/images/platforms/color/activitypub.svg
@@ -0,0 +1,288 @@
+
+
+
+
+ ActivityPub logo
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ image/svg+xml
+
+ ActivityPub logo
+
+ 2017-04-15
+
+
+ Robert Martinez
+
+
+
+
+ ActivityPub
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/images/platforms/color/activitypub.svg.license b/images/platforms/color/activitypub.svg.license
new file mode 100644
index 0000000000..acef685eed
--- /dev/null
+++ b/images/platforms/color/activitypub.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: mray https://commons.wikimedia.org/wiki/File:ActivityPub-logo-symbol.svg
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/color/akkoma.svg b/images/platforms/color/akkoma.svg
new file mode 100644
index 0000000000..96dc8d8ce8
--- /dev/null
+++ b/images/platforms/color/akkoma.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/images/platforms/color/akkoma.svg.license b/images/platforms/color/akkoma.svg.license
new file mode 100644
index 0000000000..f3816d7841
--- /dev/null
+++ b/images/platforms/color/akkoma.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: floatingghost https://commons.wikimedia.org/wiki/File:Akkoma_logo.svg
+SPDX-License-Identifier: AGPL-3.0-or-later
diff --git a/images/platforms/color/bluesky.svg b/images/platforms/color/bluesky.svg
new file mode 100644
index 0000000000..b60d51c279
--- /dev/null
+++ b/images/platforms/color/bluesky.svg
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/images/platforms/color/bluesky.svg.license b/images/platforms/color/bluesky.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/color/bluesky.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/color/chuckya.svg b/images/platforms/color/chuckya.svg
new file mode 100644
index 0000000000..3d633b8842
--- /dev/null
+++ b/images/platforms/color/chuckya.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/color/chuckya.svg.license b/images/platforms/color/chuckya.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/color/chuckya.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/color/decodon.svg b/images/platforms/color/decodon.svg
new file mode 100644
index 0000000000..0e648c759b
--- /dev/null
+++ b/images/platforms/color/decodon.svg
@@ -0,0 +1,12 @@
+
+
+ decodon_flower_logo
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/images/platforms/color/decodon.svg.license b/images/platforms/color/decodon.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/color/decodon.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/color/discourse.svg b/images/platforms/color/discourse.svg
new file mode 100644
index 0000000000..4cbb8c87b3
--- /dev/null
+++ b/images/platforms/color/discourse.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/images/platforms/color/discourse.svg.license b/images/platforms/color/discourse.svg.license
new file mode 100644
index 0000000000..5c569fb582
--- /dev/null
+++ b/images/platforms/color/discourse.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: Discourse team https://commons.wikimedia.org/wiki/File:Discourse_icon.svg
+SPDX-License-Identifier: GPL-2.0-only
diff --git a/images/platforms/color/fedify.svg b/images/platforms/color/fedify.svg
new file mode 100644
index 0000000000..b19fbb59b6
--- /dev/null
+++ b/images/platforms/color/fedify.svg
@@ -0,0 +1,175 @@
+
+
+
+
+ Deno Avatar
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/images/platforms/color/fedify.svg.license b/images/platforms/color/fedify.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/color/fedify.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/color/firefish.svg b/images/platforms/color/firefish.svg
new file mode 100644
index 0000000000..7b36f4d77e
--- /dev/null
+++ b/images/platforms/color/firefish.svg
@@ -0,0 +1,153 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/images/platforms/color/firefish.svg.license b/images/platforms/color/firefish.svg.license
new file mode 100644
index 0000000000..93e1b24be1
--- /dev/null
+++ b/images/platforms/color/firefish.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: Kainoa Kanter https://commons.wikimedia.org/wiki/File:Firefish_animated.svg
+SPDX-License-Identifier: AGPL-3.0-or-later
diff --git a/images/platforms/color/flipboard.svg b/images/platforms/color/flipboard.svg
new file mode 100644
index 0000000000..6f42ee490f
--- /dev/null
+++ b/images/platforms/color/flipboard.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/images/platforms/color/flipboard.svg.license b/images/platforms/color/flipboard.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/color/flipboard.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/color/friendica.svg b/images/platforms/color/friendica.svg
new file mode 100644
index 0000000000..efbb051cd8
--- /dev/null
+++ b/images/platforms/color/friendica.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/color/friendica.svg.license b/images/platforms/color/friendica.svg.license
new file mode 100644
index 0000000000..7aaeaba96e
--- /dev/null
+++ b/images/platforms/color/friendica.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: 2010-2024 the Friendica project
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/color/gitlab.svg b/images/platforms/color/gitlab.svg
new file mode 100644
index 0000000000..858feda2a0
--- /dev/null
+++ b/images/platforms/color/gitlab.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/color/gitlab.svg.license b/images/platforms/color/gitlab.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/color/gitlab.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/color/gnusocial.svg b/images/platforms/color/gnusocial.svg
new file mode 100644
index 0000000000..ba61f345c7
--- /dev/null
+++ b/images/platforms/color/gnusocial.svg
@@ -0,0 +1,99 @@
+
+
+
+
+ GNU Social Image Logo
+
+
+
+
+
+ image/svg+xml
+
+ GNU Social Image Logo
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/images/platforms/color/gnusocial.svg.license b/images/platforms/color/gnusocial.svg.license
new file mode 100644
index 0000000000..bdcd7aa795
--- /dev/null
+++ b/images/platforms/color/gnusocial.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: Jonas Laugs, with lettering by Steven DuBois https://commons.wikimedia.org/wiki/File:GNU_Social_Image_Logo.svg
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/color/kookie.svg b/images/platforms/color/kookie.svg
new file mode 100644
index 0000000000..df374d1d33
--- /dev/null
+++ b/images/platforms/color/kookie.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/color/kookie.svg.license b/images/platforms/color/kookie.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/color/kookie.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/color/loops.svg b/images/platforms/color/loops.svg
new file mode 100644
index 0000000000..8ba6b2231c
--- /dev/null
+++ b/images/platforms/color/loops.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/images/platforms/color/loops.svg.license b/images/platforms/color/loops.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/color/loops.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/color/mastodon.svg b/images/platforms/color/mastodon.svg
new file mode 100644
index 0000000000..a20e7981f6
--- /dev/null
+++ b/images/platforms/color/mastodon.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/images/platforms/color/mastodon.svg.license b/images/platforms/color/mastodon.svg.license
new file mode 100644
index 0000000000..cd758551b8
--- /dev/null
+++ b/images/platforms/color/mastodon.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: Eugen Rochko & other Mastodon contributors https://commons.wikimedia.org/wiki/File:Mastodon_logotype_(simple)_new_hue.svg
+SPDX-License-Identifier: AGPL-3.0-or-later
diff --git a/images/platforms/color/mbin.svg b/images/platforms/color/mbin.svg
new file mode 100644
index 0000000000..b48eccdd17
--- /dev/null
+++ b/images/platforms/color/mbin.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/images/platforms/color/mbin.svg.license b/images/platforms/color/mbin.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/color/mbin.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/color/misskey.svg b/images/platforms/color/misskey.svg
new file mode 100644
index 0000000000..15c0bcc9bd
--- /dev/null
+++ b/images/platforms/color/misskey.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/color/misskey.svg.license b/images/platforms/color/misskey.svg.license
new file mode 100644
index 0000000000..41182ca490
--- /dev/null
+++ b/images/platforms/color/misskey.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: https://icon-sets.iconify.design/simple-icons/misskey/
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/color/neodb.svg b/images/platforms/color/neodb.svg
new file mode 100644
index 0000000000..cc10cff898
--- /dev/null
+++ b/images/platforms/color/neodb.svg
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/images/platforms/color/neodb.svg.license b/images/platforms/color/neodb.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/color/neodb.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/color/newsmast.svg b/images/platforms/color/newsmast.svg
new file mode 100644
index 0000000000..875fef30d9
--- /dev/null
+++ b/images/platforms/color/newsmast.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/images/platforms/color/newsmast.svg.license b/images/platforms/color/newsmast.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/color/newsmast.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/color/nodebb.svg b/images/platforms/color/nodebb.svg
new file mode 100644
index 0000000000..6ef96a9261
--- /dev/null
+++ b/images/platforms/color/nodebb.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/images/platforms/color/nodebb.svg.license b/images/platforms/color/nodebb.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/color/nodebb.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/color/peertube.svg b/images/platforms/color/peertube.svg
new file mode 100644
index 0000000000..0e6e228e61
--- /dev/null
+++ b/images/platforms/color/peertube.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/color/peertube.svg.license b/images/platforms/color/peertube.svg.license
new file mode 100644
index 0000000000..13cba9b2e3
--- /dev/null
+++ b/images/platforms/color/peertube.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: PeerTube contributors https://commons.wikimedia.org/wiki/File:Logo_de_PeerTube.svg
+SPDX-License-Identifier: CC-PDDC
diff --git a/images/platforms/color/pixelfed.svg b/images/platforms/color/pixelfed.svg
new file mode 100644
index 0000000000..dfaf03fbea
--- /dev/null
+++ b/images/platforms/color/pixelfed.svg
@@ -0,0 +1,101 @@
+
+
+
+ icon/color/svg/pixelfed-icon-color
+ Created with Sketch.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/images/platforms/color/pixelfed.svg.license b/images/platforms/color/pixelfed.svg.license
new file mode 100644
index 0000000000..a8129c266b
--- /dev/null
+++ b/images/platforms/color/pixelfed.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: Mark Wilson & other Pixelfed contributors https://commons.wikimedia.org/wiki/File:Pixelfed_logo_multicolor_(September_2018).svg
+SPDX-License-Identifier: CC-BY-SA-4.0
diff --git a/images/platforms/color/pleroma.svg b/images/platforms/color/pleroma.svg
new file mode 100644
index 0000000000..2696052279
--- /dev/null
+++ b/images/platforms/color/pleroma.svg
@@ -0,0 +1,75 @@
+
+
+
+
+
+ image/svg+xml
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/images/platforms/color/pleroma.svg.license b/images/platforms/color/pleroma.svg.license
new file mode 100644
index 0000000000..a5c1aa75f2
--- /dev/null
+++ b/images/platforms/color/pleroma.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: Henry Jameson https://commons.wikimedia.org/wiki/File:Smaller_Pleroma_logo.svg
+SPDX-License-Identifier: AGPL-3.0-or-later
diff --git a/images/platforms/color/rss.svg b/images/platforms/color/rss.svg
new file mode 100644
index 0000000000..a7f9cf196c
--- /dev/null
+++ b/images/platforms/color/rss.svg
@@ -0,0 +1,18 @@
+
+
+
+ RSS feed icon
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/images/platforms/color/rss.svg.license b/images/platforms/color/rss.svg.license
new file mode 100644
index 0000000000..59f909d7b6
--- /dev/null
+++ b/images/platforms/color/rss.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: Jahoe https://commons.wikimedia.org/wiki/File:Generic_Feed-icon.svg
+SPDX-License-Identifier: GPL-2.0-or-later
diff --git a/images/platforms/color/sharky.svg b/images/platforms/color/sharky.svg
new file mode 100644
index 0000000000..40a2fd9bed
--- /dev/null
+++ b/images/platforms/color/sharky.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/color/sharky.svg.license b/images/platforms/color/sharky.svg.license
new file mode 100644
index 0000000000..c0a1118a51
--- /dev/null
+++ b/images/platforms/color/sharky.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: https://icon-sets.iconify.design/game-icons/shark-jaws/
+SPDX-License-Identifier: CC-BY-3.0
diff --git a/images/platforms/color/tumblr.svg b/images/platforms/color/tumblr.svg
new file mode 100644
index 0000000000..d4f4d6d4df
--- /dev/null
+++ b/images/platforms/color/tumblr.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/images/platforms/color/tumblr.svg.license b/images/platforms/color/tumblr.svg.license
new file mode 100644
index 0000000000..39a4f64c06
--- /dev/null
+++ b/images/platforms/color/tumblr.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: ZyMOS https://commons.wikimedia.org/wiki/File:Tumblr.svg
+SPDX-License-Identifier: CC-PDDC
diff --git a/images/platforms/color/vervis.svg b/images/platforms/color/vervis.svg
new file mode 100644
index 0000000000..571464e7a8
--- /dev/null
+++ b/images/platforms/color/vervis.svg
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+ image/svg+xml
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/images/platforms/color/vervis.svg.license b/images/platforms/color/vervis.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/color/vervis.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/color/vocata.svg b/images/platforms/color/vocata.svg
new file mode 100644
index 0000000000..a0ab84330f
--- /dev/null
+++ b/images/platforms/color/vocata.svg
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/images/platforms/color/vocata.svg.license b/images/platforms/color/vocata.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/color/vocata.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/color/wordpress.svg b/images/platforms/color/wordpress.svg
new file mode 100644
index 0000000000..7182535973
--- /dev/null
+++ b/images/platforms/color/wordpress.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/color/wordpress.svg.license b/images/platforms/color/wordpress.svg.license
new file mode 100644
index 0000000000..1fea8f7f81
--- /dev/null
+++ b/images/platforms/color/wordpress.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: WordPress https://commons.wikimedia.org/wiki/File:WordPress_blue_logo.svg
+SPDX-License-Identifier: GPL-2.0-or-later
diff --git a/images/platforms/white/activitypub.svg b/images/platforms/white/activitypub.svg
new file mode 100644
index 0000000000..f44e06683a
--- /dev/null
+++ b/images/platforms/white/activitypub.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/activitypub.svg.license b/images/platforms/white/activitypub.svg.license
new file mode 100644
index 0000000000..330e2cb8af
--- /dev/null
+++ b/images/platforms/white/activitypub.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/white/akkoma.svg b/images/platforms/white/akkoma.svg
new file mode 100644
index 0000000000..7bc4df5630
--- /dev/null
+++ b/images/platforms/white/akkoma.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/akkoma.svg.license b/images/platforms/white/akkoma.svg.license
new file mode 100644
index 0000000000..53413ed82d
--- /dev/null
+++ b/images/platforms/white/akkoma.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC-BY-SA-4.0
diff --git a/images/platforms/white/andstatus.svg b/images/platforms/white/andstatus.svg
new file mode 100644
index 0000000000..ab551a2275
--- /dev/null
+++ b/images/platforms/white/andstatus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/andstatus.svg.license b/images/platforms/white/andstatus.svg.license
new file mode 100644
index 0000000000..53413ed82d
--- /dev/null
+++ b/images/platforms/white/andstatus.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC-BY-SA-4.0
diff --git a/images/platforms/white/bluesky.svg b/images/platforms/white/bluesky.svg
new file mode 100644
index 0000000000..88153df455
--- /dev/null
+++ b/images/platforms/white/bluesky.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/bluesky.svg.license b/images/platforms/white/bluesky.svg.license
new file mode 100644
index 0000000000..dfea79525f
--- /dev/null
+++ b/images/platforms/white/bluesky.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: Apache-2.0
diff --git a/images/platforms/white/bonfire.svg b/images/platforms/white/bonfire.svg
new file mode 100644
index 0000000000..9f2c438cfa
--- /dev/null
+++ b/images/platforms/white/bonfire.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/bonfire.svg.license b/images/platforms/white/bonfire.svg.license
new file mode 100644
index 0000000000..53413ed82d
--- /dev/null
+++ b/images/platforms/white/bonfire.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC-BY-SA-4.0
diff --git a/images/platforms/white/bookwyrm.svg b/images/platforms/white/bookwyrm.svg
new file mode 100644
index 0000000000..6afc7c37ca
--- /dev/null
+++ b/images/platforms/white/bookwyrm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/bookwyrm.svg.license b/images/platforms/white/bookwyrm.svg.license
new file mode 100644
index 0000000000..53413ed82d
--- /dev/null
+++ b/images/platforms/white/bookwyrm.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC-BY-SA-4.0
diff --git a/images/platforms/white/bridgy_fed.svg b/images/platforms/white/bridgy_fed.svg
new file mode 100644
index 0000000000..4326188486
--- /dev/null
+++ b/images/platforms/white/bridgy_fed.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/images/platforms/white/bridgy_fed.svg.license b/images/platforms/white/bridgy_fed.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/bridgy_fed.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/calckey.svg b/images/platforms/white/calckey.svg
new file mode 100644
index 0000000000..05de635f32
--- /dev/null
+++ b/images/platforms/white/calckey.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/images/platforms/white/calckey.svg.license b/images/platforms/white/calckey.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/calckey.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/castopod.svg b/images/platforms/white/castopod.svg
new file mode 100644
index 0000000000..a6c0c6df5e
--- /dev/null
+++ b/images/platforms/white/castopod.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/images/platforms/white/castopod.svg.license b/images/platforms/white/castopod.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/castopod.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/diaspora.svg b/images/platforms/white/diaspora.svg
new file mode 100644
index 0000000000..54ecd5f069
--- /dev/null
+++ b/images/platforms/white/diaspora.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/diaspora.svg.license b/images/platforms/white/diaspora.svg.license
new file mode 100644
index 0000000000..330e2cb8af
--- /dev/null
+++ b/images/platforms/white/diaspora.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/white/discourse.svg b/images/platforms/white/discourse.svg
new file mode 100644
index 0000000000..801b1345ee
--- /dev/null
+++ b/images/platforms/white/discourse.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/discourse.svg.license b/images/platforms/white/discourse.svg.license
new file mode 100644
index 0000000000..330e2cb8af
--- /dev/null
+++ b/images/platforms/white/discourse.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/white/dolphin.svg b/images/platforms/white/dolphin.svg
new file mode 100644
index 0000000000..590bb6728d
--- /dev/null
+++ b/images/platforms/white/dolphin.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/images/platforms/white/dolphin.svg.license b/images/platforms/white/dolphin.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/dolphin.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/drupal.svg b/images/platforms/white/drupal.svg
new file mode 100644
index 0000000000..f4179023e7
--- /dev/null
+++ b/images/platforms/white/drupal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/drupal.svg.license b/images/platforms/white/drupal.svg.license
new file mode 100644
index 0000000000..dfea79525f
--- /dev/null
+++ b/images/platforms/white/drupal.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: Apache-2.0
diff --git a/images/platforms/white/email.svg b/images/platforms/white/email.svg
new file mode 100644
index 0000000000..cbc88ddb10
--- /dev/null
+++ b/images/platforms/white/email.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/email.svg.license b/images/platforms/white/email.svg.license
new file mode 100644
index 0000000000..dfea79525f
--- /dev/null
+++ b/images/platforms/white/email.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: Apache-2.0
diff --git a/images/platforms/white/firefish.svg b/images/platforms/white/firefish.svg
new file mode 100644
index 0000000000..bf20d55ebf
--- /dev/null
+++ b/images/platforms/white/firefish.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/firefish.svg.license b/images/platforms/white/firefish.svg.license
new file mode 100644
index 0000000000..330e2cb8af
--- /dev/null
+++ b/images/platforms/white/firefish.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/white/flipboard.svg b/images/platforms/white/flipboard.svg
new file mode 100644
index 0000000000..62d8873eb1
--- /dev/null
+++ b/images/platforms/white/flipboard.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/flipboard.svg.license b/images/platforms/white/flipboard.svg.license
new file mode 100644
index 0000000000..330e2cb8af
--- /dev/null
+++ b/images/platforms/white/flipboard.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/white/flohmarkt.svg b/images/platforms/white/flohmarkt.svg
new file mode 100644
index 0000000000..cbab50efe0
--- /dev/null
+++ b/images/platforms/white/flohmarkt.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/images/platforms/white/flohmarkt.svg.license b/images/platforms/white/flohmarkt.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/flohmarkt.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/forgejo.svg b/images/platforms/white/forgejo.svg
new file mode 100644
index 0000000000..fb9566de7e
--- /dev/null
+++ b/images/platforms/white/forgejo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/forgejo.svg.license b/images/platforms/white/forgejo.svg.license
new file mode 100644
index 0000000000..330e2cb8af
--- /dev/null
+++ b/images/platforms/white/forgejo.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/white/friendica.svg b/images/platforms/white/friendica.svg
new file mode 100644
index 0000000000..c08f087165
--- /dev/null
+++ b/images/platforms/white/friendica.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/friendica.svg.license b/images/platforms/white/friendica.svg.license
new file mode 100644
index 0000000000..dfea79525f
--- /dev/null
+++ b/images/platforms/white/friendica.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: Apache-2.0
diff --git a/images/platforms/white/funkwhale.svg b/images/platforms/white/funkwhale.svg
new file mode 100644
index 0000000000..8afb6a3226
--- /dev/null
+++ b/images/platforms/white/funkwhale.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/funkwhale.svg.license b/images/platforms/white/funkwhale.svg.license
new file mode 100644
index 0000000000..53413ed82d
--- /dev/null
+++ b/images/platforms/white/funkwhale.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC-BY-SA-4.0
diff --git a/images/platforms/white/ghost.svg b/images/platforms/white/ghost.svg
new file mode 100644
index 0000000000..cca71bc322
--- /dev/null
+++ b/images/platforms/white/ghost.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/ghost.svg.license b/images/platforms/white/ghost.svg.license
new file mode 100644
index 0000000000..330e2cb8af
--- /dev/null
+++ b/images/platforms/white/ghost.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/white/gitlab.svg b/images/platforms/white/gitlab.svg
new file mode 100644
index 0000000000..ef428338de
--- /dev/null
+++ b/images/platforms/white/gitlab.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/gitlab.svg.license b/images/platforms/white/gitlab.svg.license
new file mode 100644
index 0000000000..dfea79525f
--- /dev/null
+++ b/images/platforms/white/gitlab.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: Apache-2.0
diff --git a/images/platforms/white/glitch-soc.svg b/images/platforms/white/glitch-soc.svg
new file mode 100644
index 0000000000..54ad242c76
--- /dev/null
+++ b/images/platforms/white/glitch-soc.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/images/platforms/white/glitch-soc.svg.license b/images/platforms/white/glitch-soc.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/glitch-soc.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/gnusocial.svg b/images/platforms/white/gnusocial.svg
new file mode 100644
index 0000000000..179c6fc8ba
--- /dev/null
+++ b/images/platforms/white/gnusocial.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/gnusocial.svg.license b/images/platforms/white/gnusocial.svg.license
new file mode 100644
index 0000000000..330e2cb8af
--- /dev/null
+++ b/images/platforms/white/gnusocial.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/white/gotosocial.svg b/images/platforms/white/gotosocial.svg
new file mode 100644
index 0000000000..2e097a139f
--- /dev/null
+++ b/images/platforms/white/gotosocial.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/gotosocial.svg.license b/images/platforms/white/gotosocial.svg.license
new file mode 100644
index 0000000000..53413ed82d
--- /dev/null
+++ b/images/platforms/white/gotosocial.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC-BY-SA-4.0
diff --git a/images/platforms/white/guppe.svg b/images/platforms/white/guppe.svg
new file mode 100644
index 0000000000..25b62c1a56
--- /dev/null
+++ b/images/platforms/white/guppe.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/images/platforms/white/guppe.svg.license b/images/platforms/white/guppe.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/guppe.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/hollo.svg b/images/platforms/white/hollo.svg
new file mode 100644
index 0000000000..ad53ba31f8
--- /dev/null
+++ b/images/platforms/white/hollo.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/images/platforms/white/hollo.svg.license b/images/platforms/white/hollo.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/hollo.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/hubzilla.svg b/images/platforms/white/hubzilla.svg
new file mode 100644
index 0000000000..9c9168a4c1
--- /dev/null
+++ b/images/platforms/white/hubzilla.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/images/platforms/white/hubzilla.svg.license b/images/platforms/white/hubzilla.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/hubzilla.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/iceshrimp.svg b/images/platforms/white/iceshrimp.svg
new file mode 100644
index 0000000000..7b942fe652
--- /dev/null
+++ b/images/platforms/white/iceshrimp.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/images/platforms/white/iceshrimp.svg.license b/images/platforms/white/iceshrimp.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/iceshrimp.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/kbin.svg b/images/platforms/white/kbin.svg
new file mode 100644
index 0000000000..7cc7811bde
--- /dev/null
+++ b/images/platforms/white/kbin.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/images/platforms/white/kbin.svg.license b/images/platforms/white/kbin.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/kbin.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/lemmy.svg b/images/platforms/white/lemmy.svg
new file mode 100644
index 0000000000..3bed2cc4b1
--- /dev/null
+++ b/images/platforms/white/lemmy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/lemmy.svg.license b/images/platforms/white/lemmy.svg.license
new file mode 100644
index 0000000000..330e2cb8af
--- /dev/null
+++ b/images/platforms/white/lemmy.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/white/loforo.svg b/images/platforms/white/loforo.svg
new file mode 100644
index 0000000000..76724dd834
--- /dev/null
+++ b/images/platforms/white/loforo.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/images/platforms/white/loforo.svg.license b/images/platforms/white/loforo.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/loforo.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/loops.svg b/images/platforms/white/loops.svg
new file mode 100644
index 0000000000..4ba2f33ba5
--- /dev/null
+++ b/images/platforms/white/loops.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/images/platforms/white/loops.svg.license b/images/platforms/white/loops.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/loops.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/mastodon.svg b/images/platforms/white/mastodon.svg
new file mode 100644
index 0000000000..2ac7d0b895
--- /dev/null
+++ b/images/platforms/white/mastodon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/mastodon.svg.license b/images/platforms/white/mastodon.svg.license
new file mode 100644
index 0000000000..dfea79525f
--- /dev/null
+++ b/images/platforms/white/mastodon.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: Apache-2.0
diff --git a/images/platforms/white/mbin.svg b/images/platforms/white/mbin.svg
new file mode 100644
index 0000000000..28e9b49345
--- /dev/null
+++ b/images/platforms/white/mbin.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/images/platforms/white/mbin.svg.license b/images/platforms/white/mbin.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/mbin.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/microblog.svg b/images/platforms/white/microblog.svg
new file mode 100644
index 0000000000..c77fd2ff6b
--- /dev/null
+++ b/images/platforms/white/microblog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/microblog.svg.license b/images/platforms/white/microblog.svg.license
new file mode 100644
index 0000000000..07ac40ec9a
--- /dev/null
+++ b/images/platforms/white/microblog.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC-BY-4.0
diff --git a/images/platforms/white/minds.svg b/images/platforms/white/minds.svg
new file mode 100644
index 0000000000..0ddee7bc03
--- /dev/null
+++ b/images/platforms/white/minds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/minds.svg.license b/images/platforms/white/minds.svg.license
new file mode 100644
index 0000000000..330e2cb8af
--- /dev/null
+++ b/images/platforms/white/minds.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/white/misskey.svg b/images/platforms/white/misskey.svg
new file mode 100644
index 0000000000..9dd605eb9a
--- /dev/null
+++ b/images/platforms/white/misskey.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/misskey.svg.license b/images/platforms/white/misskey.svg.license
new file mode 100644
index 0000000000..330e2cb8af
--- /dev/null
+++ b/images/platforms/white/misskey.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/white/mobilizon.svg b/images/platforms/white/mobilizon.svg
new file mode 100644
index 0000000000..2d2a6d9a17
--- /dev/null
+++ b/images/platforms/white/mobilizon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/mobilizon.svg.license b/images/platforms/white/mobilizon.svg.license
new file mode 100644
index 0000000000..53413ed82d
--- /dev/null
+++ b/images/platforms/white/mobilizon.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC-BY-SA-4.0
diff --git a/images/platforms/white/nextcloud.svg b/images/platforms/white/nextcloud.svg
new file mode 100644
index 0000000000..6ef81a6795
--- /dev/null
+++ b/images/platforms/white/nextcloud.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/nextcloud.svg.license b/images/platforms/white/nextcloud.svg.license
new file mode 100644
index 0000000000..bf13a3d696
--- /dev/null
+++ b/images/platforms/white/nextcloud.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: MIT
diff --git a/images/platforms/white/owncast.svg b/images/platforms/white/owncast.svg
new file mode 100644
index 0000000000..cf0ada166b
--- /dev/null
+++ b/images/platforms/white/owncast.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/images/platforms/white/owncast.svg.license b/images/platforms/white/owncast.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/owncast.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/peertube.svg b/images/platforms/white/peertube.svg
new file mode 100644
index 0000000000..7a15c8e0d4
--- /dev/null
+++ b/images/platforms/white/peertube.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/peertube.svg.license b/images/platforms/white/peertube.svg.license
new file mode 100644
index 0000000000..330e2cb8af
--- /dev/null
+++ b/images/platforms/white/peertube.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/white/phanpy.svg b/images/platforms/white/phanpy.svg
new file mode 100644
index 0000000000..f9f8073e41
--- /dev/null
+++ b/images/platforms/white/phanpy.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/images/platforms/white/phanpy.svg.license b/images/platforms/white/phanpy.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/phanpy.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/pixelfed.svg b/images/platforms/white/pixelfed.svg
new file mode 100644
index 0000000000..c872c65e89
--- /dev/null
+++ b/images/platforms/white/pixelfed.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/pixelfed.svg.license b/images/platforms/white/pixelfed.svg.license
new file mode 100644
index 0000000000..dfea79525f
--- /dev/null
+++ b/images/platforms/white/pixelfed.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: Apache-2.0
diff --git a/images/platforms/white/pleroma.svg b/images/platforms/white/pleroma.svg
new file mode 100644
index 0000000000..e0b0585c7b
--- /dev/null
+++ b/images/platforms/white/pleroma.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/pleroma.svg.license b/images/platforms/white/pleroma.svg.license
new file mode 100644
index 0000000000..330e2cb8af
--- /dev/null
+++ b/images/platforms/white/pleroma.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/white/plume.svg b/images/platforms/white/plume.svg
new file mode 100644
index 0000000000..b4fbff3127
--- /dev/null
+++ b/images/platforms/white/plume.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/images/platforms/white/plume.svg.license b/images/platforms/white/plume.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/plume.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/rss.svg b/images/platforms/white/rss.svg
new file mode 100644
index 0000000000..1874fa72d3
--- /dev/null
+++ b/images/platforms/white/rss.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/rss.svg.license b/images/platforms/white/rss.svg.license
new file mode 100644
index 0000000000..dfea79525f
--- /dev/null
+++ b/images/platforms/white/rss.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: Apache-2.0
diff --git a/images/platforms/white/shark.svg b/images/platforms/white/shark.svg
new file mode 100644
index 0000000000..6b360796ab
--- /dev/null
+++ b/images/platforms/white/shark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/shark.svg.license b/images/platforms/white/shark.svg.license
new file mode 100644
index 0000000000..d1c6a344b0
--- /dev/null
+++ b/images/platforms/white/shark.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC-BY-3.0
diff --git a/images/platforms/white/soapbox.svg b/images/platforms/white/soapbox.svg
new file mode 100644
index 0000000000..b852de2381
--- /dev/null
+++ b/images/platforms/white/soapbox.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/images/platforms/white/soapbox.svg.license b/images/platforms/white/soapbox.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/soapbox.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/socialhome.svg b/images/platforms/white/socialhome.svg
new file mode 100644
index 0000000000..513f2bb6d0
--- /dev/null
+++ b/images/platforms/white/socialhome.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/images/platforms/white/socialhome.svg.license b/images/platforms/white/socialhome.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/socialhome.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/streams.svg b/images/platforms/white/streams.svg
new file mode 100644
index 0000000000..3b7224134a
--- /dev/null
+++ b/images/platforms/white/streams.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/images/platforms/white/streams.svg.license b/images/platforms/white/streams.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/streams.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/takahe.svg b/images/platforms/white/takahe.svg
new file mode 100644
index 0000000000..31146146ea
--- /dev/null
+++ b/images/platforms/white/takahe.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/images/platforms/white/takahe.svg.license b/images/platforms/white/takahe.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/takahe.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/threads.svg b/images/platforms/white/threads.svg
new file mode 100644
index 0000000000..d178ba1dfb
--- /dev/null
+++ b/images/platforms/white/threads.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/threads.svg.license b/images/platforms/white/threads.svg.license
new file mode 100644
index 0000000000..dfea79525f
--- /dev/null
+++ b/images/platforms/white/threads.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: Apache-2.0
diff --git a/images/platforms/white/tumblr.svg b/images/platforms/white/tumblr.svg
new file mode 100644
index 0000000000..d11cfd53ee
--- /dev/null
+++ b/images/platforms/white/tumblr.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/tumblr.svg.license b/images/platforms/white/tumblr.svg.license
new file mode 100644
index 0000000000..bf13a3d696
--- /dev/null
+++ b/images/platforms/white/tumblr.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: MIT
diff --git a/images/platforms/white/wordpress.svg b/images/platforms/white/wordpress.svg
new file mode 100644
index 0000000000..39c01c6658
--- /dev/null
+++ b/images/platforms/white/wordpress.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/wordpress.svg.license b/images/platforms/white/wordpress.svg.license
new file mode 100644
index 0000000000..dfea79525f
--- /dev/null
+++ b/images/platforms/white/wordpress.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: Apache-2.0
diff --git a/images/platforms/white/write.as.svg b/images/platforms/white/write.as.svg
new file mode 100644
index 0000000000..b910f3d480
--- /dev/null
+++ b/images/platforms/white/write.as.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/images/platforms/white/write.as.svg.license b/images/platforms/white/write.as.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/write.as.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/writefreely.svg b/images/platforms/white/writefreely.svg
new file mode 100644
index 0000000000..e6e7e76d16
--- /dev/null
+++ b/images/platforms/white/writefreely.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/images/platforms/white/writefreely.svg.license b/images/platforms/white/writefreely.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/writefreely.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/images/platforms/white/xwiki.svg b/images/platforms/white/xwiki.svg
new file mode 100644
index 0000000000..db64f83d2e
--- /dev/null
+++ b/images/platforms/white/xwiki.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/images/platforms/white/xwiki.svg.license b/images/platforms/white/xwiki.svg.license
new file mode 100644
index 0000000000..330e2cb8af
--- /dev/null
+++ b/images/platforms/white/xwiki.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: iconify https://icon-sets.iconify.design
+SPDX-License-Identifier: CC0-1.0
diff --git a/images/platforms/white/zap.svg b/images/platforms/white/zap.svg
new file mode 100644
index 0000000000..6e1470d88b
--- /dev/null
+++ b/images/platforms/white/zap.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/images/platforms/white/zap.svg.license b/images/platforms/white/zap.svg.license
new file mode 100644
index 0000000000..3ffce40c5f
--- /dev/null
+++ b/images/platforms/white/zap.svg.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography
+SPDX-License-Identifier: GPL-3.0-only
diff --git a/mod/item.php b/mod/item.php
index 445e2ebc22..c47dbac44d 100644
--- a/mod/item.php
+++ b/mod/item.php
@@ -16,7 +16,6 @@
* information.
*/
-use Friendica\App;
use Friendica\Content\Conversation;
use Friendica\Content\Text\BBCode;
use Friendica\Core\Hook;
@@ -284,7 +283,7 @@ function item_process(array $post, array $request, bool $preview, string $return
unset($post['api_source']);
if (!empty($request['scheduled_at'])) {
- $scheduled_at = DateTimeFormat::convert($request['scheduled_at'], 'UTC', DI::app()->getTimeZone());
+ $scheduled_at = DateTimeFormat::convert($request['scheduled_at'], 'UTC', DI::appHelper()->getTimeZone());
if ($scheduled_at > DateTimeFormat::utcNow()) {
unset($post['created']);
unset($post['edited']);
@@ -330,7 +329,7 @@ function item_post_return($baseurl, $return_path)
System::jsonExit($json);
}
-function item_content(App $a)
+function item_content()
{
if (!DI::userSession()->isAuthenticated()) {
throw new HTTPException\UnauthorizedException();
diff --git a/mod/lostpass.php b/mod/lostpass.php
index b16a4e10ec..d62fd5f5aa 100644
--- a/mod/lostpass.php
+++ b/mod/lostpass.php
@@ -7,7 +7,6 @@
*
*/
-use Friendica\App;
use Friendica\Core\Renderer;
use Friendica\Database\DBA;
use Friendica\DI;
@@ -15,7 +14,7 @@ use Friendica\Model\User;
use Friendica\Util\DateTimeFormat;
use Friendica\Util\Strings;
-function lostpass_post(App $a)
+function lostpass_post()
{
$loginame = trim($_POST['login-name']);
if (!$loginame) {
@@ -78,7 +77,7 @@ function lostpass_post(App $a)
DI::baseUrl()->redirect();
}
-function lostpass_content(App $a)
+function lostpass_content()
{
if (DI::args()->getArgc() > 1) {
$pwdreset_token = DI::args()->getArgv()[1];
diff --git a/mod/notes.php b/mod/notes.php
index 27e7a9dc76..478e4c4aca 100644
--- a/mod/notes.php
+++ b/mod/notes.php
@@ -7,7 +7,6 @@
*
*/
-use Friendica\App;
use Friendica\Content\Conversation;
use Friendica\Content\Nav;
use Friendica\Content\Pager;
@@ -17,7 +16,7 @@ use Friendica\Model\Item;
use Friendica\Model\Post;
use Friendica\Module\BaseProfile;
-function notes_init(App $a)
+function notes_init()
{
if (! DI::userSession()->getLocalUserId()) {
return;
@@ -27,8 +26,10 @@ function notes_init(App $a)
}
-function notes_content(App $a, bool $update = false)
+function notes_content(bool $update = false)
{
+ $contactId = DI::appHelper()->getContactId();
+
if (!DI::userSession()->getLocalUserId()) {
DI::sysmsg()->addNotice(DI::l10n()->t('Permission denied.'));
return;
@@ -46,11 +47,11 @@ function notes_content(App $a, bool $update = false)
'acl_data' => '',
];
- $o .= DI::conversation()->statusEditor($x, $a->getContactId());
+ $o .= DI::conversation()->statusEditor($x, $contactId);
}
$condition = ['uid' => DI::userSession()->getLocalUserId(), 'post-type' => Item::PT_PERSONAL_NOTE, 'gravity' => Item::GRAVITY_PARENT,
- 'contact-id'=> $a->getContactId()];
+ 'contact-id'=> $contactId];
if (DI::mode()->isMobile()) {
$itemsPerPage = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'itemspage_mobile_network',
diff --git a/mod/photos.php b/mod/photos.php
index abd62989a2..c9fa60bca0 100644
--- a/mod/photos.php
+++ b/mod/photos.php
@@ -28,9 +28,7 @@ use Friendica\Model\Tag;
use Friendica\Model\User;
use Friendica\Module\BaseProfile;
use Friendica\Network\HTTPException;
-use Friendica\Network\Probe;
use Friendica\Protocol\Activity;
-use Friendica\Protocol\ActivityNamespace;
use Friendica\Security\Security;
use Friendica\Util\Crypto;
use Friendica\Util\DateTimeFormat;
@@ -49,7 +47,7 @@ function photos_init()
Nav::setSelected('home');
if (DI::args()->getArgc() > 1) {
- $owner = Profile::load(DI::app(), DI::args()->getArgv()[1], false);
+ $owner = Profile::load(DI::appHelper(), DI::args()->getArgv()[1], false);
if (!isset($owner['account_removed']) || $owner['account_removed']) {
throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
}
diff --git a/mod/update_contact.php b/mod/update_contact.php
index 76993c0ce3..adfbc513d7 100644
--- a/mod/update_contact.php
+++ b/mod/update_contact.php
@@ -9,14 +9,13 @@
*
*/
-use Friendica\App;
use Friendica\Core\System;
use Friendica\Database\DBA;
use Friendica\DI;
use Friendica\Model\Post;
use Friendica\Model\Contact;
-function update_contact_content(App $a)
+function update_contact_content()
{
if (!empty(DI::args()->get(1)) && !empty($_GET['force'])) {
$contact = DBA::selectFirst('account-user-view', ['pid', 'deleted'], ['id' => DI::args()->get(1)]);
diff --git a/mod/update_notes.php b/mod/update_notes.php
index de455f5f00..06bbac6930 100644
--- a/mod/update_notes.php
+++ b/mod/update_notes.php
@@ -8,13 +8,11 @@
* AJAX synchronisation of notes page
*/
-use Friendica\App;
use Friendica\Core\System;
-use Friendica\DI;
require_once 'mod/notes.php';
-function update_notes_content(App $a)
+function update_notes_content()
{
$profile_uid = intval($_GET['p']);
@@ -28,7 +26,7 @@ function update_notes_content(App $a)
*
*/
- $text = notes_content($a, $profile_uid);
+ $text = notes_content($profile_uid);
System::htmlUpdateExit($text);
}
diff --git a/mods/home.html b/mods/home.html
index b881cf8ff2..7521f4e3e1 100644
--- a/mods/home.html
+++ b/mods/home.html
@@ -12,7 +12,7 @@
What other networks does it interact with?
-
Every network that speaks either the DFRN2, ActivityPub, OStatus or diaspora* protocol. Currently this list includes: diaspora*, friendica, funkwhale, ganggo, GNU social, Hubzilla, Mastodon, NextClout social, pixelfed, Pleroma, postActivi, Osada, Socialhome and many more.
+
Every network that speaks either the DFRN2, ActivityPub or diaspora* protocol. Currently this list includes: diaspora*, friendica, funkwhale, ganggo, GNU social, Hubzilla, Mastodon, NextClout social, pixelfed, Pleroma, Socialhome and many more.