Skip to content

Commit

Permalink
release: 2.3リリース (#40)
Browse files Browse the repository at this point in the history
* Fix: 従量制プランに対応 (#39)
* chore: リリース準備
  • Loading branch information
pakutoma authored Oct 4, 2020
1 parent 88b810c commit d188fb5
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
compileSdkVersion 30
buildToolsVersion '30.0.1'
defaultConfig {
applicationId "pakutoma.iijmiocouponwidget"
minSdkVersion 21
versionCode 6
versionName "2.2"
targetSdkVersion 28
versionCode 7
versionName "2.3"
targetSdkVersion 30
}
buildTypes {
release {
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/assets/about.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<html>
<head><style> body { font-family: sans-serif; }</style></head>
<body>
<h3>mioWidget 2.2</h3>
<p>Copyright (c) 2019 @pakutoma</p>
<h3>mioWidget 2.3</h3>
<p>Copyright (c) 2020 @pakutoma</p>
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class CouponAPI constructor(developerID: String, accessToken: String) {
when (it.plan) {
"Family Share", "Minimum Start", "Light Start"
-> convertNormalData(it)
"Eco Minimum", "Eco Standard"
"Eco Minimum", "Eco Standard", "Pay as you go"
-> convertEcoData(it)
else
-> throw UndefinedPlanException("Undefined plan name")
Expand Down

0 comments on commit d188fb5

Please sign in to comment.