diff options
author | Friendika <info@friendika.com> | 2011-10-11 18:24:37 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-11 18:24:37 -0700 |
commit | 557a7d0cec31a36d12898429c479c71671833dfd (patch) | |
tree | ab1781533e91b63b86a2ef726c65092ad8009efb /update.php | |
parent | caf18164f0f7bd336e61d4393dabf6d93c739879 (diff) | |
download | volse-hubzilla-557a7d0cec31a36d12898429c479c71671833dfd.tar.gz volse-hubzilla-557a7d0cec31a36d12898429c479c71671833dfd.tar.bz2 volse-hubzilla-557a7d0cec31a36d12898429c479c71671833dfd.zip |
stuff
- background the external network notifications (Facebook, Twitter, Statusnet)
- add vimeo support
- consolidate editor video options (insert video, regardless of source)
- add "Connector Settings" page purely for configuring connectors
- moved mailbox settings to Connectors
- Move the "Connect/Follow" dialogue out of "find people" and move to top.
- Add "Find People" dialogue
- minor theme edits on duepuntozero and testbubble to make all this stuff work
- A bit of theming on duepunto notifications to eliminate the gigantic Diaspora profile photos.
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/update.php b/update.php index 723f12c1a..5d5190095 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1094 ); +define( 'UPDATE_VERSION' , 1095 ); /** * @@ -786,4 +786,8 @@ function update_1093() { q("ALTER TABLE `group` ADD `visible` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `uid` "); -}
\ No newline at end of file +} + +function update_1094() { + q("ALTER TABLE `item` ADD `postopts` TEXT NOT NULL AFTER `target` "); +} |