Browse code

Add missing date to CHANGELOG

John Hawthorn authored on 27/07/2025 07:00:07
Showing 1 changed files
... ...
@@ -1,4 +1,4 @@
1
-## 1.1 (Unreleased)
1
+## 1.1 (2025-07-12)
2 2
 
3 3
 Features:
4 4
 
Browse code

Version 1.1

John Hawthorn authored on 12/07/2025 06:54:23
Showing 1 changed files
... ...
@@ -1,3 +1,15 @@
1
+## 1.1 (Unreleased)
2
+
3
+Features:
4
+
5
+  - Add `-i`/`--show-info` to display selection information
6
+  - Add `-0` to use null as input delimiter
7
+  - Support Ctrl-G to cancel/exit
8
+
9
+Bugfixes:
10
+
11
+  - Avoid terminal flicker with large outputs
12
+
1 13
 ## 1.0 (2018-09-23)
2 14
 
3 15
 Features:
Browse code

Version 1.0

John Hawthorn authored on 23/09/2018 21:17:22
Showing 1 changed files
... ...
@@ -1,4 +1,4 @@
1
-## 1.0 (Unreleased)
1
+## 1.0 (2018-09-23)
2 2
 
3 3
 Features:
4 4
 
Browse code

Prepare CHANGELOG for 1.0

John Hawthorn authored on 13/09/2018 07:02:11
Showing 1 changed files
... ...
@@ -1,3 +1,17 @@
1
+## 1.0 (Unreleased)
2
+
3
+Features:
4
+
5
+  - Support UTF-8
6
+  - Support readline-like editing
7
+  - Quit on Esc
8
+  - Redraw on terminal resize
9
+  - Bracketed paste escapes are ignored
10
+
11
+Performance:
12
+
13
+  - Initialize tty interface before reading stdin
14
+
1 15
 ## 0.9 (2017-04-17)
2 16
 
3 17
 Features:
Browse code

Version 0.9

John Hawthorn authored on 17/04/2017 07:55:42
Showing 1 changed files
... ...
@@ -1,4 +1,4 @@
1
-## 0.9 (unreleased)
1
+## 0.9 (2017-04-17)
2 2
 
3 3
 Features:
4 4
 
Browse code

Update CHANGELOG

John Hawthorn authored on 17/04/2017 06:50:51
Showing 1 changed files
... ...
@@ -9,6 +9,13 @@ Performance:
9 9
   - Use threads to parallelize sorting
10 10
   - Improve parallelism of searching and scoring
11 11
 
12
+Internal:
13
+
14
+  - Fix test suite on i386
15
+  - Replace test suite with greatest
16
+  - Add property tests
17
+  - Add acceptance tests
18
+
12 19
 ## 0.8 (2017-01-01)
13 20
 
14 21
 Bugfixes:
Browse code

Update changelog

John Hawthorn authored on 27/01/2017 06:11:39
Showing 1 changed files
... ...
@@ -1,3 +1,14 @@
1
+## 0.9 (unreleased)
2
+
3
+Features:
4
+
5
+  - Support Ctrl-k and Ctrl-j for movement
6
+
7
+Performance:
8
+
9
+  - Use threads to parallelize sorting
10
+  - Improve parallelism of searching and scoring
11
+
1 12
 ## 0.8 (2017-01-01)
2 13
 
3 14
 Bugfixes:
Browse code

Version 0.8

John Hawthorn authored on 01/01/2017 12:33:41
Showing 1 changed files
... ...
@@ -1,4 +1,4 @@
1
-## 0.8 (unreleased)
1
+## 0.8 (2017-01-01)
2 2
 
3 3
 Bugfixes:
4 4
 
Browse code

Add changelog for 0.8

John Hawthorn authored on 01/01/2017 12:19:32
Showing 1 changed files
... ...
@@ -1,4 +1,10 @@
1
-## 0.7 (unreleased)
1
+## 0.8 (unreleased)
2
+
3
+Bugfixes:
4
+
5
+  - Fix cursor position shifing upwards when input has less than 2 items.
6
+
7
+## 0.7 (2016-08-03)
2 8
 
3 9
 Bugfixes:
4 10
 
Browse code

Fix segfault when encountering utf-8 characters

John Hawthorn authored on 04/08/2016 06:43:36
Showing 1 changed files
... ...
@@ -1,6 +1,8 @@
1 1
 ## 0.7 (unreleased)
2 2
 
3 3
 Bugfixes:
4
+
5
+  - Fixed a segfault when encountering non-ascii characters
4 6
   - Fixed building against musl libc
5 7
 
6 8
 ## 0.6 (2016-07-26)
Browse code

Update CHANGELOG

John Hawthorn authored on 01/08/2016 06:44:21
Showing 1 changed files
... ...
@@ -1,3 +1,8 @@
1
+## 0.7 (unreleased)
2
+
3
+Bugfixes:
4
+  - Fixed building against musl libc
5
+
1 6
 ## 0.6 (2016-07-26)
2 7
 
3 8
 Performance:
Browse code

Version 0.6

John Hawthorn authored on 27/07/2016 01:53:26
Showing 1 changed files
... ...
@@ -1,4 +1,4 @@
1
-## 0.6 (Unreleased)
1
+## 0.6 (2016-07-26)
2 2
 
3 3
 Performance:
4 4
 
Browse code

Mention bonus lookup table in CHANGELOG

