Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.7.2 #1433

Open
wants to merge 31 commits into
base: master
Choose a base branch
from
Open

v0.7.2 #1433

Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
f35b4ff
Support for Debian Bullseye and aarch64 (Raspberry Pi OS/Bullseye 64 …
dcacklam Jun 19, 2022
7d53991
omit string formating in convert_bg (#1414)
mountrcg Jun 19, 2022
8881c7f
Improved handling of node installation (& miscellaneous improvements)…
ChanceHarrison Sep 10, 2022
2162018
TODO: revert before release; use dev/bin/openaps-packages.sh
scottleibrand Sep 10, 2022
3a730ed
check out the specified branch when cloning
scottleibrand Sep 10, 2022
a8ec51c
use golangversion=1.19.1 and go install to fix #1435
scottleibrand Sep 11, 2022
84f1011
symlink Go-mmtune to point to oref0-mmtune
scottleibrand Sep 18, 2022
151b1ab
Revert "symlink Go-mmtune to point to oref0-mmtune"
scottleibrand Sep 18, 2022
9c20dc6
install mmtune
scottleibrand Sep 18, 2022
e354807
symlink /usr/local/bin/Go-mmtune to point to /root/go/bin/mmtune
scottleibrand Sep 18, 2022
399e3d6
have to go install each medtronic command individually
scottleibrand Sep 18, 2022
fdb2a16
go install puts things in /root/go/bin/
scottleibrand Sep 18, 2022
d08c86f
have to comment out if clause if it has no uncommented contents
scottleibrand Sep 18, 2022
f6ac451
use ... to install all medtronic commands
scottleibrand Sep 18, 2022
4248d68
don't die if Go-mmtune symlink already exists
scottleibrand Sep 18, 2022
12d6024
fix path to openaps.jq
scottleibrand Sep 18, 2022
7c85d32
wget openaps.jq instead of symlinking to the 20210712211734 version
scottleibrand Sep 19, 2022
80493da
fix(lib/iob): Move value checks up to index.js
Oct 22, 2022
abf9c6b
Merge branch 'ChanceHarrison-chance/fix-1436' (#1437) into dev
scottleibrand Dec 9, 2022
1a25d53
Use compression for operations that go to nightscout. (#1443)
tzachi-dar Dec 29, 2022
673dbc6
convert_bg missing in many statements for rT (#1438)
mountrcg Jan 16, 2023
10f9e27
Revert "fix(lib/iob): Move value checks up to index.js"
scottleibrand Mar 5, 2023
9ac3910
wait upto45s and try preflight; if successful, refresh pumphistory, e…
scottleibrand Aug 20, 2023
bc37601
0.7.1
scottleibrand Jun 19, 2022
8cae7b3
fix missing declaration
hpeuscher Sep 14, 2023
9585e5a
Fixed NS perms checking
inventor96 Mar 25, 2024
c0578dc
Removed duplicate line
inventor96 Mar 25, 2024
edf8bf6
Fixed NS perms checking
inventor96 Mar 25, 2024
2595eca
Removed duplicate line
inventor96 Mar 25, 2024
9b57b06
Revert scope promotion
inventor96 Mar 26, 2024
3430f6b
rT.reason missing colons (:)
Jon-b-m Apr 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/oref0-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1269,7 +1269,7 @@ if prompt_yn "" N; then
#Build Go binaries
#go get -u -v -tags "$radiotags" github.com/ecc1/medtronic/... || die "Couldn't go get medtronic"
go install -v -tags "$radiotags" github.com/ecc1/medtronic/cmd/...@latest || die "Couldn't go get medtronic"
ln -sf $HOME/go/src/github.com/ecc1/medtronic/cmd/pumphistory/openaps.jq $directory/ || die "Couldn't softlink openaps.jq"
ln -sf /root/go/pkg/mod/github.com/ecc1/medtronic@v0.0.0-20210712211734-b8431dc5211b/cmd/pumphistory/openaps.jq $directory/ || die "Couldn't softlink openaps.jq"
scottleibrand marked this conversation as resolved.
Show resolved Hide resolved
else
#TODO: write validate_ttyport and support non-SPI ports
die "Unsupported ttyport. Exiting."
Expand Down