Skip to content

Commit

Permalink
Merge pull request #146 from jrincayc/release_623_changes
Browse files Browse the repository at this point in the history
Release 6.2.3 changes
  • Loading branch information
jrincayc authored Jan 17, 2023
2 parents d810567 + bfc9554 commit 007bb0b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ mac: ucblogo helpfiles/HELPCONTENTS helpfiles/ALL_NAMES

ucblogo.dmg : mac docs/ucblogo.pdf
rm -f ucblogo.dmg ucblogo_base.dmg
hdiutil create -size 15m -fs HFS+ -volname "UCBLogo" ucblogo_base.dmg
hdiutil create -size 20m -fs HFS+ -volname "UCBLogo" ucblogo_base.dmg
hdiutil attach ucblogo_base.dmg
cp -a UCBLogo.app /Volumes/UCBLogo/
cp docs/ucblogo.pdf /Volumes/UCBLogo/UCBLogoUserManual.pdf
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ 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.2

Changes for this release:
* Added optional object oriented LOGO features ( --enable-objects )
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.2.2],[],[],[https://github.com/jrincayc/ucblogo-code])
AC_INIT([ucblogo],[6.2.3],[],[],[https://github.com/jrincayc/ucblogo-code])
AC_CONFIG_SRCDIR([logodata.c])
AC_CONFIG_HEADERS(config.h)

Expand Down
6 changes: 3 additions & 3 deletions inno/ucblogo.iss
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

[Setup]
AppName=Berkeley Logo
AppVerName=Berkeley Logo 6.2.2
AppVersion=6.2.2
AppVerName=Berkeley Logo 6.2.3
AppVersion=6.2.3
AppPublisher=University of California, Berkeley
AppPublisherURL=http://www.cs.berkeley.edu/~bh/logo.html
AppSupportURL=https://github.com/jrincayc/ucblogo-code/issues
AppUpdatesURL=https://github.com/jrincayc/ucblogo-code/releases
OutputBaseFilename=ucblogo622setup
OutputBaseFilename=ucblogo623setup
OutputDir=.
DefaultDirName={autopf}\UCBLogo
DefaultGroupName=Berkeley Logo
Expand Down
2 changes: 1 addition & 1 deletion wxTerminal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1862,7 +1862,7 @@ wxTerminal::UpdateSelectionColors()
0.587 * wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT).Green() / 255 +
0.114 * wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT).Blue() / 255;

if (abs(terminal_background_luminance - system_background_luminance) >= 0.5) {
if (fabs(terminal_background_luminance - system_background_luminance) >= 0.5) {
// Reasonable contrast between system selection background and terminal background.
m_selection_foreground = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT);
m_selection_background = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT);
Expand Down

0 comments on commit 007bb0b

Please sign in to comment.