Skip to content

Commit

Permalink
Release Version 1.0.1 (version code 3)
Browse files Browse the repository at this point in the history
  • Loading branch information
NilsFo committed Mar 4, 2017
1 parent 1ade609 commit c551729
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "de.nilsfo.lsn"
minSdkVersion 17
targetSdkVersion 24
versionCode 2
versionName "1.0"
versionCode 3
versionName "1.0.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import android.view.View;
import android.view.inputmethod.InputMethodManager;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;

import java.util.Date;
Expand Down Expand Up @@ -77,6 +78,12 @@ public void onClick(View v) {
}
});
snackbar.setActionTextColor(getResources().getColor(R.color.colorPrimary));

View snackbarView = snackbar.getView();
TextView textView = (TextView) snackbarView.findViewById(android.support.design.R.id.snackbar_text);
textView.setMaxLines(4);
textView.setMinLines(2);

snackbar.show();
}

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values-de/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<string name="deleteall_disabled_dialog_text">Sind Sie sicher dass sie %1$d der %2$d gespeicherten Notizen löschen wollen?</string>
<string name="error_no_note_to_delete">Keine Notiz zum löschen gefunden.</string>
<string name="error_note_save_failed">Die Notiz konnte nicht gespeichert werden.</string>
<string name="info_note_deleted">Noiz gelöscht: %1$s</string>
<string name="info_note_deleted">Notiz gelöscht: %1$s</string>
<string name="info_note_recovered">Notiz wiederhergestellt: %1$s</string>
<string name="last_edited_single">Zuletzt bearbeitet: %1$s</string>
<string name="pref_date_and_time">Zeit &amp; Datum</string>
Expand Down

0 comments on commit c551729

Please sign in to comment.