Skip to content

Commit 05d5982

Browse files
authored
Merge branch 'master' into ksto-offline
2 parents a833821 + 9225bb2 commit 05d5982

File tree

6 files changed

+24
-37
lines changed

6 files changed

+24
-37
lines changed

.travis.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,9 @@ matrix:
2727

2828
- &android-base
2929
os: linux
30-
dist: precise
30+
dist: trusty
3131
sudo: required
3232
language: android
33-
jdk: oraclejdk8
3433
env: [ANDROID=yes, CAN_DEPLOY=yes]
3534
android:
3635
components:
@@ -39,7 +38,6 @@ matrix:
3938
- build-tools-23.0.1
4039
- build-tools-23.0.2
4140
- build-tools-25.0.1
42-
- build-tools-23.0.3
4341
- build-tools-25.0.2
4442
- build-tools-25.0.3
4543
- build-tools-26.0.1
@@ -121,8 +119,6 @@ install:
121119
# install fastlane (if at first you don't succeed, try once more)
122120
- bundle install || bundle install
123121

124-
- if [[ $TRAVIS_OS_NAME == "osx" ]]; then brew install imagemagick; fi
125-
126122
before_script:
127123
- if [[ $JS ]]; then greenkeeper-lockfile-update; fi
128124
# Fire up the Android emulator

Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
source "https://rubygems.org"
22

3-
gem "badge"
43
gem "fastlane"
54
gem "hockeyapp"
65
gem "json"

Gemfile.lock

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,20 @@ GEM
1313
public_suffix (>= 2.0.2, < 4.0)
1414
awesome_print (1.8.0)
1515
babosa (1.0.2)
16-
badge (0.8.5)
17-
curb (~> 0.9)
18-
fastimage (>= 1.6)
19-
fastlane (>= 2.0)
20-
mini_magick (>= 4.5)
2116
claide (1.0.2)
2217
colored (1.2)
2318
colored2 (3.1.2)
2419
commander-fastlane (4.4.5)
2520
highline (~> 1.7.2)
2621
concurrent-ruby (1.0.5)
27-
curb (0.9.4)
28-
declarative (0.0.9)
22+
declarative (0.0.10)
2923
declarative-option (0.1.0)
3024
diff-lcs (1.3)
3125
docile (1.1.5)
3226
domain_name (0.5.20170404)
3327
unf (>= 0.0.5, < 1.0.0)
3428
dotenv (2.2.1)
35-
excon (0.58.0)
29+
excon (0.59.0)
3630
faraday (0.13.1)
3731
multipart-post (>= 1.2, < 3)
3832
faraday-cookie_jar (0.0.6)
@@ -41,7 +35,7 @@ GEM
4135
faraday_middleware (0.12.2)
4236
faraday (>= 0.7.4, < 1.0)
4337
fastimage (2.1.0)
44-
fastlane (2.55.0)
38+
fastlane (2.56.0)
4539
CFPropertyList (>= 2.3, < 3.0.0)
4640
addressable (>= 2.3, < 3.0.0)
4741
babosa (>= 1.0.2, < 2.0.0)
@@ -76,7 +70,7 @@ GEM
7670
xcpretty-travis-formatter (>= 0.0.3)
7771
fastlane-plugin-bugsnag (1.1.0)
7872
gh_inspector (1.0.3)
79-
google-api-client (0.13.4)
73+
google-api-client (0.13.6)
8074
addressable (~> 2.5, >= 2.5.1)
8175
googleauth (~> 0.5)
8276
httpclient (>= 2.8.1, < 3.0)
@@ -123,7 +117,7 @@ GEM
123117
mimemagic (0.3.2)
124118
mini_magick (4.5.1)
125119
minitest (5.10.3)
126-
multi_json (1.12.1)
120+
multi_json (1.12.2)
127121
multi_xml (0.6.0)
128122
multipart-post (2.0.0)
129123
nanaimo (0.2.3)
@@ -190,13 +184,11 @@ PLATFORMS
190184
ruby
191185

192186
DEPENDENCIES
193-
badge
194187
fastlane
195188
fastlane-plugin-bugsnag
196189
hockeyapp
197190
json
198191
xcodeproj
199192

200-
201193
BUNDLED WITH
202194
1.14.6

android/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def enableProguardInReleaseBuilds = false
9696

9797
android {
9898
compileSdkVersion 23
99-
buildToolsVersion "25.0.3"
99+
buildToolsVersion "26.0.1"
100100

101101
defaultConfig {
102102
applicationId "com.allaboutolaf"
@@ -108,7 +108,7 @@ android {
108108
abiFilters "armeabi-v7a", "x86"
109109
}
110110
manifestPlaceholders = [
111-
manifestApplicationId: "${applicationId}",
111+
manifestApplicationId: applicationId,
112112
onesignal_app_id: "aa46a500-ab1c-4127-b9ff-e7373da3ce35",
113113
onesignal_google_project_number: "185558680648",
114114
gmaps_key: System.getenv("GMAPS_KEY") ?: "",
@@ -157,7 +157,7 @@ android {
157157
// borrowed from https://gist.github.com/gabrielemariotti/6856974
158158
def propFile = new File('android/app//signing.properties')
159159
if (propFile.canRead()) {
160-
def Properties props = new Properties()
160+
Properties props = new Properties()
161161
props.load(new FileInputStream(propFile))
162162
if (props != null
163163
&& props.containsKey('STORE_FILE')

source/views/contacts/contact-list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export class ContactsListView extends React.PureComponent<void, Props, State> {
9393
}
9494

9595
renderSectionHeader = ({section: {title}}: any) =>
96-
<ListSectionHeader title={title} spacing={{left: 10}} />
96+
<ListSectionHeader title={title} />
9797

9898
renderItem = ({item}: {item: ContactType}) =>
9999
<ContactRow contact={item} onPress={this.onPressContact} />

source/views/streaming/radio.js

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,17 @@ export default class KSTOView extends React.PureComponent<void, Props, State> {
145145
</View>
146146

147147
<View style={styles.container}>
148-
<Title />
148+
<View style={styles.titleWrapper}>
149+
<Text selectable={true} style={styles.heading}>
150+
St. Olaf College Radio
151+
</Text>
152+
<Text selectable={true} style={styles.subHeading}>
153+
KSTO 93.1 FM
154+
</Text>
155+
156+
{error}
157+
</View>
149158

150-
{error}
151159
{button}
152160

153161
<StreamPlayer
@@ -165,16 +173,6 @@ export default class KSTOView extends React.PureComponent<void, Props, State> {
165173
}
166174
}
167175

168-
const Title = () =>
169-
<View style={styles.titleWrapper}>
170-
<Text selectable={true} style={styles.heading}>
171-
St. Olaf College Radio
172-
</Text>
173-
<Text selectable={true} style={styles.subHeading}>
174-
KSTO 93.1 FM
175-
</Text>
176-
</View>
177-
178176
type StreamPlayerProps = {
179177
playState: PlayState,
180178
onWaiting?: () => any,
@@ -420,10 +418,12 @@ const styles = StyleSheet.create({
420418
textAlign: 'center',
421419
},
422420
status: {
423-
paddingTop: 10,
424421
fontWeight: '400',
425-
fontSize: 24,
422+
fontSize: 18,
423+
textAlign: 'center',
426424
color: c.grapefruit,
425+
marginTop: 15,
426+
marginBottom: 5,
427427
},
428428
webview: {
429429
display: 'none',

0 commit comments

Comments
 (0)