Rene Richarz
7b9aa596b5
Merge pull request #73 from llemaire1/patch-1
...
Update macintosh.txt
2025-11-22 06:11:44 +01:00
Laurent Lemaire
b4e9b56839
Update macintosh.txt
...
fixing error in the brew install gtk+3 line ...
2025-11-17 16:18:33 +01:00
Rene Richarz
7ab178549a
added WSL info in windows.txt
2025-07-19 08:53:11 +02:00
Rene Richarz
f046bb9d5f
Fixed a little bug in windows.txt
2025-01-30 14:46:56 +01:00
Rene Richarz
32727701a3
added instructions for using brew instead of MacPorts on the Mac
2024-08-17 09:08:14 +02:00
Rene Richarz
d2e2ba1f87
Added instructions for windows and updated instructions for macOS
2024-07-07 10:55:37 +02:00
Rene Richarz
b0ebac235c
Merge pull request #66 from polluks/patch-1
...
Fixed help.txt for 80col
2024-07-04 19:48:53 +02:00
Stefan
28f4de57a4
Fixed help.txt for 80col
...
some fmt calls
2024-07-02 13:01:30 +02:00
Rene Richarz
694b0245d6
Merge pull request #65 from polluks/master
...
Fixed typo in macintosh.txt
2024-07-01 14:58:35 +02:00
Stefan
4b97151cb5
Fixed typo in macintosh.txt
2024-07-01 11:33:27 +02:00
Rene Richarz
6078ab826c
Fixed command for OSX
2024-07-01 11:22:40 +02:00
Rene Richarz
f01ff557e2
Merge pull request #64 from polluks/patch-4
...
Fixed makefile
2024-07-01 11:17:17 +02:00
Stefan
216ae285f8
Fixed makefile
2024-06-30 16:41:32 +02:00
Rene Richarz
97c3ff8966
Instructions for OSX added
2024-06-22 06:59:17 +02:00
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