From 4deefd8aaec3123ea088a5c5989687ae45125018 Mon Sep 17 00:00:00 2001 From: kiswa Date: Tue, 6 Oct 2015 09:44:12 -0400 Subject: [PATCH] Update version for bugfix branch. --- VERSION | 21 +++++---------------- js/app.js | 2 +- 2 files changed, 6 insertions(+), 17 deletions(-) diff --git a/VERSION b/VERSION index 5a735e2..c272dd5 100644 --- a/VERSION +++ b/VERSION @@ -1,19 +1,8 @@ -v0.3.0 +v0.3.1 Changelog - * Adding a new Column to a board correctly shows it at the end of the columns. - * The list of boards can be sorted. - * Boards can be marked inactive to disallow using them without deleting. - * The list of boards can be filtered. - * Multiple logins per user are now possible. - * Additional setting to disable animations throughout. - * Expandable text inputs expand vertically and reset size on modal open. - * 'Move to Column' context menu improvements. - * Fix for missing Authorization header on some platforms. - * Fix for missing Automatic Action trigger 'category change'. - * Add ability to have emails sent on several status changes. - * Pulled some inline styles out (two remain, but are required for coloring tasks). - * Add setting to make new tasks appear at top or bottom of columns. - * Removed "No description" text from empty tasks. - * Add setting to hide "Assigned To: Unassigned" on tasks. + * Fix automatic action color change bug. + * Fix new user default board bug. + * Fix boards button bug. + * Fix modal display bug. diff --git a/js/app.js b/js/app.js index 9969030..7b7b98f 100644 --- a/js/app.js +++ b/js/app.js @@ -53,7 +53,7 @@ function($routeProvider, $httpProvider) { // Custom handlers for route authentication and rejection of invalid board id taskBoard.run(['$rootScope', '$location', '$window', 'AuthenticationService', function($rootScope, $location, $window, AuthenticationService) { - $rootScope.version = 'v0.3.0'; + $rootScope.version = 'v0.3.1'; $rootScope.$on('$routeChangeStart', function(event, nextRoute, currentRoute) { // Redirect to default path if authentication is required but not present.