From 6728661dd31d910c13de05d7db24200089cc9f93 Mon Sep 17 00:00:00 2001 From: YueZhang-studyuse Date: Wed, 23 Aug 2023 17:04:16 +1000 Subject: [PATCH 1/2] regard t as obstacle --- src/Grid.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Grid.cpp b/src/Grid.cpp index dfc4fbd8..b78abb18 100644 --- a/src/Grid.cpp +++ b/src/Grid.cpp @@ -57,10 +57,10 @@ Grid::Grid(string fname) for (int j = 0; j < cols; j++) { int id = cols * i + j; - if (line[j] != '@') // free space - map[id] = 0; - else // obstacle + if (line[j] == '@' || line[j] == 'T') // obstacle map[id] = 1; + else // free space + map[id] = 0; } } From 896635fb9a700035644356e3d3235e2018006b81 Mon Sep 17 00:00:00 2001 From: nobodyczcz Date: Tue, 29 Aug 2023 07:43:03 +1000 Subject: [PATCH 2/2] patch on the missing parsing 'T' symbol commit --- Changelog.md | 6 ++++++ version.txt | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 6f91c6dc..dcfada4e 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,11 @@ # Changelog +Version 1.1.2 - 2023-08-29 +---------------------------- +Fixed: +- Parsing 'T' symbol commit missing in the git history. + + Version 1.1.1 - 2023-08-27 ---------------------------- Added: diff --git a/version.txt b/version.txt index 8cfbc905..8428158d 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.1.1 \ No newline at end of file +1.1.2 \ No newline at end of file