Skip to content

Commit 7604b0e

Browse files
committed
Bump to version 3.0.0
1 parent 0f89d79 commit 7604b0e

File tree

4 files changed

+23
-14
lines changed

4 files changed

+23
-14
lines changed

README.md

+12-4
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ Other than the examples included in the library, the following pages might be
88
useful to you:
99

1010
* [Arduino forum post](http://arduino.cc/forum/index.php/topic,105866.0.html)
11-
* [Humble Coder](http://www.humblecoder.com/)
12-
* [Arduino Menu System Library](http://www.humblecoder.com/arduino-menu-system-library/)
13-
* [Animated LED matrix menu transitions on the Arduino](http://www.humblecoder.com/animated-led-matrix-menu-transitions-on-the-arduino/)
11+
* [Arduino Menu System Library](http://www.jonblack.me/arduino-menu-system-library/)
1412

1513
## Contribution
1614

@@ -19,10 +17,20 @@ pull-request.
1917

2018
## Donate
2119

22-
* Bitcoin: 1HnqohdK1d6gwDc7bT6LPPkmUFAXczEJKp
20+
* Bitcoin: 1D4MBvrR9w4yVEHvQbzM8WAuJjDdzp7trA
21+
* Ethereum: 0x75804bb16c8177D919ea54a35980c9202F294A10
2322

2423
## Changelog
2524

25+
**3.0.0 - 24-08-2017**
26+
27+
* Factor out rendering a menu from its implementation
28+
* Add `NumericMenuItem` and `BackMenuItem`
29+
* Add `Menu` callback method
30+
* `MenuSystem` creates its own root menu
31+
* Hide non-api methods by making them private
32+
* Deprecate `Menu::get_selected`
33+
2634
**2.1.1 - 22/03/2016**
2735

2836
* Fix regression - add reset option to select

keywords.txt

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
Menu KEYWORD1
2-
MenuItem KEYWORD1
3-
NumericMenuItem KEYWORD1
4-
BackMenuItem KEYWORD1
5-
MenuSystem KEYWORD1
6-
MenuComponent KEYWORD1
1+
Menu KEYWORD1
2+
MenuItem KEYWORD1
3+
NumericMenuItem KEYWORD1
4+
BackMenuItem KEYWORD1
5+
MenuSystem KEYWORD1
6+
MenuComponent KEYWORD1
7+
MenuComponentRenderer KEYWORD1

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "git",
88
"url": "https://github.com/jonblack/arduino-menusystem.git"
99
},
10-
"version": "2.1.1",
10+
"version": "3.0.0",
1111
"frameworks": "arduino",
1212
"platforms": "atmelavr"
1313
}

library.properties

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name=arduino-menusystem
2-
version=2.1.1
3-
author=Jon Black <jon@humblecoder.com>
4-
maintainer=Jon Black <jon@humblecoder.com>
2+
version=3.0.0
3+
author=Jon Black <jon@jonblack.me>
4+
maintainer=Jon Black <jon@jonblack.me>
55
sentence=A library for implementing a menu system
66
paragraph=Supports nesting and tracks the current selected item.
77
category=Display

0 commit comments

Comments
 (0)