Skip to content

Commit

Permalink
v2.0.1 (#115)
Browse files Browse the repository at this point in the history
* Bump version codes.

* Modify release scripts one last time.

* Fix background image issues.

* Make deploy script and firebase config great again.

* Make the background gradient work while the image is loading.

* Background color fixes.

* Yet another background adjustment.
  • Loading branch information
roughike authored Jan 26, 2019
1 parent 139d520 commit dc803ca
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 7 deletions.
4 changes: 2 additions & 2 deletions mobile/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ android {
applicationId "com.roughike.inkino"
minSdkVersion 16
targetSdkVersion 27
versionCode 6
versionName "1.1.0"
versionCode 7
versionName "2.0.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

Expand Down
4 changes: 2 additions & 2 deletions mobile/ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<string>2.0.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>7</string>
<string>8</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
Expand Down
11 changes: 11 additions & 0 deletions release-all.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env bash

set -o errexit
set -o pipefail
set -o nounset

(cd mobile && flutter build apk && flutter build ios)

(cd mobile/android && fastlane internal)
(cd mobile/ios && fastlane beta)
(cd web && ./deploy.sh && firebase deploy)
2 changes: 1 addition & 1 deletion web/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ for i in $(find . -type f | egrep '\.(svg|png|jpeg|jpg)$'); do
done

cd ../
# firebase deploy
# firebase deploy
6 changes: 6 additions & 0 deletions web/firebase.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@
}
]
}
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
5 changes: 3 additions & 2 deletions web/web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@
}

body {
background-color: #0f1835;
background-color: #1b2f6c;
background-image: url("images/background-image.jpg"),
linear-gradient(#1b2f6c, #0f1835);
linear-gradient(#1b2f6c, #0f1835);
background-repeat: no-repeat;
background-position: bottom;
background-attachment: fixed;
background-size: cover;
Expand Down

0 comments on commit dc803ca

Please sign in to comment.