ucblogo (6.2.2-3)
[PTS] [DDPO]
ERROR:
- Git: https://salsa.debian.org/debian/ucblogo.git
-
- Branch: debian
- Path: debian/changelog
- Repo size: 23019520
- Browser: https://salsa.debian.org/debian/ucblogo
- Last scan: 2023-03-16 23:07:05+00
- Error: fatal: unable to access 'https://salsa.debian.org/debian/ucblogo.git/': Failed to connect to salsa.debian.org port 443: No route to host
- Next scan: 2023-03-23 10:59:00+00
- CI pipeline status: success
- Debian changelog in Git:
ucblogo (6.2.2-4) UNRELEASED; urgency=medium
* track upstream changes
* dh_installalternatives
-- Barak A. Pearlmutter <bap@debian.org> Fri, 18 Nov 2022 15:00:20 +0000
- This branch is 15 commits ahead of tag debian/6.2.2-3
- Git log:
commit ed2da74daaed81e59bec97fd578849fe4f65a1c2
Author: Barak A. Pearlmutter <barak+git@pearlmutter.net>
Date: Sun Nov 27 17:01:55 2022 +0000
git ignore deb-ris
commit 831deb3b100058d01596b1691ee11a642525d846
Author: Barak A. Pearlmutter <barak+git@pearlmutter.net>
Date: Fri Nov 18 15:00:26 2022 +0000
dh_installalternatives
commit af930a881e19e0613c5507d7ced5cfd244ca255c
Author: Barak A. Pearlmutter <barak+git@pearlmutter.net>
Date: Fri Sep 16 08:30:15 2022 +0100
log merge
commit cd573ec6045d01599c99634e3639d2cfb8f31b9a
Merge: d58dd7c ad2aafd
Author: Barak A. Pearlmutter <barak+git@pearlmutter.net>
Date: Fri Sep 16 08:29:21 2022 +0100
Merge remote-tracking branch 'upstream/master' into debian
commit ad2aafdb76721bf7ee061407f6a92e005841f163
Merge: 7301609 3504376
Author: Joshua Cogliati <jrincayc@users.noreply.github.com>
Date: Mon Jun 27 19:19:29 2022 -0600
Merge pull request #135 from dmalec/ISSUE-134
ISSUE-134: Fixed issue with LOADPICT if it's called before other turtle commands
commit 73016098c540b982cc71ac9f630631b0d1720747
Merge: 17ce850 a7979b1
Author: Joshua Cogliati <jrincayc@users.noreply.github.com>
Date: Mon Jun 27 19:02:03 2022 -0600
Merge pull request #136 from dmalec/ISSUE-50
ISSUE-50: Indicate correct error line when GOTO has a nonexistent tag
commit a7979b1da5d6a73156eeea8d31068f4d82a26755
Author: Dan Malec <dan.malec@gmail.com>
Date: Sat Jun 25 15:32:29 2022 -0400
ISSUE-50: Indicate correct error line when GOTO has a nonexistent tag
* Saves the value of the current line prior to running the code to look
for the specified tag.
* If the tag is not found, it retores the current line prior to
printing an error message.
commit 3504376b81953d4051e320f46910702cbcde2066
Author: Dan Malec <dan.malec@gmail.com>
Date: Sat Jun 25 14:21:48 2022 -0400
ISSUE-134: Fixed issue with LOADPICT if it's called before other turtle commands
* LOADPICT now sets up turtle graphics if needed
* added checking of results from fread to prevent warnings during build
commit 17ce8508af45ce25bf30423f1af453656487be09
Merge: 45a925b b749053
Author: Joshua Cogliati <jrincayc@users.noreply.github.com>
Date: Mon Jun 20 19:31:28 2022 -0600
Merge pull request #131 from dmalec/ISSUE-129
ISSUE-129: Remove obsolete macros from configure.ac
commit 45a925b1b8b73c8505e798c5f466e8bd67114c45
Merge: 4a8b356 d15bd64
Author: Joshua Cogliati <jrincayc@users.noreply.github.com>
Date: Mon Jun 20 19:24:45 2022 -0600
Merge pull request #128 from dmalec/ISSUE-126
Issue 126: Print preview on Windows
commit b74905322cf93230dc3f323f104c18980f23b978
Author: Dan Malec <dan.malec@gmail.com>
Date: Mon Jun 20 20:39:31 2022 -0400
ISSUE-129: remove obsolete macros from configure.ac
* AC_CONFIG_HEADER - this is an obsolete synonym for AC_CONFIG_HEADERS
https://www.gnu.org/software/automake/manual/1.12/html_node/Obsolete-Macros.html
* AC_HEADER_STDC - this is an obsolete macro, autoconf recommends handling old systems
with missing string functions on a case-by-case basis instead of using this macro
https://www.gnu.org/software/autoconf/manual/autoconf-2.67/html_node/Particular-Headers.html
commit d15bd64086bde1d8b1ffd42ff110d875ae022a3b
Author: Dan Malec <dan.malec@gmail.com>
Date: Sat Jun 18 14:33:01 2022 -0400
ISSUE-126: Fixed printing of terminal text so it is monospaced.
commit 8ae7fd4100ffbf753016372e0247a29ab7747335
Author: Dan Malec <dan.malec@gmail.com>
Date: Sat Jun 18 12:19:41 2022 -0400
ISSUE-126: Fixed print preview on Windows.
* Added parent frame when opening text preview to prevent layout error message.
* Added processing of idle events so Windows can render previews.
* Switched turtle graphics preview to use main frame so event processing
is properly restored after a preview.
commit 4a8b35607a656ff3b87ede58119fdbfc8c328d51
Author: Joshua Cogliati <jrincayc@users.noreply.github.com>
Date: Fri Feb 4 18:52:44 2022 -0700
Adding PRINT NOT "FALSE to show using quoted false. (#125)
commit 78349660e71a90ff9b7f01732852fd798961a9fd
Author: Dan Malec <dan.malec@gmail.com>
Date: Tue Feb 1 08:11:07 2022 -0500
Refactor code so selection highlighting does not depend on platform supporting inverted blit mode. (#123)
* Refactor code so selection highlighting does not depend on platform supporting inverted blit mode.
Selection highlighting is now handled by checking when drawing characters if they are inside the
currently selected area or not. An appropriate foreground/background color is then selected for
drawing the character.
* Revised wxTerminal::UpdateNormalizedTextSelection comments to more accurately reflect highlighting logic