diff --git a/CHANGELOG.md b/CHANGELOG.md index 54952f524..f2c00050f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,11 @@ * server update and restart is required * ready to display warnings about new server updates starting in 4.7.1 or 4.8.0 * 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 @@ -40,6 +45,10 @@ * kanban * code * 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 diff --git a/www/form/inner.js b/www/form/inner.js index aac6c42c0..a866c837a 100644 --- a/www/form/inner.js +++ b/www/form/inner.js @@ -906,7 +906,6 @@ define([ }, }; - var TYPES = { input: { defaultOpts: { diff --git a/www/support/ui.js b/www/support/ui.js index 947a43d93..bae96c24e 100644 --- a/www/support/ui.js +++ b/www/support/ui.js @@ -133,9 +133,13 @@ define([ 'account', // Msg.support_cat_account 'data', // Msg.support_cat_data 'bug', // Msg.support_cat_bug + // XXX report 'other' // Msg.support_cat_other ]; if (all) { categories.push('all'); } // Msg.support_cat_all + + + categories = categories.map(function (key) { return { tag: 'a', @@ -174,6 +178,7 @@ define([ var catContainer = h('div.cp-dropdown-container' + (title ? '.cp-hidden': '')); makeCategoryDropdown(ctx, catContainer, function (key) { $(category).val(key); + // XXX add a hint suggesting relevant information to include for the chosen category }); var attachments, addAttachment;