浏览代码

Prepare for release v2.2

master
Arun Prakash Jana 6 年前
父节点
当前提交
f9860f1c7f
找不到此签名对应的密钥 GPG 密钥 ID: A75979F35C080412
共有 10 个文件被更改,包括 47 次插入9 次删除
  1. +30
    -0
      CHANGELOG
  2. +1
    -1
      LICENSE
  3. +1
    -1
      Makefile
  4. +1
    -1
      README.md
  5. +1
    -1
      nnn.1
  6. +8
    -0
      packagecore.yaml
  7. +1
    -1
      scripts/natool/natool
  8. +1
    -1
      scripts/nlay/nlay
  9. +2
    -2
      src/nnn.c
  10. +1
    -1
      src/nnn.h

+ 30
- 0
CHANGELOG 查看文件

@@ -1,3 +1,33 @@
nnn v2.2
2019-01-01

What's in?
- (neo)vim plugin [nnn.vim](github.com/mcchrish/nnn.vim)
- macOS fixes
- Fix issues with file copy, move, remove
- Handle <kbd>Del</kbd> in rename prompt
- Pass correct `file` option to identify mime
- Support selection across directories and contexts
- Offer option `force` before file remove
- Keys <kbd>Tab</kbd>, <kbd>^I</kbd> to go to next active context
- Per-context directory color specified by `$NNN_CONTEXT_COLORS`
- Option `-c` is removed
- Option `-C` to disable colors
- Choose script to run from a script directory
- Run a command (or launch an application)
- Run file as executable <kbd>C</kbd>
- Documentation on lftp integration for remote file transfers
- Support a _combined_ set of arguments to `$EDITOR`, `$PAGER` and `$SHELL`
- Handle > 2 GB files on 32-bit ARM
- Env var `$DISABLE_FILE_OPEN_ON_NAV` to disable file open on <kbd>Right</kbd> or <kbd>l</kbd>
- `NUL`-terminated file paths in selection list instead of `LF`
- Better support for Termux and Cygwin environments
- Remapped keys
- <kbd>^I</kbd> - go to next active context
- <kbd>^T</kbd> - toggle _navigate-as-you-type_

-------------------------------------------------------------------------------

nnn v2.1
2018-11-23



+ 1
- 1
LICENSE 查看文件

@@ -2,7 +2,7 @@ BSD 2-Clause License

Copyright (c) 2014-2016, Lazaros Koromilas <lostd@2f30.org>
Copyright (c) 2014-2016, Dimitris Papastamos <sin@2f30.org>
Copyright (c) 2016-2018, Arun Prakash Jana <engineerarun@gmail.com>
Copyright (c) 2016-2019, Arun Prakash Jana <engineerarun@gmail.com>
All rights reserved.

Redistribution and use in source and binary forms, with or without


+ 1
- 1
Makefile 查看文件

@@ -1,4 +1,4 @@
VERSION = 2.1
VERSION = 2.2

PREFIX ?= /usr/local
MANPREFIX ?= $(PREFIX)/share/man


+ 1
- 1
README.md 查看文件

@@ -557,4 +557,4 @@ To open files with this setting, press <kbd>Enter</kbd>.

1. Copyright © 2014-2016 Lazaros Koromilas
2. Copyright © 2014-2016 Dimitris Papastamos
3. Copyright © 2016-2018 [Arun Prakash Jana](https://github.com/jarun)
3. Copyright © 2016-2019 [Arun Prakash Jana](https://github.com/jarun)

+ 1
- 1
nnn.1 查看文件

@@ -1,4 +1,4 @@
.Dd Nov 23, 2018
.Dd Jan 01, 2019
.Dt NNN 1
.Os
.Sh NAME


+ 8
- 0
packagecore.yaml 查看文件

@@ -88,6 +88,14 @@ packages:
- ncurses-devel
deps:
- ncurses
fedora29:
builddeps:
- make
- gcc
- pkg-config
- ncurses-devel
deps:
- ncurses
# opensuse42.3:
# builddeps:
# - make


+ 1
- 1
scripts/natool/natool 查看文件

@@ -17,7 +17,7 @@
# Author: Arun Prakash Jana
# Email: engineerarun@gmail.com
# Homepage: https://github.com/jarun/nnn
# Copyright © 2018 Arun Prakash Jana
# Copyright © 2019 Arun Prakash Jana
# #############################################################################

import sys


+ 1
- 1
scripts/nlay/nlay 查看文件

@@ -28,7 +28,7 @@
# Author: Arun Prakash Jana
# Email: engineerarun@gmail.com
# Homepage: https://github.com/jarun/nnn
# Copyright © 2016-2018 Arun Prakash Jana
# Copyright © 2016-2019 Arun Prakash Jana
# #############################################################################




+ 2
- 2
src/nnn.c 查看文件

@@ -3,7 +3,7 @@
*
* Copyright (c) 2014-2016, Lazaros Koromilas <lostd@2f30.org>
* Copyright (c) 2014-2016, Dimitris Papastamos <sin@2f30.org>
* Copyright (c) 2016-2018, Arun Prakash Jana <engineerarun@gmail.com>
* Copyright (c) 2016-2019, Arun Prakash Jana <engineerarun@gmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -156,7 +156,7 @@ disabledbg()
#endif /* DEBUGMODE */

/* Macro definitions */
#define VERSION "2.1"
#define VERSION "2.2"
#define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn"

#define LEN(x) (sizeof(x) / sizeof(*(x)))


+ 1
- 1
src/nnn.h 查看文件

@@ -3,7 +3,7 @@
*
* Copyright (c) 2014-2016, Lazaros Koromilas <lostd@2f30.org>
* Copyright (c) 2014-2016, Dimitris Papastamos <sin@2f30.org>
* Copyright (c) 2016-2018, Arun Prakash Jana <engineerarun@gmail.com>
* Copyright (c) 2016-2019, Arun Prakash Jana <engineerarun@gmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without


正在加载...
取消
保存