Skip to content

Commit fe2a3b5

Browse files
author
Lalit Sharma
committed
chore(mobile): remove Android map hint and bump version to 1.1.15
1 parent 166bac8 commit fe2a3b5

3 files changed

Lines changed: 9 additions & 25 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.15] — 2026-02-23
9+
10+
### Removed
11+
- Removed the Android map-mode rebuild hint from the Timer screen.
12+
13+
### Changed
14+
- Bumped `apps/mobile` version to `1.1.15`.
15+
816
## [1.1.14] — 2026-02-23
917

1018
### Changed

apps/mobile/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-timer/mobile",
3-
"version": "1.1.14",
3+
"version": "1.1.15",
44
"private": true,
55
"main": "index.js",
66
"scripts": {

apps/mobile/src/screens/TimerScreen.tsx

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -460,15 +460,6 @@ export default function TimerScreen({
460460
<Text style={styles.mapOverlayBtnText}>{mapTypeText}</Text>
461461
</Pressable>
462462

463-
{timer.mapType !== "standard" ? (
464-
<View style={styles.mapModeHint}>
465-
<Text style={styles.mapModeHintText}>
466-
If satellite/hybrid tiles look old or blank on Android, rebuild with
467-
GOOGLE_MAPS_ANDROID_API_KEY in apps/mobile/.env.local.
468-
</Text>
469-
</View>
470-
) : null}
471-
472463
<View style={styles.mapLegend}>
473464
<Pressable
474465
style={[
@@ -972,21 +963,6 @@ const styles = StyleSheet.create({
972963
fontWeight: "700",
973964
fontSize: 12,
974965
},
975-
mapModeHint: {
976-
position: "absolute",
977-
top: 52,
978-
right: 10,
979-
maxWidth: 230,
980-
borderRadius: 10,
981-
paddingHorizontal: 10,
982-
paddingVertical: 6,
983-
backgroundColor: "rgba(0,0,0,0.72)",
984-
},
985-
mapModeHintText: {
986-
color: "#d2d2d2",
987-
fontSize: 11,
988-
lineHeight: 14,
989-
},
990966
mapGpsBtn: {
991967
position: "absolute",
992968
top: 10,

0 commit comments

Comments
 (0)