You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASE.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,21 @@ Release Notes for Timmy 1.1.0
2
2
=============================
3
3
4
4
What is Timmy?
5
-
----------------------
5
+
--------------
6
6
Timmy is a Pascal unit for creating chat bots. It provides the `TTimmy` object, which is a data type that you can assign your variables to to make bots. Once that is done, you can start adding keywords for questions, and get the bot answers to the end user's questions.
7
7
8
8
What's in this release?
9
9
----------------------------
10
10
This stable release (1.1.0) provides the `TTimmy` object with 3 ways to add keywords clues, and 4 ways to remove keywords clues, along with `TStrArray` - Array of String, and several helper functions like `StrSplit` and `StrTrim` that aren't part of the `TTimmy` object. See the included README file to know all what this Timmy release offers.
11
11
12
+
Change log (from 1.0.0 to 1.1.0)
13
+
--------------------------------
14
+
- Overload two more `TTimmy.Remove()`
15
+
- Add examples (see them in the `examples` folder)
16
+
- Put Release Notes in RELEASE.md
17
+
12
18
What new features will be in the next _major_ release?
> **Disclaimer**: We do not know exactly what will the next major release offers, we are just expecting.
15
21
16
22
This release (1.1.0) provides primitive functions that you can do just about anything with it. However, there are a few inconveniences. For example, a typical "What is" question may vary, like "What is GitHub?", "What is an apple?" and "What is FooBar?". To handle that, you may have to add (using `TTimmy.Add()`) multiple times, each time for a different object.
@@ -58,7 +64,7 @@ End.
58
64
It is inconvenient (and somewhat ugly) to do that, however. In our next major release, we seek to offer custom functions/procedures: Developers using this library can throw `TTimmy` their custom function (or procedure) and the bot will execute that function (or procedure). Timmy won't be a Pascal unit for _chat_ bots anymore, then.
0 commit comments