Skip to content

Commit

Permalink
Bumped version to 1.1.0; fixed ToDo check for file saving when it is …
Browse files Browse the repository at this point in the history
…only 1 line.
  • Loading branch information
JoeStrout committed Jun 18, 2022
1 parent 157cdc5 commit 5c8901f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion M1/M1API.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static void Init(Shell shell) {
// language host info

HostInfo.name = "Farmtronics";
HostInfo.version = 1.09;
HostInfo.version = 1.10;
HostInfo.info = "https://github.com/JoeStrout/Farmtronics/";

Intrinsic f;
Expand Down
2 changes: 1 addition & 1 deletion M1/ToDoManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public static void NotePrintOutput(string s) {
MarkTaskDone(Task.helloWorld);
} else if (s.StartsWith("Editing: ")) {
MarkTaskDone(Task.editProgram);
} else if (s.Contains(" lines saved to ")) {
} else if (s.Contains(" lines saved to ") || s.Contains(" line saved to ")) {
MarkTaskDone(Task.saveProgram);
}

Expand Down
2 changes: 1 addition & 1 deletion M1/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"Name": "Farmtronics",
"Author": "Joe Strout",
"Version": "1.0.9",
"Version": "1.1.0",
"Description": "Adds a \"home computer\" and programmable bots!",
"UniqueID": "strout.farmtronics",
"EntryDll": "Farmtronics.dll",
Expand Down

0 comments on commit 5c8901f

Please sign in to comment.