Skip to content

Commit

Permalink
REL: 1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
wagner-intevation committed Aug 30, 2024
1 parent 09fbbf3 commit a8734e1
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 2 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,38 @@ CHANGELOG
=========


1.2.6: Usability improvements
-----------------------------

## Configuration
* new parameter: `mailgen_default_template_name`
new parameter for the frontend to set a default template name
if not set, the first template is used by default

## Frontend
* redesign notification section
re-organize the elements in the "Send Notifications" section (accordion)
one row for control elements, one row for the template input
* submit data: close auth confirm after submit
hide the modal authConfirm directly after submission
progress is shown in the main pane
* light grey background on input form groups
clarity for the user the the association between label and input
* submit button text: to database/intelmq
depending to the 'validate with bots' switch, change the text of the
submit button for more clarity
* improve documentation link
feedback by customer: move to right
underline
add link-arrow
* set hasHeader to true by default
most CSV/TSV files have headers, use a sensible default
* fallback values: remove monospace
for space efficiency and request by customer, use a normal font for the
field names
* small space between target group select buttons


1.2.5: Limit allowed Event fields
---------------------------------

Expand Down
2 changes: 1 addition & 1 deletion client/src/components/WebinputCSV.vue
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ export default ({
errorMessage: null,
showErrorModal: false,
mailgenTargetGroups: [],
clientVersion: "1.2.5",
clientVersion: "1.2.6",
templateDeletionModal: false,
templateToDelete: {'index': null, 'template_name': null},
mailgenTemplate: '',
Expand Down
31 changes: 31 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
intelmq-webinput-csv (1.2.6-1) stable; urgency=medium

* Configuration
* new parameter: `mailgen_default_template_name`
new parameter for the frontend to set a default template name
if not set, the first template is used by default
* Frontend
* redesign notification section
re-organize the elements in the "Send Notifications" section (accordion)
one row for control elements, one row for the template input
* submit data: close auth confirm after submit
hide the modal authConfirm directly after submission
progress is shown in the main pane
* light grey background on input form groups
clarity for the user the the association between label and input
* submit button text: to database/intelmq
depending to the 'validate with bots' switch, change the text of the
submit button for more clarity
* improve documentation link
feedback by customer: move to right
underline
add link-arrow
* set hasHeader to true by default
most CSV/TSV files have headers, use a sensible default
* fallback values: remove monospace
for space efficiency and request by customer, use a normal font for the
field names
* small space between target group select buttons

-- Sebastian Wagner <swagner@intevation.de> Fri, 30 Sep 2024 21:37:12 +0200

intelmq-webinput-csv (1.2.5-1) stable; urgency=medium

* Configuration
Expand Down
2 changes: 1 addition & 1 deletion intelmq_webinput_csv/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2017-2018 nic.at GmbH <wagner@cert.at>, 2022-2024 Bundesamt für Sicherheit in der Informationstechnik
# SPDX-License-Identifier: AGPL-3.0-or-later
__version_info__ = (1, 2, 5)
__version_info__ = (1, 2, 6)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit a8734e1

Please # to comment.