-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCHANGELOG
31 lines (27 loc) · 1.08 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[0.0.6]
- Sieve::Conditions => Parse new types and spliter more faster without regex
- Examples:
# header :contains "Subject" "lala"
# not header :contains "Subject" "popo"
# not exists "Subject"
# exists "Subject"
# header :count "ge" :comparator "i;ascii-numeric" "Subject" "1"
# header :count "gt" :comparator "i;ascii-numeric" "Subject" "3"
# header :count "lt" :comparator "i;ascii-numeric" "Subject" "5"
# header :count "eq" :comparator "i;ascii-numeric" "Subject" "7"
# header :value "gt" :comparator "i;ascii-numeric" "Subject" "9"
# header :value "eq" :comparator "i;ascii-numeric" "Subject" "11"
[0.0.4]
- AutoRequire on Filterset enable by default
- ajust in guard for tests
- filter type default
- new methods for filter and filterset
[0.0.3]
- Fix deploy
[0.0.2]
- New functions of filterset (add_filter, add_require);
- Parser of Vacation/Autoreplay actions with other actions;
- Changes on create object of (Filter,Vacation,Condition), use Object.new(text:"text_of_sieve")
- Docs
[0.0.1]
- Parse of filters with a "IF" condition;