2024.06-rc

This commit is contained in:
Tobias Diekershoff 2024-06-04 20:35:00 +02:00
parent 03db8ee52c
commit 72f6b07c88
4 changed files with 31 additions and 31 deletions

View file

@ -1 +1 @@
2024.06-dev 2024.06-rc

View file

@ -1,5 +1,5 @@
-- ------------------------------------------ -- ------------------------------------------
-- Friendica 2024.06-dev (Yellow Archangel) -- Friendica 2024.06-rc (Yellow Archangel)
-- DB_UPDATE_VERSION 1565 -- DB_UPDATE_VERSION 1565
-- ------------------------------------------ -- ------------------------------------------
@ -2034,7 +2034,7 @@ CREATE TABLE IF NOT EXISTS `worker-ipc` (
-- VIEW application-view -- VIEW application-view
-- --
DROP VIEW IF EXISTS `application-view`; DROP VIEW IF EXISTS `application-view`;
CREATE VIEW `application-view` AS SELECT CREATE VIEW `application-view` AS SELECT
`application`.`id` AS `id`, `application`.`id` AS `id`,
`application-token`.`uid` AS `uid`, `application-token`.`uid` AS `uid`,
`application`.`name` AS `name`, `application`.`name` AS `name`,
@ -2058,7 +2058,7 @@ CREATE VIEW `application-view` AS SELECT
-- VIEW circle-member-view -- VIEW circle-member-view
-- --
DROP VIEW IF EXISTS `circle-member-view`; DROP VIEW IF EXISTS `circle-member-view`;
CREATE VIEW `circle-member-view` AS SELECT CREATE VIEW `circle-member-view` AS SELECT
`group_member`.`id` AS `id`, `group_member`.`id` AS `id`,
`group`.`uid` AS `uid`, `group`.`uid` AS `uid`,
`group_member`.`contact-id` AS `contact-id`, `group_member`.`contact-id` AS `contact-id`,
@ -2089,7 +2089,7 @@ CREATE VIEW `circle-member-view` AS SELECT
-- VIEW post-counts-view -- VIEW post-counts-view
-- --
DROP VIEW IF EXISTS `post-counts-view`; DROP VIEW IF EXISTS `post-counts-view`;
CREATE VIEW `post-counts-view` AS SELECT CREATE VIEW `post-counts-view` AS SELECT
`post-counts`.`uri-id` AS `uri-id`, `post-counts`.`uri-id` AS `uri-id`,
`post-counts`.`vid` AS `vid`, `post-counts`.`vid` AS `vid`,
`verb`.`name` AS `verb`, `verb`.`name` AS `verb`,
@ -2103,7 +2103,7 @@ CREATE VIEW `post-counts-view` AS SELECT
-- VIEW post-engagement-user-view -- VIEW post-engagement-user-view
-- --
DROP VIEW IF EXISTS `post-engagement-user-view`; DROP VIEW IF EXISTS `post-engagement-user-view`;
CREATE VIEW `post-engagement-user-view` AS SELECT CREATE VIEW `post-engagement-user-view` AS SELECT
`post-thread-user`.`uid` AS `uid`, `post-thread-user`.`uid` AS `uid`,
`post-engagement`.`uri-id` AS `uri-id`, `post-engagement`.`uri-id` AS `uri-id`,
`post-engagement`.`owner-id` AS `owner-id`, `post-engagement`.`owner-id` AS `owner-id`,
@ -2135,7 +2135,7 @@ CREATE VIEW `post-engagement-user-view` AS SELECT
-- VIEW post-timeline-view -- VIEW post-timeline-view
-- --
DROP VIEW IF EXISTS `post-timeline-view`; DROP VIEW IF EXISTS `post-timeline-view`;
CREATE VIEW `post-timeline-view` AS SELECT CREATE VIEW `post-timeline-view` AS SELECT
`post-user`.`uid` AS `uid`, `post-user`.`uid` AS `uid`,
`post-user`.`uri-id` AS `uri-id`, `post-user`.`uri-id` AS `uri-id`,
`post-user`.`gravity` AS `gravity`, `post-user`.`gravity` AS `gravity`,
@ -2180,7 +2180,7 @@ CREATE VIEW `post-timeline-view` AS SELECT
-- VIEW post-timeline-origin-view -- VIEW post-timeline-origin-view
-- --
DROP VIEW IF EXISTS `post-timeline-origin-view`; DROP VIEW IF EXISTS `post-timeline-origin-view`;
CREATE VIEW `post-timeline-origin-view` AS SELECT CREATE VIEW `post-timeline-origin-view` AS SELECT
`post-origin`.`uid` AS `uid`, `post-origin`.`uid` AS `uid`,
`post-origin`.`uri-id` AS `uri-id`, `post-origin`.`uri-id` AS `uri-id`,
`post-origin`.`gravity` AS `gravity`, `post-origin`.`gravity` AS `gravity`,
@ -2226,7 +2226,7 @@ CREATE VIEW `post-timeline-origin-view` AS SELECT
-- VIEW post-searchindex-user-view -- VIEW post-searchindex-user-view
-- --
DROP VIEW IF EXISTS `post-searchindex-user-view`; DROP VIEW IF EXISTS `post-searchindex-user-view`;
CREATE VIEW `post-searchindex-user-view` AS SELECT CREATE VIEW `post-searchindex-user-view` AS SELECT
`post-thread-user`.`uid` AS `uid`, `post-thread-user`.`uid` AS `uid`,
`post-searchindex`.`uri-id` AS `uri-id`, `post-searchindex`.`uri-id` AS `uri-id`,
`post-searchindex`.`owner-id` AS `owner-id`, `post-searchindex`.`owner-id` AS `owner-id`,
@ -2258,7 +2258,7 @@ CREATE VIEW `post-searchindex-user-view` AS SELECT
-- VIEW post-origin-view -- VIEW post-origin-view
-- --
DROP VIEW IF EXISTS `post-origin-view`; DROP VIEW IF EXISTS `post-origin-view`;
CREATE VIEW `post-origin-view` AS SELECT CREATE VIEW `post-origin-view` AS SELECT
`post-origin`.`id` AS `id`, `post-origin`.`id` AS `id`,
`post-origin`.`id` AS `post-user-id`, `post-origin`.`id` AS `post-user-id`,
`post-origin`.`uid` AS `uid`, `post-origin`.`uid` AS `uid`,
@ -2446,7 +2446,7 @@ CREATE VIEW `post-origin-view` AS SELECT
-- VIEW post-thread-origin-view -- VIEW post-thread-origin-view
-- --
DROP VIEW IF EXISTS `post-thread-origin-view`; DROP VIEW IF EXISTS `post-thread-origin-view`;
CREATE VIEW `post-thread-origin-view` AS SELECT CREATE VIEW `post-thread-origin-view` AS SELECT
`post-origin`.`id` AS `id`, `post-origin`.`id` AS `id`,
`post-origin`.`id` AS `post-user-id`, `post-origin`.`id` AS `post-user-id`,
`post-origin`.`uid` AS `uid`, `post-origin`.`uid` AS `uid`,
@ -2632,7 +2632,7 @@ CREATE VIEW `post-thread-origin-view` AS SELECT
-- VIEW post-user-view -- VIEW post-user-view
-- --
DROP VIEW IF EXISTS `post-user-view`; DROP VIEW IF EXISTS `post-user-view`;
CREATE VIEW `post-user-view` AS SELECT CREATE VIEW `post-user-view` AS SELECT
`post-user`.`id` AS `id`, `post-user`.`id` AS `id`,
`post-user`.`id` AS `post-user-id`, `post-user`.`id` AS `post-user-id`,
`post-user`.`uid` AS `uid`, `post-user`.`uid` AS `uid`,
@ -2819,7 +2819,7 @@ CREATE VIEW `post-user-view` AS SELECT
-- VIEW post-thread-user-view -- VIEW post-thread-user-view
-- --
DROP VIEW IF EXISTS `post-thread-user-view`; DROP VIEW IF EXISTS `post-thread-user-view`;
CREATE VIEW `post-thread-user-view` AS SELECT CREATE VIEW `post-thread-user-view` AS SELECT
`post-user`.`id` AS `id`, `post-user`.`id` AS `id`,
`post-user`.`id` AS `post-user-id`, `post-user`.`id` AS `post-user-id`,
`post-thread-user`.`uid` AS `uid`, `post-thread-user`.`uid` AS `uid`,
@ -3004,7 +3004,7 @@ CREATE VIEW `post-thread-user-view` AS SELECT
-- VIEW post-view -- VIEW post-view
-- --
DROP VIEW IF EXISTS `post-view`; DROP VIEW IF EXISTS `post-view`;
CREATE VIEW `post-view` AS SELECT CREATE VIEW `post-view` AS SELECT
`item-uri`.`uri` AS `uri`, `item-uri`.`uri` AS `uri`,
`post`.`uri-id` AS `uri-id`, `post`.`uri-id` AS `uri-id`,
`parent-item-uri`.`uri` AS `parent-uri`, `parent-item-uri`.`uri` AS `parent-uri`,
@ -3151,7 +3151,7 @@ CREATE VIEW `post-view` AS SELECT
-- VIEW post-thread-view -- VIEW post-thread-view
-- --
DROP VIEW IF EXISTS `post-thread-view`; DROP VIEW IF EXISTS `post-thread-view`;
CREATE VIEW `post-thread-view` AS SELECT CREATE VIEW `post-thread-view` AS SELECT
`item-uri`.`uri` AS `uri`, `item-uri`.`uri` AS `uri`,
`post-thread`.`uri-id` AS `uri-id`, `post-thread`.`uri-id` AS `uri-id`,
`parent-item-uri`.`uri` AS `parent-uri`, `parent-item-uri`.`uri` AS `parent-uri`,
@ -3299,7 +3299,7 @@ CREATE VIEW `post-thread-view` AS SELECT
-- VIEW category-view -- VIEW category-view
-- --
DROP VIEW IF EXISTS `category-view`; DROP VIEW IF EXISTS `category-view`;
CREATE VIEW `category-view` AS SELECT CREATE VIEW `category-view` AS SELECT
`post-category`.`uri-id` AS `uri-id`, `post-category`.`uri-id` AS `uri-id`,
`post-category`.`uid` AS `uid`, `post-category`.`uid` AS `uid`,
`post-category`.`type` AS `type`, `post-category`.`type` AS `type`,
@ -3313,7 +3313,7 @@ CREATE VIEW `category-view` AS SELECT
-- VIEW collection-view -- VIEW collection-view
-- --
DROP VIEW IF EXISTS `collection-view`; DROP VIEW IF EXISTS `collection-view`;
CREATE VIEW `collection-view` AS SELECT CREATE VIEW `collection-view` AS SELECT
`post-collection`.`uri-id` AS `uri-id`, `post-collection`.`uri-id` AS `uri-id`,
`post-collection`.`type` AS `type`, `post-collection`.`type` AS `type`,
`post-collection`.`author-id` AS `cid`, `post-collection`.`author-id` AS `cid`,
@ -3334,7 +3334,7 @@ CREATE VIEW `collection-view` AS SELECT
-- VIEW media-view -- VIEW media-view
-- --
DROP VIEW IF EXISTS `media-view`; DROP VIEW IF EXISTS `media-view`;
CREATE VIEW `media-view` AS SELECT CREATE VIEW `media-view` AS SELECT
`post-media`.`uri-id` AS `uri-id`, `post-media`.`uri-id` AS `uri-id`,
`post-media`.`type` AS `type`, `post-media`.`type` AS `type`,
`post`.`received` AS `received`, `post`.`received` AS `received`,
@ -3352,7 +3352,7 @@ CREATE VIEW `media-view` AS SELECT
-- VIEW tag-view -- VIEW tag-view
-- --
DROP VIEW IF EXISTS `tag-view`; DROP VIEW IF EXISTS `tag-view`;
CREATE VIEW `tag-view` AS SELECT CREATE VIEW `tag-view` AS SELECT
`post-tag`.`uri-id` AS `uri-id`, `post-tag`.`uri-id` AS `uri-id`,
`post-tag`.`type` AS `type`, `post-tag`.`type` AS `type`,
`post-tag`.`tid` AS `tid`, `post-tag`.`tid` AS `tid`,
@ -3368,7 +3368,7 @@ CREATE VIEW `tag-view` AS SELECT
-- VIEW network-thread-view -- VIEW network-thread-view
-- --
DROP VIEW IF EXISTS `network-thread-view`; DROP VIEW IF EXISTS `network-thread-view`;
CREATE VIEW `network-thread-view` AS SELECT CREATE VIEW `network-thread-view` AS SELECT
`post-thread-user`.`uri-id` AS `uri-id`, `post-thread-user`.`uri-id` AS `uri-id`,
`post-thread-user`.`post-user-id` AS `parent`, `post-thread-user`.`post-user-id` AS `parent`,
`post-thread-user`.`received` AS `received`, `post-thread-user`.`received` AS `received`,
@ -3396,7 +3396,7 @@ CREATE VIEW `network-thread-view` AS SELECT
-- VIEW network-thread-circle-view -- VIEW network-thread-circle-view
-- --
DROP VIEW IF EXISTS `network-thread-circle-view`; DROP VIEW IF EXISTS `network-thread-circle-view`;
CREATE VIEW `network-thread-circle-view` AS SELECT CREATE VIEW `network-thread-circle-view` AS SELECT
`post-thread-user`.`uri-id` AS `uri-id`, `post-thread-user`.`uri-id` AS `uri-id`,
`post-thread-user`.`post-user-id` AS `parent`, `post-thread-user`.`post-user-id` AS `parent`,
`post-thread-user`.`received` AS `received`, `post-thread-user`.`received` AS `received`,
@ -3424,7 +3424,7 @@ CREATE VIEW `network-thread-circle-view` AS SELECT
-- VIEW owner-view -- VIEW owner-view
-- --
DROP VIEW IF EXISTS `owner-view`; DROP VIEW IF EXISTS `owner-view`;
CREATE VIEW `owner-view` AS SELECT CREATE VIEW `owner-view` AS SELECT
`contact`.`id` AS `id`, `contact`.`id` AS `id`,
`contact`.`uid` AS `uid`, `contact`.`uid` AS `uid`,
`contact`.`created` AS `created`, `contact`.`created` AS `created`,
@ -3552,7 +3552,7 @@ CREATE VIEW `owner-view` AS SELECT
-- VIEW account-view -- VIEW account-view
-- --
DROP VIEW IF EXISTS `account-view`; DROP VIEW IF EXISTS `account-view`;
CREATE VIEW `account-view` AS SELECT CREATE VIEW `account-view` AS SELECT
`contact`.`id` AS `id`, `contact`.`id` AS `id`,
`contact`.`url` AS `url`, `contact`.`url` AS `url`,
`contact`.`nurl` AS `nurl`, `contact`.`nurl` AS `nurl`,
@ -3640,7 +3640,7 @@ CREATE VIEW `account-view` AS SELECT
-- VIEW account-user-view -- VIEW account-user-view
-- --
DROP VIEW IF EXISTS `account-user-view`; DROP VIEW IF EXISTS `account-user-view`;
CREATE VIEW `account-user-view` AS SELECT CREATE VIEW `account-user-view` AS SELECT
`ucontact`.`id` AS `id`, `ucontact`.`id` AS `id`,
`contact`.`id` AS `pid`, `contact`.`id` AS `pid`,
`ucontact`.`uid` AS `uid`, `ucontact`.`uid` AS `uid`,
@ -3746,7 +3746,7 @@ CREATE VIEW `account-user-view` AS SELECT
-- VIEW pending-view -- VIEW pending-view
-- --
DROP VIEW IF EXISTS `pending-view`; DROP VIEW IF EXISTS `pending-view`;
CREATE VIEW `pending-view` AS SELECT CREATE VIEW `pending-view` AS SELECT
`register`.`id` AS `id`, `register`.`id` AS `id`,
`register`.`hash` AS `hash`, `register`.`hash` AS `hash`,
`register`.`created` AS `created`, `register`.`created` AS `created`,
@ -3768,7 +3768,7 @@ CREATE VIEW `pending-view` AS SELECT
-- VIEW tag-search-view -- VIEW tag-search-view
-- --
DROP VIEW IF EXISTS `tag-search-view`; DROP VIEW IF EXISTS `tag-search-view`;
CREATE VIEW `tag-search-view` AS SELECT CREATE VIEW `tag-search-view` AS SELECT
`post-tag`.`uri-id` AS `uri-id`, `post-tag`.`uri-id` AS `uri-id`,
`post-user`.`uid` AS `uid`, `post-user`.`uid` AS `uid`,
`post-user`.`id` AS `iid`, `post-user`.`id` AS `iid`,
@ -3790,7 +3790,7 @@ CREATE VIEW `tag-search-view` AS SELECT
-- VIEW workerqueue-view -- VIEW workerqueue-view
-- --
DROP VIEW IF EXISTS `workerqueue-view`; DROP VIEW IF EXISTS `workerqueue-view`;
CREATE VIEW `workerqueue-view` AS SELECT CREATE VIEW `workerqueue-view` AS SELECT
`process`.`pid` AS `pid`, `process`.`pid` AS `pid`,
`workerqueue`.`priority` AS `priority` `workerqueue`.`priority` AS `priority`
FROM `process` FROM `process`
@ -3801,7 +3801,7 @@ CREATE VIEW `workerqueue-view` AS SELECT
-- VIEW profile_field-view -- VIEW profile_field-view
-- --
DROP VIEW IF EXISTS `profile_field-view`; DROP VIEW IF EXISTS `profile_field-view`;
CREATE VIEW `profile_field-view` AS SELECT CREATE VIEW `profile_field-view` AS SELECT
`profile_field`.`id` AS `id`, `profile_field`.`id` AS `id`,
`profile_field`.`uid` AS `uid`, `profile_field`.`uid` AS `uid`,
`profile_field`.`label` AS `label`, `profile_field`.`label` AS `label`,
@ -3821,7 +3821,7 @@ CREATE VIEW `profile_field-view` AS SELECT
-- VIEW diaspora-contact-view -- VIEW diaspora-contact-view
-- --
DROP VIEW IF EXISTS `diaspora-contact-view`; DROP VIEW IF EXISTS `diaspora-contact-view`;
CREATE VIEW `diaspora-contact-view` AS SELECT CREATE VIEW `diaspora-contact-view` AS SELECT
`diaspora-contact`.`uri-id` AS `uri-id`, `diaspora-contact`.`uri-id` AS `uri-id`,
`item-uri`.`uri` AS `url`, `item-uri`.`uri` AS `url`,
`item-uri`.`guid` AS `guid`, `item-uri`.`guid` AS `guid`,

View file

@ -64,7 +64,7 @@ class App
{ {
const PLATFORM = 'Friendica'; const PLATFORM = 'Friendica';
const CODENAME = 'Yellow Archangel'; const CODENAME = 'Yellow Archangel';
const VERSION = '2024.06-dev'; const VERSION = '2024.06-rc';
// Allow themes to control internal parameters // Allow themes to control internal parameters
// by changing App values in theme.php // by changing App values in theme.php

View file

@ -6,7 +6,7 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2024.06-dev\n" "Project-Id-Version: 2024.06-rc\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-06-02 07:05+0000\n" "POT-Creation-Date: 2024-06-02 07:05+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"