Skip to content

Commit

Permalink
Bumping version to 6.2 (and 6.2pre in configure.ac)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrincayc committed Dec 14, 2020
1 parent 53367e1 commit 9193bdc
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ along with this program. If not, see https://www.gnu.org/licenses/.

This uses the repository https://github.com/jrincayc/ucblogo-code
created for further UCBLogo development.
The current version is 6.1
The current version is 6.2

Changes for this release:
* The license has been changed to GPL3.
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([ucblogo],[6.1],[],[],[https://github.com/jrincayc/ucblogo-code])
AC_INIT([ucblogo],[6.2pre],[],[],[https://github.com/jrincayc/ucblogo-code])
AC_CONFIG_SRCDIR([logodata.c])
AC_CONFIG_HEADER(config.h)

Expand Down
4 changes: 2 additions & 2 deletions docs/ucblogo.texi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
\input texinfo @c -*-texinfo-*-
@c %**start of header
@setfilename ucblogo.info
@settitle BERKELEY LOGO 6.1
@settitle BERKELEY LOGO 6.2
@setchapternewpage odd
@c %**end of header

Expand All @@ -24,7 +24,7 @@
@finalout

@titlepage
@title BERKELEY LOGO 6.1
@title BERKELEY LOGO 6.2
@subtitle Berkeley Logo User Manual
@author Brian Harvey
@end titlepage
Expand Down
4 changes: 2 additions & 2 deletions inno/ucblogo.iss
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

[Setup]
AppName=Berkeley Logo
AppVerName=Berkeley Logo 6.1
AppVersion=6.1
AppVerName=Berkeley Logo 6.2
AppVersion=6.2
AppPublisher=University of California, Berkeley
AppPublisherURL=http://www.cs.berkeley.edu/~bh/logo.html
AppSupportURL=https://github.com/jrincayc/ucblogo-code/issues
Expand Down
2 changes: 1 addition & 1 deletion logolib/Messages
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; UCBLogo message file version 6.1
; UCBLogo message file version 6.2
; Error messages -- position in this file corresponds to error number
; Lines starting with semicolon don't count in the line numbering
; and may be added at will.
Expand Down
2 changes: 1 addition & 1 deletion logolib/Messages.fr
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; French version of Berkeley Logo messages file 6.1
; French version of Berkeley Logo messages file 6.2
; Error messages -- position in this file corresponds to error number
; Lines starting with semicolon don't count in the line numbering
; and may be added at will.
Expand Down
2 changes: 1 addition & 1 deletion logolib/Messages.sp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; Spanish version of Berkeley Logo messages file 6.1
; Spanish version of Berkeley Logo messages file 6.2
; Error messages -- position in this file corresponds to error number
; Lines starting with semicolon don't count in the line numbering
; and may be added at will.
Expand Down
2 changes: 1 addition & 1 deletion logolib/Messages.zh_TW
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; UCBLogo message file version 6.1
; UCBLogo message file version 6.2
; Error messages -- position in this file corresponds to error number
; Lines starting with semicolon don't count in the line numbering
; and may be added at will.
Expand Down
12 changes: 2 additions & 10 deletions main.c
Original file line number Diff line number Diff line change
Expand Up @@ -275,11 +275,7 @@ int main(int argc, char *argv[]) {
{
char version[64];
lcleartext(NIL);
#ifdef HAVE_WX
strcpy(version,"6.1");
#else
strcpy(version,"5.6");
#endif
strcpy(version, VERSION);
#ifdef GITID
extern char *GIT;
strcat(version, GIT);
Expand All @@ -289,11 +285,7 @@ int main(int argc, char *argv[]) {
}
}

#ifdef HAVE_WX
setvalnode__caseobj(LogoVersion, make_floatnode(6.1));
#else
setvalnode__caseobj(LogoVersion, make_floatnode(5.6));
#endif
setvalnode__caseobj(LogoVersion, make_floatnode(6.2));
setflag__caseobj(LogoVersion, VAL_BURIED);

argv2 = argv; argc2 = argc;
Expand Down

0 comments on commit 9193bdc

Please sign in to comment.