Sfoglia il codice sorgente

Handle interrupts; default encoding and nonblocking I/O fix

Matthew Wang 10 anni fa
commit
423551ffc1
2 ha cambiato i file con 8 aggiunte e 2 eliminazioni
  1. 7
    1
      CHANGES
  2. 1
    1
      cdiff.py

+ 7
- 1
CHANGES Vedi File

2
 Change log
2
 Change log
3
 ==========
3
 ==========
4
 
4
 
5
+Version 0.9.3 (2013-09-28)
6
+
7
+  - Moved screenshots to 'gh-pages' branch
8
+  - Handle all keyboard interrupts more completely
9
+  - Explicitly set default encoding to utf-8
10
+  - Fixed broken output diff when I/O with filterdiff in nonblocking mode
11
+
5
 Version 0.9.2 (2013-06-21)
12
 Version 0.9.2 (2013-06-21)
6
 
13
 
7
   - Enahanced option parser now pass unknown option to underneath revision
14
   - Enahanced option parser now pass unknown option to underneath revision
8
     control, user can use `cdiff --cached`, `cdiff -U5` directly
15
     control, user can use `cdiff --cached`, `cdiff -U5` directly
9
 
16
 
10
-
11
 Version 0.9.1 (2013-05-20)
17
 Version 0.9.1 (2013-05-20)
12
 
18
 
13
   - Use `--no-ext-diff` to disable GIT_EXTERNAL_DIFF and diff.external which
19
   - Use `--no-ext-diff` to disable GIT_EXTERNAL_DIFF and diff.external which

+ 1
- 1
cdiff.py Vedi File

8
 """
8
 """
9
 
9
 
10
 META_INFO = {
10
 META_INFO = {
11
-    'version'     : '0.9.2',
11
+    'version'     : '0.9.3',
12
     'license'     : 'BSD-3',
12
     'license'     : 'BSD-3',
13
     'author'      : 'Matthew Wang',
13
     'author'      : 'Matthew Wang',
14
     'email'       : 'mattwyl(@)gmail(.)com',
14
     'email'       : 'mattwyl(@)gmail(.)com',