-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
18 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,27 @@ | ||
nando (3.0.0-1ubuntu4) stable; urgency=medium | ||
|
||
* New board design. | ||
|
||
-- bogdan <[email protected]> Mon, 26 Aug 2019 21:00:00 +0300 | ||
|
||
nando (2.3.0-1ubuntu4) stable; urgency=medium | ||
|
||
* Added version support. Added progress indicator for erase, read and write | ||
commands. Fixed erase command. Fixed read bad block table command. | ||
|
||
-- bogdan <bogdan@hp> Sun, 05 May 2019 21:15:57 +0300 | ||
-- Bogdan Bogush <bogdan[email protected]> Sun, 05 May 2019 21:15:57 +0300 | ||
|
||
nando (2.2.0-1ubuntu3) stable; urgency=medium | ||
|
||
* Added Windows support. Implemented description of error codes. | ||
|
||
-- bogdan <bogdan@hp> Sun, 28 Apr 2019 17:20:59 +0300 | ||
-- Bogdan Bogush <bogdan[email protected]> Sun, 28 Apr 2019 17:20:59 +0300 | ||
|
||
nando (2.1.0-1ubuntu2) stable; urgency=medium | ||
|
||
* Implemented chip database. Fixed disconnect of the first connection. | ||
|
||
-- bogdan <bogdan@hp> Tue, 16 Apr 2019 17:30:45 +0300 | ||
-- Bogdan Bogush <bogdan[email protected]> Tue, 16 Apr 2019 17:30:45 +0300 | ||
|
||
nando (2.0.0-1ubuntu1) stable; urgency=medium | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
BINARY_NAME=nando | ||
RELEASE=2.3.0 | ||
RELEASE=3.0.0 | ||
FULL_NAME=$BINARY_NAME-$RELEASE | ||
TAR_NAME=$FULL_NAME.tar.gz | ||
[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#ifndef _VERSION_H_ | ||
#define _VERSION_H_ | ||
|
||
#define SW_VERSION_MAJOR 2 | ||
#define SW_VERSION_MINOR 3 | ||
#define SW_VERSION_MAJOR 3 | ||
#define SW_VERSION_MINOR 0 | ||
#define SW_VERSION_BUILD 0 | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,6 @@ | |
#ifndef VERSION_H | ||
#define VERSION_H | ||
|
||
#define SW_VERSION "2.3.0" | ||
#define SW_VERSION "3.0.0" | ||
|
||
#endif // VERSION_H |