From 96785e8df1b325a32c93ebebf67ab5208f4088dc Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 25 Apr 2019 21:45:04 -0700 Subject: update fix_system_urls() to handle zot6 hublocs --- boot.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index 6664e80cf..6a52c2ca4 100755 --- a/boot.php +++ b/boot.php @@ -1507,12 +1507,13 @@ function fix_system_urls($oldurl, $newurl) { dbesc($rv['xchan_hash']) ); - $y = q("update hubloc set hubloc_addr = '%s', hubloc_url = '%s', hubloc_url_sig = '%s', hubloc_host = '%s', hubloc_callback = '%s' where hubloc_hash = '%s' and hubloc_url = '%s'", + $y = q("update hubloc set hubloc_addr = '%s', hubloc_url = '%s', hubloc_id_url = '%s', hubloc_url_sig = '%s', hubloc_host = '%s', hubloc_callback = '%s' where hubloc_hash = '%s' and hubloc_url = '%s'", dbesc($channel_address . '@' . $rhs), dbesc($newurl), - dbesc(base64url_encode(rsa_sign($newurl,$c[0]['channel_prvkey']))), + dbesc(str_replace($oldurl,$newurl,$rv['hubloc_id_url'])), + dbesc(($rv['hubloc_network'] === 'zot6') ? \Zotlabs\Lib\Libzot::sign($newurl,$c[0]['channel_prvkey']) : base64url_encode(rsa_sign($newurl,$c[0]['channel_prvkey']))), dbesc($newhost), - dbesc($newurl . '/post'), + dbesc(($rv['hubloc_network'] === 'zot6') ? $newurl . '/zot' : $newurl . '/post'), dbesc($rv['xchan_hash']), dbesc($oldurl) ); -- cgit v1.2.3 From 347e88dc65b1240dc6d1690570531dc3015a4452 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 2 May 2019 20:32:26 -0700 Subject: move apschema to core to use for emojiReaction mapping for zot6 --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index 6a52c2ca4..89c6d5e1f 100755 --- a/boot.php +++ b/boot.php @@ -467,7 +467,7 @@ define ( 'NAMESPACE_YMEDIA', 'http://search.yahoo.com/mrss/' ); define ( 'ACTIVITYSTREAMS_JSONLD_REV', 'https://www.w3.org/ns/activitystreams' ); -define ( 'ZOT_APSCHEMA_REV', '/apschema/v1.3' ); +define ( 'ZOT_APSCHEMA_REV', '/apschema/v1.4' ); /** * activity stream defines */ -- cgit v1.2.3 From 24f3bc9f0c282f9a0610ee828b4341ee43cecb40 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 8 May 2019 19:55:21 +0200 Subject: Channel update --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index 89c6d5e1f..abd9127d5 100755 --- a/boot.php +++ b/boot.php @@ -53,7 +53,7 @@ define ( 'PLATFORM_NAME', 'hubzilla' ); define ( 'STD_VERSION', '4.1.2' ); define ( 'ZOT_REVISION', '6.0a' ); -define ( 'DB_UPDATE_VERSION', 1231 ); +define ( 'DB_UPDATE_VERSION', 1232 ); define ( 'PROJECT_BASE', __DIR__ ); -- cgit v1.2.3 From e53650d6c66a9338259dc7cd7f067b8e80d6ce19 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 8 May 2019 20:12:54 +0200 Subject: another DB update to fix uid_mid index in item table and add xchan_photo_m index to xchan table --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index abd9127d5..df8308a70 100755 --- a/boot.php +++ b/boot.php @@ -53,7 +53,7 @@ define ( 'PLATFORM_NAME', 'hubzilla' ); define ( 'STD_VERSION', '4.1.2' ); define ( 'ZOT_REVISION', '6.0a' ); -define ( 'DB_UPDATE_VERSION', 1232 ); +define ( 'DB_UPDATE_VERSION', 1233 ); define ( 'PROJECT_BASE', __DIR__ ); -- cgit v1.2.3 From f0c292e77b697bd89a529244cb23e886e5481d40 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 9 May 2019 14:39:40 +0200 Subject: remove the caldav and event app and make calendar the default app --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index df8308a70..67a7216ff 100755 --- a/boot.php +++ b/boot.php @@ -53,7 +53,7 @@ define ( 'PLATFORM_NAME', 'hubzilla' ); define ( 'STD_VERSION', '4.1.2' ); define ( 'ZOT_REVISION', '6.0a' ); -define ( 'DB_UPDATE_VERSION', 1233 ); +define ( 'DB_UPDATE_VERSION', 1234 ); define ( 'PROJECT_BASE', __DIR__ ); -- cgit v1.2.3 From 630e3903fadf6de98ba9f911bb1101650d495f97 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 10 May 2019 15:44:15 +0200 Subject: bump version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index 67a7216ff..3a8d1d180 100755 --- a/boot.php +++ b/boot.php @@ -50,7 +50,7 @@ require_once('include/attach.php'); require_once('include/bbcode.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '4.1.2' ); +define ( 'STD_VERSION', '4.1.3' ); define ( 'ZOT_REVISION', '6.0a' ); define ( 'DB_UPDATE_VERSION', 1234 ); -- cgit v1.2.3 From 5b0b90d1f504d368825a4bbfc483ca76d48e7a65 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 13 May 2019 12:13:18 +0200 Subject: bump version, update autoload cache and update strings --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index 3a8d1d180..ab0f2720f 100755 --- a/boot.php +++ b/boot.php @@ -50,7 +50,7 @@ require_once('include/attach.php'); require_once('include/bbcode.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '4.1.3' ); +define ( 'STD_VERSION', '4.2RC' ); define ( 'ZOT_REVISION', '6.0a' ); define ( 'DB_UPDATE_VERSION', 1234 ); -- cgit v1.2.3 From 3e431c65be4c7d0cc9640af216ffdff02695401d Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 13 May 2019 12:17:08 +0200 Subject: bump version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index ab0f2720f..1b13b335a 100755 --- a/boot.php +++ b/boot.php @@ -50,7 +50,7 @@ require_once('include/attach.php'); require_once('include/bbcode.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '4.2RC' ); +define ( 'STD_VERSION', '4.3' ); define ( 'ZOT_REVISION', '6.0a' ); define ( 'DB_UPDATE_VERSION', 1234 ); -- cgit v1.2.3 From 152224944b3b007acdbd5ef50372f3e00916414f Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 23 May 2019 08:43:48 +0200 Subject: add new directory fallback server --- boot.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index 1b13b335a..9bb42a1a5 100755 --- a/boot.php +++ b/boot.php @@ -50,7 +50,7 @@ require_once('include/attach.php'); require_once('include/bbcode.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '4.3' ); +define ( 'STD_VERSION', '4.2RC1' ); define ( 'ZOT_REVISION', '6.0a' ); define ( 'DB_UPDATE_VERSION', 1234 ); @@ -84,7 +84,8 @@ define ( 'DIRECTORY_FALLBACK_MASTER', 'https://zotadel.net'); $DIRECTORY_FALLBACK_SERVERS = array( 'https://zotadel.net', - 'https://zotsite.net' + 'https://zotsite.net', + 'https://hub.netzgemeinde.eu' ); -- cgit v1.2.3 From b1813df61a36b4265be63e89802f652955807517 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 23 May 2019 08:46:16 +0200 Subject: add new directory fallback server --- boot.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index 1b13b335a..e76440e10 100755 --- a/boot.php +++ b/boot.php @@ -84,7 +84,8 @@ define ( 'DIRECTORY_FALLBACK_MASTER', 'https://zotadel.net'); $DIRECTORY_FALLBACK_SERVERS = array( 'https://zotadel.net', - 'https://zotsite.net' + 'https://zotsite.net', + 'https://hub.netzgemeinde.eu' ); -- cgit v1.2.3 From 23a0dbe3cc9aed0eecb50d7814319b857ecb0a2b Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 27 May 2019 08:19:23 +0200 Subject: 4.2RC2 --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index 9bb42a1a5..6da76fd22 100755 --- a/boot.php +++ b/boot.php @@ -50,7 +50,7 @@ require_once('include/attach.php'); require_once('include/bbcode.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '4.2RC1' ); +define ( 'STD_VERSION', '4.2RC2' ); define ( 'ZOT_REVISION', '6.0a' ); define ( 'DB_UPDATE_VERSION', 1234 ); -- cgit v1.2.3 From 52f8429218ae8a0f8c2ff193728e3b4422985207 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Tue, 28 May 2019 16:28:03 -0700 Subject: support 'expires' over Zot6 --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index e76440e10..86c3c3272 100755 --- a/boot.php +++ b/boot.php @@ -468,7 +468,7 @@ define ( 'NAMESPACE_YMEDIA', 'http://search.yahoo.com/mrss/' ); define ( 'ACTIVITYSTREAMS_JSONLD_REV', 'https://www.w3.org/ns/activitystreams' ); -define ( 'ZOT_APSCHEMA_REV', '/apschema/v1.4' ); +define ( 'ZOT_APSCHEMA_REV', '/apschema/v1.5' ); /** * activity stream defines */ -- cgit v1.2.3 From bc092d8d7815195d62299c0ea54caa4759e6f2e7 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 4 Jun 2019 10:16:06 +0200 Subject: version 4.2 --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index 48f2c719e..5904cac3c 100755 --- a/boot.php +++ b/boot.php @@ -50,7 +50,7 @@ require_once('include/attach.php'); require_once('include/bbcode.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '4.2RC2' ); +define ( 'STD_VERSION', '4.2' ); define ( 'ZOT_REVISION', '6.0a' ); define ( 'DB_UPDATE_VERSION', 1234 ); -- cgit v1.2.3