add issue status 'Ready'

Tue, 01 Nov 2022 21:11:17 +0100

author
Mike Becker <universe@uap-core.de>
date
Tue, 01 Nov 2022 21:11:17 +0100
changeset 252
90f5e12c7623
parent 251
7ea0f266da41
child 253
e1cd3e698037

add issue status 'Ready'

setup/postgres/psql_create_tables.sql file | annotate | diff | comparison | revisions
src/main/kotlin/de/uapcore/lightpit/types/IssueStatus.kt file | annotate | diff | comparison | revisions
src/main/resources/localization/strings.properties file | annotate | diff | comparison | revisions
src/main/resources/localization/strings_de.properties file | annotate | diff | comparison | revisions
src/main/webapp/WEB-INF/changelogs/changelog-de.jspf file | annotate | diff | comparison | revisions
src/main/webapp/WEB-INF/changelogs/changelog.jspf file | annotate | diff | comparison | revisions
--- a/setup/postgres/psql_create_tables.sql	Sat Jun 04 18:47:06 2022 +0200
+++ b/setup/postgres/psql_create_tables.sql	Tue Nov 01 21:11:17 2022 +0100
@@ -64,6 +64,7 @@
     'Scheduled',
     'InProgress',
     'InReview',
+    'Ready',
     'Done',
     'Rejected',
     'Withdrawn',
--- a/src/main/kotlin/de/uapcore/lightpit/types/IssueStatus.kt	Sat Jun 04 18:47:06 2022 +0200
+++ b/src/main/kotlin/de/uapcore/lightpit/types/IssueStatus.kt	Tue Nov 01 21:11:17 2022 +0100
@@ -31,6 +31,7 @@
     Scheduled(IssueStatusPhase.Open),
     InProgress(IssueStatusPhase.WorkInProgress),
     InReview(IssueStatusPhase.WorkInProgress),
+    Ready(IssueStatusPhase.WorkInProgress),
     Done(IssueStatusPhase.Done),
     Rejected(IssueStatusPhase.Done),
     Withdrawn(IssueStatusPhase.Done),
--- a/src/main/resources/localization/strings.properties	Sat Jun 04 18:47:06 2022 +0200
+++ b/src/main/resources/localization/strings.properties	Tue Nov 01 21:11:17 2022 +0100
@@ -88,6 +88,7 @@
 issue.status.Duplicate=Duplicate
 issue.status.InProgress=In Progress
 issue.status.InReview=Review
+issue.status.Ready=Ready
 issue.status.InSpecification=Specification
 issue.status.Rejected=Rejected
 issue.status.Scheduled=Scheduled
--- a/src/main/resources/localization/strings_de.properties	Sat Jun 04 18:47:06 2022 +0200
+++ b/src/main/resources/localization/strings_de.properties	Tue Nov 01 21:11:17 2022 +0100
@@ -87,6 +87,7 @@
 issue.status.Duplicate=Duplikat
 issue.status.InProgress=In Arbeit
 issue.status.InReview=Im Review
+issue.status.Ready=Bereit
 issue.status.InSpecification=Spezifikation
 issue.status.Rejected=Zur\u00fcckgewiesen
 issue.status.Scheduled=Geplant
--- a/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf	Sat Jun 04 18:47:06 2022 +0200
+++ b/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf	Tue Nov 01 21:11:17 2022 +0100
@@ -27,6 +27,7 @@
 <h3>Version 1.0 (Vorschau)</h3>
 
 <ul>
+    <li>Neuer Status: Bereit (als Antwort auf Im Review).</li>
     <li>Mehrfachauswahl für Versionen im Vorgang entfernt.</li>
     <li>RSS Feeds für Projekte hinzugefügt.</li>
     <li>Möglichkeit zum Deaktivieren einer Komponente hinzugefügt.</li>
--- a/src/main/webapp/WEB-INF/changelogs/changelog.jspf	Sat Jun 04 18:47:06 2022 +0200
+++ b/src/main/webapp/WEB-INF/changelogs/changelog.jspf	Tue Nov 01 21:11:17 2022 +0100
@@ -27,6 +27,7 @@
 <h3>Version 1.0 (snapshot)</h3>
 
 <ul>
+    <li>Add issue status: Ready (following Review).</li>
     <li>Remove multi selection of versions within an issue.</li>
     <li>Add RSS feeds for projects.</li>
     <li>Add possibility to deactivate a component.</li>

mercurial