From 5a3097b87ead4b2ae7ec75db4ecd54cfa39b3439 Mon Sep 17 00:00:00 2001 From: Romain Bazile Date: Wed, 14 Oct 2020 16:30:32 +0200 Subject: [PATCH] Changelog addition --- docs/README.md | 3 +++ docs/changelog.md | 21 +++++++++++++++++++++ mkdocs.yml | 2 ++ 3 files changed, 26 insertions(+) create mode 100644 docs/changelog.md diff --git a/docs/README.md b/docs/README.md index ec6f67f..b6ab25d 100644 --- a/docs/README.md +++ b/docs/README.md @@ -22,6 +22,9 @@ You can find here more information about how to build your own PlanktoScope. - [Create Master SD Card or backup your PlanktoScope](create_sd.md) - How does the segmentation works (soon) +## Changelog + - [Changelog](changelog.md) + ## Contribute - [Find out how to contribute to this documentation and help edit it](edit_this_doc.md) - [Contribute to the code, here is the getting started](edit_the_code.md) diff --git a/docs/changelog.md b/docs/changelog.md new file mode 100644 index 0000000..6445c5b --- /dev/null +++ b/docs/changelog.md @@ -0,0 +1,21 @@ +# Changelog + +## Image changelog + +### V2.1: released 2020-10-14 +Breaking changes firsts: + +- There is no GUI on this image, it was created based on the Raspberry OS Lite, so no GUI. A new non-lite version is expected for late next week. +- The wifi network is now named `PlanktoScope`, and the password to it is `copepode`. +- The default user is `pi` and the default password is `copepode` for this user. +- The images captured and the segmentation output is now in the folder `/home/pi/data` + + +Improvements: + +- Under the hood, whole new code is running! There is still a small bug that is triggered when running long imaging sequences, if this happens, restart the machine! We are working on finding where the problem may comes from. This bug is chased here. +- Another change: automatic wifi setup! If you setup your Raspberry to connect to a wifi network (by configuring wpa_supplicant.conf) it will try to connect to this network before starting its hotspot. Also, if you connect it to a wired network via its Ethernet port, it will share this connection to devices connected to the hotspot! +- The documentation has been updated to include more information about the ribbon assembly and how to create a backup of your sd card! + + +**[Image download link](https://drive.google.com/file/d/1zOmbmXqt5uELQC0FTha1ndjJyMvehGSk/view?usp=sharing)** \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index a94e6d4..435a967 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -12,6 +12,8 @@ nav: - Software architecture: software_architecture.md - MQTT Messages: mqtt_messages.md - Create Master SD Card: create_sd.md + - Changelog: + - Changelog: changelog.md - Contribute: - Edit this documentation: edit_this_doc.md - Edit the code: edit_the_code.md