From 8cf59c2e1b3e824d63352162c4e4089a88266092 Mon Sep 17 00:00:00 2001 From: tuscanhobbit Date: Tue, 25 Feb 2014 18:46:04 +0100 Subject: assets dir had the old logo --- assets/home.html | 4 ++-- assets/logo_antiprism.png | Bin 62321 -> 0 bytes assets/logo_simplifiedap.png | Bin 0 -> 11419 bytes assets/redmatrixlogo.png | Bin 105403 -> 0 bytes 4 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 assets/logo_antiprism.png create mode 100644 assets/logo_simplifiedap.png delete mode 100644 assets/redmatrixlogo.png diff --git a/assets/home.html b/assets/home.html index 1a0a13481..0ec29832e 100644 --- a/assets/home.html +++ b/assets/home.html @@ -26,8 +26,8 @@ header { z-index: 10000; }
-
Dream it. Do it.
- +
Dream it. Do it.
+
Communications
diff --git a/assets/logo_antiprism.png b/assets/logo_antiprism.png deleted file mode 100644 index b72e2a211..000000000 Binary files a/assets/logo_antiprism.png and /dev/null differ diff --git a/assets/logo_simplifiedap.png b/assets/logo_simplifiedap.png new file mode 100644 index 000000000..a49a9c12a Binary files /dev/null and b/assets/logo_simplifiedap.png differ diff --git a/assets/redmatrixlogo.png b/assets/redmatrixlogo.png deleted file mode 100644 index 6929ae14f..000000000 Binary files a/assets/redmatrixlogo.png and /dev/null differ -- cgit v1.2.3 From 8e3a16bcdddb3e978bb984a050f837912de4f463 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Tue, 25 Feb 2014 21:06:47 +0000 Subject: Update channel permissions to full ints --- boot.php | 2 +- install/update.php | 22 ++++++++++++++++++++-- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index fbab83f05..26811a55e 100755 --- a/boot.php +++ b/boot.php @@ -47,7 +47,7 @@ define ( 'RED_PLATFORM', 'Red Matrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1098 ); +define ( 'DB_UPDATE_VERSION', 1099 ); define ( 'EOL', '
' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/install/update.php b/install/update.php index 7d1305863..9ad74fec4 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ Date: Tue, 25 Feb 2014 21:12:19 +0000 Subject: Also update database.sql --- install/database.sql | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/install/database.sql b/install/database.sql index cd31a0285..ac35f9bc3 100644 --- a/install/database.sql +++ b/install/database.sql @@ -160,18 +160,18 @@ CREATE TABLE IF NOT EXISTS `channel` ( `channel_allow_gid` mediumtext NOT NULL, `channel_deny_cid` mediumtext NOT NULL, `channel_deny_gid` mediumtext NOT NULL, - `channel_r_stream` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_r_profile` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_r_photos` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_r_abook` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_w_stream` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_w_wall` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_w_tagwall` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_w_comment` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_w_mail` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_w_photos` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_w_chat` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_a_delegate` tinyint(3) unsigned NOT NULL DEFAULT '0', + `channel_r_stream` int(10) unsigned NOT NULL DEFAULT '128', + `channel_r_profile` int(10) unsigned NOT NULL DEFAULT '128', + `channel_r_photos` int(10) unsigned NOT NULL DEFAULT '128', + `channel_r_abook` int(10) unsigned NOT NULL DEFAULT '128', + `channel_w_stream` int(10) unsigned NOT NULL DEFAULT '128', + `channel_w_wall` int(10) unsigned NOT NULL DEFAULT '128', + `channel_w_tagwall` int(10) unsigned NOT NULL DEFAULT '128', + `channel_w_comment` int(10) unsigned NOT NULL DEFAULT '128', + `channel_w_mail` int(10) unsigned NOT NULL DEFAULT '128', + `channel_w_photos` int(10) unsigned NOT NULL DEFAULT '128', + `channel_w_chat` int(10) unsigned NOT NULL DEFAULT '128', + `channel_a_delegate` int(10) unsigned NOT NULL DEFAULT '0', `channel_r_storage` int(10) unsigned NOT NULL DEFAULT '128', `channel_w_storage` int(10) unsigned NOT NULL DEFAULT '128', `channel_r_pages` int(10) unsigned NOT NULL DEFAULT '128', -- cgit v1.2.3