Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
MenoData committed Jul 4, 2018
1 parent a9cf922 commit 84491d6
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## [v3.44-2018?] not yet released
## [v3.45-2018?] not yet released

## [v3.44-2018e] published on 2018-07-04
### Added
- New class `AnnualDate` in main package [#787]
- New class `MachineTime` in main package [#609]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Only two steps are required before coding against the API of Time4A.

```groovy
dependencies {
compile group: 'net.time4j', name: 'time4j-android', version: '3.43-2018e'
compile group: 'net.time4j', name: 'time4j-android', version: '3.44-2018e'
}
```

Expand Down
6 changes: 3 additions & 3 deletions app/src/main/java/de/menodata/timedemoapp/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
this.setTitle("Time-Demo");
final TextView tv = (TextView) this.findViewById(R.id.time_display);
final TextView tv = this.findViewById(R.id.time_display);
final Context context = this.getApplication();

Button button = (Button) this.findViewById(R.id.refresh_button);
Button button = this.findViewById(R.id.refresh_button);
button.setOnClickListener(
new View.OnClickListener() {
@Override
Expand All @@ -42,7 +42,7 @@ public void onClick(View v) {
protected void onResume() {
try {
super.onResume();
TextView tv = (TextView) this.findViewById(R.id.time_display);
TextView tv = this.findViewById(R.id.time_display);
tv.setText(TimeDemoApp.getTimeInfo(this.getApplication()));
} catch (Throwable th) {
Log.e("TIME4A-ERROR-ON-RESUME", th.getMessage(), th);
Expand Down
3 changes: 2 additions & 1 deletion time4j-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ext {
siteUrl = 'https://github.com/menodata/Time4A'
gitUrl = 'https://github.com/menodata/Time4A.git'

libraryVersion = '3.43-2018e'
libraryVersion = '3.44-2018e'

developerId = 'mhochschild'
developerName = 'Meno Hochschild'
Expand Down Expand Up @@ -64,6 +64,7 @@ task javadoc(type: Javadoc) {
exclude "net/time4j/format/internal/**"
exclude "net/time4j/history/internal/**"
exclude "net/time4j/calendar/service/**"
exclude "net/time4j/calendar/doc-files/**"

options.memberLevel = JavadocMemberLevel.PUBLIC
options.encoding = "UTF-8"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ public class ApplicationStarter {

//~ Statische Felder/Initialisierungen --------------------------------

private static final String VERSION = "v3.43-2018e";
private static final String VERSION = "v3.44-2018e";
private static final int RELEASE_YEAR = 2018;
private static final int RELEASE_MONTH = 5;
private static final int RELEASE_DAY = 18;
private static final int RELEASE_MONTH = 7;
private static final int RELEASE_DAY = 4;
private static final String TIME4A = "time4a";

private static final AtomicBoolean PREPARED = new AtomicBoolean(false);
Expand Down

0 comments on commit 84491d6

Please sign in to comment.