Skip to content

Commit 504fd66

Browse files
authored
Places Tab, App Wide Search, User-Changeable Theme, Bugfixes (#94)
1 parent 71bcd9a commit 504fd66

File tree

326 files changed

+97917
-1205
lines changed

Some content is hidden

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

326 files changed

+97917
-1205
lines changed

.github/workflows/deploy_beta.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,17 @@
11
name: Deploy Beta to TestFlight and Play Store
22

33
on:
4-
push:
5-
branches:
6-
- 'development'
7-
paths:
8-
- 'lib/**'
9-
- 'ios/**'
10-
- 'android/**'
4+
release:
5+
types: [ published ]
116

127
jobs:
138
deploy:
9+
if: "github.event.release.prerelease"
1410
runs-on: macos-latest
1511

1612
strategy:
1713
matrix:
18-
platform: [ios, android]
14+
platform: [ ios, android ]
1915
fail-fast: false
2016

2117
steps:
@@ -68,6 +64,7 @@ jobs:
6864
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
6965
KEYCHAIN_NAME: ${{ secrets.KEYCHAIN_NAME }}
7066
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
67+
RELEASE_NOTES: ${{ github.event.release.body }}
7168

7269
- if: matrix.platform == 'android'
7370
name: Deserialize Keystore File
@@ -85,4 +82,5 @@ jobs:
8582
ANDROID_KEYSTORE_FILE: ./upload-keystore
8683
ANDROID_KEYSTORE_PASSWORD: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }}
8784
ANDROID_KEY_ALIAS: ${{ secrets.ANDROID_KEY_ALIAS }}
88-
ANDROID_KEY_PASSWORD: ${{ secrets.ANDROID_KEY_PASSWORD }}
85+
ANDROID_KEY_PASSWORD: ${{ secrets.ANDROID_KEY_PASSWORD }}
86+
# RELEASE_NOTES: ${{ github.event.release.body }}

.github/workflows/deploy_web.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name: Deploy Web Version
22

33
on:
4-
push:
5-
branches: ["development"]
6-
paths: ["lib/**", "web/**"]
4+
release:
5+
types: [ published ]
76

87
permissions:
98
contents: read
411 KB
Loading
318 KB
Loading
1.24 MB
Loading
411 KB
Loading
13 MB
Loading
334 KB
Loading
343 KB
Loading

assets/map_styles/darkMapTheme.json renamed to assets/mapStyles/darkMapTheme.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,14 @@
4141
}
4242
]
4343
},
44+
{
45+
"featureType": "poi.business",
46+
"stylers": [
47+
{
48+
"visibility": "off"
49+
}
50+
]
51+
},
4452
{
4553
"featureType": "poi.park",
4654
"elementType": "geometry",
@@ -50,6 +58,15 @@
5058
}
5159
]
5260
},
61+
{
62+
"featureType": "poi.park",
63+
"elementType": "labels.text",
64+
"stylers": [
65+
{
66+
"visibility": "off"
67+
}
68+
]
69+
},
5370
{
5471
"featureType": "poi.park",
5572
"elementType": "labels.text.fill",

assets/mapStyles/lightMapTheme.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[
2+
{
3+
"featureType": "poi.business",
4+
"stylers": [
5+
{
6+
"visibility": "off"
7+
}
8+
]
9+
},
10+
{
11+
"featureType": "poi.park",
12+
"elementType": "labels.text",
13+
"stylers": [
14+
{
15+
"visibility": "off"
16+
}
17+
]
18+
}
19+
]

assets/map_styles/lightMapTheme.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

assets/models/english_bert_30.tflite

24.4 MB
Binary file not shown.

0 commit comments

Comments
 (0)