aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-08-09 22:21:40 +0200
committerMario Vavti <mario@mariovavti.com>2019-08-09 22:21:40 +0200
commit0e0024218fdf8745137e87bb965fbbfa17c877b8 (patch)
treef5d6cef96cf776e35953503e2c8727557542d477
parent6c12880f5b50e325250d7a85e5d8c757ed674c30 (diff)
parent4886d088e9889d828bc0e43de4f8844f210f785d (diff)
downloadvolse-hubzilla-0e0024218fdf8745137e87bb965fbbfa17c877b8.tar.gz
volse-hubzilla-0e0024218fdf8745137e87bb965fbbfa17c877b8.tar.bz2
volse-hubzilla-0e0024218fdf8745137e87bb965fbbfa17c877b8.zip
Merge branch 'dev' into 4.4RC
-rw-r--r--CHANGELOG55
-rw-r--r--include/text.php2
2 files changed, 56 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index a0d896ac8..7df421778 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,58 @@
+Hubzilla 4.4 (2019-08-??)
+ - Replace plink URL with share tag if possible
+ - Catch and exclude trailing punctuation while URL embedding
+ - Do not limit channel if service class property value is set to zero
+ - Streamline keyId and creator/actor
+ - Add daemon_master_summon hook
+ - Serve static files directly if not caught by web server
+ - Update cacert.pem
+ - Calendar: allow different date/time format inputs
+ - Calendar: hide timezone select for allday events
+ ⁻ Add opengraph meta info to channel page
+ - Begin directory migration to zot6
+ - Support zot and zot6 in social graph operations
+ - Lowlevel support for zot6 direct messages
+ - Consolidate HTTP signatures
+ - Allow api login by address or url
+ - Provide auto redirect from zot6 /item permalinks
+ - Export all items except photos in channel_export_items_date()
+ - Calendar: clicking a day or week number will now open the day or week view
+ - Remove cached photo location directory on delete if empty
+ - Include zot6 hubs in the Grid scope
+ - Fix os_path replace for thumbnails
+ - Avoid to process original images using storeThumbnail()
+
+ Bugfixes
+ - Fix URLs on imported item taxonomy
+ - Fix admin not allowed to delete any item
+ - Fix webfiunger issue with URLs containing an @
+ - Fix missing object in emoji reactions
+ - Fix appschema to include diaspora:guid
+ - Fix zotfinger in update_directory_entry()
+ - Fix incorrect media type on links for photo objects
+ - Fix mid not dbesc'd in item_store()
+ - Fix calendar encoding issues
+
+ Addons
+ - twitter: various rendering improvements
+ - cavatar: fix wrong image mimetype
+ - gravatar: fix wrong image mimetype
+ - Add license file
+ - pubcrawl: make repeats render like wall to wall posts
+ - pubcrawl: fix pubcrawl_import_author() sometimes returning a non activitypub xchan
+ - pubcrawl: use Lib/Activity for taxonomy en/decoding
+ - pubcrawl: fix wrong uuid in like activity
+ - pubcrawl: fix issue with encoding hashtags
+ - openstreetmap: use https URLs by default
+ - queueworker: refactor and efficiency improvements
+ - pubcrawl: use unique IDs for follow and accept activities
+ - pubcrawl: implement thread completion
+ - pubcrawl: implement delete activity
+ - photocache: reduce the size of the photo cache subdirectories tree
+ - photocache: use html_entity_decode() for cached photo URL
+ - diaspora: fix possible issue with diaspora relay not initializing
+
+
Hubzilla 4.2.1 (2019-06-17)
- Deprecate mod events
- Revisit mod cal
diff --git a/include/text.php b/include/text.php
index 572b43916..54ad9ec7a 100644
--- a/include/text.php
+++ b/include/text.php
@@ -1574,7 +1574,7 @@ function format_hashtags(&$item) {
continue;
if(empty($t['url']))
continue;
- if(strpos($item['body'], $t['url']) || strpos($item['body'], '#' . $t['term']))
+ if(strpos($item['body'], $t['url']) || stripos($item['body'], '#' . $t['term']))
continue;
if($s)
$s .= ' ';