Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
This commit is contained in:
commit
4f7d14dfb2
@ -1,4 +1,5 @@
|
|||||||
Hubzilla 1.14RC (2016-10-02)
|
Hubzilla 1.14 (2016-10-13)
|
||||||
|
- New hook bbcode_filter
|
||||||
- Unify the various mail sending instance to enotify::send() and z_mail()
|
- Unify the various mail sending instance to enotify::send() and z_mail()
|
||||||
- Provide ability for admin to change account password
|
- Provide ability for admin to change account password
|
||||||
- Replace deprecated Sabre functions
|
- Replace deprecated Sabre functions
|
||||||
@ -38,6 +39,9 @@ Hubzilla 1.14RC (2016-10-02)
|
|||||||
- Server roles (basic, standard and pro)
|
- Server roles (basic, standard and pro)
|
||||||
|
|
||||||
Bugfixes
|
Bugfixes
|
||||||
|
- Fix connected time not shown on ajax loaded connections
|
||||||
|
- API issues
|
||||||
|
- Fix readmore.js collapsing on scrolldirection change in some mobile browsers
|
||||||
- Personalize Server Emails
|
- Personalize Server Emails
|
||||||
- Audio player doesn't automatically show for m4a files
|
- Audio player doesn't automatically show for m4a files
|
||||||
- Fix ajax page update with /channel?f=&mid=hash
|
- Fix ajax page update with /channel?f=&mid=hash
|
||||||
@ -65,6 +69,7 @@ Hubzilla 1.14RC (2016-10-02)
|
|||||||
- Public forum check with custom/expert permissions
|
- Public forum check with custom/expert permissions
|
||||||
|
|
||||||
Plugins
|
Plugins
|
||||||
|
- Standard Embed: update to convert old corporate bbcodes
|
||||||
- Cdav security: fix rw permission check
|
- Cdav security: fix rw permission check
|
||||||
- Cdav: add partial support for recurring events in the browser client (editing/creating is not implemented)
|
- Cdav: add partial support for recurring events in the browser client (editing/creating is not implemented)
|
||||||
- New plugin phpmailer: use phpmailer class instead of php's built-in mail() function
|
- New plugin phpmailer: use phpmailer class instead of php's built-in mail() function
|
||||||
|
@ -854,6 +854,7 @@ function pageUpdate() {
|
|||||||
scroll_next = false;
|
scroll_next = false;
|
||||||
updatePageItems(update_mode,data);
|
updatePageItems(update_mode,data);
|
||||||
$("#page-spinner").spin(false);
|
$("#page-spinner").spin(false);
|
||||||
|
$(".autotime").timeago();
|
||||||
in_progress = false;
|
in_progress = false;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -4,13 +4,13 @@ $(document).ready(function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
$("#contacts-search").keyup(function(event){
|
$("#contacts-search").keyup(function(event){
|
||||||
if(event.keyCode == 13){
|
if(event.keyCode == 13){
|
||||||
$("#contacts-search").click();
|
$("#contacts-search").click();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$(".autocomplete-w1 .selected").keyup(function(event){
|
$(".autocomplete-w1 .selected").keyup(function(event){
|
||||||
if(event.keyCode == 13){
|
if(event.keyCode == 13){
|
||||||
$("#contacts-search").click();
|
$("#contacts-search").click();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user