mirror of
https://github.com/dankamongmen/notcurses
synced 2025-03-09 09:09:03 -04:00
v2.2.5
This commit is contained in:
parent
7865539505
commit
8c78b089e1
@ -1,6 +1,6 @@
|
||||
# 3.14.0 introduced NAME_WLE
|
||||
cmake_minimum_required(VERSION 3.14.0)
|
||||
project(notcurses VERSION 2.2.4
|
||||
project(notcurses VERSION 2.2.5
|
||||
DESCRIPTION "Blingful UI for modern terminal emulators"
|
||||
HOMEPAGE_URL "https://nick-black.com/dankwiki/index.php/notcurses"
|
||||
LANGUAGES C CXX)
|
||||
|
3
NEWS.md
3
NEWS.md
@ -1,6 +1,9 @@
|
||||
This document attempts to list user-visible changes and any major internal
|
||||
rearrangements of Notcurses.
|
||||
|
||||
* 2.2.5 (2021-04-04)
|
||||
* Bugfix release, no user-visible changes.
|
||||
|
||||
* 2.2.4 (2021-03-29)
|
||||
* Implemented **EXPERIMENTAL** `NCBLIT_PIXEL` for terminals reporting the
|
||||
Kitty pixel graphics protocol.
|
||||
|
@ -1,6 +1,6 @@
|
||||
% notcurses-pydemo(1)
|
||||
% nick black <nickblack@linux.com>
|
||||
% v2.2.4
|
||||
% v2.2.5
|
||||
|
||||
# NAME
|
||||
|
||||
|
@ -34,7 +34,7 @@ def read(fname):
|
||||
|
||||
setup(
|
||||
name="notcurses",
|
||||
version="2.2.4",
|
||||
version="2.2.5",
|
||||
packages=['notcurses'],
|
||||
scripts=['notcurses-pydemo', 'ncdirect-pydemo'],
|
||||
package_dir={'': 'src'},
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "libnotcurses-sys"
|
||||
version = "2.2.4"
|
||||
version = "2.2.5"
|
||||
authors = [
|
||||
"nick black <dankamongmen@gmail.com>",
|
||||
"José Luis Cruz <joseluis@andamira.net>"
|
||||
|
@ -7,7 +7,7 @@ use std::path::PathBuf;
|
||||
// largely taken from https://rust-lang.github.io/rust-bindgen/tutorial-3.html
|
||||
fn main() {
|
||||
let plib = pkg_config::Config::new()
|
||||
.atleast_version("2.2.4")
|
||||
.atleast_version("2.2.5")
|
||||
.probe("notcurses")
|
||||
.unwrap();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user