From bf8554db0946d486247ebfa9f50bb7c80550ef7a Mon Sep 17 00:00:00 2001 From: sairina Date: Wed, 25 Nov 2020 15:06:31 -0800 Subject: [PATCH 1/3] fixes permissions for non-superadmins in device tab --- kolibri/plugins/device/assets/src/views/DeviceTopNav.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kolibri/plugins/device/assets/src/views/DeviceTopNav.vue b/kolibri/plugins/device/assets/src/views/DeviceTopNav.vue index 22301caa338..2ce39cbf77c 100644 --- a/kolibri/plugins/device/assets/src/views/DeviceTopNav.vue +++ b/kolibri/plugins/device/assets/src/views/DeviceTopNav.vue @@ -35,6 +35,7 @@ /> @@ -45,6 +46,7 @@ /> From 43cafee00ef469d0eb6b6efd744a41d363b548ea Mon Sep 17 00:00:00 2001 From: Jonathan Boiser Date: Tue, 1 Dec 2020 17:21:59 -0800 Subject: [PATCH 2/3] Update CHANGELOG for 0.14.5 --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bea50eefcb2..09297014420 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,9 @@ List of the most important changes for each release. -## 0.14.4 +## 0.14.5 + +(Note: 0.14.4 contained a critical issue and was superseded by 0.14.5) ### Changed @@ -22,7 +24,7 @@ List of the most important changes for each release. * Numerous visual and accessibility issues * Facilities could not be renamed if the only changes were to the casing of the name (e.g. changing "Facility" to "FACILITY") -([0.14.4 Github milestone](https://github.com/learningequality/kolibri/issues?q=label%3Achangelog+milestone%3A0.14.4)) +([0.14.5 Github milestone](https://github.com/learningequality/kolibri/issues?q=label%3Achangelog+milestone%3A0.14.5)) ## 0.14.3 From d22665553905bfbcd693ad5e4f40e59bfb40e636 Mon Sep 17 00:00:00 2001 From: Jonathan Boiser Date: Tue, 1 Dec 2020 17:23:17 -0800 Subject: [PATCH 3/3] Update VERSION = (0, 14, 5, "final", 0) --- kolibri/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kolibri/__init__.py b/kolibri/__init__.py index 63331598e32..fe74e1b7094 100755 --- a/kolibri/__init__.py +++ b/kolibri/__init__.py @@ -15,7 +15,7 @@ #: This may not be the exact version as it's subject to modification with #: get_version() - use ``kolibri.__version__`` for the exact version string. -VERSION = (0, 14, 5, "alpha", 0) +VERSION = (0, 14, 5, "final", 0) __author__ = "Learning Equality" __email__ = "info@learningequality.org"