aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2023-04-05build: fix the description of the named_install stepManlio Perillo1-2/+2
Replace the description of the named_install step from "Install {s} to zig-cache/bin" to "Copy {s} to prefix path". The latter has been adapded from the description of the builtin install step. Ad an empty line before the build_step variable, in order to improve readability. Closes #213
2023-04-05Merge pull request #216 from chrboesch/i215Chris Boesch1-4/+6
improving the explanation
2023-04-05improving the explanationChris Boesch1-4/+6
2023-04-04build: replace the logo step with the header stepManlio Perillo1-5/+3
Remove the logo step, and use PrintStep for the header step. The logo step was added as a quick fix after the Builder.addLog function was removed. Now the logo is no longer shown when running `zig build -l` or `zig build -h`.
2023-04-03build: restore support for Zig 0.6.0Manlio Perillo2-48/+75
The version check for Zig 0.6.0 was incorrect since commit 971ab7f (Use a zig build script to run ziglings). Move compatibility support to a separate file, in order to simplify build.zig. In case of incompatible version, exit with code 3 instead of 0, in order to detect the case of failure in a test (to be implemented). Remove the use of comptime when checking compatibility at the start of the build function, since it is not necessary. Closes #210.
2023-04-02build: make the logo a build stepManlio Perillo1-1/+33
Currently, the logo is always printed when the build script is executed, resulting in the logo being printed twice with `zig build -h` and `zig build -l`. Make the logo a build step, so that the logo is printed to stderr only when necessary. Closes #211
2023-03-31Merge pull request #209 from chrboesch/e70Chris Boesch1-2/+2
changed self parameter in connect to pointer
2023-03-31changed self parameter in connect to pointerChris Boesch1-2/+2
2023-03-30Merge pull request #208 from chrboesch/issue_140Chris Boesch2-8/+5
function made more elegant
2023-03-30function made more elegantChris Boesch2-8/+5
2023-03-30Merge pull request #207 from chrboesch/i205Chris Boesch1-4/+4
changed self paramter in waddle to pointer
2023-03-30changed self paramter in waddle to pointerChris Boesch1-4/+4
2023-03-30Merge pull request #206 from ZoloZithro/my-branchChris Boesch1-12/+12
Exercise 094: Correct spelling and grammar Thanks!
2023-03-30Exercise 094: Correct spelling and grammarZolo Zithro1-12/+12
2023-03-20Update README.mdChris Boesch1-1/+1
change note to attention for new build system
2023-03-19Merge pull request #203 from chrboesch/new_buildChris Boesch2-42/+42
workaround for new build system
2023-03-19workaround for parallel processing of the build stepsChris Boesch2-36/+38
2023-03-19first test for new build systemChris Boesch1-61/+59
2023-03-15Merge pull request #199 from joburgard/mainDave Gauer2-2/+2
Fix typos
2023-03-14Fix typoJo Burgard1-1/+1
2023-03-14Fix typoJo Burgard1-1/+1
2023-03-12Update README.mdChris Boesch1-1/+1
2023-03-12Update README.mdChris Boesch1-3/+1
2023-03-12Update README.mdChris Boesch1-1/+1
see https://github.com/ratfactor/ziglings/issues/198
2023-03-09Merge pull request #197 from chrboesch/memallChris Boesch1-0/+1
added line feed
2023-03-09added line feedChris Boesch1-0/+1
2023-03-09Merge pull request #195 from Seanny123/memory-allocationChris Boesch3-0/+83
Memory allocation exercise
2023-03-08change empty init to '???' placeholderSean Aubin2-3/+3
2023-03-08rename memory allocation 095 -> 096Sean Aubin2-0/+0
2023-03-08add 095_memory_allocation.patchSean Aubin1-0/+4
2023-03-08fix allocate exampleSean Aubin1-1/+1
2023-03-08move memory allocation example to 095Sean Aubin2-4/+4
2023-03-08rephrase/reformat commentsSean Aubin1-19/+24
2023-03-08first draft of memory allocation exerciseSean Aubin2-0/+74
2023-03-04Merge pull request #196 from chrboesch/for-loopsChris Boesch4-3/+75
exercise for new for-loops
2023-03-04exercise for new for-loopsChris Boesch4-3/+75
2023-02-28Merge pull request #194 from Seanny123/sean-nitpicksChris Boesch2-5/+5
Nitpicks: typos, grammar
2023-02-28fix typos/grammar in 093_hello_c.zigSean Aubin2-5/+5
- output a text -> output text - In Zig -> add comma - result ist -> result is - remove extra whitespace
2023-02-22Update README.mdChris Boesch1-1/+1
2023-02-21Update README.mdChris Boesch1-2/+2
2023-02-21Merge pull request #191 from chrboesch/dev_1711Chris Boesch9-16/+18
dev.1711 - switched to multi-object-for-loops
2023-02-21dev.1711 - switched to multi-object-for-loopsChris Boesch9-16/+18
2023-02-20Merge pull request #190 from chrboesch/issue_126Chris Boesch1-1/+1
removed unnecessary self pointer
2023-02-20removed unnecessary self pointerChris Boesch1-1/+1
2023-02-19Update README.mdChris Boesch1-1/+1
2023-02-19Merge pull request #189 from chrboesch/dev1650Chris Boesch6-9/+12
check for dev1650 and some minor polish
2023-02-19check for dev1650 and some minor polishChris Boesch6-9/+12
2023-02-19Merge pull request #188 from chrboesch/issue_185Chris Boesch1-2/+7
issue 185, description improved
2023-02-19issue 185, description improvedChris Boesch1-2/+7
2023-02-19Merge pull request #187 from chrboesch/c_mathChris Boesch2-2/+2
small improvements in hello_c