Compare commits

...

2 Commits

Author SHA1 Message Date
Andrea Cavalli 12329c5ffe Merge remote-tracking branch 'origin/master'
# Conflicts:
#	core/src/main/java/it/cavallium/warppi/gui/CalculatorHUD.java
2019-12-16 16:59:05 +01:00
Andrea Cavalli 0335dadcea Fixed preview url 2019-12-16 16:54:10 +01:00
4 changed files with 13 additions and 13 deletions

View File

@ -9,7 +9,7 @@ Step-by-step algebra calculator for Raspberry PI.
# Live preview
This preview has been built using TeaVM: a JVM made in javascript.
Obviously it runs slower than the original.
https://local.cavallium.it/webtests/warppiweb/
https://local.cavallium.it/calculator/
# Keypad PCB
https://workspace.circuitmaker.com/Projects/Details/Andrea-Cavalli/Scientific-calculator-Keypad

View File

@ -49,9 +49,9 @@ public class DesktopConsoleUtils implements it.cavallium.warppi.Platform.Console
if (StaticVars.outputLevel >= level) {
final String time = getTimeString();
if (StaticVars.outputLevel == 0)
println(System.out, "[" + time + "] " + str);
println(System.out, "[" + time + "]" + str);
else
println(System.out, "[" + time + "] " + str);
println(System.out, "[" + time + "]" + str);
}
}
@ -69,9 +69,9 @@ public class DesktopConsoleUtils implements it.cavallium.warppi.Platform.Console
if (StaticVars.outputLevel >= level) {
final String time = getTimeString();
if (StaticVars.outputLevel == 0)
println(System.out, "[" + time + "][" + prefix + "] " + str);
println(System.out, "[" + time + "][" + prefix + "]" + str);
else
println(System.out, "[" + time + "][" + prefix + "] " + str);
println(System.out, "[" + time + "][" + prefix + "]" + str);
}
}

View File

@ -49,9 +49,9 @@ public class HardwareConsoleUtils implements it.cavallium.warppi.Platform.Consol
if (StaticVars.outputLevel >= level) {
final String time = getTimeString();
if (StaticVars.outputLevel == 0)
println(System.out, "[" + time + "] " + str);
println(System.out, "[" + time + "]" + str);
else
println(System.out, "[" + time + "] " + str);
println(System.out, "[" + time + "]" + str);
}
}
@ -69,9 +69,9 @@ public class HardwareConsoleUtils implements it.cavallium.warppi.Platform.Consol
if (StaticVars.outputLevel >= level) {
final String time = getTimeString();
if (StaticVars.outputLevel == 0)
println(System.out, "[" + time + "][" + prefix + "] " + str);
println(System.out, "[" + time + "][" + prefix + "]" + str);
else
println(System.out, "[" + time + "][" + prefix + "] " + str);
println(System.out, "[" + time + "][" + prefix + "]" + str);
}
}

View File

@ -47,9 +47,9 @@ public class TeaVMConsoleUtils implements it.cavallium.warppi.Platform.ConsoleUt
if (StaticVars.outputLevel >= level) {
final String time = getTimeString();
if (StaticVars.outputLevel == 0)
println(System.out, "[" + time + "] " + str);
println(System.out, "[" + time + "]" + str);
else
println(System.out, "[" + time + "] " + str);
println(System.out, "[" + time + "]" + str);
}
}
@ -67,9 +67,9 @@ public class TeaVMConsoleUtils implements it.cavallium.warppi.Platform.ConsoleUt
if (StaticVars.outputLevel >= level) {
final String time = getTimeString();
if (StaticVars.outputLevel == 0)
println(System.out, "[" + time + "][" + prefix + "] " + str);
println(System.out, "[" + time + "][" + prefix + "]" + str);
else
println(System.out, "[" + time + "][" + prefix + "] " + str);
println(System.out, "[" + time + "][" + prefix + "]" + str);
}
}