1
0
mirror of https://github.com/rricharz/Tek4010.git synced 2026-04-18 00:48:17 +00:00
Commit Graph

221 Commits

Author SHA1 Message Date
Rene Richarz
5530fc44a9 Merge pull request #62 from erentar/master
Add plot demo using plotutils
2024-06-22 06:41:07 +02:00
erentar
80863fec0b improvement to the plot and to the script 2024-06-21 18:30:01 +02:00
erentar
dfdc384bd5 Changes to accommodate repo owner requests 2024-06-21 12:51:19 +02:00
erentar
fc9fc4022f Add plot demo using plotutils 2024-06-21 02:49:32 +02:00
Rene Richarz
26c67972ad Merge pull request #59 from hanyazou/increase-saturation
Increase saturation
2024-06-09 09:05:36 +02:00
Rene Richarz
cab75bc912 Fixed for portability to MacOS 2024-06-09 08:58:19 +02:00
Rene Richarz
cac4b781ca Merge pull request #58 from tvrusso/fix_clang_warning
Fix clang warning regarding printf
2024-06-09 07:43:17 +02:00
hanyazou
bbc5cc7485 Increase saturation 2024-06-09 11:06:49 +09:00
hanyazou
d3037d36b4 Fix draw vector bright spot line width 2024-06-09 11:00:18 +09:00
Tom Russo
db9b8d6a29 Fix clang warning regarding printf
In tube.c, a use of "printf(helpstr)" was flagged by clang as
potentially insecure.  The insecurity of this is probably
insignificant, but fixing it removes a warning from compilation.

The warning is:
   src/tube.c:303:24: warning: format string is not a string literal (potentially insecure) [-Wformat-security]
  303 |                 printf(helpStr);
      |                        ^~~~~~~
src/tube.c:303:24: note: treat the string as an argument to avoid this
  303 |                 printf(helpStr);
      |                        ^

All that need be done is to provide a format string that is a string
literal, with helpStr being the string to print instead of the format
string.
2024-06-08 17:30:43 -06:00
Rene Richarz
5320761b9b Fixed instructions for installation on Macintosh 2024-06-08 09:13:57 +02:00
Rene Richarz
4a65d71956 Merge pull request #51 from polluks/patch-3
Added GNU check target #43
2024-06-08 07:38:58 +02:00
Rene Richarz
61911f483a Added experimental installation instructions for MacOS 2024-06-08 07:37:26 +02:00
Stefan
70ac601ed1 Update makefile 2024-06-07 19:23:29 +02:00
Rene Richarz
c155f2c324 Merge pull request #54 from polluks/patch-4
Fixed help.txt, nitpicking
2024-06-07 14:36:42 +02:00
Stefan
dac01ead66 Fixed help.txt, nitpicking
You can execute it everywhere...
2024-06-07 11:15:04 +02:00
Stefan
a2b3415441 Added GNU check target #43
Nothing fancy, you simply don't have to read the readme.
2024-06-06 11:27:19 +02:00
Rene Richarz
5abc1163fe Merge pull request #50 from tvrusso/remove_help_h
Remove src/help.h from git tracking
2024-06-03 18:41:04 +02:00
Tom Russo
81a65a04d5 Remove src/help.h from git tracking
src/help.h is auto generated by the makefile, and is ignored by
.gitignore, but is still present in the repo.

Since it is regenerated automatically from src/help.txt there is no
need for it in the repo.  Removing it also makes it so that when one
does a "make clean" and help.h is deleted, git doesn't think the repo
is dirty.
2024-06-03 08:46:48 -06:00
Rene Richarz
d6d14a9763 Merge pull request #49 from tvrusso/fix_gitignore
Make src/help.h ignored by git
2024-06-03 09:02:38 +02:00
Tom Russo
df0a544fdf Make src/help.h ignored by git
src/help.h is generated from src/help.txt, so it shouldn't be tracked
by git. But src/help.txt *should* be.

