Skip to content

Commit

Permalink
update rest
Browse files Browse the repository at this point in the history
  • Loading branch information
domjos1994 committed Oct 10, 2019
1 parent d189f24 commit 6f4105a
Show file tree
Hide file tree
Showing 3 changed files with 110 additions and 0 deletions.
52 changes: 52 additions & 0 deletions app/src/main/res/layout/whats_new_dialog.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2019 Domjos
~ This file is part of UniTrackerMobile <https://github.com/domjos1994/UniTrackerMobile>.
~
~ UniTrackerMobile is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ UniTrackerMobile is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with UniTrackerMobile. If not, see <http://www.gnu.org/licenses/>.
-->

<ScrollView android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/root"
xmlns:android="http://schemas.android.com/apk/res/android">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<TextView
android:id="@+id/lblWhatsNewTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="2dp"
android:gravity="center"
android:padding="2dp"
android:text="@string/app_name"
android:textSize="24sp"
android:textStyle="bold" />

<TextView
android:id="@+id/lblWhatsNewContent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:padding="2dp"
android:text="@string/app_name"
android:textSize="16sp" />
</LinearLayout>
</ScrollView>
29 changes: 29 additions & 0 deletions app/src/main/res/values-de/whatsNew.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2019 Domjos
~ This file is part of UniTrackerMobile <https://github.com/domjos1994/UniTrackerMobile>.
~
~ UniTrackerMobile is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ UniTrackerMobile is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with UniTrackerMobile. If not, see <http://www.gnu.org/licenses/>.
-->

<resources>
<string name="whats_new_0.1.beta.5">
<![CDATA[
- Neuigkeiten-Dialog beim Start<br/>
- Fehler bei der Administration behoben<br/>
- Anzahl an Bugs im Projekt anzeigen<br/>
- kleinere Fehler und Unschönheiten beheben
]]>
</string>
</resources>
29 changes: 29 additions & 0 deletions app/src/main/res/values/whatsNew.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2019 Domjos
~ This file is part of UniTrackerMobile <https://github.com/domjos1994/UniTrackerMobile>.
~
~ UniTrackerMobile is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ UniTrackerMobile is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with UniTrackerMobile. If not, see <http://www.gnu.org/licenses/>.
-->

<resources>
<string name="whats_new_0.1.beta.5">
<![CDATA[
- News-Dialog at Start<br/>
- Solve Administration-Bug<br/>
- Show number of bugs<br/>
- solve small mistakes
]]>
</string>
</resources>

0 comments on commit 6f4105a

Please sign in to comment.