Configured colours and added additional images to ready app for iOS 13 dark mode

This commit is contained in:
Deniz Duezgoeren
2019-10-08 21:37:42 +02:00
parent b7bc097664
commit 85efe3955d
310 changed files with 6512 additions and 4492 deletions
+8 -4
View File
@@ -119,19 +119,23 @@ public class QueryParser {
}
private func consumeSubQuery() -> String {
let sq: StringBuilder = StringBuilder()
var sq = ""
while (!tq.isEmpty()) {
if (tq.matches("(")) {
sq.append("(").append(tq.chompBalanced("(", ")")).append(")")
sq.append("(")
sq.append(tq.chompBalanced("(", ")"))
sq.append(")")
} else if (tq.matches("[")) {
sq.append("[").append(tq.chompBalanced("[", "]")).append("]")
sq.append("[")
sq.append(tq.chompBalanced("[", "]"))
sq.append("]")
} else if (tq.matchesAny(QueryParser.combinators)) {
break
} else {
sq.append(tq.consume())
}
}
return sq.toString()
return sq
}
private func findElements()throws {