Skip to content

Commit 0f59037

Browse files
authored
Merge branch 'master' into greenkeeper/monorepo.react-16.4.2
2 parents 59ce549 + d6c7002 commit 0f59037

File tree

138 files changed

+3386
-3233
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+3386
-3233
lines changed

.eslintrc.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ extends:
1616
- prettier/flowtype
1717
- prettier/react
1818

19+
settings:
20+
react:
21+
version: "16.4"
22+
flowVersion: "0.67"
23+
1924
env:
2025
es6: true
2126
react-native/react-native: true
@@ -82,7 +87,6 @@ rules:
8287
- warn
8388
- reservedFirst: true
8489
ignoreCase: false
85-
callbacksLast: true
8690
react/no-access-state-in-setstate: error
8791
react/no-did-mount-set-state: error
8892
react/no-did-update-set-state: error

Gemfile.lock

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ GEM
55
addressable (2.5.2)
66
public_suffix (>= 2.0.2, < 4.0)
77
ast (2.4.0)
8-
atomos (0.1.2)
8+
atomos (0.1.3)
99
babosa (1.0.2)
1010
claide (1.0.2)
1111
colored (1.2)
@@ -27,7 +27,7 @@ GEM
2727
faraday_middleware (0.12.2)
2828
faraday (>= 0.7.4, < 1.0)
2929
fastimage (2.1.3)
30-
fastlane (2.100.1)
30+
fastlane (2.101.1)
3131
CFPropertyList (>= 2.3, < 4.0.0)
3232
addressable (>= 2.3, < 3.0.0)
3333
babosa (>= 1.0.2, < 2.0.0)
@@ -42,7 +42,7 @@ GEM
4242
faraday_middleware (~> 0.9)
4343
fastimage (>= 2.1.0, < 3.0.0)
4444
gh_inspector (>= 1.1.2, < 2.0.0)
45-
google-api-client (>= 0.21.2, < 0.22.0)
45+
google-api-client (>= 0.21.2, < 0.24.0)
4646
highline (>= 1.7.2, < 2.0.0)
4747
json (< 3.0.0)
4848
mini_magick (~> 4.5.1)
@@ -67,21 +67,20 @@ GEM
6767
git
6868
xml-simple
6969
gh_inspector (1.1.3)
70-
git (1.4.0)
71-
google-api-client (0.21.2)
70+
git (1.5.0)
71+
google-api-client (0.23.4)
7272
addressable (~> 2.5, >= 2.5.1)
7373
googleauth (>= 0.5, < 0.7.0)
7474
httpclient (>= 2.8.1, < 3.0)
7575
mime-types (~> 3.0)
7676
representable (~> 3.0)
7777
retriable (>= 2.0, < 4.0)
78-
googleauth (0.6.2)
78+
googleauth (0.6.4)
7979
faraday (~> 0.12)
8080
jwt (>= 1.4, < 3.0)
81-
logging (~> 2.0)
8281
memoist (~> 0.12)
8382
multi_json (~> 1.11)
84-
os (~> 0.9)
83+
os (>= 0.9, < 2.0)
8584
signet (~> 0.7)
8685
highline (1.7.10)
8786
http-cookie (1.0.3)
@@ -90,10 +89,6 @@ GEM
9089
jaro_winkler (1.5.1)
9190
json (2.1.0)
9291
jwt (2.1.0)
93-
little-plugger (1.1.4)
94-
logging (2.2.2)
95-
little-plugger (~> 1.1)
96-
multi_json (~> 1.10)
9792
memoist (0.16.0)
9893
mime-types (3.1)
9994
mime-types-data (~> 3.2015)
@@ -104,7 +99,7 @@ GEM
10499
multipart-post (2.0.0)
105100
nanaimo (0.2.6)
106101
naturally (2.2.0)
107-
os (0.9.6)
102+
os (1.0.0)
108103
parallel (1.12.1)
109104
parser (2.5.1.2)
110105
ast (~> 2.4.0)
@@ -118,15 +113,15 @@ GEM
118113
uber (< 0.2.0)
119114
retriable (3.1.2)
120115
rouge (2.0.7)
121-
rubocop (0.58.1)
116+
rubocop (0.58.2)
122117
jaro_winkler (~> 1.5.1)
123118
parallel (~> 1.10)
124119
parser (>= 2.5, != 2.5.1.1)
125120
powerpack (~> 0.1)
126121
rainbow (>= 2.2.2, < 4.0)
127122
ruby-progressbar (~> 1.7)
128123
unicode-display_width (~> 1.0, >= 1.0.1)
129-
ruby-progressbar (1.9.0)
124+
ruby-progressbar (1.10.0)
130125
rubyzip (1.2.1)
131126
security (0.1.3)
132127
signet (0.8.1)
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
4+
<item name="android:windowLightStatusBar">true</item>
5+
<item name="colorPrimary">@color/colorPrimary</item>
6+
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
7+
<item name="colorAccent">@color/colorAccent</item>
8+
</style>
9+
</resources>
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
<!-- Change the color value for your needs -->
4+
<color name="colorAccent">@color/purple</color>
5+
6+
<!-- this is used (in our app) solely for the app switcher color -->
7+
<color name="colorPrimary">#FFC107</color>
8+
<!-- this is used when the app is starting to define the status bar color -->
9+
<color name="colorPrimaryDark">#C4C4C4</color>
10+
11+
<color name="black">#242121</color>
12+
<color name="darkGray">#53585A</color>
13+
<color name="mediumGray">#E0DAD6</color>
14+
<color name="lightGray">#F7F5F2</color>
15+
<color name="gold">#E3A025</color>
16+
<color name="lightGold">#F7C55A</color>
17+
<color name="cranberry">#B11556</color>
18+
<color name="lime">#A3D65C</color>
19+
<color name="orange">#FA8D29</color>
20+
<color name="red">#E84A36</color>
21+
<color name="lightBlue">#83DBE0</color>
22+
<color name="blue">#00ADD9</color>
23+
<color name="teal">#00827E</color>
24+
<color name="purple">#6E3A5D</color>
25+
<color name="navy">#233746</color>
26+
<color name="mint">#CFE1D7</color>
27+
<color name="white">#FFFFFF</color>
28+
</resources>

android/app/src/main/res/values/styles.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
<!-- Base application theme. -->
44
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
55
<!-- Customize your theme here. -->
6+
<item name="colorPrimary">@color/colorPrimary</item>
7+
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
8+
<item name="colorAccent">@color/colorAccent</item>
69
</style>
710

811
</resources>

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
google()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.1.0-alpha09'
9+
classpath 'com.android.tools.build:gradle:3.1.3'
1010

1111
// NOTE: Do not place your application dependencies here; they belong
1212
// in the individual module build.gradle files

fastlane/Appfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ team_id 'TMK6S7TPX2'
99
itc_team_id '118781268'
1010

1111
# This is a private key. It is not included in the repository.
12-
# Contact odt@stolaf.edu or another admin if you need access.
12+
# Contact allaboutolaf@stolaf.edu or another admin if you need access.
1313
json_key_file 'fastlane/play-private-key.json'
1414
package_name 'com.allaboutolaf'

flow-typed/npm/xml2js_vx.x.x.js

Lines changed: 0 additions & 18 deletions
This file was deleted.
-48 Bytes
Loading

images/contacts/source/pubsafe.jpg

-8.75 KB
Loading

0 commit comments

Comments
 (0)