{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":293700382,"defaultBranch":"github","name":"fll","ownerLogin":"thekevinday","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2020-09-08T04:25:57.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/24626560?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1716645532.0","currentOid":""},"activityList":{"items":[{"before":"ec692283fcc2500a9ed7cb151376ec0ba60c3fc3","after":"900bd012201ddc42e228ebdebb78b80cba1623fa","ref":"refs/heads/0.6","pushedAt":"2024-05-29T23:43:00.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Bugfix: The help code is being used instead of the light code.\n\nThe wrong enumeration is being used.\nFix some out of order comments as well.","shortMessageHtmlLink":"Bugfix: The help code is being used instead of the light code."}},{"before":"05e440a2eac351c873340d02b6ea4c496b98ea8f","after":"ec692283fcc2500a9ed7cb151376ec0ba60c3fc3","ref":"refs/heads/0.6","pushedAt":"2024-05-27T01:00:44.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Update: Next micro version (0.6.11).","shortMessageHtmlLink":"Update: Next micro version (0.6.11)."}},{"before":"c7807d3d855763b511965e81b7ecb3be55938932","after":"92904f02670b2becaed765acdbc8013df0300a01","ref":"refs/heads/github","pushedAt":"2024-05-25T15:18:28.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Add README.md, LICENSE, and Github Action files.","shortMessageHtmlLink":"Add README.md, LICENSE, and Github Action files."}},{"before":"989ba1d51c11cd778d74b6763cb57e409e0ad376","after":"de4f9160e704a9c738662e7be8d880121eb6204a","ref":"refs/heads/github-0.6","pushedAt":"2024-05-25T15:16:48.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Github: Add test production 0.6 action.\n\nThis is intended to be used on the `github-0.6` branch.","shortMessageHtmlLink":"Github: Add test production 0.6 action."}},{"before":"36e86fa99b502384b69b7d11d67bb6db5ad1de52","after":"aa69f191a7aa7d251d3b3d99dc4a012e85995d46","ref":"refs/heads/development","pushedAt":"2024-05-23T04:27:59.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Update: Remove the ++first and ++last parameters and relating logic.\n\nI have used this for a while and have decided these are not worth the effort.\nThe addition is very nice but the additional code and logic is just extra maintenance and complexity for very little gain.","shortMessageHtmlLink":"Update: Remove the ++first and ++last parameters and relating logic."}},{"before":"f180e1c1522081c3bd071012b24688f53bedbde4","after":"05e440a2eac351c873340d02b6ea4c496b98ea8f","ref":"refs/heads/0.6","pushedAt":"2024-05-23T04:27:34.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Cleanup: Remove first/last backported printing code.\n\nThe first/last code was backported in the past to make the scripts more forward-compatible.\n\nI have decided to remove the first/last printing feature after significant testing and review.\nThe 0.7 development and later no longer has the first/last and so the backported code is no longer needed.","shortMessageHtmlLink":"Cleanup: Remove first/last backported printing code."}},{"before":"9c380afe8d3ed557b771ddcd9777cd6c66e67212","after":"36e86fa99b502384b69b7d11d67bb6db5ad1de52","ref":"refs/heads/development","pushedAt":"2024-05-23T01:45:54.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Cleanup: Fix grammar in comment.","shortMessageHtmlLink":"Cleanup: Fix grammar in comment."}},{"before":"8e4d0eca72b5a528f5b2707f2a16e70b9332e8f7","after":"f180e1c1522081c3bd071012b24688f53bedbde4","ref":"refs/heads/0.6","pushedAt":"2024-05-23T01:45:21.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Bugfix: A lone quote inside quotes should not be escaped for FSS Basic and Extended.\n\nThe command and results:\n # fss_extended_write -oc \"'\" '\"' -oc '\"' \"'\" -oc ' `' \"\\` \" -oc \"'\" \"'\" | fss_extended_read -oc\n ' \\\"\n \\\" '\n ` `\n ' '\n\nIs incorrect.\nThe correct results should be:\n # fss_extended_write -oc \"'\" '\"' -oc '\"' \"'\" -oc ' `' \"\\` \" -oc \"'\" \"'\" | fss_extended_read -oc\n ' \"\n \" '\n ` `\n ' '\n\nThe problem is that in the case where the quote is already within a quoted string then it should not be escaped.\nThis only applies for the quote that would not be a valid closing quote.","shortMessageHtmlLink":"Bugfix: A lone quote inside quotes should not be escaped for FSS Basi…"}},{"before":"da9931d4d91a731c89af637e0cbc3164309b8a28","after":"9c380afe8d3ed557b771ddcd9777cd6c66e67212","ref":"refs/heads/development","pushedAt":"2024-05-22T12:04:03.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Cleanup: Warning in unit f_utf tests under GCC 14 regarding type.\n\nThe string comparison of an integer based value is correct.\nAdd an explicit cast to make this intent clear and to silence the warnings.","shortMessageHtmlLink":"Cleanup: Warning in unit f_utf tests under GCC 14 regarding type."}},{"before":"0c6323e97cf1e4e577d63138cbfc047a09db0d32","after":"8e4d0eca72b5a528f5b2707f2a16e70b9332e8f7","ref":"refs/heads/0.6","pushedAt":"2024-05-22T02:40:34.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Cleanup: Warning in unit f_utf tests under GCC 14 regarding type.\n\nThe string comparison of an integer based value is correct.\nAdd an explicit cast to make this intent clear and to silence the warnings.","shortMessageHtmlLink":"Cleanup: Warning in unit f_utf tests under GCC 14 regarding type."}},{"before":"1f6925c208d70c0bca0b6c3588d032addc79a5c4","after":"0c6323e97cf1e4e577d63138cbfc047a09db0d32","ref":"refs/heads/0.6","pushedAt":"2024-05-22T00:37:09.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Update: Man pages date in preparation for 0.6.10 release.","shortMessageHtmlLink":"Update: Man pages date in preparation for 0.6.10 release."}},{"before":"60160a5ee2592682d94eb0e0fd517be1a700debb","after":"da9931d4d91a731c89af637e0cbc3164309b8a28","ref":"refs/heads/development","pushedAt":"2024-05-09T02:14:01.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Update: Build files to have the correct build modes.\n\nThis adds missing build modes and makes sure the correct build modes for special builds (like the level builds) is correct.","shortMessageHtmlLink":"Update: Build files to have the correct build modes."}},{"before":"ec2e8030bff1b73de8e92470a3cf99625fc7ca00","after":"1f6925c208d70c0bca0b6c3588d032addc79a5c4","ref":"refs/heads/0.6","pushedAt":"2024-05-09T02:12:42.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Security: Potential buffer overflow on 0 length array.\n\nThe length_name_item variable can potentially be zero.\nThe assignment of \"name_item[length_name_item] = 0;\" will then result in an assignment on a 0 length array.\n\nThis issue has been exposed via GCC's -fanalyzer.","shortMessageHtmlLink":"Security: Potential buffer overflow on 0 length array."}},{"before":"3c89d990f7afcf3b8ff5eeffe1b12191b918fb70","after":"60160a5ee2592682d94eb0e0fd517be1a700debb","ref":"refs/heads/development","pushedAt":"2024-04-27T06:01:09.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Update: Add \"const\" to the pointer in some signal functions.\n\nThese are passed directly to the signal functions that do not have \"const\" qualifier.\nThis needs extensive testing.","shortMessageHtmlLink":"Update: Add \"const\" to the pointer in some signal functions."}},{"before":"ef3355d0288dd99be2dddf45869fd64b40643cef","after":"3c89d990f7afcf3b8ff5eeffe1b12191b918fb70","ref":"refs/heads/development","pushedAt":"2024-04-26T03:45:52.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Feature: Add f_time_sleep_spec() for providing nanosleep().","shortMessageHtmlLink":"Feature: Add f_time_sleep_spec() for providing nanosleep()."}},{"before":"9d8835b60db27f2803bf61b8682c8ed7a5fd046d","after":"ef3355d0288dd99be2dddf45869fd64b40643cef","ref":"refs/heads/development","pushedAt":"2024-04-21T03:59:05.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Feature: Add pid_t array types, adding appropriate unit tests.","shortMessageHtmlLink":"Feature: Add pid_t array types, adding appropriate unit tests."}},{"before":"d0ff9253deb5e5250746f273b3031c72bff72a95","after":"9d8835b60db27f2803bf61b8682c8ed7a5fd046d","ref":"refs/heads/development","pushedAt":"2024-04-20T04:39:33.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Update: Add additional time types, refactor f_time_spec and similar, and rebuild stand alone build configs.\n\nThe f_time_spec_t is not the same as \"struct timespec\".\nAvoid confusion by renaming it to f_time_simple_t.\nrename f_date_spec_t to f_date_simple_t for the same reason.\n\nAdd additional types and now that f_time_spec_t is available, create f_time_spec_t as a typedef of \"struct timespec\".\n\nUpdate the stand alone build scripts with all of these changes and some changes from previous commits.","shortMessageHtmlLink":"Update: Add additional time types, refactor f_time_spec and similar, …"}},{"before":"f0eb973b65ccd124f315c5ff9486bf9a4ea0fe89","after":"ec2e8030bff1b73de8e92470a3cf99625fc7ca00","ref":"refs/heads/0.6","pushedAt":"2024-04-20T03:45:52.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Cleanup: Build settings files, use alphabetic ordering in more places.\n\nAlso add a missing space where \"flags-test-O0\" should instead be \"flags-test -O0\".","shortMessageHtmlLink":"Cleanup: Build settings files, use alphabetic ordering in more places."}},{"before":"1184ef49ae59d002b3977a82aaf54631221fef3d","after":"d0ff9253deb5e5250746f273b3031c72bff72a95","ref":"refs/heads/development","pushedAt":"2024-04-19T05:07:05.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Cleanup: Build settings files, use alphabetic ordering in more places.","shortMessageHtmlLink":"Cleanup: Build settings files, use alphabetic ordering in more places."}},{"before":"622be586442261be4c98a0df78229163d763da6f","after":"1184ef49ae59d002b3977a82aaf54631221fef3d","ref":"refs/heads/development","pushedAt":"2024-04-15T04:10:13.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Update: Add experimental ctags generation and ctags file.\n\nThis is used by projects like geany.\nUnfortunately, the code is terrible and the documentation is like rotten eggs.\nThey seem to somehow put hard-coded paths in the ctag files which makes absolute no sense.\nThen, the geany project provides completely different ctag files that do not have this path nonsense.\nThe geany documentation does not relate to their actual ctag files and the ones provided by their example.\nThe Universal-ctags documentation, while having a lot of words, is misleading, awkward, and doesn't even describe how to get rid of these paths nor how to omit the paths.\nFollowing the parts that does seem to read as if it means removing the path does absolutely not this.\nThe geany does not even import this file properly, despite the command coming directly from geany's documentation.\n\nUsing geany to generate this produces better results but also includes a lot of other junk that is unwanted.\nIt also includes the file paths.\n\nHaving the file paths makes these generated ctag files completely useless as it requires some other person to have the exact same absolute file path structure.\nFor now, attempt to strip out the absolute path using a sed command.","shortMessageHtmlLink":"Update: Add experimental ctags generation and ctags file."}},{"before":"8d36ef4a077fa17c4054076ead4ea3e668ee7b0f","after":"f0eb973b65ccd124f315c5ff9486bf9a4ea0fe89","ref":"refs/heads/0.6","pushedAt":"2024-04-15T04:09:27.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Update: Add experimental ctags generation and ctags file.\n\nThis is used by projects like geany.\nUnfortunately, the code is terrible and the documentation is like rotten eggs.\nThey seem to somehow put hard-coded paths in the ctag files which makes absolute no sense.\nThen, the geany project provides completely different ctag files that do not have this path nonsense.\nThe geany documentation does not relate to their actual ctag files and the ones provided by their example.\nThe Universal-ctags documentation, while having a lot of words, is misleading, awkward, and doesn't even describe how to get rid of these paths nor how to omit the paths.\nFollowing the parts that does seem to read as if it means removing the path does absolutely not this.\nThe geany does not even import this file properly, despite the command coming directly from geany's documentation.\n\nUsing geany to generate this produces better results but also includes a lot of other junk that is unwanted.\nIt also includes the file paths.\n\nHaving the file paths makes these generated ctag files completely useless as it requires some other person to have the exact same absolute file path structure.\nFor now, attempt to strip out the absolute path using a sed command.","shortMessageHtmlLink":"Update: Add experimental ctags generation and ctags file."}},{"before":"6fa1ec1f961ba4bf134d6db4e6ee70f56756c5ab","after":"622be586442261be4c98a0df78229163d763da6f","ref":"refs/heads/development","pushedAt":"2024-04-14T14:00:41.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Update: Follow up changes for adding sockaddr_storage use in the socket type.\n\nThe commit 6fa1ec1f961ba4bf134d6db4e6ee70f56756c5ab left out a few files.\nI also forgot to add the \"_e\" so that I have \"f_socket_address_form_storage_e\".\n\nAdd use of this in the unit test.\nRemove seemingly duplicate unit tests.\nMaybe I was trying to do a case of \"bind()\" returning \"false\", but the code does not do that in the duplicate unit tests.\nRemove the duplicate unit tests as I can always add the \"false\" case in the future if I so choose to.","shortMessageHtmlLink":"Update: Follow up changes for adding sockaddr_storage use in the sock…"}},{"before":"5edbe4107f9c9eef62d32d1beda4d929e7ae6515","after":"6fa1ec1f961ba4bf134d6db4e6ee70f56756c5ab","ref":"refs/heads/development","pushedAt":"2024-04-13T21:29:41.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Update: Add sockaddr_storage use in the socket type.\n\nAlso fix the alphabetic order of \"generic\" in the documentation comments.","shortMessageHtmlLink":"Update: Add sockaddr_storage use in the socket type."}},{"before":"0e1b1cbb79804ac73c7e030eec6de996afe8f797","after":"5edbe4107f9c9eef62d32d1beda4d929e7ae6515","ref":"refs/heads/development","pushedAt":"2024-04-10T03:17:26.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Update: Have fll_program_print_copyright() use year and author as a parameter.\n\nThe year and author may be more subject to change.\nRelocate this into a global static string and provide this is a parameter to fll_program_print_copyright().\nThe fll_program_print_copyright() is only intended for FLL projects.\n\nAdditional programs that I write, like controller, may also depend on this.\nThese may be operated on at a different time and thus may require the year or author to be updated.\n\nAny more changes than this and it is probably a better idea to just implement ones own copyright print function.","shortMessageHtmlLink":"Update: Have fll_program_print_copyright() use year and author as a p…"}},{"before":"53f22a755badbe4ac9cc7e3ca59a4566d551c63c","after":"8d36ef4a077fa17c4054076ead4ea3e668ee7b0f","ref":"refs/heads/0.6","pushedAt":"2024-04-10T03:14:18.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Cleanup: The OSLv1 license usage, fixing license reference.\n\nThe license should read \"open-standard-license-1.0-or-later\" rather than \"open-standard-license-1.0\".\nThe license file itself is already labelled this.\nThese files simply were not correctly updated.","shortMessageHtmlLink":"Cleanup: The OSLv1 license usage, fixing license reference."}},{"before":"86ae55c13c8aa908d5db278c5ded52ddd653cd27","after":"53f22a755badbe4ac9cc7e3ca59a4566d551c63c","ref":"refs/heads/0.6","pushedAt":"2024-04-08T02:50:08.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Update: Add support for disable pthread mutex prioceiling for systems that do not support it.\n\nThe pthread mutex prioceiling and pthread mutex attr prioceiling functions are not supported on PostmarketOS for Pinephone.\nThe PostmarketOS for Pinephone is an A64 Arm system based on the Alpine Linux distribution.","shortMessageHtmlLink":"Update: Add support for disable pthread mutex prioceiling for systems…"}},{"before":"66f43e90823f75ba7261de2abaf0e809b47a2c65","after":"0e1b1cbb79804ac73c7e030eec6de996afe8f797","ref":"refs/heads/development","pushedAt":"2024-04-08T02:48:35.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Update: Add support for disable pthread mutex attr prioceiling for systems that do not support it.\n\nThis is a follow up to the commit 66f43e90823f75ba7261de2abaf0e809b47a2c65.","shortMessageHtmlLink":"Update: Add support for disable pthread mutex attr prioceiling for sy…"}},{"before":"279193b2b096c7fe2efe8cac7b2961b962275dbb","after":"66f43e90823f75ba7261de2abaf0e809b47a2c65","ref":"refs/heads/development","pushedAt":"2024-04-08T02:15:28.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Update: Add support for disable pthread mutex prioceiling for systems that do not support it.\n\nThe pthread mutex prioceiling functions are not supported on PostmarketOS for Pinephone.\nThe PostmarketOS for Pinephone is an A64 Arm system based on the Alpine Linux distribution.","shortMessageHtmlLink":"Update: Add support for disable pthread mutex prioceiling for systems…"}},{"before":"c84efaa61bdb87fd7e601e11047a000314480274","after":"279193b2b096c7fe2efe8cac7b2961b962275dbb","ref":"refs/heads/development","pushedAt":"2024-04-07T15:47:22.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Update: Remove -D_FORTIFY_SOURCE because several systems automatically add this and the screen is spammed with warnings.","shortMessageHtmlLink":"Update: Remove -D_FORTIFY_SOURCE because several systems automaticall…"}},{"before":"4d2f5402bd28b1f380fa206bd4b000454c4d794d","after":"86ae55c13c8aa908d5db278c5ded52ddd653cd27","ref":"refs/heads/0.6","pushedAt":"2024-04-07T15:46:04.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"thekevinday","name":"Kevin Day","path":"/thekevinday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24626560?s=80&v=4"},"commit":{"message":"Update: Remove -D_FORTIFY_SOURCE because several systems automatically add this and the screen is spammed with warnings.","shortMessageHtmlLink":"Update: Remove -D_FORTIFY_SOURCE because several systems automaticall…"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEV3hpjQA","startCursor":null,"endCursor":null}},"title":"Activity · thekevinday/fll"}