diff --git a/marble-core/pom.xml b/marble-core/pom.xml index dc3a87b..5d0bb90 100644 --- a/marble-core/pom.xml +++ b/marble-core/pom.xml @@ -5,7 +5,7 @@ org.marble marble-core - 1.0.2-RELEASE + 1.0.3-RELEASE 1.8 diff --git a/marble-core/src/main/docker/README.md b/marble-core/src/main/docker/README.md index de24dde..77ea3bf 100644 --- a/marble-core/src/main/docker/README.md +++ b/marble-core/src/main/docker/README.md @@ -1,6 +1,7 @@ # Supported tags and respective `Dockerfile` links -- [`1.0.2-RELEASE`, `latest`] +- [`1.0.3-RELEASE`, `latest`] +- [`1.0.2-RELEASE`] - [`1.0.1-RELEASE`] - [`1.0.0-RELEASE`] diff --git a/marble-core/src/main/resources/web/js/controllers/topic/topicViewController.js b/marble-core/src/main/resources/web/js/controllers/topic/topicViewController.js index 029e029..bcce326 100644 --- a/marble-core/src/main/resources/web/js/controllers/topic/topicViewController.js +++ b/marble-core/src/main/resources/web/js/controllers/topic/topicViewController.js @@ -124,10 +124,14 @@ angular.module('marbleCoreApp') }; $scope.rebootExtraction = function () { - $scope.topic.lowerLimit = $scope.topic.upperLimit; - $scope.topic.upperLimit = ""; - $scope.update(); - $scope.extract(); + TopicInfoFactory.show({name: $stateParams.topicName}).$promise.then(function(data) { + if (data.newestPostId) { + $scope.topic.lowerLimit = data.newestPostId; + $scope.topic.upperLimit = ""; + $scope.update(); + $scope.extract(); + } + }); }; $scope.deletePostsByTopic = function () {