From: Kevin Day Date: Sun, 3 Aug 2014 22:40:35 +0000 (-0500) Subject: Bugfix: programs incorrectly reporting version X-Git-Tag: 0.4.2~25 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=7a10ef89990cb3e2b5d9ee7182de8e18aa5e27a5;p=fll Bugfix: programs incorrectly reporting version I noticed, unfortunately after the release and not before, that the proper version number was not being reported. This seems to have been an oversight. To reduce the chances of this happening, I decided to make the next version number be the default. I will make a release after a month or two fixing this. --- diff --git a/build/scripts/generate.sh b/build/scripts/generate.sh index f714b0488..66be68054 100644 --- a/build/scripts/generate.sh +++ b/build/scripts/generate.sh @@ -9,7 +9,7 @@ generate_main(){ local public_name="Simple FLL Project Make Script" local system_name=generate local called_name=$(basename $0) - local version=0.4.0 + local version=0.4.2 local grab_next= local do_color=normal diff --git a/level_0/f_colors/c/colors.h b/level_0/f_colors/c/colors.h index 616bbe94c..1fe0617f6 100644 --- a/level_0/f_colors/c/colors.h +++ b/level_0/f_colors/c/colors.h @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Colors - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_colors/data/build/settings b/level_0/f_colors/data/build/settings index e326c7392..eea76357a 100644 --- a/level_0/f_colors/data/build/settings +++ b/level_0/f_colors/data/build/settings @@ -5,7 +5,7 @@ project_level 0 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc diff --git a/level_0/f_console/c/console.c b/level_0/f_console/c/console.c index b2c9a4905..222f8cc43 100644 --- a/level_0/f_console/c/console.c +++ b/level_0/f_console/c/console.c @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Console - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_0/f_console/c/console.h b/level_0/f_console/c/console.h index 8838b874c..f347693d0 100644 --- a/level_0/f_console/c/console.h +++ b/level_0/f_console/c/console.h @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Console - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_console/data/build/settings b/level_0/f_console/data/build/settings index ad32d6e0c..6effd4b4b 100644 --- a/level_0/f_console/data/build/settings +++ b/level_0/f_console/data/build/settings @@ -5,7 +5,7 @@ project_level 0 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc diff --git a/level_0/f_conversion/c/conversion.c b/level_0/f_conversion/c/conversion.c index 18dcc4044..4b91ee1cb 100644 --- a/level_0/f_conversion/c/conversion.c +++ b/level_0/f_conversion/c/conversion.c @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Conversion - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_0/f_conversion/c/conversion.h b/level_0/f_conversion/c/conversion.h index 7eb3fb28e..e8efb82b3 100644 --- a/level_0/f_conversion/c/conversion.h +++ b/level_0/f_conversion/c/conversion.h @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Conversion - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_conversion/data/build/settings b/level_0/f_conversion/data/build/settings index 56ea1fc31..79c2da382 100644 --- a/level_0/f_conversion/data/build/settings +++ b/level_0/f_conversion/data/build/settings @@ -5,7 +5,7 @@ project_level 0 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc diff --git a/level_0/f_errors/bash/errors.sh b/level_0/f_errors/bash/errors.sh index b0cf4062d..914ddf490 100644 --- a/level_0/f_errors/bash/errors.sh +++ b/level_0/f_errors/bash/errors.sh @@ -1,6 +1,6 @@ # FLL - Level 0 # Project: Errors -# Version: 0.4.x +# Version: 0.4.2 # Licenses: flll, lgplv2.1 # Programmers: Kevin Day # Documentation: Provides error codes diff --git a/level_0/f_errors/c/errors.h b/level_0/f_errors/c/errors.h index c36732357..e6536152f 100644 --- a/level_0/f_errors/c/errors.h +++ b/level_0/f_errors/c/errors.h @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Errors - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_errors/data/build/settings b/level_0/f_errors/data/build/settings index 2fddad500..f8af285ad 100644 --- a/level_0/f_errors/data/build/settings +++ b/level_0/f_errors/data/build/settings @@ -5,7 +5,7 @@ project_level 0 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc diff --git a/level_0/f_file/c/file.c b/level_0/f_file/c/file.c index 068fc00e3..016747b57 100644 --- a/level_0/f_file/c/file.c +++ b/level_0/f_file/c/file.c @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: File - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_file/c/file.h b/level_0/f_file/c/file.h index 88029e29d..a7efb7f46 100644 --- a/level_0/f_file/c/file.h +++ b/level_0/f_file/c/file.h @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: File - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_file/data/build/settings b/level_0/f_file/data/build/settings index b7d048692..7eb32bfea 100644 --- a/level_0/f_file/data/build/settings +++ b/level_0/f_file/data/build/settings @@ -5,7 +5,7 @@ project_level 0 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc diff --git a/level_0/f_fss/c/fss.h b/level_0/f_fss/c/fss.h index 129c6d042..024149cf1 100644 --- a/level_0/f_fss/c/fss.h +++ b/level_0/f_fss/c/fss.h @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_fss/data/build/settings b/level_0/f_fss/data/build/settings index cf1d56c20..f71677456 100644 --- a/level_0/f_fss/data/build/settings +++ b/level_0/f_fss/data/build/settings @@ -5,7 +5,7 @@ project_level 0 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc diff --git a/level_0/f_memory/c/memory.c b/level_0/f_memory/c/memory.c index e92a41ba5..ed3316e37 100644 --- a/level_0/f_memory/c/memory.c +++ b/level_0/f_memory/c/memory.c @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Memory - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_memory/c/memory.h b/level_0/f_memory/c/memory.h index 9cf18d532..aa70db8e4 100644 --- a/level_0/f_memory/c/memory.h +++ b/level_0/f_memory/c/memory.h @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Memory - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_memory/data/build/settings b/level_0/f_memory/data/build/settings index 006349aec..0334d4acf 100644 --- a/level_0/f_memory/data/build/settings +++ b/level_0/f_memory/data/build/settings @@ -5,7 +5,7 @@ project_level 0 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc diff --git a/level_0/f_paths/c/filesystem_paths.h b/level_0/f_paths/c/filesystem_paths.h index 76e7caeba..63ebbc16d 100644 --- a/level_0/f_paths/c/filesystem_paths.h +++ b/level_0/f_paths/c/filesystem_paths.h @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Paths - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_paths/c/fll_paths.h b/level_0/f_paths/c/fll_paths.h index 61048bf36..ab93192d3 100644 --- a/level_0/f_paths/c/fll_paths.h +++ b/level_0/f_paths/c/fll_paths.h @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Paths - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_paths/data/build/settings b/level_0/f_paths/data/build/settings index 6c91b4d20..43194c10c 100644 --- a/level_0/f_paths/data/build/settings +++ b/level_0/f_paths/data/build/settings @@ -5,7 +5,7 @@ project_level 0 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries diff --git a/level_0/f_pipe/c/pipe.c b/level_0/f_pipe/c/pipe.c index 4537fd986..f8febb75f 100644 --- a/level_0/f_pipe/c/pipe.c +++ b/level_0/f_pipe/c/pipe.c @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Pipe - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_pipe/c/pipe.h b/level_0/f_pipe/c/pipe.h index baddfc5e8..065b11344 100644 --- a/level_0/f_pipe/c/pipe.h +++ b/level_0/f_pipe/c/pipe.h @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Pipe - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_pipe/data/build/settings b/level_0/f_pipe/data/build/settings index ef59b2220..ed8806dfd 100644 --- a/level_0/f_pipe/data/build/settings +++ b/level_0/f_pipe/data/build/settings @@ -5,7 +5,7 @@ project_level 0 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc diff --git a/level_0/f_print/c/print.c b/level_0/f_print/c/print.c index 5d0725be5..100d7e7c3 100644 --- a/level_0/f_print/c/print.c +++ b/level_0/f_print/c/print.c @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Output - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_0/f_print/c/print.h b/level_0/f_print/c/print.h index f1aac5970..d7e53d44b 100644 --- a/level_0/f_print/c/print.h +++ b/level_0/f_print/c/print.h @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Output - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_print/data/build/settings b/level_0/f_print/data/build/settings index dfa10f6d3..ccaed244f 100644 --- a/level_0/f_print/data/build/settings +++ b/level_0/f_print/data/build/settings @@ -5,7 +5,7 @@ project_level 0 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc diff --git a/level_0/f_serialized/c/serialized.h b/level_0/f_serialized/c/serialized.h index a0349dcaf..6631677eb 100644 --- a/level_0/f_serialized/c/serialized.h +++ b/level_0/f_serialized/c/serialized.h @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Serialized - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_serialized/data/build/settings b/level_0/f_serialized/data/build/settings index afb41011c..718dfbfff 100644 --- a/level_0/f_serialized/data/build/settings +++ b/level_0/f_serialized/data/build/settings @@ -5,7 +5,7 @@ project_level 0 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc diff --git a/level_0/f_strings/c/strings.h b/level_0/f_strings/c/strings.h index 7b37a13d5..af793009f 100644 --- a/level_0/f_strings/c/strings.h +++ b/level_0/f_strings/c/strings.h @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Strings - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_strings/data/build/settings b/level_0/f_strings/data/build/settings index e327468ed..fb068f65f 100644 --- a/level_0/f_strings/data/build/settings +++ b/level_0/f_strings/data/build/settings @@ -5,7 +5,7 @@ project_level 0 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc diff --git a/level_0/f_types/c/types.h b/level_0/f_types/c/types.h index ab098ab96..3a69e5b85 100644 --- a/level_0/f_types/c/types.h +++ b/level_0/f_types/c/types.h @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Types - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_types/c/types_array.h b/level_0/f_types/c/types_array.h index 035a033b3..41ac453ae 100644 --- a/level_0/f_types/c/types_array.h +++ b/level_0/f_types/c/types_array.h @@ -1,6 +1,6 @@ /* FLL - Level 0 * Project: Types Array - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_0/f_types/data/build/settings b/level_0/f_types/data/build/settings index 2ab76a614..601bbd678 100644 --- a/level_0/f_types/data/build/settings +++ b/level_0/f_types/data/build/settings @@ -5,7 +5,7 @@ project_level 0 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc diff --git a/level_1/fl_colors/bash/colors.sh b/level_1/fl_colors/bash/colors.sh index 750990dbe..c5a8ac26d 100644 --- a/level_1/fl_colors/bash/colors.sh +++ b/level_1/fl_colors/bash/colors.sh @@ -1,6 +1,6 @@ # FLL - Level 1 # Project: Colors -# Version: 0.4.x +# Version: 0.4.2 # Licenses: flll, lgplv2.1 # Programmers: Kevin Day # Documentation: Provide basic color output support (linux & xterm) diff --git a/level_1/fl_colors/c/colors.c b/level_1/fl_colors/c/colors.c index 92914b943..d77f24778 100644 --- a/level_1/fl_colors/c/colors.c +++ b/level_1/fl_colors/c/colors.c @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: Colors - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_1/fl_colors/c/colors.h b/level_1/fl_colors/c/colors.h index 3a389b0f7..6bebf4d70 100644 --- a/level_1/fl_colors/c/colors.h +++ b/level_1/fl_colors/c/colors.h @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: Colors - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_1/fl_colors/data/build/settings b/level_1/fl_colors/data/build/settings index 8ed93f6d8..e1ecfd76c 100644 --- a/level_1/fl_colors/data/build/settings +++ b/level_1/fl_colors/data/build/settings @@ -5,7 +5,7 @@ project_level 1 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc -lf_file diff --git a/level_1/fl_console/c/console.c b/level_1/fl_console/c/console.c index cf0e26bcf..ced1872c1 100644 --- a/level_1/fl_console/c/console.c +++ b/level_1/fl_console/c/console.c @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: Console - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_1/fl_console/c/console.h b/level_1/fl_console/c/console.h index dfe198bd5..9a9e2d87d 100644 --- a/level_1/fl_console/c/console.h +++ b/level_1/fl_console/c/console.h @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: Console - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_1/fl_console/data/build/settings b/level_1/fl_console/data/build/settings index e070d72fe..7b72f0c1f 100644 --- a/level_1/fl_console/data/build/settings +++ b/level_1/fl_console/data/build/settings @@ -5,7 +5,7 @@ project_level 1 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc -lf_console diff --git a/level_1/fl_directory/c/directory.c b/level_1/fl_directory/c/directory.c index d84fed555..b3d5330c0 100644 --- a/level_1/fl_directory/c/directory.c +++ b/level_1/fl_directory/c/directory.c @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: Directory - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_1/fl_directory/c/directory.h b/level_1/fl_directory/c/directory.h index fda74bae3..e32c25613 100644 --- a/level_1/fl_directory/c/directory.h +++ b/level_1/fl_directory/c/directory.h @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: Directory - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_1/fl_directory/data/build/settings b/level_1/fl_directory/data/build/settings index e13024306..37bf7d440 100644 --- a/level_1/fl_directory/data/build/settings +++ b/level_1/fl_directory/data/build/settings @@ -5,7 +5,7 @@ project_level 1 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc -lf_memory diff --git a/level_1/fl_errors/bash/errors.sh b/level_1/fl_errors/bash/errors.sh index b0cf4062d..914ddf490 100644 --- a/level_1/fl_errors/bash/errors.sh +++ b/level_1/fl_errors/bash/errors.sh @@ -1,6 +1,6 @@ # FLL - Level 0 # Project: Errors -# Version: 0.4.x +# Version: 0.4.2 # Licenses: flll, lgplv2.1 # Programmers: Kevin Day # Documentation: Provides error codes diff --git a/level_1/fl_errors/c/errors.c b/level_1/fl_errors/c/errors.c index d108d43d6..ad70d084a 100644 --- a/level_1/fl_errors/c/errors.c +++ b/level_1/fl_errors/c/errors.c @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: Errors - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_1/fl_errors/c/errors.h b/level_1/fl_errors/c/errors.h index 38dbdaea4..1ab5d0693 100644 --- a/level_1/fl_errors/c/errors.h +++ b/level_1/fl_errors/c/errors.h @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: Errors - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_1/fl_errors/data/build/settings b/level_1/fl_errors/data/build/settings index 08c0314bc..8deffc056 100644 --- a/level_1/fl_errors/data/build/settings +++ b/level_1/fl_errors/data/build/settings @@ -5,7 +5,7 @@ project_level 1 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc diff --git a/level_1/fl_file/c/file.c b/level_1/fl_file/c/file.c index c7a2bab8e..d235b7dbb 100644 --- a/level_1/fl_file/c/file.c +++ b/level_1/fl_file/c/file.c @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: File - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_1/fl_file/c/file.h b/level_1/fl_file/c/file.h index 9cc4bd49a..69afb68c2 100644 --- a/level_1/fl_file/c/file.h +++ b/level_1/fl_file/c/file.h @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: File - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_1/fl_file/data/build/settings b/level_1/fl_file/data/build/settings index 743b4a745..79bd79c2c 100644 --- a/level_1/fl_file/data/build/settings +++ b/level_1/fl_file/data/build/settings @@ -5,7 +5,7 @@ project_level 1 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc -lf_file diff --git a/level_1/fl_fss/c/fss.c b/level_1/fl_fss/c/fss.c index e6b9bc122..37f32f7b8 100644 --- a/level_1/fl_fss/c/fss.c +++ b/level_1/fl_fss/c/fss.c @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_1/fl_fss/c/fss.h b/level_1/fl_fss/c/fss.h index a2cf26ad6..53853e30d 100644 --- a/level_1/fl_fss/c/fss.h +++ b/level_1/fl_fss/c/fss.h @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_1/fl_fss/c/fss_basic.c b/level_1/fl_fss/c/fss_basic.c index 0c90a58eb..26f2bd76b 100644 --- a/level_1/fl_fss/c/fss_basic.c +++ b/level_1/fl_fss/c/fss_basic.c @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_1/fl_fss/c/fss_basic.h b/level_1/fl_fss/c/fss_basic.h index d03b7b854..5ba5ea8cf 100644 --- a/level_1/fl_fss/c/fss_basic.h +++ b/level_1/fl_fss/c/fss_basic.h @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_1/fl_fss/c/fss_basic_list.c b/level_1/fl_fss/c/fss_basic_list.c index bca6bdc04..13f78e28e 100644 --- a/level_1/fl_fss/c/fss_basic_list.c +++ b/level_1/fl_fss/c/fss_basic_list.c @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_1/fl_fss/c/fss_basic_list.h b/level_1/fl_fss/c/fss_basic_list.h index 20d0adbfb..21dc911d2 100644 --- a/level_1/fl_fss/c/fss_basic_list.h +++ b/level_1/fl_fss/c/fss_basic_list.h @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_1/fl_fss/c/fss_errors.h b/level_1/fl_fss/c/fss_errors.h index 79cadb781..30cf86aab 100644 --- a/level_1/fl_fss/c/fss_errors.h +++ b/level_1/fl_fss/c/fss_errors.h @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * diff --git a/level_1/fl_fss/c/fss_extended.c b/level_1/fl_fss/c/fss_extended.c index 2204f332d..b01f58b7b 100644 --- a/level_1/fl_fss/c/fss_extended.c +++ b/level_1/fl_fss/c/fss_extended.c @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_1/fl_fss/c/fss_extended.h b/level_1/fl_fss/c/fss_extended.h index 09eb6110a..d58ba7b08 100644 --- a/level_1/fl_fss/c/fss_extended.h +++ b/level_1/fl_fss/c/fss_extended.h @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_1/fl_fss/c/fss_macro.h b/level_1/fl_fss/c/fss_macro.h index 5c6f34354..e44ff59ee 100644 --- a/level_1/fl_fss/c/fss_macro.h +++ b/level_1/fl_fss/c/fss_macro.h @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_1/fl_fss/data/build/settings b/level_1/fl_fss/data/build/settings index 3798a1c9e..bc7b47f3b 100644 --- a/level_1/fl_fss/data/build/settings +++ b/level_1/fl_fss/data/build/settings @@ -5,7 +5,7 @@ project_level 1 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc -lf_memory -lf_file -lf_conversion diff --git a/level_1/fl_serialized/c/serialized.c b/level_1/fl_serialized/c/serialized.c index 84a601f4c..390988439 100644 --- a/level_1/fl_serialized/c/serialized.c +++ b/level_1/fl_serialized/c/serialized.c @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: Serialized - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_1/fl_serialized/c/serialized.h b/level_1/fl_serialized/c/serialized.h index 5a83b8ee4..efd405f1d 100644 --- a/level_1/fl_serialized/c/serialized.h +++ b/level_1/fl_serialized/c/serialized.h @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: Serialized - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_1/fl_serialized/data/build/settings b/level_1/fl_serialized/data/build/settings index 84ea78ead..65495a70b 100644 --- a/level_1/fl_serialized/data/build/settings +++ b/level_1/fl_serialized/data/build/settings @@ -5,7 +5,7 @@ project_level 1 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc diff --git a/level_1/fl_strings/c/strings.c b/level_1/fl_strings/c/strings.c index b6a101d03..c73403236 100644 --- a/level_1/fl_strings/c/strings.c +++ b/level_1/fl_strings/c/strings.c @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: Strings - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_1/fl_strings/c/strings.h b/level_1/fl_strings/c/strings.h index 0ba176ea6..f69472881 100644 --- a/level_1/fl_strings/c/strings.h +++ b/level_1/fl_strings/c/strings.h @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: Strings - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_1/fl_strings/data/build/settings b/level_1/fl_strings/data/build/settings index 88ead1c0c..8ca4cb397 100644 --- a/level_1/fl_strings/data/build/settings +++ b/level_1/fl_strings/data/build/settings @@ -5,7 +5,7 @@ project_level 1 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc -lf_memory diff --git a/level_2/fll_colors/c/colors.c b/level_2/fll_colors/c/colors.c index 623461fc4..ceb41519a 100644 --- a/level_2/fll_colors/c/colors.c +++ b/level_2/fll_colors/c/colors.c @@ -1,6 +1,6 @@ /* FLL - Level 2 * Project: Colors - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_2/fll_colors/c/colors.h b/level_2/fll_colors/c/colors.h index a8dbb8662..cf11c580d 100644 --- a/level_2/fll_colors/c/colors.h +++ b/level_2/fll_colors/c/colors.h @@ -1,6 +1,6 @@ /* FLL - Level 2 * Project: Colors - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_2/fll_colors/data/build/settings b/level_2/fll_colors/data/build/settings index fc7fae1eb..02fc5be1d 100644 --- a/level_2/fll_colors/data/build/settings +++ b/level_2/fll_colors/data/build/settings @@ -5,7 +5,7 @@ project_level 2 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc diff --git a/level_2/fll_execute/c/execute.c b/level_2/fll_execute/c/execute.c index a065ba7fb..100797055 100644 --- a/level_2/fll_execute/c/execute.c +++ b/level_2/fll_execute/c/execute.c @@ -1,6 +1,6 @@ /* FLL - Level 2 * Project: Execute - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_2/fll_execute/c/execute.h b/level_2/fll_execute/c/execute.h index e74a14ceb..382ccf1ac 100644 --- a/level_2/fll_execute/c/execute.h +++ b/level_2/fll_execute/c/execute.h @@ -1,6 +1,6 @@ /* FLL - Level 1 * Project: Execute - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_2/fll_execute/data/build/settings b/level_2/fll_execute/data/build/settings index 8a0803061..0ee02fe01 100644 --- a/level_2/fll_execute/data/build/settings +++ b/level_2/fll_execute/data/build/settings @@ -5,7 +5,7 @@ project_level 2 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc -lf_memory diff --git a/level_2/fll_fss/c/fss_basic.c b/level_2/fll_fss/c/fss_basic.c index dda2cd8db..74b9c6978 100644 --- a/level_2/fll_fss/c/fss_basic.c +++ b/level_2/fll_fss/c/fss_basic.c @@ -1,6 +1,6 @@ /* FLL - Level 2 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_2/fll_fss/c/fss_basic.h b/level_2/fll_fss/c/fss_basic.h index 94d9315d5..7d435a97e 100644 --- a/level_2/fll_fss/c/fss_basic.h +++ b/level_2/fll_fss/c/fss_basic.h @@ -1,6 +1,6 @@ /* FLL - Level 2 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_2/fll_fss/c/fss_basic_list.c b/level_2/fll_fss/c/fss_basic_list.c index 12d361188..530e947d7 100644 --- a/level_2/fll_fss/c/fss_basic_list.c +++ b/level_2/fll_fss/c/fss_basic_list.c @@ -1,6 +1,6 @@ /* FLL - Level 2 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_2/fll_fss/c/fss_basic_list.h b/level_2/fll_fss/c/fss_basic_list.h index 060704b62..283fcfac6 100644 --- a/level_2/fll_fss/c/fss_basic_list.h +++ b/level_2/fll_fss/c/fss_basic_list.h @@ -1,6 +1,6 @@ /* FLL - Level 2 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_2/fll_fss/c/fss_errors.c b/level_2/fll_fss/c/fss_errors.c index 0c7f03d34..dca6b2520 100644 --- a/level_2/fll_fss/c/fss_errors.c +++ b/level_2/fll_fss/c/fss_errors.c @@ -1,6 +1,6 @@ /* FLL - Level 2 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_2/fll_fss/c/fss_errors.h b/level_2/fll_fss/c/fss_errors.h index 12e3ecb16..f97d470b5 100644 --- a/level_2/fll_fss/c/fss_errors.h +++ b/level_2/fll_fss/c/fss_errors.h @@ -1,6 +1,6 @@ /* FLL - Level 2 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_2/fll_fss/c/fss_extended.c b/level_2/fll_fss/c/fss_extended.c index 6d8cfd872..dc3a96918 100644 --- a/level_2/fll_fss/c/fss_extended.c +++ b/level_2/fll_fss/c/fss_extended.c @@ -1,6 +1,6 @@ /* FLL - Level 2 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_2/fll_fss/c/fss_extended.h b/level_2/fll_fss/c/fss_extended.h index d30ea3ad7..9cf13da23 100644 --- a/level_2/fll_fss/c/fss_extended.h +++ b/level_2/fll_fss/c/fss_extended.h @@ -1,6 +1,6 @@ /* FLL - Level 2 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: diff --git a/level_2/fll_fss/data/build/settings b/level_2/fll_fss/data/build/settings index f4cd4acce..c2800a53f 100644 --- a/level_2/fll_fss/data/build/settings +++ b/level_2/fll_fss/data/build/settings @@ -5,7 +5,7 @@ project_level 2 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc -lf_memory -lf_file -lf_conversion -lfl_fss -lfl_errors diff --git a/level_3/firewall/c/firewall.c b/level_3/firewall/c/firewall.c index 2984a1d7c..0f1adb35f 100644 --- a/level_3/firewall/c/firewall.c +++ b/level_3/firewall/c/firewall.c @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: Firewall - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_3/firewall/c/firewall.h b/level_3/firewall/c/firewall.h index 6646e42e6..dd97a48f7 100644 --- a/level_3/firewall/c/firewall.h +++ b/level_3/firewall/c/firewall.h @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: Firewall - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: @@ -44,8 +44,8 @@ extern "C"{ #ifndef _di_firewall_version_ #define firewall_major_version "0" - #define firewall_minor_version "3" - #define firewall_micro_version "0" + #define firewall_minor_version "4" + #define firewall_micro_version "2" #define firewall_version firewall_major_version "." firewall_minor_version "." firewall_micro_version #endif // _di_firewall_version_ diff --git a/level_3/firewall/data/build/settings b/level_3/firewall/data/build/settings index 68527d08c..9c7219f5c 100644 --- a/level_3/firewall/data/build/settings +++ b/level_3/firewall/data/build/settings @@ -5,7 +5,7 @@ project_level 3 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc -lf_memory -lf_console -lf_conversion -lf_print -lf_file -lfl_fss -lfl_console -lfl_file -lfl_strings -lfl_colors -lfl_directory -lfll_execute -lfll_fss -lfll_colors -lf_pipe diff --git a/level_3/fss_basic_list_read/c/fss_basic_list_read.c b/level_3/fss_basic_list_read/c/fss_basic_list_read.c index 62d493946..1f4311679 100644 --- a/level_3/fss_basic_list_read/c/fss_basic_list_read.c +++ b/level_3/fss_basic_list_read/c/fss_basic_list_read.c @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_3/fss_basic_list_read/c/fss_basic_list_read.h b/level_3/fss_basic_list_read/c/fss_basic_list_read.h index 5dc9e4f07..7dd849224 100644 --- a/level_3/fss_basic_list_read/c/fss_basic_list_read.h +++ b/level_3/fss_basic_list_read/c/fss_basic_list_read.h @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: @@ -43,8 +43,8 @@ extern "C"{ #ifndef _di_fss_basic_list_read_version_ #define fss_basic_list_read_major_version "0" - #define fss_basic_list_read_minor_version "3" - #define fss_basic_list_read_micro_version "0" + #define fss_basic_list_read_minor_version "4" + #define fss_basic_list_read_micro_version "2" #define fss_basic_list_read_version fss_basic_list_read_major_version "." fss_basic_list_read_minor_version "." fss_basic_list_read_micro_version #endif // _di_fss_basic_list_read_version_ diff --git a/level_3/fss_basic_list_read/data/build/settings b/level_3/fss_basic_list_read/data/build/settings index 8ada4e78f..490787dcf 100644 --- a/level_3/fss_basic_list_read/data/build/settings +++ b/level_3/fss_basic_list_read/data/build/settings @@ -5,7 +5,7 @@ project_level 3 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc -lf_memory -lf_console -lf_conversion -lf_print -lf_file -lfl_fss -lfl_console -lfl_file -lfl_strings -lfl_colors -lfl_directory -lfll_execute -lfll_fss -lfll_colors -lf_pipe diff --git a/level_3/fss_basic_list_write/c/fss_basic_list_write.c b/level_3/fss_basic_list_write/c/fss_basic_list_write.c index 3c4d76415..27138f6dd 100644 --- a/level_3/fss_basic_list_write/c/fss_basic_list_write.c +++ b/level_3/fss_basic_list_write/c/fss_basic_list_write.c @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_3/fss_basic_list_write/c/fss_basic_list_write.h b/level_3/fss_basic_list_write/c/fss_basic_list_write.h index 2f0115036..b350d6f64 100644 --- a/level_3/fss_basic_list_write/c/fss_basic_list_write.h +++ b/level_3/fss_basic_list_write/c/fss_basic_list_write.h @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: @@ -37,8 +37,8 @@ extern "C"{ #ifndef _di_fss_basic_list_write_version_ #define fss_basic_list_write_major_version "0" - #define fss_basic_list_write_minor_version "3" - #define fss_basic_list_write_micro_version "0" + #define fss_basic_list_write_minor_version "4" + #define fss_basic_list_write_micro_version "2" #define fss_basic_list_write_version fss_basic_list_write_major_version "." fss_basic_list_write_minor_version "." fss_basic_list_write_micro_version #endif // _di_fss_basic_list_write_version_ diff --git a/level_3/fss_basic_list_write/data/build/settings b/level_3/fss_basic_list_write/data/build/settings index 7d243499c..90e37ae58 100644 --- a/level_3/fss_basic_list_write/data/build/settings +++ b/level_3/fss_basic_list_write/data/build/settings @@ -5,7 +5,7 @@ project_level 3 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc -lf_memory -lf_console -lfl_console -lf_conversion -lf_pipe -lf_print -lf_file -lfl_colors -lfll_colors -lfl_errors -lfl_fss -lfll_fss -lfl_file diff --git a/level_3/fss_basic_read/c/fss_basic_read.c b/level_3/fss_basic_read/c/fss_basic_read.c index 668cdaa74..cf3706816 100644 --- a/level_3/fss_basic_read/c/fss_basic_read.c +++ b/level_3/fss_basic_read/c/fss_basic_read.c @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_3/fss_basic_read/c/fss_basic_read.h b/level_3/fss_basic_read/c/fss_basic_read.h index eb5cec396..32970d044 100644 --- a/level_3/fss_basic_read/c/fss_basic_read.h +++ b/level_3/fss_basic_read/c/fss_basic_read.h @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: @@ -43,8 +43,8 @@ extern "C"{ #ifndef _di_fss_basic_read_version_ #define fss_basic_read_major_version "0" - #define fss_basic_read_minor_version "3" - #define fss_basic_read_micro_version "0" + #define fss_basic_read_minor_version "4" + #define fss_basic_read_micro_version "2" #define fss_basic_read_version fss_basic_read_major_version "." fss_basic_read_minor_version "." fss_basic_read_micro_version #endif // _di_fss_basic_read_version_ diff --git a/level_3/fss_basic_read/data/build/settings b/level_3/fss_basic_read/data/build/settings index 83e21ef01..6e333ee46 100644 --- a/level_3/fss_basic_read/data/build/settings +++ b/level_3/fss_basic_read/data/build/settings @@ -5,7 +5,7 @@ project_level 3 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc -lf_memory -lf_console -lf_conversion -lf_print -lf_file -lfl_fss -lfl_console -lfl_file -lfl_strings -lfl_colors -lfl_directory -lfll_execute -lfll_fss -lfll_colors -lf_pipe diff --git a/level_3/fss_basic_write/c/fss_basic_write.c b/level_3/fss_basic_write/c/fss_basic_write.c index 009db06cf..6dd9bc1ae 100644 --- a/level_3/fss_basic_write/c/fss_basic_write.c +++ b/level_3/fss_basic_write/c/fss_basic_write.c @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_3/fss_basic_write/c/fss_basic_write.h b/level_3/fss_basic_write/c/fss_basic_write.h index a3f1e4ff7..05e5ef10a 100644 --- a/level_3/fss_basic_write/c/fss_basic_write.h +++ b/level_3/fss_basic_write/c/fss_basic_write.h @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: @@ -37,8 +37,8 @@ extern "C"{ #ifndef _di_fss_basic_write_version_ #define fss_basic_write_major_version "0" - #define fss_basic_write_minor_version "3" - #define fss_basic_write_micro_version "0" + #define fss_basic_write_minor_version "4" + #define fss_basic_write_micro_version "2" #define fss_basic_write_version fss_basic_write_major_version "." fss_basic_write_minor_version "." fss_basic_write_micro_version #endif // _di_fss_basic_write_version_ diff --git a/level_3/fss_basic_write/data/build/settings b/level_3/fss_basic_write/data/build/settings index 8946c07eb..093ab89a4 100644 --- a/level_3/fss_basic_write/data/build/settings +++ b/level_3/fss_basic_write/data/build/settings @@ -5,7 +5,7 @@ project_level 3 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc -lf_memory -lf_console -lfl_console -lf_conversion -lf_pipe -lf_print -lf_file -lfl_colors -lfll_colors -lfl_errors -lfl_fss -lfll_fss -lfl_file diff --git a/level_3/fss_extended_read/c/fss_extended_read.c b/level_3/fss_extended_read/c/fss_extended_read.c index fd022d183..c5e866265 100644 --- a/level_3/fss_extended_read/c/fss_extended_read.c +++ b/level_3/fss_extended_read/c/fss_extended_read.c @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_3/fss_extended_read/c/fss_extended_read.h b/level_3/fss_extended_read/c/fss_extended_read.h index 844fc98c3..da8bb92a9 100644 --- a/level_3/fss_extended_read/c/fss_extended_read.h +++ b/level_3/fss_extended_read/c/fss_extended_read.h @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: @@ -43,8 +43,8 @@ extern "C"{ #ifndef _di_fss_extended_read_version_ #define fss_extended_read_major_version "0" - #define fss_extended_read_minor_version "3" - #define fss_extended_read_micro_version "0" + #define fss_extended_read_minor_version "4" + #define fss_extended_read_micro_version "2" #define fss_extended_read_version fss_extended_read_major_version "." fss_extended_read_minor_version "." fss_extended_read_micro_version #endif // _di_fss_extended_read_version_ diff --git a/level_3/fss_extended_read/data/build/settings b/level_3/fss_extended_read/data/build/settings index 2272de7d0..db7d2da2c 100644 --- a/level_3/fss_extended_read/data/build/settings +++ b/level_3/fss_extended_read/data/build/settings @@ -5,7 +5,7 @@ project_level 3 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc -lf_memory -lf_console -lf_conversion -lf_print -lf_file -lfl_fss -lfl_console -lfl_file -lfl_strings -lfl_colors -lfl_directory -lfll_execute -lfll_fss -lfll_colors -lf_pipe diff --git a/level_3/fss_extended_write/c/fss_extended_write.c b/level_3/fss_extended_write/c/fss_extended_write.c index 8a2f0c29c..8e0dd3804 100644 --- a/level_3/fss_extended_write/c/fss_extended_write.c +++ b/level_3/fss_extended_write/c/fss_extended_write.c @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_3/fss_extended_write/c/fss_extended_write.h b/level_3/fss_extended_write/c/fss_extended_write.h index 29c24d697..b5eec6edd 100644 --- a/level_3/fss_extended_write/c/fss_extended_write.h +++ b/level_3/fss_extended_write/c/fss_extended_write.h @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: @@ -37,8 +37,8 @@ extern "C"{ #ifndef _di_fss_extended_write_version_ #define fss_extended_write_major_version "0" - #define fss_extended_write_minor_version "3" - #define fss_extended_write_micro_version "0" + #define fss_extended_write_minor_version "4" + #define fss_extended_write_micro_version "2" #define fss_extended_write_version fss_extended_write_major_version "." fss_extended_write_minor_version "." fss_extended_write_micro_version #endif // _di_fss_extended_write_version_ diff --git a/level_3/fss_extended_write/data/build/settings b/level_3/fss_extended_write/data/build/settings index 9062b9be1..500940c9e 100644 --- a/level_3/fss_extended_write/data/build/settings +++ b/level_3/fss_extended_write/data/build/settings @@ -5,7 +5,7 @@ project_level 3 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc -lf_memory -lf_console -lfl_console -lf_conversion -lf_pipe -lf_print -lf_file -lfl_colors -lfll_colors -lfl_errors -lfl_fss -lfll_fss -lfl_file diff --git a/level_3/fss_return_code/c/fss_return_code.c b/level_3/fss_return_code/c/fss_return_code.c index f3e882369..2f4a7e2d4 100644 --- a/level_3/fss_return_code/c/fss_return_code.c +++ b/level_3/fss_return_code/c/fss_return_code.c @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_3/fss_return_code/c/fss_return_code.h b/level_3/fss_return_code/c/fss_return_code.h index 51ec7ea61..a76e2a64b 100644 --- a/level_3/fss_return_code/c/fss_return_code.h +++ b/level_3/fss_return_code/c/fss_return_code.h @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: @@ -37,8 +37,8 @@ extern "C"{ #ifndef _di_fss_return_code_version_ #define fss_return_code_major_version "0" - #define fss_return_code_minor_version "3" - #define fss_return_code_micro_version "0" + #define fss_return_code_minor_version "4" + #define fss_return_code_micro_version "2" #define fss_return_code_version fss_return_code_major_version "." fss_return_code_minor_version "." fss_return_code_micro_version #endif // _di_fss_return_code_version_ diff --git a/level_3/fss_return_code/data/build/settings b/level_3/fss_return_code/data/build/settings index a5c950f28..481a8752c 100644 --- a/level_3/fss_return_code/data/build/settings +++ b/level_3/fss_return_code/data/build/settings @@ -5,7 +5,7 @@ project_level 3 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc -lf_memory -lf_console -lfl_console -lf_conversion -lf_pipe -lf_print -lfl_colors -lfll_colors -lfl_errors -lfl_fss -lfll_fss diff --git a/level_3/return_code/c/return_code.c b/level_3/return_code/c/return_code.c index ed70dd123..f95d060d6 100644 --- a/level_3/return_code/c/return_code.c +++ b/level_3/return_code/c/return_code.c @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day */ diff --git a/level_3/return_code/c/return_code.h b/level_3/return_code/c/return_code.h index b80894fee..eceeb3dda 100644 --- a/level_3/return_code/c/return_code.h +++ b/level_3/return_code/c/return_code.h @@ -1,6 +1,6 @@ /* FLL - Level 3 * Project: FSS - * Version: 0.4.x + * Version: 0.4.2 * Licenses: lgplv2.1 * Programmers: Kevin Day * Documentation: @@ -36,8 +36,8 @@ extern "C"{ #ifndef _di_return_code_version_ #define return_code_major_version "0" - #define return_code_minor_version "3" - #define return_code_micro_version "0" + #define return_code_minor_version "4" + #define return_code_micro_version "2" #define return_code_version return_code_major_version "." return_code_minor_version "." return_code_micro_version #endif // _di_return_code_version_ diff --git a/level_3/return_code/data/build/settings b/level_3/return_code/data/build/settings index f553dc8c8..ccfc7818a 100644 --- a/level_3/return_code/data/build/settings +++ b/level_3/return_code/data/build/settings @@ -5,7 +5,7 @@ project_level 3 version_major 0 version_minor 4 -version_micro 0 +version_micro 2 build_compiler gcc build_libraries -lc -lf_memory -lf_console -lfl_console -lf_conversion -lf_pipe -lf_print -lfl_colors -lfll_colors -lfl_errors