This commit makes it so.
2024-06-02 15:57:18 -06:00
Rene Richarz
d485917598 Merge pull request #48 from hanyazou/use-space-and-remove-tab
Standardize Whitespace in Source Code
2024-06-02 11:07:51 +02:00
hanyazou
0b1bc0e421 Use space instead of tab and remove any trailing spaces (cosmetic changes)
This commit is purely cosmetic and 'git diff -b' does not show any changes
2024-06-02 17:02:51 +09:00
Rene Richarz
9c59624961 delete src/help.h in make clean 2024-06-02 08:41:03 +02:00
Rene Richarz
b0baeca1e7 Merge pull request #46 from tvrusso/fix_sed
Make sed line FreeBSD compatible
2024-06-02 08:35:38 +02:00
Tom Russo
68045a4924 Make sed line FreeBSD compatible
The recent addition of help.h to the build uses a sed command that is
apparently incompatible with FreeBSD's sed.  It pukes with complaints
about the use of "$$" and the a command.

Since the entire purpose of this part of the sed command is to add a
semicolon at the end of the help string, I have replaced it with a
simple echo of ";" appended to help.h.
2024-06-01 15:33:55 -06:00
Rene Richarz
0c1b35089e Fixed .gitignore again 2024-05-28 22:07:25 +02:00
Rene Richarz
4c17c12367 Fixed .gitignore 2024-05-28 22:01:56 +02:00
Rene Richarz
6f376ce355 restored help.h 2024-05-28 21:50:03 +02:00
Rene Richarz
560f7a2774 Updated .gitignore and Manual 2024-05-28 20:37:28 +02:00
Rene Richarz
0d73b374a1 ERevert "Merge pull request #42 from polluks/patch-2"
This reverts commit 7f8e6ace74, reversing
changes made to eb2a37dc6b.
2024-05-28 16:55:48 +02:00
Rene Richarz
7f8e6ace74 Merge pull request #42 from polluks/patch-2
Create manual page
2024-05-28 16:37:18 +02:00
Stefan
121cb54aa8 Add manual page 2024-05-28 11:30:49 +02:00
Stefan
8082f5dbda Update install 2024-05-28 11:27:27 +02:00
Stefan
8f35024011 Update makefile 2024-05-28 11:25:27 +02:00
Rene Richarz
eb2a37dc6b Merge pull request #41 from polluks/patch-1
Shorter makefile
2024-05-24 13:37:48 +02:00
Stefan
e52a149674 Create manual page
Requires help2man, you may adjust install.
2024-05-24 11:34:54 +02:00
Stefan
3ed7cbff3c Shorter makefile 2024-05-24 11:29:17 +02:00
Rene Richarz
b85ad51a60 Merge pull request #40 from polluks/master
Fixed typos
2024-05-24 10:48:37 +02:00
polluks
d9d62d5dfb Fixed typos 2024-05-24 10:20:55 +02:00
Rene Richarz
515a4dc625 Merge pull request #39 from erentar/master
Add help message
2024-05-17 07:41:55 +02:00
erentar
dd819b03dd Add help message 2024-05-16 15:31:55 +02:00
Rene Richarz
92a55adf97 -fast option is automatically used for baud rates above 19200 2024-03-18 10:57:40 +01:00
Rene Richarz
5a2dea9b3f Added now -fast option in manual 2024-03-18 10:01:47 +01:00
Rene Richarz
8f01225e1f Mege from 2 systems 2024-03-18 09:41:03 +01:00
Rene Richarz
8e7f391f6f added -fast version for fast refresh on slower systems 2024-03-18 09:29:53 +01:00
Rene Richarz
f3c2116bdd Added note in manual about usage with slow systems 2024-03-18 05:07:31 +01:00
Rene Richarz
abfc83b094 Increase bright spot color 2024-03-05 03:24:48 +01:00
Rene Richarz
9ae8b458cf Version 1.8 with improved handling of bright drawing spot and fading released for all systems 2024-03-04 09:19:17 +01:00
Rene Richarz
51ac8ac44d removed binary apl/apltest 2024-03-01 06:03:13 +01:00