Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ displayScreen = new DisplayScreen(display)
displayScreen.Controls.Add(
new Box(0, 0, displayScreen.Width / 2, displayScreen.Height / 2)
{
ForeColor = Color.Red
ForegroundColor = Color.Red
},
new Label(0, 0, displayScreen.Width / 2, displayScreen.Height / 2)
{
Expand Down Expand Up @@ -47,7 +47,7 @@ displayScreen.Controls.Add(new Box(
width: displayScreen.Width - 40,
height: displayScreen.Height - 40)
{
ForeColor = Color.Red
ForegroundColor = Color.Red
});
```

Expand Down Expand Up @@ -86,7 +86,7 @@ displayScreen.Controls.Add(new Circle(
centerY: displayScreen.Height / 2,
radius: displayScreen.Height / 3)
{
ForeColor = Color.Red,
ForegroundColor = Color.Red,
IsFilled = true
});
```
Expand Down Expand Up @@ -264,7 +264,7 @@ var button = new Button(
{
Text = "Hello World",
TextColor = Color.Red,
ForeColor = Color.DarkBlue,
ForegroundColor = Color.DarkBlue,
ShadowColor = Color.DarkGray,
HighlightColor = Color.Red,
PressedColor = Color.Green,
Expand All @@ -290,7 +290,7 @@ You can move, resize or recolor the controls at run time to easily create effect
// we compose the screen from the back forward, so put the box on first
_highlightBox = new Box(0, -1, screen.Width, ItemHeight + 2)
{
ForeColor = SelectionColor,
ForegroundColor = SelectionColor,
Filled = true,
};
screen.Controls.Add(_highlightBox);
Expand Down Expand Up @@ -333,4 +333,5 @@ The project running should look like this:

The full source for the Menu sample is available in the [Project Lab Samples](https://github.com/WildernessLabs/Meadow.ProjectLab.Samples) repository.

If you would like to try out MicroLayout or would like to contribute, the full source code is available in the [Meadow.Foundation](https://github.com/WildernessLabs/Meadow.Foundation) repository. If you have any questions or feature requests, reach out to us on our [public Slack](http://slackinvite.wildernesslabs.co/) channel.

If you would like to try out MicroLayout or would like to contribute, the full source code is available in the [Meadow.Foundation](https://github.com/WildernessLabs/Meadow.Foundation) repository. If you have any questions or feature requests, reach out to us on our [public Slack](http://slackinvite.wildernesslabs.co/) channel.
24 changes: 23 additions & 1 deletion docs/Meadow/Release_Notes/v2/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,33 @@ subtitle: Release Notes
* [Meadow.CLI](/Meadow/Meadow_Tools/Meadow_CLI/)
* [Meadow.OS](/Meadow/Getting_Started/Deploying_Meadow%2EOS/)

## v2.5.0.0

This is a full-stack (Meadow.OS + managed stack) release that brings important fixes to the WiFi and OTA components.

### Meadow.OS

* A regression in OTA was fixed where the part of the OS update would fail
* Low-level fixes and performance improvements in the TLS layer
* The TLS root certificate store has been brought to date

### Meadow.Core

* MQTTNet library has been upgraded to 4.3.7

### Meadow.Foundation

* Virtual display support
* Added virtual display drivers for most supported TFT SPI and ePaper displays
* Added C4001 motion sensor driver
* MicroGraphics drawing speed improvements
* Tca9548A I2C muxor fixes
* MicroJson hash table support

## v2.4.0.0

This is a full-stack (Meadow.OS + managed stack) release that adds device reset logic when connection to the cloud is lost. It also includes a number of new Meadow.Foundation MicroLayout controls, as well as sundry fixes and cleanups.


### Meadow.OS

* Fixed issue 842, [Unable to monitor frequency on pins PB14 or PB15](https://github.com/WildernessLabs/Meadow_Issues/issues/842)
Expand Down