From 66b3f2c53b6bc805941c78392b4dcc8c1d472360 Mon Sep 17 00:00:00 2001 From: Jim Saxton Date: Fri, 27 Apr 2018 12:15:53 -0700 Subject: [PATCH] ready for next release --- Documentation/ChangeLog | 19 +++++++++++-------- src/Spinner.cpp | 7 ++++++- src/config.h | 2 +- src/main.c | 4 ++-- 4 files changed, 20 insertions(+), 12 deletions(-) diff --git a/Documentation/ChangeLog b/Documentation/ChangeLog index f27f2ae..a87ffc0 100644 --- a/Documentation/ChangeLog +++ b/Documentation/ChangeLog @@ -1,15 +1,19 @@ +yab 1.7.5.6 +- fix tabview bugs introduecd in 1.7.5.5 + fix tabview set command + allow tabview to be removed by removing the parent view +-add Option$ "plain | bold | fixed" and point$ to texteditl set + TEXTEDIT SET TextEdit$, "plain", "25" sets the text to system plain font at 25 point size. + yab 1.7.5.5 -Enable tabview with tabs on the side. This removes trhe reliance on BControlLook - - yab Version 1.7.5.4 -now compiles on x86_64 -yab-IDE now updates BuildFactory files on launch -add Window Get Windiwid$, "Minimized-To-Deskbar" -update help files for yab-ide - +-now compiles on x86_64 +-yab-IDE now updates BuildFactory files on launch +-add Window Get Windiwid$, "Minimized-To-Deskbar" +-update help files for yab-ide yab Version 1.7.5.3 - gcc4 now compiles @@ -19,7 +23,6 @@ yab Version 1.7.5.3 - BuildFactory use declared appsig - yab-IDE use declared appsig, or use filename for appsig - yab Version 1.7.5.2 - use public rgb_color mix_color() diff --git a/src/Spinner.cpp b/src/Spinner.cpp index 6d828a4..2cdeb68 100644 --- a/src/Spinner.cpp +++ b/src/Spinner.cpp @@ -561,7 +561,12 @@ filter_result SpinnerMsgFilter::Filter(BMessage *msg, BHandler **target) } } return B_DISPATCH_MESSAGE; - }/* + } + case B_TAB: + { + return B_DISPATCH_MESSAGE; + } + /* case B_TAB: { // Cause Tab characters to perform keybaord navigation diff --git a/src/config.h b/src/config.h index 915de6b..67e7ece 100644 --- a/src/config.h +++ b/src/config.h @@ -5,7 +5,7 @@ // #define LIBBSVG #define BUILD_TIME __DATE__ /* Version number of package */ -#define VERSION "1.7.5.5" +#define VERSION "1.7.5.6" /* architecture of build machine */ #define UNIX_ARCHITECTURE "BePC-Haiku" diff --git a/src/main.c b/src/main.c index 869adf4..5bf0d67 100644 --- a/src/main.c +++ b/src/main.c @@ -26,9 +26,9 @@ can be found at www.yabasic.de /* ------------- defines ---------------- */ #define DONE {current=current->next;break;} /* reduces type-work */ -#define COPYRIGHT "Original yabasic Copyright 1995-2006 by Marc-Oliver Ihm\n\tyab improvements Copyright 2006-2014 by Jan Bungeroth\n\tyab improvements Copyright 2013-2017 by Jim Saxton\n" +#define COPYRIGHT " Original yabasic Copyright 1995-2006 by Marc-Oliver Ihm\n\tyab improvements Copyright 2006-2014 by Jan Bungeroth\n\tyab improvements Copyright 2013-2018 by Jim Saxton\n" #define BANNER \ -"\n yab is yabasic for Haiku. This is version " VERSION ",\n built on "\ +"\n yab is yabasic, a BASIC programming language for Haiku.\n This is version " VERSION ",\n built on "\ ARCHITECTURE " on " BUILD_TIME "\n\n " COPYRIGHT "\n\n" #define BANNER_VERSION \ "yab " VERSION ", built on " ARCHITECTURE "\n" COPYRIGHT