@weareberyl/scheme-assets 1.6.0 → 1.6.1-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +94 -0
- package/build/scheme_assets.json +104 -98
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
# basis-scheme-assets
|
|
2
|
+
|
|
3
|
+
Scheme-specific image assets for the Beryl rider app (non-white-label / sponsored
|
|
4
|
+
schemes such as West Midlands, Leeds, Greater Manchester, etc.).
|
|
5
|
+
|
|
6
|
+
Images live here as source `@3x` PNGs. On release, CI generates `@1x`/`@2x`
|
|
7
|
+
variants, uploads every resolution to a Google Cloud Storage bucket, and publishes
|
|
8
|
+
an npm package (`@weareberyl/scheme-assets`) whose `scheme_assets.json` maps each
|
|
9
|
+
image name to its hosted URI and dimensions. The mobile app then bumps the package
|
|
10
|
+
version to pick up the new images.
|
|
11
|
+
|
|
12
|
+
> For adding images directly to the mobile app bundle (white-label / shared
|
|
13
|
+
> images), see `add_new_images.md` in the `basis-mobile` repo. This repo is only
|
|
14
|
+
> for **scheme** images.
|
|
15
|
+
|
|
16
|
+
## How it works
|
|
17
|
+
|
|
18
|
+
- Only the **`@3x`** PNG is stored in version control, under
|
|
19
|
+
`assets/<scheme>/<image_name>.png`.
|
|
20
|
+
- `codegen-sizes` reads each `@3x` image, divides its width/height by 3, and writes
|
|
21
|
+
`package/scheme_assets.json` — keyed by `<scheme>` → `<image_name>` (filename
|
|
22
|
+
without `.png`) → `{ uri, width, height, aspectRatio }`. The `uri` points at the
|
|
23
|
+
GCloud bucket under the release tag.
|
|
24
|
+
- `resize-images` regenerates the `@1x` and `@2x` images (and copies the `@3x`)
|
|
25
|
+
into `output/`.
|
|
26
|
+
- `gcloud-sync` uploads everything in `output/` to
|
|
27
|
+
`gs://beryl-basis-production-rider-app-images/<tag>/<scheme>/...`.
|
|
28
|
+
- `publish` publishes the npm package at version `<tag>`.
|
|
29
|
+
|
|
30
|
+
These last steps all run in CI (CircleCI) — you do **not** run them locally.
|
|
31
|
+
|
|
32
|
+
## Adding a new image
|
|
33
|
+
|
|
34
|
+
1. **Create the `@3x` PNG** at the correct dimensions. Only the `@3x` is committed;
|
|
35
|
+
`@1x` and `@2x` are generated automatically in CI, so do not commit them.
|
|
36
|
+
|
|
37
|
+
2. **Place it in the scheme folder**: `assets/<scheme>/<image_name>.png`.
|
|
38
|
+
- Use an existing scheme folder (e.g. `assets/greater-manchester/`) or create a
|
|
39
|
+
new one named after the scheme.
|
|
40
|
+
- Follow the naming convention for the scheme — image names are prefixed by the
|
|
41
|
+
scheme abbreviation, e.g. `wm_` (West Midlands), `leeds_`, `gm_`
|
|
42
|
+
(Greater Manchester). The filename (minus `.png`) becomes the key the mobile
|
|
43
|
+
app references, so match the names the app expects.
|
|
44
|
+
- **Use underscores, not dashes, in the filename.** Android drawable resource
|
|
45
|
+
names can't contain dashes (`-`), so a file like `gm-training.png` will break
|
|
46
|
+
the Android build. Use `gm_training.png` instead. (Scheme **folder** names like
|
|
47
|
+
`greater-manchester` may use dashes — this only applies to the image filename.)
|
|
48
|
+
|
|
49
|
+
3. **Compress the image**:
|
|
50
|
+
```sh
|
|
51
|
+
git add assets/<scheme>/<image_name>.png
|
|
52
|
+
yarn compress-images
|
|
53
|
+
git add assets/<scheme>/<image_name>.png # re-add after compression
|
|
54
|
+
```
|
|
55
|
+
`compress-images` runs oxipng over staged PNGs. CI runs `yarn is-compressed` and
|
|
56
|
+
**fails the build** if any image isn't already compressed, so this step is
|
|
57
|
+
required before pushing.
|
|
58
|
+
|
|
59
|
+
4. **Commit, push, and open a PR** against `master`. Get it reviewed and merged.
|
|
60
|
+
|
|
61
|
+
5. **Release it** by pushing a git tag (this is what triggers the GCloud upload and
|
|
62
|
+
npm publish — merging alone does nothing):
|
|
63
|
+
- **Release candidate** (testing from a feature branch, before merge): tag with a
|
|
64
|
+
pre-release version, e.g. `0.42.0-rc.1`. CI rejects non-rc tags on feature
|
|
65
|
+
branches and rc tags on `master`.
|
|
66
|
+
- **Production release** (from `master`): tag with a plain semver, e.g. `0.42.0`.
|
|
67
|
+
|
|
68
|
+
On a matching tag, CI runs `build → sync-gcloud → publish`, uploading the images
|
|
69
|
+
to the bucket under the tag name and publishing `@weareberyl/scheme-assets@<tag>`.
|
|
70
|
+
|
|
71
|
+
> **If the publish step fails, it's most likely an expired NPM token.** Publishing
|
|
72
|
+
> to NPM uses an `NPM_TOKEN` set on CircleCI (in the `beryl-basis-global` context),
|
|
73
|
+
> generated by the `basis-machine-user` NPM account. This token **expires every 90
|
|
74
|
+
> days**, so when a publish that previously worked starts failing on auth, the fix
|
|
75
|
+
> is to log in as `basis-machine-user`, generate a fresh NPM token, and update the
|
|
76
|
+
> `NPM_TOKEN` value in CircleCI.
|
|
77
|
+
|
|
78
|
+
6. **Update the mobile app**: bump the `@weareberyl/scheme-assets` dependency to the
|
|
79
|
+
newly published version. The new image is then available via the generated
|
|
80
|
+
`scheme_assets.json`.
|
|
81
|
+
|
|
82
|
+
## Local commands
|
|
83
|
+
|
|
84
|
+
| Command | What it does |
|
|
85
|
+
| --- | --- |
|
|
86
|
+
| `yarn compress-images` | Compress staged PNGs with oxipng (run before committing). |
|
|
87
|
+
| `yarn is-compressed` | Verify staged PNGs are already compressed (CI gate). |
|
|
88
|
+
| `yarn codegen-sizes --tag <tag>` | Generate `package/scheme_assets.json` + `index.ts`. |
|
|
89
|
+
| `yarn resize-images` | Generate `@1x`/`@2x` images into `output/`. |
|
|
90
|
+
| `yarn gcloud-sync --tag <tag>` | Upload `output/` to the GCloud bucket (needs auth). |
|
|
91
|
+
| `yarn build` | Compile the package to `build/`. |
|
|
92
|
+
|
|
93
|
+
`codegen-sizes`, `resize-images`, `gcloud-sync`, and `publish` normally run only in
|
|
94
|
+
CI on a tagged build — you rarely need to run them by hand.
|
package/build/scheme_assets.json
CHANGED
|
@@ -1,157 +1,163 @@
|
|
|
1
1
|
{
|
|
2
2
|
"greater-manchester": {
|
|
3
3
|
"gm_bbe": {
|
|
4
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_bbe.png",
|
|
4
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_bbe.png",
|
|
5
5
|
"width": 66,
|
|
6
6
|
"height": 61,
|
|
7
7
|
"aspectRatio": 1.0819672131147542
|
|
8
8
|
},
|
|
9
9
|
"gm_bbe_circle": {
|
|
10
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_bbe_circle.png",
|
|
10
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_bbe_circle.png",
|
|
11
11
|
"width": 300,
|
|
12
12
|
"height": 300,
|
|
13
13
|
"aspectRatio": 1
|
|
14
14
|
},
|
|
15
15
|
"gm_bbe_empty": {
|
|
16
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_bbe_empty.png",
|
|
16
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_bbe_empty.png",
|
|
17
17
|
"width": 106,
|
|
18
18
|
"height": 80,
|
|
19
19
|
"aspectRatio": 1.325
|
|
20
20
|
},
|
|
21
21
|
"gm_bbe_large": {
|
|
22
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_bbe_large.png",
|
|
22
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_bbe_large.png",
|
|
23
23
|
"width": 164,
|
|
24
24
|
"height": 118,
|
|
25
25
|
"aspectRatio": 1.3898305084745763
|
|
26
26
|
},
|
|
27
27
|
"gm_bbe_small": {
|
|
28
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_bbe_small.png",
|
|
28
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_bbe_small.png",
|
|
29
29
|
"width": 59,
|
|
30
30
|
"height": 53,
|
|
31
31
|
"aspectRatio": 1.1132075471698113
|
|
32
32
|
},
|
|
33
33
|
"gm_bike": {
|
|
34
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_bike.png",
|
|
34
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_bike.png",
|
|
35
35
|
"width": 66,
|
|
36
36
|
"height": 57,
|
|
37
37
|
"aspectRatio": 1.1578947368421053
|
|
38
38
|
},
|
|
39
39
|
"gm_bike_drinking": {
|
|
40
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_bike_drinking.png",
|
|
40
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_bike_drinking.png",
|
|
41
41
|
"width": 375,
|
|
42
42
|
"height": 336,
|
|
43
43
|
"aspectRatio": 1.1160714285714286
|
|
44
44
|
},
|
|
45
45
|
"gm_bike_empty": {
|
|
46
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_bike_empty.png",
|
|
46
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_bike_empty.png",
|
|
47
47
|
"width": 106,
|
|
48
48
|
"height": 80,
|
|
49
49
|
"aspectRatio": 1.325
|
|
50
50
|
},
|
|
51
51
|
"gm_bike_front_tether_split": {
|
|
52
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_bike_front_tether_split.png",
|
|
52
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_bike_front_tether_split.png",
|
|
53
53
|
"width": 226,
|
|
54
54
|
"height": 93,
|
|
55
55
|
"aspectRatio": 2.4301075268817205
|
|
56
56
|
},
|
|
57
57
|
"gm_bike_highway_code": {
|
|
58
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_bike_highway_code.png",
|
|
58
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_bike_highway_code.png",
|
|
59
59
|
"width": 358,
|
|
60
60
|
"height": 447,
|
|
61
61
|
"aspectRatio": 0.8008948545861297
|
|
62
62
|
},
|
|
63
63
|
"gm_bike_large": {
|
|
64
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_bike_large.png",
|
|
64
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_bike_large.png",
|
|
65
65
|
"width": 163,
|
|
66
66
|
"height": 118,
|
|
67
67
|
"aspectRatio": 1.38135593220339
|
|
68
68
|
},
|
|
69
69
|
"gm_bike_lock_split": {
|
|
70
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_bike_lock_split.png",
|
|
70
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_bike_lock_split.png",
|
|
71
71
|
"width": 305,
|
|
72
72
|
"height": 125,
|
|
73
73
|
"aspectRatio": 2.44
|
|
74
74
|
},
|
|
75
75
|
"gm_bike_safety_helmet": {
|
|
76
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_bike_safety_helmet.png",
|
|
76
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_bike_safety_helmet.png",
|
|
77
77
|
"width": 338,
|
|
78
78
|
"height": 423,
|
|
79
79
|
"aspectRatio": 0.7990543735224587
|
|
80
80
|
},
|
|
81
81
|
"gm_bike_small": {
|
|
82
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_bike_small.png",
|
|
82
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_bike_small.png",
|
|
83
83
|
"width": 57,
|
|
84
84
|
"height": 47,
|
|
85
85
|
"aspectRatio": 1.2127659574468086
|
|
86
86
|
},
|
|
87
87
|
"gm_bike_weather_conditions": {
|
|
88
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_bike_weather_conditions.png",
|
|
88
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_bike_weather_conditions.png",
|
|
89
89
|
"width": 375,
|
|
90
90
|
"height": 365,
|
|
91
91
|
"aspectRatio": 1.0273972602739727
|
|
92
92
|
},
|
|
93
93
|
"gm_invalid_parking": {
|
|
94
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_invalid_parking.png",
|
|
94
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_invalid_parking.png",
|
|
95
95
|
"width": 48,
|
|
96
96
|
"height": 48,
|
|
97
97
|
"aspectRatio": 1
|
|
98
98
|
},
|
|
99
99
|
"gm_manual_unlock_avatar": {
|
|
100
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_manual_unlock_avatar.png",
|
|
100
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_manual_unlock_avatar.png",
|
|
101
101
|
"width": 149,
|
|
102
102
|
"height": 150,
|
|
103
103
|
"aspectRatio": 0.9933333333333333
|
|
104
104
|
},
|
|
105
105
|
"gm_onboarding_bike_dock": {
|
|
106
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_onboarding_bike_dock.png",
|
|
106
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_onboarding_bike_dock.png",
|
|
107
107
|
"width": 400,
|
|
108
108
|
"height": 495,
|
|
109
109
|
"aspectRatio": 0.8080808080808081
|
|
110
110
|
},
|
|
111
111
|
"gm_onboarding_bike_howtoride": {
|
|
112
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_onboarding_bike_howtoride.png",
|
|
112
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_onboarding_bike_howtoride.png",
|
|
113
113
|
"width": 400,
|
|
114
114
|
"height": 495,
|
|
115
115
|
"aspectRatio": 0.8080808080808081
|
|
116
116
|
},
|
|
117
117
|
"gm_onboarding_bike_lock": {
|
|
118
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_onboarding_bike_lock.png",
|
|
118
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_onboarding_bike_lock.png",
|
|
119
119
|
"width": 232,
|
|
120
120
|
"height": 258,
|
|
121
121
|
"aspectRatio": 0.8992248062015504
|
|
122
122
|
},
|
|
123
123
|
"gm_onboarding_bike_unlock_nfc": {
|
|
124
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_onboarding_bike_unlock_nfc.png",
|
|
124
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_onboarding_bike_unlock_nfc.png",
|
|
125
125
|
"width": 305,
|
|
126
126
|
"height": 380,
|
|
127
127
|
"aspectRatio": 0.8026315789473685
|
|
128
128
|
},
|
|
129
129
|
"gm_onboarding_bike_unlock_no_nfc": {
|
|
130
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_onboarding_bike_unlock_no_nfc.png",
|
|
130
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_onboarding_bike_unlock_no_nfc.png",
|
|
131
131
|
"width": 305,
|
|
132
132
|
"height": 380,
|
|
133
133
|
"aspectRatio": 0.8026315789473685
|
|
134
134
|
},
|
|
135
135
|
"gm_onboarding_riding": {
|
|
136
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_onboarding_riding.png",
|
|
136
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_onboarding_riding.png",
|
|
137
137
|
"width": 366,
|
|
138
138
|
"height": 397,
|
|
139
139
|
"aspectRatio": 0.9219143576826196
|
|
140
140
|
},
|
|
141
141
|
"gm_products_bundle_avatar": {
|
|
142
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_products_bundle_avatar.png",
|
|
142
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_products_bundle_avatar.png",
|
|
143
143
|
"width": 100,
|
|
144
144
|
"height": 100,
|
|
145
145
|
"aspectRatio": 1
|
|
146
146
|
},
|
|
147
147
|
"gm_products_bundle_banner": {
|
|
148
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_products_bundle_banner.png",
|
|
148
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_products_bundle_banner.png",
|
|
149
149
|
"width": 375,
|
|
150
150
|
"height": 169,
|
|
151
151
|
"aspectRatio": 2.2189349112426036
|
|
152
152
|
},
|
|
153
|
+
"gm_training": {
|
|
154
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_training.png",
|
|
155
|
+
"width": 231,
|
|
156
|
+
"height": 289,
|
|
157
|
+
"aspectRatio": 0.7993079584775087
|
|
158
|
+
},
|
|
153
159
|
"gm_valid_parking": {
|
|
154
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/greater-manchester/gm_valid_parking.png",
|
|
160
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/greater-manchester/gm_valid_parking.png",
|
|
155
161
|
"width": 48,
|
|
156
162
|
"height": 48,
|
|
157
163
|
"aspectRatio": 1
|
|
@@ -159,25 +165,25 @@
|
|
|
159
165
|
},
|
|
160
166
|
"hackney-cargo-bike": {
|
|
161
167
|
"auth_welcome": {
|
|
162
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/hackney-cargo-bike/auth_welcome.png",
|
|
168
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/hackney-cargo-bike/auth_welcome.png",
|
|
163
169
|
"width": 164,
|
|
164
170
|
"height": 206,
|
|
165
171
|
"aspectRatio": 0.7961165048543689
|
|
166
172
|
},
|
|
167
173
|
"cargo_onboarding_howtoride": {
|
|
168
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/hackney-cargo-bike/cargo_onboarding_howtoride.png",
|
|
174
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/hackney-cargo-bike/cargo_onboarding_howtoride.png",
|
|
169
175
|
"width": 328,
|
|
170
176
|
"height": 134,
|
|
171
177
|
"aspectRatio": 2.4477611940298507
|
|
172
178
|
},
|
|
173
179
|
"cargo_onboarding_returning": {
|
|
174
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/hackney-cargo-bike/cargo_onboarding_returning.png",
|
|
180
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/hackney-cargo-bike/cargo_onboarding_returning.png",
|
|
175
181
|
"width": 333,
|
|
176
182
|
"height": 428,
|
|
177
183
|
"aspectRatio": 0.7780373831775701
|
|
178
184
|
},
|
|
179
185
|
"cargo_onboarding_welcome": {
|
|
180
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/hackney-cargo-bike/cargo_onboarding_welcome.png",
|
|
186
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/hackney-cargo-bike/cargo_onboarding_welcome.png",
|
|
181
187
|
"width": 164,
|
|
182
188
|
"height": 206,
|
|
183
189
|
"aspectRatio": 0.7961165048543689
|
|
@@ -185,7 +191,7 @@
|
|
|
185
191
|
},
|
|
186
192
|
"hereford": {
|
|
187
193
|
"onboarding_welcome": {
|
|
188
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/hereford/onboarding_welcome.png",
|
|
194
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/hereford/onboarding_welcome.png",
|
|
189
195
|
"width": 471,
|
|
190
196
|
"height": 589,
|
|
191
197
|
"aspectRatio": 0.799660441426146
|
|
@@ -193,241 +199,241 @@
|
|
|
193
199
|
},
|
|
194
200
|
"leeds": {
|
|
195
201
|
"leeds_bbe": {
|
|
196
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_bbe.png",
|
|
202
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_bbe.png",
|
|
197
203
|
"width": 66,
|
|
198
204
|
"height": 57,
|
|
199
205
|
"aspectRatio": 1.1578947368421053
|
|
200
206
|
},
|
|
201
207
|
"leeds_bbe_empty": {
|
|
202
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_bbe_empty.png",
|
|
208
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_bbe_empty.png",
|
|
203
209
|
"width": 106,
|
|
204
210
|
"height": 80,
|
|
205
211
|
"aspectRatio": 1.325
|
|
206
212
|
},
|
|
207
213
|
"leeds_bbe_large": {
|
|
208
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_bbe_large.png",
|
|
214
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_bbe_large.png",
|
|
209
215
|
"width": 161,
|
|
210
216
|
"height": 115,
|
|
211
217
|
"aspectRatio": 1.4
|
|
212
218
|
},
|
|
213
219
|
"leeds_bbe_small": {
|
|
214
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_bbe_small.png",
|
|
220
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_bbe_small.png",
|
|
215
221
|
"width": 57,
|
|
216
222
|
"height": 47,
|
|
217
223
|
"aspectRatio": 1.2127659574468086
|
|
218
224
|
},
|
|
219
225
|
"leeds_bike": {
|
|
220
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_bike.png",
|
|
226
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_bike.png",
|
|
221
227
|
"width": 66,
|
|
222
228
|
"height": 57,
|
|
223
229
|
"aspectRatio": 1.1578947368421053
|
|
224
230
|
},
|
|
225
231
|
"leeds_bike_and_scooter_end_ride": {
|
|
226
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_bike_and_scooter_end_ride.png",
|
|
232
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_bike_and_scooter_end_ride.png",
|
|
227
233
|
"width": 448,
|
|
228
234
|
"height": 560,
|
|
229
235
|
"aspectRatio": 0.8
|
|
230
236
|
},
|
|
231
237
|
"leeds_bike_drinking": {
|
|
232
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_bike_drinking.png",
|
|
238
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_bike_drinking.png",
|
|
233
239
|
"width": 395,
|
|
234
240
|
"height": 328,
|
|
235
241
|
"aspectRatio": 1.204268292682927
|
|
236
242
|
},
|
|
237
243
|
"leeds_bike_empty": {
|
|
238
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_bike_empty.png",
|
|
244
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_bike_empty.png",
|
|
239
245
|
"width": 106,
|
|
240
246
|
"height": 80,
|
|
241
247
|
"aspectRatio": 1.325
|
|
242
248
|
},
|
|
243
249
|
"leeds_bike_front_tether_split": {
|
|
244
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_bike_front_tether_split.png",
|
|
250
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_bike_front_tether_split.png",
|
|
245
251
|
"width": 226,
|
|
246
252
|
"height": 93,
|
|
247
253
|
"aspectRatio": 2.4301075268817205
|
|
248
254
|
},
|
|
249
255
|
"leeds_bike_highway_code": {
|
|
250
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_bike_highway_code.png",
|
|
256
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_bike_highway_code.png",
|
|
251
257
|
"width": 320,
|
|
252
258
|
"height": 400,
|
|
253
259
|
"aspectRatio": 0.8
|
|
254
260
|
},
|
|
255
261
|
"leeds_bike_large": {
|
|
256
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_bike_large.png",
|
|
262
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_bike_large.png",
|
|
257
263
|
"width": 164,
|
|
258
264
|
"height": 116,
|
|
259
265
|
"aspectRatio": 1.4137931034482758
|
|
260
266
|
},
|
|
261
267
|
"leeds_bike_lock_split": {
|
|
262
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_bike_lock_split.png",
|
|
268
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_bike_lock_split.png",
|
|
263
269
|
"width": 340,
|
|
264
270
|
"height": 140,
|
|
265
271
|
"aspectRatio": 2.4285714285714284
|
|
266
272
|
},
|
|
267
273
|
"leeds_bike_small": {
|
|
268
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_bike_small.png",
|
|
274
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_bike_small.png",
|
|
269
275
|
"width": 57,
|
|
270
276
|
"height": 47,
|
|
271
277
|
"aspectRatio": 1.2127659574468086
|
|
272
278
|
},
|
|
273
279
|
"leeds_bike_weather_conditions": {
|
|
274
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_bike_weather_conditions.png",
|
|
280
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_bike_weather_conditions.png",
|
|
275
281
|
"width": 342,
|
|
276
282
|
"height": 424,
|
|
277
283
|
"aspectRatio": 0.8066037735849056
|
|
278
284
|
},
|
|
279
285
|
"leeds_data_bike_tracking": {
|
|
280
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_data_bike_tracking.png",
|
|
286
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_data_bike_tracking.png",
|
|
281
287
|
"width": 100,
|
|
282
288
|
"height": 100,
|
|
283
289
|
"aspectRatio": 1
|
|
284
290
|
},
|
|
285
291
|
"leeds_invalid_parking": {
|
|
286
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_invalid_parking.png",
|
|
292
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_invalid_parking.png",
|
|
287
293
|
"width": 48,
|
|
288
294
|
"height": 48,
|
|
289
295
|
"aspectRatio": 1
|
|
290
296
|
},
|
|
291
297
|
"leeds_manual_unlock_avatar": {
|
|
292
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_manual_unlock_avatar.png",
|
|
298
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_manual_unlock_avatar.png",
|
|
293
299
|
"width": 100,
|
|
294
300
|
"height": 100,
|
|
295
301
|
"aspectRatio": 1
|
|
296
302
|
},
|
|
297
303
|
"leeds_map_create_account": {
|
|
298
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_map_create_account.png",
|
|
304
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_map_create_account.png",
|
|
299
305
|
"width": 100,
|
|
300
306
|
"height": 100,
|
|
301
307
|
"aspectRatio": 1
|
|
302
308
|
},
|
|
303
309
|
"leeds_onboarding_bike_dock": {
|
|
304
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_onboarding_bike_dock.png",
|
|
310
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_onboarding_bike_dock.png",
|
|
305
311
|
"width": 300,
|
|
306
312
|
"height": 374,
|
|
307
313
|
"aspectRatio": 0.8021390374331551
|
|
308
314
|
},
|
|
309
315
|
"leeds_onboarding_bike_howtoride": {
|
|
310
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_onboarding_bike_howtoride.png",
|
|
316
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_onboarding_bike_howtoride.png",
|
|
311
317
|
"width": 359,
|
|
312
318
|
"height": 449,
|
|
313
319
|
"aspectRatio": 0.799554565701559
|
|
314
320
|
},
|
|
315
321
|
"leeds_onboarding_bike_lock": {
|
|
316
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_onboarding_bike_lock.png",
|
|
322
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_onboarding_bike_lock.png",
|
|
317
323
|
"width": 232,
|
|
318
324
|
"height": 258,
|
|
319
325
|
"aspectRatio": 0.8992248062015504
|
|
320
326
|
},
|
|
321
327
|
"leeds_onboarding_bike_parking_bay": {
|
|
322
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_onboarding_bike_parking_bay.png",
|
|
328
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_onboarding_bike_parking_bay.png",
|
|
323
329
|
"width": 473,
|
|
324
330
|
"height": 591,
|
|
325
331
|
"aspectRatio": 0.8003384094754653
|
|
326
332
|
},
|
|
327
333
|
"leeds_onboarding_bike_unlock_nfc": {
|
|
328
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_onboarding_bike_unlock_nfc.png",
|
|
334
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_onboarding_bike_unlock_nfc.png",
|
|
329
335
|
"width": 353,
|
|
330
336
|
"height": 440,
|
|
331
337
|
"aspectRatio": 0.8022727272727272
|
|
332
338
|
},
|
|
333
339
|
"leeds_onboarding_bike_unlock_no_nfc": {
|
|
334
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_onboarding_bike_unlock_no_nfc.png",
|
|
340
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_onboarding_bike_unlock_no_nfc.png",
|
|
335
341
|
"width": 406,
|
|
336
342
|
"height": 507,
|
|
337
343
|
"aspectRatio": 0.8007889546351085
|
|
338
344
|
},
|
|
339
345
|
"leeds_onboarding_riding": {
|
|
340
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_onboarding_riding.png",
|
|
346
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_onboarding_riding.png",
|
|
341
347
|
"width": 375,
|
|
342
348
|
"height": 308,
|
|
343
349
|
"aspectRatio": 1.2175324675324675
|
|
344
350
|
},
|
|
345
351
|
"leeds_onboarding_welcome": {
|
|
346
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_onboarding_welcome.png",
|
|
352
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_onboarding_welcome.png",
|
|
347
353
|
"width": 359,
|
|
348
354
|
"height": 449,
|
|
349
355
|
"aspectRatio": 0.799554565701559
|
|
350
356
|
},
|
|
351
357
|
"leeds_products_payr_avatar": {
|
|
352
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_products_payr_avatar.png",
|
|
358
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_products_payr_avatar.png",
|
|
353
359
|
"width": 100,
|
|
354
360
|
"height": 100,
|
|
355
361
|
"aspectRatio": 1
|
|
356
362
|
},
|
|
357
363
|
"leeds_scooter_lner": {
|
|
358
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_scooter_lner.png",
|
|
364
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_scooter_lner.png",
|
|
359
365
|
"width": 66,
|
|
360
366
|
"height": 59,
|
|
361
367
|
"aspectRatio": 1.11864406779661
|
|
362
368
|
},
|
|
363
369
|
"leeds_scooter_lner_large": {
|
|
364
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_scooter_lner_large.png",
|
|
370
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_scooter_lner_large.png",
|
|
365
371
|
"width": 161,
|
|
366
372
|
"height": 144,
|
|
367
373
|
"aspectRatio": 1.1180555555555556
|
|
368
374
|
},
|
|
369
375
|
"leeds_scooter_lner_small": {
|
|
370
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_scooter_lner_small.png",
|
|
376
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_scooter_lner_small.png",
|
|
371
377
|
"width": 57,
|
|
372
378
|
"height": 51,
|
|
373
379
|
"aspectRatio": 1.1176470588235294
|
|
374
380
|
},
|
|
375
381
|
"leeds_scooter_onboarding_parking": {
|
|
376
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_scooter_onboarding_parking.png",
|
|
382
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_scooter_onboarding_parking.png",
|
|
377
383
|
"width": 359,
|
|
378
384
|
"height": 449,
|
|
379
385
|
"aspectRatio": 0.799554565701559
|
|
380
386
|
},
|
|
381
387
|
"leeds_scooter_onboarding_riding": {
|
|
382
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_scooter_onboarding_riding.png",
|
|
388
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_scooter_onboarding_riding.png",
|
|
383
389
|
"width": 327,
|
|
384
390
|
"height": 410,
|
|
385
391
|
"aspectRatio": 0.7975609756097561
|
|
386
392
|
},
|
|
387
393
|
"leeds_switch_to_scheme": {
|
|
388
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_switch_to_scheme.png",
|
|
394
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_switch_to_scheme.png",
|
|
389
395
|
"width": 100,
|
|
390
396
|
"height": 100,
|
|
391
397
|
"aspectRatio": 1
|
|
392
398
|
},
|
|
393
399
|
"leeds_valid_parking": {
|
|
394
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leeds_valid_parking.png",
|
|
400
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leeds_valid_parking.png",
|
|
395
401
|
"width": 48,
|
|
396
402
|
"height": 48,
|
|
397
403
|
"aspectRatio": 1
|
|
398
404
|
},
|
|
399
405
|
"leedsxberyl_bike_and_scooter_end_ride": {
|
|
400
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/leedsxberyl_bike_and_scooter_end_ride.png",
|
|
406
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/leedsxberyl_bike_and_scooter_end_ride.png",
|
|
401
407
|
"width": 449,
|
|
402
408
|
"height": 558,
|
|
403
409
|
"aspectRatio": 0.8046594982078853
|
|
404
410
|
},
|
|
405
411
|
"safety_toolkit_brakes_lner": {
|
|
406
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/safety_toolkit_brakes_lner.png",
|
|
412
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/safety_toolkit_brakes_lner.png",
|
|
407
413
|
"width": 406,
|
|
408
414
|
"height": 508,
|
|
409
415
|
"aspectRatio": 0.7992125984251969
|
|
410
416
|
},
|
|
411
417
|
"safety_toolkit_indicators_lner": {
|
|
412
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/safety_toolkit_indicators_lner.png",
|
|
418
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/safety_toolkit_indicators_lner.png",
|
|
413
419
|
"width": 406,
|
|
414
420
|
"height": 508,
|
|
415
421
|
"aspectRatio": 0.7992125984251969
|
|
416
422
|
},
|
|
417
423
|
"safety_toolkit_pavements_lner": {
|
|
418
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/safety_toolkit_pavements_lner.png",
|
|
424
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/safety_toolkit_pavements_lner.png",
|
|
419
425
|
"width": 400,
|
|
420
426
|
"height": 500,
|
|
421
427
|
"aspectRatio": 0.8
|
|
422
428
|
},
|
|
423
429
|
"safety_toolkit_riders_lner": {
|
|
424
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/safety_toolkit_riders_lner.png",
|
|
430
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/safety_toolkit_riders_lner.png",
|
|
425
431
|
"width": 400,
|
|
426
432
|
"height": 500,
|
|
427
433
|
"aspectRatio": 0.8
|
|
428
434
|
},
|
|
429
435
|
"scooter_lever_lner": {
|
|
430
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/leeds/scooter_lever_lner.png",
|
|
436
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/leeds/scooter_lever_lner.png",
|
|
431
437
|
"width": 128,
|
|
432
438
|
"height": 154,
|
|
433
439
|
"aspectRatio": 0.8311688311688312
|
|
@@ -435,163 +441,163 @@
|
|
|
435
441
|
},
|
|
436
442
|
"west-midlands": {
|
|
437
443
|
"wm_auth_welcome": {
|
|
438
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_auth_welcome.png",
|
|
444
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_auth_welcome.png",
|
|
439
445
|
"width": 328,
|
|
440
446
|
"height": 424,
|
|
441
447
|
"aspectRatio": 0.7735849056603774
|
|
442
448
|
},
|
|
443
449
|
"wm_bbe": {
|
|
444
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_bbe.png",
|
|
450
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_bbe.png",
|
|
445
451
|
"width": 66,
|
|
446
452
|
"height": 61,
|
|
447
453
|
"aspectRatio": 1.0819672131147542
|
|
448
454
|
},
|
|
449
455
|
"wm_bbe_empty": {
|
|
450
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_bbe_empty.png",
|
|
456
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_bbe_empty.png",
|
|
451
457
|
"width": 106,
|
|
452
458
|
"height": 80,
|
|
453
459
|
"aspectRatio": 1.325
|
|
454
460
|
},
|
|
455
461
|
"wm_bbe_large": {
|
|
456
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_bbe_large.png",
|
|
462
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_bbe_large.png",
|
|
457
463
|
"width": 164,
|
|
458
464
|
"height": 118,
|
|
459
465
|
"aspectRatio": 1.3898305084745763
|
|
460
466
|
},
|
|
461
467
|
"wm_bbe_small": {
|
|
462
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_bbe_small.png",
|
|
468
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_bbe_small.png",
|
|
463
469
|
"width": 59,
|
|
464
470
|
"height": 53,
|
|
465
471
|
"aspectRatio": 1.1132075471698113
|
|
466
472
|
},
|
|
467
473
|
"wm_bike": {
|
|
468
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_bike.png",
|
|
474
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_bike.png",
|
|
469
475
|
"width": 66,
|
|
470
476
|
"height": 61,
|
|
471
477
|
"aspectRatio": 1.0819672131147542
|
|
472
478
|
},
|
|
473
479
|
"wm_bike_drinking": {
|
|
474
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_bike_drinking.png",
|
|
480
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_bike_drinking.png",
|
|
475
481
|
"width": 400,
|
|
476
482
|
"height": 332,
|
|
477
483
|
"aspectRatio": 1.2048192771084338
|
|
478
484
|
},
|
|
479
485
|
"wm_bike_empty": {
|
|
480
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_bike_empty.png",
|
|
486
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_bike_empty.png",
|
|
481
487
|
"width": 106,
|
|
482
488
|
"height": 80,
|
|
483
489
|
"aspectRatio": 1.325
|
|
484
490
|
},
|
|
485
491
|
"wm_bike_highway_code": {
|
|
486
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_bike_highway_code.png",
|
|
492
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_bike_highway_code.png",
|
|
487
493
|
"width": 319,
|
|
488
494
|
"height": 399,
|
|
489
495
|
"aspectRatio": 0.7994987468671679
|
|
490
496
|
},
|
|
491
497
|
"wm_bike_large": {
|
|
492
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_bike_large.png",
|
|
498
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_bike_large.png",
|
|
493
499
|
"width": 164,
|
|
494
500
|
"height": 118,
|
|
495
501
|
"aspectRatio": 1.3898305084745763
|
|
496
502
|
},
|
|
497
503
|
"wm_bike_small": {
|
|
498
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_bike_small.png",
|
|
504
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_bike_small.png",
|
|
499
505
|
"width": 59,
|
|
500
506
|
"height": 53,
|
|
501
507
|
"aspectRatio": 1.1132075471698113
|
|
502
508
|
},
|
|
503
509
|
"wm_bike_weather_conditions": {
|
|
504
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_bike_weather_conditions.png",
|
|
510
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_bike_weather_conditions.png",
|
|
505
511
|
"width": 338,
|
|
506
512
|
"height": 419,
|
|
507
513
|
"aspectRatio": 0.8066825775656324
|
|
508
514
|
},
|
|
509
515
|
"wm_data_bike_tracking": {
|
|
510
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_data_bike_tracking.png",
|
|
516
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_data_bike_tracking.png",
|
|
511
517
|
"width": 100,
|
|
512
518
|
"height": 100,
|
|
513
519
|
"aspectRatio": 1
|
|
514
520
|
},
|
|
515
521
|
"wm_invalid_parking": {
|
|
516
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_invalid_parking.png",
|
|
522
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_invalid_parking.png",
|
|
517
523
|
"width": 48,
|
|
518
524
|
"height": 48,
|
|
519
525
|
"aspectRatio": 1
|
|
520
526
|
},
|
|
521
527
|
"wm_manual_unlock_avatar": {
|
|
522
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_manual_unlock_avatar.png",
|
|
528
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_manual_unlock_avatar.png",
|
|
523
529
|
"width": 149,
|
|
524
530
|
"height": 149,
|
|
525
531
|
"aspectRatio": 1
|
|
526
532
|
},
|
|
527
533
|
"wm_map_create_account": {
|
|
528
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_map_create_account.png",
|
|
534
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_map_create_account.png",
|
|
529
535
|
"width": 100,
|
|
530
536
|
"height": 100,
|
|
531
537
|
"aspectRatio": 1
|
|
532
538
|
},
|
|
533
539
|
"wm_onboarding_bike_dock": {
|
|
534
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_onboarding_bike_dock.png",
|
|
540
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_onboarding_bike_dock.png",
|
|
535
541
|
"width": 350,
|
|
536
542
|
"height": 434,
|
|
537
543
|
"aspectRatio": 0.8064516129032258
|
|
538
544
|
},
|
|
539
545
|
"wm_onboarding_bike_howtoride": {
|
|
540
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_onboarding_bike_howtoride.png",
|
|
546
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_onboarding_bike_howtoride.png",
|
|
541
547
|
"width": 360,
|
|
542
548
|
"height": 453,
|
|
543
549
|
"aspectRatio": 0.7947019867549668
|
|
544
550
|
},
|
|
545
551
|
"wm_onboarding_bike_lock": {
|
|
546
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_onboarding_bike_lock.png",
|
|
552
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_onboarding_bike_lock.png",
|
|
547
553
|
"width": 332,
|
|
548
554
|
"height": 416,
|
|
549
555
|
"aspectRatio": 0.7980769230769231
|
|
550
556
|
},
|
|
551
557
|
"wm_onboarding_bike_unlock_nfc": {
|
|
552
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_onboarding_bike_unlock_nfc.png",
|
|
558
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_onboarding_bike_unlock_nfc.png",
|
|
553
559
|
"width": 331,
|
|
554
560
|
"height": 415,
|
|
555
561
|
"aspectRatio": 0.7975903614457831
|
|
556
562
|
},
|
|
557
563
|
"wm_onboarding_bike_unlock_no_nfc": {
|
|
558
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_onboarding_bike_unlock_no_nfc.png",
|
|
564
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_onboarding_bike_unlock_no_nfc.png",
|
|
559
565
|
"width": 453,
|
|
560
566
|
"height": 574,
|
|
561
567
|
"aspectRatio": 0.789198606271777
|
|
562
568
|
},
|
|
563
569
|
"wm_onboarding_riding": {
|
|
564
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_onboarding_riding.png",
|
|
570
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_onboarding_riding.png",
|
|
565
571
|
"width": 375,
|
|
566
572
|
"height": 308,
|
|
567
573
|
"aspectRatio": 1.2175324675324675
|
|
568
574
|
},
|
|
569
575
|
"wm_onboarding_welcome": {
|
|
570
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_onboarding_welcome.png",
|
|
576
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_onboarding_welcome.png",
|
|
571
577
|
"width": 328,
|
|
572
578
|
"height": 420,
|
|
573
579
|
"aspectRatio": 0.780952380952381
|
|
574
580
|
},
|
|
575
581
|
"wm_products_bundle_banner": {
|
|
576
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_products_bundle_banner.png",
|
|
582
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_products_bundle_banner.png",
|
|
577
583
|
"width": 500,
|
|
578
584
|
"height": 173,
|
|
579
585
|
"aspectRatio": 2.8901734104046244
|
|
580
586
|
},
|
|
581
587
|
"wm_products_payr_avatar": {
|
|
582
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_products_payr_avatar.png",
|
|
588
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_products_payr_avatar.png",
|
|
583
589
|
"width": 100,
|
|
584
590
|
"height": 99,
|
|
585
591
|
"aspectRatio": 1.0101010101010102
|
|
586
592
|
},
|
|
587
593
|
"wm_switch_to_scheme": {
|
|
588
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_switch_to_scheme.png",
|
|
594
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_switch_to_scheme.png",
|
|
589
595
|
"width": 133,
|
|
590
596
|
"height": 134,
|
|
591
597
|
"aspectRatio": 0.9925373134328358
|
|
592
598
|
},
|
|
593
599
|
"wm_valid_parking": {
|
|
594
|
-
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.0/west-midlands/wm_valid_parking.png",
|
|
600
|
+
"uri": "https://storage.googleapis.com/beryl-basis-production-rider-app-images/1.6.1-rc.0/west-midlands/wm_valid_parking.png",
|
|
595
601
|
"width": 48,
|
|
596
602
|
"height": 48,
|
|
597
603
|
"aspectRatio": 1
|