Skip to content

Commit

Permalink
Merge pull request #34 from miguelfc/fix_reboot_extraction
Browse files Browse the repository at this point in the history
Fix reboot extraction #33
  • Loading branch information
miguelfc authored Apr 20, 2017
2 parents ea270c9 + 6b34c62 commit 6484801
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion marble-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.marble</groupId>
<artifactId>marble-core</artifactId>
<version>1.0.2-RELEASE</version>
<version>1.0.3-RELEASE</version>

<properties>
<java.version>1.8</java.version>
Expand Down
3 changes: 2 additions & 1 deletion marble-core/src/main/docker/README.md
Original file line number Diff line number Diff line change
@@ -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`]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 () {
Expand Down

0 comments on commit 6484801

Please sign in to comment.