Skip to content

Commit 5e3501d

Browse files
Prepare for release v1.0.13 (#68)
* Prepare for release - use travis and gradle plugin to release * Fix missing super call - lint error
1 parent 91cd917 commit 5e3501d

28 files changed

Lines changed: 207 additions & 149 deletions

File tree

14 KB
Loading

.idea/codeStyles/Project.xml

Lines changed: 0 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
same "printed page" as the copyright notice for easier
188188
identification within third-party archives.
189189

190-
Copyright 2014 jtmcn
190+
Copyright 2019 kevinhinterlong
191191

192192
Licensed under the Apache License, Version 2.0 (the "License");
193193
you may not use this file except in compliance with the License.

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
<img src="playstore/archwiki_feature_graphic.png" height="150"/>
2-
3-
ArchWiki Viewer
1+
ArchWiki Viewer <img src="app/src/main/play/listings/en-US/graphics/icon/0.png" height="100px" align="right"/>
42
[![Build Status](https://api.travis-ci.org/kevinhinterlong/archwiki-viewer.svg?branch=master)](https://api.travis-ci.org/kevinhinterlong/archwiki-viewer) [![GitHub release](https://img.shields.io/github/release/kevinhinterlong/archwiki-viewer.svg)](https://github.com/kevinhinterlong/archwiki-viewer/releases)
53
===============
64
A simple viewer for the Arch Linux Wiki. Page content is formatted for optimal mobile viewing.
75

8-
[<img src="https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png" alt="Get it on Google Play" height="80">](https://play.google.com/store/apps/details?id=com.jtmcn.archwiki.viewer) [<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png" alt="Get it on F-Droid" height="80"><br/>](https://f-droid.org/repository/browse/?fdid=com.jtmcn.archwiki.viewer)
6+
[<img src="https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png" alt="Get it on Google Play" height="80">](https://play.google.com/store/apps/details?id=com.jtmcn.archwiki.viewer) [<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png" alt="Get it on F-Droid" height="80"><br/>](https://f-droid.org/repository/browse/?fdid=com.jtmcn.archwiki.viewer) [<img src=".github/assets/direct-apk-download.png" alt="Direct apk download" height="60">](https://github.com/kevinhinterlong/SwishTicker/releases/latest)
97

108
## Screenshots
119

12-
<img src="playstore/screen1.png" width="170"/> <img src="playstore/screen2.png" width="170"/> <img src="playstore/screen3.png" width="170"/> <img src="playstore/screen4.png" width="170"/> <img src="playstore/screen5.png" width="170"/>
10+
<img src="app/src/main/play/listings/en-US/graphics/phone-screenshots/0.png" width="170"/> <img src="app/src/main/play/listings/en-US/graphics/phone-screenshots/1.png" width="170"/> <img src="app/src/main/play/listings/en-US/graphics/phone-screenshots/2.png" width="170"/> <img src="app/src/main/play/listings/en-US/graphics/phone-screenshots/3.png" width="170"/> <img src="app/src/main/play/listings/en-US/graphics/phone-screenshots/4.png" width="170"/>
1311

1412
## Contributions
1513
All contributions are welcome, don't forget to ask if you need help.
@@ -19,6 +17,6 @@ Comments and tests are highly encouraged.
1917
## License
2018
This project is licensed under the Apache License, Version 2.0
2119

22-
Copyright 2014 jtmcn
20+
Copyright 2019 kevinhinterlong
2321

2422
See [LICENSE.md](LICENSE.md)

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'com.android.application'
3-
id 'com.github.triplet.play' version '2.1.0'
3+
id 'com.github.triplet.play' version '2.4.2'
44
}
55

66
android {
@@ -16,8 +16,8 @@ android {
1616
applicationId "com.jtmcn.archwiki.viewer"
1717
minSdkVersion 21
1818
targetSdkVersion 29
19-
versionCode 13
20-
versionName "1.0.12"
19+
versionCode 14
20+
versionName "1.0.13"
2121
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2222
}
2323

@@ -74,7 +74,7 @@ dependencies {
7474

7575
implementation 'com.google.android.material:material:1.0.0'
7676
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
77-
implementation 'androidx.appcompat:appcompat:1.0.2'
77+
implementation 'androidx.appcompat:appcompat:1.1.0'
7878
}
7979

8080
play {

app/src/main/java/com/jtmcn/archwiki/viewer/MainActivity.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ protected void onResume() {
6060

6161
@Override
6262
protected void onNewIntent(Intent intent) {
63+
super.onNewIntent(intent);
6364
handleIntent(intent);
6465
}
6566

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
kevinhinterlong+archwiki@gmail.com
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://github.com/kevinhinterlong/archwiki-viewer

0 commit comments

Comments
 (0)