From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: caml-list@sympa.inria.fr Delivered-To: caml-list@sympa.inria.fr Received: from mail2-relais-roc.national.inria.fr (mail2-relais-roc.national.inria.fr [192.134.164.83]) by sympa.inria.fr (Postfix) with ESMTPS id BB7057F088 for ; Fri, 20 Nov 2015 19:39:09 +0100 (CET) IronPort-PHdr: 9a23:pdlytRS/mfRoD1lrvwUYj/NaYtpsv+yvbD5Q0YIujvd0So/mwa64YxCN2/xhgRfzUJnB7Loc0qyN4/2mATRIyK3CmU5BWaQEbwUCh8QSkl5oK+++Imq/EsTXaTcnFt9JTl5v8iLzG0FUHMHjew+a+SXqvnYsExnyfTB4Ov7yUtaLyZ/niqbqo9X6WEZhunmUWftKNhK4rAHc5IE9oLBJDeIP8CbPuWZCYO9MxGlldhq5lhf44dqsrtY4q3wD89pozcNLUL37cqIkVvQYSW1+ayFmrPHs4D7oRA6Lrl8dSXlexhFBBgyA6BDhQr/wtDH7v6xzwn/JE9fxSOUYUDKj4qNcYovumiMGf2o1+WfWh8g2hr9WpgClpjRy2ZTdfICMKfc4daOLLoBSfnZIQssED38JOYi7dYZaSrNZZes= Authentication-Results: mail2-smtp-roc.national.inria.fr; spf=None smtp.pra=daniel.buenzli@erratique.ch; spf=None smtp.mailfrom=daniel.buenzli@erratique.ch; spf=None smtp.helo=postmaster@smtp.webfaction.com Received-SPF: None (mail2-smtp-roc.national.inria.fr: no sender authenticity information available from domain of daniel.buenzli@erratique.ch) identity=pra; client-ip=74.55.86.74; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="daniel.buenzli@erratique.ch"; x-sender="daniel.buenzli@erratique.ch"; x-conformance=sidf_compatible Received-SPF: None (mail2-smtp-roc.national.inria.fr: no sender authenticity information available from domain of daniel.buenzli@erratique.ch) identity=mailfrom; client-ip=74.55.86.74; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="daniel.buenzli@erratique.ch"; x-sender="daniel.buenzli@erratique.ch"; x-conformance=sidf_compatible Received-SPF: None (mail2-smtp-roc.national.inria.fr: no sender authenticity information available from domain of postmaster@smtp.webfaction.com) identity=helo; client-ip=74.55.86.74; receiver=mail2-smtp-roc.national.inria.fr; envelope-from="daniel.buenzli@erratique.ch"; x-sender="postmaster@smtp.webfaction.com"; x-conformance=sidf_compatible X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A0CBAABiaE9Wm0pWN0pehA5vwQMjgjyDMIIFEQEBAQEBAQEBEAEBAQEBBgsLCSEugi2CMVY1AiYCSRYbAYglBAmwSZAtAQsBIIEBkkYvgRUFlkyFI4lpSYZpEIVKiXGDcjeCU4FdcgEBhSkBAQE X-IPAS-Result: A0CBAABiaE9Wm0pWN0pehA5vwQMjgjyDMIIFEQEBAQEBAQEBEAEBAQEBBgsLCSEugi2CMVY1AiYCSRYbAYglBAmwSZAtAQsBIIEBkkYvgRUFlkyFI4lpSYZpEIVKiXGDcjeCU4FdcgEBhSkBAQE X-IronPort-AV: E=Sophos;i="5.20,323,1444687200"; d="scan'208";a="188457859" Received: from mail6.webfaction.com (HELO smtp.webfaction.com) ([74.55.86.74]) by mail2-smtp-roc.national.inria.fr with ESMTP; 20 Nov 2015 19:39:00 +0100 Received: from [192.168.0.2] (cpc16-cmbg14-2-0-cust300.5-4.cable.virginm.net [86.6.157.45]) by smtp.webfaction.com (Postfix) with ESMTP id 445B320998A3; Fri, 20 Nov 2015 18:38:58 +0000 (UTC) Date: Fri, 20 Nov 2015 18:38:57 +0000 From: =?utf-8?Q?Daniel_B=C3=BCnzli?= To: OCaml List Cc: =?utf-8?Q?David_Kaloper_Mer=C5=A1injak?= Message-ID: X-Mailer: sparrow 1.6.4 (build 1178) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: [Caml-list] [ANN] Uucp 1.1.0 Hello, It's my pleasure to announce the release of Uucp 1.1.0. This release adds support for the East Asian width [1] character property which can be useful as an heuristic to perform layout of East-Asian text on devices with fixed-width character advances like terminals. To that effect a *non-standard*, heuristic function Uucp.Break.tty_width_hint was contributed by David Kaloper. This function sums up all the practical knowledge he gathered about Unicode rendering in various terminals while developing his notty library [2]. Folding Uucp.Break.tty_width_hint [3] over the scalar values of a (preferably NFC) Unicode string can be used as an estimate of the number of columns it will occupy in a terminal. Given the non-homogenous state of tty Unicode rendering the function is not totally foolproof; it will at least work well with alphabetic scripts and some of the East Asian scripts, but your CHEESE WEDGE may vary. See the detailed documentation David wrote in [3] for more information on that unsolvable problem. Release notes: https://github.com/dbuenzli/uucp/blob/v1.1.0/CHANGES.md Uucp provides efficient access to a selection of character properties of the Unicode character database. Homepage: http://erratique.ch/software/uucp Best, Daniel [1] http://www.unicode.org/reports/tr11/tr11-29.html [2] https://github.com/pqwy/notty [3] http://erratique.ch/software/uucp/doc/Uucp.Break.html#VALtty_width_hint