From: Hypolite Petovan Date: Wed, 1 Jan 2025 17:16:35 +0000 (-0500) Subject: Welcome version 2025.02-dev! X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8b473787206ae11110523d1dfdf041919c72b05f;p=friendica.git Welcome version 2025.02-dev! # Conflicts: # CHANGELOG # VERSION # database.sql # src/App.php # view/lang/C/messages.po --- 8b473787206ae11110523d1dfdf041919c72b05f diff --cc CHANGELOG index c6d00f5183,76b1d7a65e..0b955bb1a0 --- a/CHANGELOG +++ b/CHANGELOG @@@ -1,16 -1,67 +1,74 @@@ - Version 2024.12 (unreleased) ++Version 2025.02 (unreleased) + Friendica Core + + Friendica Addons + + Closed Issues + - Version 2024.09 (unreleased) + Version 2024.12 (2024-12-31) Friendica Core + Updates to the translations AR, BG, CA, CS, DE, EO, ES, ET, FR, GD, HU, IS, IT, JA, NL, PL, RU, SV + Updates to the documentation [annando, bmillwood, tobiasd] + Updates to the themes (frio) [haheute] + Friendica Core is now REUSE compliant [tobiasd] + General code cleanup [annando, nupplaphil, mexon] + Improved federation with Bluesky, Hubzilla, Peertube, threads, Wordpress [annando] + Improved the API [annando] + Improved display of contact connection state [annando] + Improved handling of bad webfinger requests [annando, mexon, zotanmew] + Improved the order of actions on the 2FA settings page [tobiasd] + Improved server type detection [annando] + Improved content negotiation [annando] + Improved expiration [annando] + Improved contact archiving [annando] + Improved delivery of content [annando] + Improved displayed project icons [annando] + Improved splitting of long postings via connectors [annando] + Improved contact import [annando] + Improved URL detection in searches [annando] + Improved handling of blocked users [annando] + Fixed a bug in creating app specific passwords [nupplaphil] + Fixed a bug in importing some notes from Mastodon [annando] + Fixed a bug with postings from buffer including images [annando] + Fixed a apache2 problem with unsafe URLs [annando] + Fixed a bug in the contact settings [annando] + Fixed a bug with latin1 encoded databases [annando] + Fixed a bug while uploading server blocklists [ne20002] + Fixed a bug while parsing events [annando] + Fixed a bug in the initial registry settings [annando] + Fixed a bug in 0Auth with buffer [annando] + Fixed a problem with rich HTML content [annando] + Fixed a bug with private comments [annando] + Fixed a bug in gettext [tobiasd] + Fixed a bug in the installation process [tobiasd] + Fixed schema.org issue [annando] + Added admin info to stats module [nupplaphil] + Added an option to exclude postings with images without ALT text [annando] + Added an option to hide custom emojis [annando] + Added support for HLS [annando] + Added devcontainer for Friendica [ne20002] + Added jetstream support for AT protocol [annando] + Added native probe support for AT protocol [annando] + Removed custom emojis from contact names [annando] + Removed OStatus support [annando] Friendica Addons + bluesky + Added block functionality [annando] + Added option to complete threads [annando] + Fixed issue with blocking contacts [annando] + Improved handling of startersets [annando] + Improved fetching of postings [annando] + invidious [loma-one] + unicode_smileys [loma-one] + fancybox + Deprecated the addon [tobiasd] Closed Issues + 13270, 13943, 14121, 14126, 14145, 14174, 14212, 14244, 14281, + 14292, 14294, 14303, 14307, 14344, 14368, 14370, 14373, 14377, + 14381, 14413, 14421, 14525, 14450, 14451, 14464, 14487, 14488, + 14491, 14495, 14512, 14587, 14609, 14630 Version 2024.08 (2024-08-17) Friendica Core diff --cc VERSION index 36a4cb0dc4,3818306891..2d4bb52626 --- a/VERSION +++ b/VERSION @@@ -1,1 -1,1 +1,1 @@@ - 2024.12-dev -2024.12 ++2025.02-dev diff --cc database.sql index d7af7f95a1,a722fcb4d9..f496269255 --- a/database.sql +++ b/database.sql @@@ -1,5 -1,5 +1,5 @@@ -- ------------------------------------------ - -- Friendica 2024.12-dev (Yellow Archangel) --- Friendica 2024.12 (Interrupted Fern) ++-- Friendica 2025.02-dev (Interrupted Fern) -- DB_UPDATE_VERSION 1576 -- ------------------------------------------ diff --cc src/App.php index c24215e37d,8813dc52a0..9cacfaf6cf --- a/src/App.php +++ b/src/App.php @@@ -63,21 -50,23 +63,21 @@@ use Psr\Log\LoggerInterface class App { const PLATFORM = 'Friendica'; - const CODENAME = 'Yellow Archangel'; - const VERSION = '2024.12-dev'; + const CODENAME = 'Interrupted Fern'; - const VERSION = '2024.12'; ++ const VERSION = '2025.02-dev'; - // Allow themes to control internal parameters - // by changing App values in theme.php - private $theme_info = [ - 'videowidth' => 425, - 'videoheight' => 350, - ]; + public static function fromDice(Dice $dice): self + { + return new self($dice); + } - private $timezone = ''; - private $profile_owner = 0; - private $contact_id = 0; - private $queue = []; + /** + * @var Dice + */ + private $container; /** - * @var App\Mode The Mode of the Application + * @var Mode The Mode of the Application */ private $mode;