From fa4f1b63f28963093180fa6e077af2c290de0ccf Mon Sep 17 00:00:00 2001 From: Frank Voorburg Date: Wed, 3 Jul 2019 06:21:57 +0000 Subject: [PATCH] Refs #845. Updated version numbers and Windows binaries in preparation for new release. git-svn-id: https://svn.code.sf.net/p/openblt/code/trunk@704 5dc33758-31d5-4daf-9ae8-b24bf3d40d73 --- Doc/doxygen/DoxyfileBootCommander | 2 +- Doc/doxygen/DoxyfileLibOpenBLT | 2 +- Doc/doxygen/DoxyfileOpenBLT | 2 +- Host/BootCommander.exe | Bin 57344 -> 57344 bytes Host/MicroBoot.exe | Bin 1940992 -> 1940992 bytes Host/Source/BootCommander/main.c | 2 +- .../LibOpenBLT/bindings/python/setup.py | 2 +- Host/Source/LibOpenBLT/openblt.c | 4 ++-- Host/Source/MicroBoot/mainunit.pas | 2 +- Host/libopenblt.dll | Bin 193536 -> 193536 bytes Host/libseednkey.dll | Bin 31232 -> 31232 bytes Target/Source/boot.h | 2 +- 12 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Doc/doxygen/DoxyfileBootCommander b/Doc/doxygen/DoxyfileBootCommander index 495ee254..ac8f0526 100644 --- a/Doc/doxygen/DoxyfileBootCommander +++ b/Doc/doxygen/DoxyfileBootCommander @@ -38,7 +38,7 @@ PROJECT_NAME = "BootCommander - Reference Manual" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 1.4.1 +PROJECT_NUMBER = 1.4.2 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/Doc/doxygen/DoxyfileLibOpenBLT b/Doc/doxygen/DoxyfileLibOpenBLT index 35a1c06a..1edc691b 100644 --- a/Doc/doxygen/DoxyfileLibOpenBLT +++ b/Doc/doxygen/DoxyfileLibOpenBLT @@ -38,7 +38,7 @@ PROJECT_NAME = "OpenBLT Host Library - Reference Manual" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 1.3.2 +PROJECT_NUMBER = 1.3.3 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/Doc/doxygen/DoxyfileOpenBLT b/Doc/doxygen/DoxyfileOpenBLT index 6deb3b40..58352115 100644 --- a/Doc/doxygen/DoxyfileOpenBLT +++ b/Doc/doxygen/DoxyfileOpenBLT @@ -38,7 +38,7 @@ PROJECT_NAME = "OpenBLT Bootloader - Reference Manual" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 1.7.0 +PROJECT_NUMBER = 1.8.0 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/Host/BootCommander.exe b/Host/BootCommander.exe index 06255332fc912f70a2c1c0bc4334b29db997701a..3cc1319d309f8878e4fddc5d51308beb08d5bb98 100644 GIT binary patch delta 85 zcmZoTz}#?vc>yC!x2sI-W)?<;Y6TFB0SK6Y*aL`prUP*|NQ8j_tjeY444**6uXK6V dxlz75nWsEo(Y~*7vqJYC0Y;yEK{8wvYHnT7)R4ag33_!pH#2!G*GaZP#K_UzcU{x+PXZQqk{^mw4 djGXJlZJP%?jOn1Q-oB-<_@O0swsP9AN+e diff --git a/Host/MicroBoot.exe b/Host/MicroBoot.exe index d2ce5cedb3cc1be84ba304baacc66a99738cc858..3d232109cbd1face93ea43549f655f557c85531f 100644 GIT binary patch delta 94 zcmZqJQ`P`PEsQNpEzB(}EvzkUE$l5EEu1Y}E!-_UExav!E&MG4ErKmVEy67#Eut-A oTg02<7>%bl$BCyi8n?fW69-}mAeIDTDIk^xVwvr)<77qc0S1;LEdT%j delta 94 zcmZqJQ`P`PEsQNpEzB(}EvzkUE$l5EEu1Y}E!-_UExav!E&MG4ErKmVEy67#Eut-A oTg02<7>%Yk$BCyi8nwTU69-}mAeIDTDIk^xVwvr)<77qc0R~YbD*ylh diff --git a/Host/Source/BootCommander/main.c b/Host/Source/BootCommander/main.c index 845decd8..c895d51d 100644 --- a/Host/Source/BootCommander/main.c +++ b/Host/Source/BootCommander/main.c @@ -472,7 +472,7 @@ int main(int argc, char const * const argv[]) static void DisplayProgramInfo(void) { printf("--------------------------------------------------------------------------\n"); - printf("BootCommander version 1.04.01. Performs firmware updates on a micro-\n"); + printf("BootCommander version 1.04.02. Performs firmware updates on a micro-\n"); printf("controller based system that runs the OpenBLT bootloader.\n\n"); printf("Copyright (c) 2017 by Feaser http://www.feaser.com\n"); printf("-------------------------------------------------------------------------\n"); diff --git a/Host/Source/LibOpenBLT/bindings/python/setup.py b/Host/Source/LibOpenBLT/bindings/python/setup.py index 92a3802b..0caeeb38 100644 --- a/Host/Source/LibOpenBLT/bindings/python/setup.py +++ b/Host/Source/LibOpenBLT/bindings/python/setup.py @@ -40,7 +40,7 @@ from setuptools import setup # *************************************************************************************** setup ( \ name = 'openblt', - version = '1.3.2', + version = '1.3.3', description = 'Python wrapper for the OpenBLT host library (LibOpenBLT).', long_description = open('README.rst', 'r').read(), author = 'Frank Voorburg', diff --git a/Host/Source/LibOpenBLT/openblt.c b/Host/Source/LibOpenBLT/openblt.c index b6104519..59bef6b0 100644 --- a/Host/Source/LibOpenBLT/openblt.c +++ b/Host/Source/LibOpenBLT/openblt.c @@ -51,10 +51,10 @@ * for major-, minor-, and patch-version. Version 1.05.12 would for example be * 10512. */ -#define BLT_VERSION_NUMBER (10302u) +#define BLT_VERSION_NUMBER (10303u) /** \brief The version number of the library as a null-terminated string. */ -#define BLT_VERSION_STRING "1.03.02" +#define BLT_VERSION_STRING "1.03.03" /**************************************************************************************** diff --git a/Host/Source/MicroBoot/mainunit.pas b/Host/Source/MicroBoot/mainunit.pas index 60086ad2..86378984 100644 --- a/Host/Source/MicroBoot/mainunit.pas +++ b/Host/Source/MicroBoot/mainunit.pas @@ -48,7 +48,7 @@ uses //*************************************************************************************** const PROGRAM_NAME_STR = 'MicroBoot'; - PROGRAM_VERSION_STR = 'v2.02'; + PROGRAM_VERSION_STR = 'v2.03'; //*************************************************************************************** diff --git a/Host/libopenblt.dll b/Host/libopenblt.dll index 09ad4b996f155d5298439021d0a0a4348139d1c0..6ca163286318b8aaa3a0413d66103b468dcea608 100644 GIT binary patch delta 126 zcmZp8!QJqJd%_PEUssvfjelO4FxodiHQoNyl+iv;0VKu%1WZ8e3dAY<7#UL5FoJ{_ zKyuq%rZ6@!F&b|_K8t U>E2fvE8E{(W8D7c8k2}D0Hc{L0ssI2 delta 126 zcmZp8!QJqJd%_PEnOAFKHvV~G!f4n0)O7n(Q%3tZ1&|m65HJC;D-fsbV`NBK!w3>$ z0Lg84nZnq_#Avkr_%z0aq5_j=$Ms$I+~d}?<$0jY?DYKY6>AuExWOiGU$LF>lpLec UbnmN-mF;h?F>ZfzjY&in0H>}n9{>OV diff --git a/Host/libseednkey.dll b/Host/libseednkey.dll index 21e363641dc1faf89fdcee70adfc2a13d5d0eb8e..61ee8c2f3b420536d0de75aff0729feca4b1116d 100644 GIT binary patch delta 87 zcmZqp!r1VIal!|d