Skip to content

Commit

Permalink
fix version number
Browse files Browse the repository at this point in the history
  • Loading branch information
bjost2s committed Sep 23, 2015
1 parent 4571d22 commit b2a38bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 27 deletions.
4 changes: 2 additions & 2 deletions OpenRobertaParent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ limitations under the License.
<inceptionYear>2014</inceptionYear>
<properties>
<!-- the server and the crosscompiler SHOULD be compatible between(including) the following two versions of software deployed on the ROBOT -->
<validversionrange.From>1.3.0</validversionrange.From>
<validversionrange.To>1.3.0</validversionrange.To>
<validversionrange.From>1.3.1</validversionrange.From>
<validversionrange.To>1.3.1</validversionrange.To>
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format>
<buildTimeStamp>${maven.build.timestamp}</buildTimeStamp>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,16 +238,11 @@ var SIM = (function() {
output.right = right * MAXPOWER || 0;

robot.led.mode = output.ledMode = LIGHT.getMode() || "OFF";
<<<<<<< HEAD
if (LIGHT.getMode() && LIGHT.getMode() == "OFF") {
robot.led.color = output.led = "#dddddd"; // = led off
} else {
robot.led.color = output.led = LIGHT.getColor();
}
=======
if (LIGHT.getMode() && LIGHT.getMode() == "OFF"){robot.led.color = output.led = "#dddddd"; // = led off
} else {robot.led.color = output.led = LIGHT.getColor();}
>>>>>>> 42c1b33c2760dfd6350113939dffefa669b4ce48
}

function setObstacle() {
Expand Down Expand Up @@ -364,10 +359,6 @@ var SIM = (function() {
scene.playground.h = $(window).height() - offsetY;
var oldScale = scale;
scale = 1;
<<<<<<< HEAD
=======
//LOG.info($(window).width());
>>>>>>> 42c1b33c2760dfd6350113939dffefa669b4ce48
if ($(window).width() < 768) {// extra small devices
scale = 0.5
} else if ($(window).width() < 1024) {// medium and large devices
Expand Down Expand Up @@ -522,7 +513,6 @@ var SIM = (function() {
window.cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] || window[vendors[x] + 'CancelRequestAnimationFrame'];
}

<<<<<<< HEAD
if (!window.requestAnimationFrame) {
window.requestAnimationFrame = function(callback, element) {
var currTime = new Date().getTime();
Expand All @@ -540,19 +530,4 @@ var SIM = (function() {
clearTimeout(id);
};
}
=======
if (!window.requestAnimationFrame){window.requestAnimationFrame = function(callback, element) {
var currTime = new Date().getTime();
var timeToCall = Math.max(0, 16 - (currTime - lastTime));
var id = window.setTimeout(function() {
callback(currTime + timeToCall);
}, timeToCall);
lastTime = currTime + timeToCall;
return id;
};}

if (!window.cancelAnimationFrame){window.cancelAnimationFrame = function(id) {
clearTimeout(id);
};}
>>>>>>> 42c1b33c2760dfd6350113939dffefa669b4ce48
}());

0 comments on commit b2a38bd

Please sign in to comment.