John Hawthorn authored on 10/07/2016 19:46:03
Showing 1 changed files
... ...
@@ -4,6 +4,7 @@ Performance:
4 4
 
5 5
   - Use threads to parallelize searching and scoring
6 6
   - Read all pending input from tty before searching
7
+  - Use a lookup table for computing bonuses
7 8
 
8 9
 Bugfixes:
9 10
 
Browse code

Fix segfault when autocompleting on no matches

John Hawthorn authored on 04/07/2016 05:51:35
Showing 1 changed files
... ...
@@ -8,6 +8,7 @@ Performance:
8 8
 Bugfixes:
9 9
 
10 10
   - Fixed command line parsing on ARM
11
+  - Fix error when autocompleting and there are no matches
11 12
 
12 13
 ## 0.5 (2016-06-11)
13 14
 
Browse code

Store result of getopt_long in an int

This fixes issues on ARM, where char is unsigned.

John Hawthorn authored on 23/06/2016 06:53:20
Showing 1 changed files
... ...
@@ -5,6 +5,10 @@ Performance:
5 5
   - Use threads to parallelize searching and scoring
6 6
   - Read all pending input from tty before searching
7 7
 
8
+Bugfixes:
9
+
10
+  - Fixed command line parsing on ARM
11
+
8 12
 ## 0.5 (2016-06-11)
9 13
 
10 14
 Bugfixes:
Browse code

Update CHANGELOG.md

John Hawthorn authored on 23/06/2016 06:51:14
Showing 1 changed files
... ...
@@ -1,3 +1,10 @@
1
+## 0.6 (Unreleased)
2
+
3
+Performance:
4
+
5
+  - Use threads to parallelize searching and scoring
6
+  - Read all pending input from tty before searching
7
+
1 8
 ## 0.5 (2016-06-11)
2 9
 
3 10
 Bugfixes:
... ...
@@ -25,9 +32,12 @@ Bugfixes:
25 32
 
26 33
 Features:
27 34
 
28
-  - Reduced memory usage on large sets
29 35
   - Allow specifying custom prompt
30 36
 
37
+Performance:
38
+
39
+  - Reduce memory usage on large sets
40
+
31 41
 Bugfixes:
32 42
 
33 43
   - Terminal is properly reset on exit
Browse code

Version 0.5

John Hawthorn authored on 12/06/2016 03:35:08
Showing 1 changed files
... ...
@@ -1,4 +1,4 @@
1
-## 0.5 (Unreleased)
1
+## 0.5 (2016-06-11)
2 2
 
3 3
 Bugfixes:
4 4
 
Browse code

Update changelog

John Hawthorn authored on 11/06/2016 19:21:52
Showing 1 changed files
... ...
@@ -1,3 +1,9 @@
1
+## 0.5 (Unreleased)
2
+
3
+Bugfixes:
4
+
5
+  - Made sorting stable on all platforms
6
+
1 7
 ## 0.4 (May 19, 2016)
2 8
 
3 9
 Features:
Browse code

Version 0.4

John Hawthorn authored on 19/05/2016 15:59:51
Showing 1 changed files
... ...
@@ -1,4 +1,4 @@
1
-## 0.4 (unreleased)
1
+## 0.4 (May 19, 2016)
2 2
 
3 3
 Features:
4 4
 
Browse code

Check errors when opening tty

Opening the tty may fail (for example if the wrong file is specified).
We now print an error and abort when this happens.

John Hawthorn authored on 17/05/2016 02:58:04
Showing 1 changed files
... ...
@@ -7,6 +7,7 @@ Features:
7 7
 Bugfixes:
8 8
 
9 9
   - Fixed last line of results not being cleared on exit
10
+  - Check errors when opening the TTY device
10 11
 
11 12
 ## 0.3 (April 25, 2016)
12 13
 
Browse code

Update changelog

John Hawthorn authored on 17/05/2016 02:39:58
Showing 1 changed files
... ...
@@ -1,3 +1,13 @@
1
+## 0.4 (unreleased)
2
+
3
+Features:
4
+
5
+  - Add `-q`/`--query` for specifying initial query
6
+
7
+Bugfixes:
8
+
9
+  - Fixed last line of results not being cleared on exit
10
+
1 11
 ## 0.3 (April 25, 2016)
2 12
 
3 13
 Bugfixes:
Browse code

Version 0.3

John Hawthorn authored on 26/04/2016 03:28:42
Showing 1 changed files
... ...
@@ -1,3 +1,9 @@
1
+## 0.3 (April 25, 2016)
2
+
3
+Bugfixes:
4
+
5
+  - Runs properly in a terminal with -icrnl
6
+
1 7
 ## 0.2 (October 19, 2014)
2 8
 
3 9
 Features:
Browse code

Add date to changelog entry

John Hawthorn authored on 20/10/2014 00:05:00
Showing 1 changed files
... ...
@@ -1,4 +1,4 @@
1
-## 0.2
1
+## 0.2 (October 19, 2014)
2 2
 
3 3
 Features:
4 4
 
Browse code

Version 0.2

John Hawthorn authored on 19/10/2014 23:55:02
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,15 @@
1
+## 0.2
2
+
3
+Features:
4
+
5
+  - Reduced memory usage on large sets
6
+  - Allow specifying custom prompt
7
+
8
+Bugfixes:
9
+
10
+  - Terminal is properly reset on exit
11
+  - Fixed make install on OS X
12
+
13
+## 0.1 (September 20, 2014)
14
+
15
+Initial release