Skip to content

Commit

Permalink
Bumped version to 1.1
Browse files Browse the repository at this point in the history
phikal committed Aug 20, 2015
1 parent 43aeaa7 commit f3a9925
Showing 3 changed files with 7 additions and 9 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
ReGeX /ˈrɛːɡɛx/ is an android game, with a simple objective: Find a
[regular expression](https://en.wikipedia.org/wiki/Regular_expression)
which does match certain strings, but doesn't match others. We are using
Perl's syntax. Here's an example of what the game could challange you with:
Perl's syntax. Here's an example of what the game could challenge you with:

> **Match:** `sy`, `sotx`, `f`
@@ -13,13 +13,11 @@ This could be solved by one of the following expressions:

> `sy|sotx|f`, `[sf].*`, `[^ja]*`, `.*[yxf]`
Depending on how long the expression is, how many regex charachters you used
Depending on how long the expression is, how many regex characters you used
and a few more variables, your score is generated. From the number of games
and your score ( high score and less games ), the current level is caclulated.
and your score (high score and less games), the current level is calculated.
The higher the level, the more complex the challenges become.

To access settings, click on the counter next to the text box and the skip the round (and lower your score a bit) long press it.

---

Licenced under: GPLv2+
Version 1,1 - Licenced under: GPLv2+
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -8,8 +8,8 @@ android {
applicationId "com.phikal.regex"
minSdkVersion 16
targetSdkVersion 22
versionCode 1
versionName "1.0"
versionCode 2
versionName "1.1"
}
buildTypes {
release {
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@
<string name="notif_on">Turn notifications on</string>
<string name="notif_off">Turn notifications off</string>

<string name="footer">ReGeX by @phikal, v1.0</string>
<string name="footer">ReGeX by @phikal, v1.1</string>

<string name="title_activity_settings">@string/settings</string>

0 comments on commit f3a9925

Please sign in to comment.