Skip to content

Commit

Permalink
Add release notes for 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
taustad committed Jan 17, 2025
1 parent 4a0286e commit caadeac
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion frontend/src/Components/Modal/WhatsNewModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const whatsNewUpdates: { [key: Version]: { [key in Category]?: UpdateEntry[] } }
{ description: "Fix updating case from the cases table in project view" },
{ description: "Fix so the user can manually type dates in schedule tab" },
{ description: "Fix issue with case comparison graph showing wrong data for the cases" },
{ description: "fix so that undo/redo on pasted range should update all values" },
{ description: "Fix so that undo/redo on pasted range should update all values" },
],
},
"2.2.1": {
Expand All @@ -115,6 +115,22 @@ const whatsNewUpdates: { [key: Version]: { [key in Category]?: UpdateEntry[] } }
{ description: "Minor bugfixes and performance improvements" },
],
},
"2.3.0": {
"New Functionalities": [
{ description: "Create project revision - Create revisions of the current project and view earlier revisions. Revisions are a snapshot of the project and all the cases at the time of creation" },
{ description: "Add caption to images" },
{ description: "Add selected project tab to the URL" },

],
"UI Improvements": [
{ description: "Minor UI Improvements" },
],
Bugfixes: [
{ description: "Fix navigation between case and project with the browser's back button" },
{ description: "Fix issue where the CO2 tab on project was reset when entering edit mode" },
{ description: "Minor bugfixes and performance improvements" },
],
},
}

const versions = Object.keys(whatsNewUpdates).sort((a, b) => {
Expand Down

0 comments on commit caadeac

Please sign in to comment.