Skip to content

Commit b126bed

Browse files
chore(release): 14.1.0 [skip ci]
## [14.1.0](v14.0.1...v14.1.0) (2023-09-27) ### Features * **admin:** add bulk operations to applications overview ([391f340](391f340)) * **admin:** display also indirect managers ([48f433e](48f433e)) * **admin:** jump onto specific page ([8f95c33](8f95c33)) * **profile:** allow filtering by name and sorting on profile groups page ([1b9bba7](1b9bba7)) ### Bug Fixes * **lib:** align items in attribute value list to the left ([fa4680e](fa4680e)) * revert initializing colors during runtime ([cfa074a](cfa074a))
1 parent 4141a2f commit b126bed

27 files changed

+99
-24
lines changed

UPGRADE.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
Upgrade notes
22

3+
## [14.1.0](https://github.com/CESNET/perun-web-apps/compare/v14.0.1...v14.1.0) (2023-09-27)
4+
5+
6+
### Features
7+
8+
* **admin:** add bulk operations to applications overview ([391f340](https://github.com/CESNET/perun-web-apps/commit/391f3405f174956de61d5f0e6cbb267ac4591d56))
9+
* **admin:** display also indirect managers ([48f433e](https://github.com/CESNET/perun-web-apps/commit/48f433ea94eedcd26af986a663a30203d80e7024))
10+
* **admin:** jump onto specific page ([8f95c33](https://github.com/CESNET/perun-web-apps/commit/8f95c336c10ffb6d501529111876375e9ac5f224))
11+
* **profile:** allow filtering by name and sorting on profile groups page ([1b9bba7](https://github.com/CESNET/perun-web-apps/commit/1b9bba766cb255c4fa88bd89178db64d9d1967b8))
12+
13+
14+
### Bug Fixes
15+
16+
* **lib:** align items in attribute value list to the left ([fa4680e](https://github.com/CESNET/perun-web-apps/commit/fa4680e22eec278d2353cd5302af9b8989a1398f))
17+
* revert initializing colors during runtime ([cfa074a](https://github.com/CESNET/perun-web-apps/commit/cfa074a528952219b7106942e33013c1b51b5f7e))
18+
319
## [14.0.1](https://github.com/CESNET/perun-web-apps/compare/v14.0.0...v14.0.1) (2023-09-15)
420

521

dist/apps/admin-gui/185.2ed8a62fa327c06c.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/apps/admin-gui/185.ec0eb975927807d4.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":"14.0.1"}
1+
{"version":"14.1.0"}

dist/apps/admin-gui/assets/i18n/en.json

Lines changed: 58 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,9 +617,64 @@
617617
"NEW": "Waiting for mail verification",
618618
"VERIFIED": "Submitted"
619619
},
620+
"TOOLTIPS": {
621+
"MULTIPLE_STATUSES_SELECTED": "You have applications with different states selected.",
622+
"NO_APPLICATION_SELECTED": "You have selected no applications.",
623+
"APPROVE": {
624+
"APPROVED": "The selected applications are already approved.",
625+
"REJECTED": "You cannot approve applications with the REJECTED state.",
626+
"NEW": "Approve",
627+
"VERIFIED": "Approve"
628+
},
629+
"REJECT": {
630+
"APPROVED": "You cannot reject applications with the APPROVED state.",
631+
"REJECTED": "The selected applications are already rejected.",
632+
"NEW": "Reject",
633+
"VERIFIED": "Reject"
634+
},
635+
"DELETE": {
636+
"APPROVED": "You cannot delete applications with the APPROVED state.",
637+
"VERIFIED": "You cannot delete applications with the SUBMITTED state.",
638+
"NEW": "Delete",
639+
"REJECTED": "Delete"
640+
},
641+
"SEND_NOTIFICATION": {
642+
"APPROVED": "Send mail verification",
643+
"VERIFIED": "Send mail verification",
644+
"NEW": "Send mail verification",
645+
"REJECTED": "Send mail verification"
646+
}
647+
},
620648
"DATE": {
621649
"LABEL": "Enter a date range"
622650
},
651+
"DIALOG": {
652+
"CONFIRM": "Confirm",
653+
"CANCEL": "Cancel",
654+
"APPROVE": {
655+
"TITLE": "Approve applications",
656+
"DESCRIPTION": "You are about to approve {{count}} selected application(s). Make sure you have confirmed identities of the applicant(s)."
657+
},
658+
"REJECT": {
659+
"TITLE": "Reject applications",
660+
"DESCRIPTION": "You are about to reject {{count}} selected application(s). Make sure you have confirmed identities of the applicant(s)."
661+
},
662+
"DELETE": {
663+
"TITLE": "Delete applications",
664+
"DESCRIPTION": "You are about to delete {{count}} selected application(s). Make sure you have confirmed identities of the applicant(s)."
665+
},
666+
"RESEND": {
667+
"TITLE": "Re-send notifications",
668+
"DESCRIPTION": "You are about to re-send notifications for {{count}} selected application(s). Make sure you have confirmed identities of the applicant(s)."
669+
}
670+
},
671+
"SUCCESS": {
672+
"APPROVE": "Applications were successfully approved.",
673+
"REJECT": "Applications were successfully rejected.",
674+
"DELETE": "Applications were successfully deleted.",
675+
"RESEND": "Notifications for applications were re-send."
676+
},
677+
623678
"APPLICATION_DETAIL": {
624679
"TITLE": "Application detail",
625680
"APPROVE": "Approve",
@@ -2451,7 +2506,8 @@
24512506
"EMAIL": "Email",
24522507
"LOGINS": "Logins",
24532508
"PERSON": "Person",
2454-
"SERVICE": "Service"
2509+
"SERVICE": "Service",
2510+
"INDIRECT_DISABLED_TOOLTIP": "Indirect manager cannot be deleted"
24552511
},
24562512
"AUDIT_MESSAGES_LIST": {
24572513
"ID": "Id",
@@ -2722,6 +2778,7 @@
27222778
"REMOVE": "Remove",
27232779
"SELECT_MODE": "Select mode",
27242780
"SELECT_ROLE": "Select role",
2781+
"SHOW_INDIRECT_ADMINS": "Show also indirect managers",
27252782
"USER": "Users",
27262783
"GROUP": "Groups",
27272784
"NO_MANAGERS": "This role has no managers.",

dist/apps/admin-gui/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77

88
<meta content="width=device-width, initial-scale=1" name="viewport"/>
99
<style type="text/css">@font-face{font-family:'Material Icons';font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2) format('woff2');}.material-icons{font-family:'Material Icons';font-weight:normal;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-feature-settings:'liga';-webkit-font-smoothing:antialiased;}</style>
10-
<link rel="stylesheet" href="styles.c90057af9efeab97.css"></head>
10+
<link rel="stylesheet" href="styles.e1fec95656e58373.css"></head>
1111
<body>
1212
<app-root>
1313
<div id="preloader">
1414
<div id="loader"></div>
1515
</div>
1616
</app-root>
17-
<script src="runtime.ce5ffd8240023e32.js" type="module"></script><script src="polyfills.9a5c326838323ee3.js" type="module"></script><script src="scripts.cfdbc03626b7e4d0.js" defer=""></script><script src="main.9f78cdacc1cc82ec.js" type="module"></script></body>
17+
<script src="runtime.89c34daf1c644dd0.js" type="module"></script><script src="polyfills.9a5c326838323ee3.js" type="module"></script><script src="scripts.cfdbc03626b7e4d0.js" defer=""></script><script src="main.e827b9b29a30fcf0.js" type="module"></script></body>
1818
</html>

dist/apps/admin-gui/main.9f78cdacc1cc82ec.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/apps/admin-gui/main.e827b9b29a30fcf0.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/apps/admin-gui/runtime.ce5ffd8240023e32.js renamed to dist/apps/admin-gui/runtime.89c34daf1c644dd0.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)