Skip to content

Commit e23f642

Browse files
committed
Add support for Fenix 8
1 parent 59f27e3 commit e23f642

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## 1.8.0 - UNRELEASED
44

5+
- Add support for Fenix 8 (all variants).
56
- Add support for Forerunner 965.
67
- Add support for Vivoactive 5.
78
- Add support for Marq Gen 2.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SOURCES ?= $(wildcard src/*.mc)
44
TESTS ?= $(wildcard test/*.mc)
55
KEY ?= signing-key.der
66

7-
DEVICE ?= vivoactive3
7+
DEVICE ?= fenix847mm
88

99
.PHONY: build
1010
build: build/authenticator_$(DEVICE).prg

manifest.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@
2727
<iq:product id="fenix7spro"/>
2828
<iq:product id="fenix7x"/>
2929
<iq:product id="fenix7xpro"/>
30+
<iq:product id="fenix843mm"/>
31+
<iq:product id="fenix847mm"/>
32+
<iq:product id="fenix8solar47mm"/>
33+
<iq:product id="fenix8solar51mm"/>
3034
<iq:product id="fr245"/>
3135
<iq:product id="fr245m"/>
3236
<iq:product id="fr255"/>

test-all.sh

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
#!/usr/bin/env bash
22
set -e
33

4+
# A few interesting devices to test
45
DEVICES=(
5-
vivoactive3
6-
vivoactive5
7-
vivoactive_hr
8-
fenix5
9-
fenix6
10-
fenix7
11-
venu2
12-
instinct2
13-
fr965
6+
fenix847mm # ciq 5.x, amoled, touch, buttons, round
7+
fenix8solar51mm # bigger, mip, solar
8+
venu3 # touch only
9+
instinct2 # octagon, sub-display
10+
fenix6 # ciq 3.x, mip, buttons only
11+
vivoactive4 # ciq 3.x
12+
vivoactive_hr # ciq 2.x, square
1413
)
1514

1615
for d in ${DEVICES[@]}; do

0 commit comments

Comments
 (0)