-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' for version 0.1.3
- Loading branch information
Showing
41 changed files
with
552 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Data Privacy Statement (English) | ||
|
||
This app does not collect any user data. | ||
Nor does it share any user information with any third party. | ||
|
||
# Datenschutzerklärung (Deutsch) | ||
|
||
Diese App sammelt keinerlei Nutzerdaten. | ||
Außerdem werden keine Informationen über Benutzer an Dritte weitergegeben. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# X Party Game App | ||
This is a react native app for the x-party-game | ||
The android app is currently in closed alpha, get in touch if you are interested to try it. | ||
|
||
# License | ||
- The source code of this app is available under [MIT License](LICENSE). | ||
- Third party libraries are included via yarn (or npm) and have their own licenses. | ||
- The [included font file](android/app/src/main/assets/font/FontAwesome.otf) from [fontawesome](http://fontawesome.io) 4.7.0 is available under | ||
[SIL OFL 1.1](http://scripts.sil.org/OFL) | ||
|
||
# Data privacy statement (Datenschutzerklärung) | ||
Please see the [DATA_PRIVACY_STATEMENT file](DATA_PRIVACY_STATEMENT). | ||
This file has not been checked by a lawyer. | ||
|
||
# Changes | ||
## 0.1.3 <2017-04-28> | ||
- Fix skip game bug (#2) | ||
- Add icons (fontawesome) | ||
- More preliminary games | ||
## 0.1.2 <2017-04-27> | ||
- Add games | ||
- Improve layout (incl color scheme) | ||
- Enhance game properties | ||
## 0.1.1 <2017-04-27> | ||
- Remove LAN games | ||
## 0.1.0 <2017-04-27> | ||
- Initial release | ||
- Two play styles (classic, club mode) | ||
- Match Settings (number of rounds, score counting, games) | ||
- Player and Teamselection screens | ||
- Read games from json | ||
- I18n (German, English) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
...c/main/java/com/xmobile/MainActivity.java → .../java/org/iimog/xmobile/MainActivity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.xmobile; | ||
package org.iimog.xmobile; | ||
|
||
import com.facebook.react.ReactActivity; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ain/java/com/xmobile/MainApplication.java → ...va/org/iimog/xmobile/MainApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.xmobile; | ||
package org.iimog.xmobile; | ||
|
||
import android.app.Application; | ||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const style = { | ||
teamColors: ['#447684', '#734C8F'] | ||
} | ||
|
||
export default style |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"iimog/TODO": { | ||
"name": "TODO", | ||
"instructions": "TODO", | ||
"bestOf": 5, | ||
"activePlayers": 1, | ||
"tiePossible": false, | ||
"randomStarter": false, | ||
"translations": { | ||
"de": { | ||
"name": "TODO", | ||
"instructions": "TODO" | ||
} | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.