merge WIP changelog and stashed changes

pull/1/head
ansuz 4 years ago
parent 2bd659a9b5
commit c3a6547e09

@ -20,6 +20,11 @@
* server update and restart is required * server update and restart is required
* ready to display warnings about new server updates starting in 4.7.1 or 4.8.0 * ready to display warnings about new server updates starting in 4.7.1 or 4.8.0
* lots of new translations! * lots of new translations!
* updated readme
* notes about staying up to date
* public listings
* removed references to freenode
* nginx update to add trailing slashes
## Features ## Features
@ -40,6 +45,10 @@
* kanban * kanban
* code * code
* slide? * slide?
* new form app
* with participant, author, and auditor roles
* partially replaces the poll app
* ability to add a file to your drive from the file menu even if it's already in a team
## Bug fixes ## Bug fixes

@ -906,7 +906,6 @@ define([
}, },
}; };
var TYPES = { var TYPES = {
input: { input: {
defaultOpts: { defaultOpts: {

@ -133,9 +133,13 @@ define([
'account', // Msg.support_cat_account 'account', // Msg.support_cat_account
'data', // Msg.support_cat_data 'data', // Msg.support_cat_data
'bug', // Msg.support_cat_bug 'bug', // Msg.support_cat_bug
// XXX report
'other' // Msg.support_cat_other 'other' // Msg.support_cat_other
]; ];
if (all) { categories.push('all'); } // Msg.support_cat_all if (all) { categories.push('all'); } // Msg.support_cat_all
categories = categories.map(function (key) { categories = categories.map(function (key) {
return { return {
tag: 'a', tag: 'a',
@ -174,6 +178,7 @@ define([
var catContainer = h('div.cp-dropdown-container' + (title ? '.cp-hidden': '')); var catContainer = h('div.cp-dropdown-container' + (title ? '.cp-hidden': ''));
makeCategoryDropdown(ctx, catContainer, function (key) { makeCategoryDropdown(ctx, catContainer, function (key) {
$(category).val(key); $(category).val(key);
// XXX add a hint suggesting relevant information to include for the chosen category
}); });
var attachments, addAttachment; var attachments, addAttachment;

Loading…
Cancel
Save