From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: YAMAMOTO Mitsuharu Newsgroups: gmane.emacs.devel Subject: Re: Emacs Mac port Date: Mon, 14 Apr 2014 12:00:01 +0900 Organization: Faculty of Science, Chiba University Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Trace: ger.gmane.org 1397444430 24318 80.91.229.3 (14 Apr 2014 03:00:30 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 14 Apr 2014 03:00:30 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Apr 14 05:00:24 2014 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WZX89-0003Cm-QA for ged-emacs-devel@m.gmane.org; Mon, 14 Apr 2014 05:00:21 +0200 Original-Received: from localhost ([::1]:40414 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WZX89-0004wp-CW for ged-emacs-devel@m.gmane.org; Sun, 13 Apr 2014 23:00:21 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:38611) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WZX80-0004su-L7 for emacs-devel@gnu.org; Sun, 13 Apr 2014 23:00:18 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WZX7u-0005vK-9r for emacs-devel@gnu.org; Sun, 13 Apr 2014 23:00:12 -0400 Original-Received: from mathmail.math.s.chiba-u.ac.jp ([133.82.132.2]:60927) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WZX7t-0005g3-PP for emacs-devel@gnu.org; Sun, 13 Apr 2014 23:00:06 -0400 Original-Received: from fermat.math.s.chiba-u.ac.jp (fermat [133.82.132.10]) by mathmail.math.s.chiba-u.ac.jp (Postfix) with ESMTP id 5A600C055D for ; Mon, 14 Apr 2014 12:00:01 +0900 (JST) In-Reply-To: User-Agent: Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (=?ISO-8859-4?Q?Shij=F2?=) APEL/10.6 Emacs/22.3 (sparc-sun-solaris2.8) MULE/5.0 (SAKAKI) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 133.82.132.2 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:171418 Archived-At: The Mac port based on Emacs 24.3.90 pretest is now available from ftp://ftp.math.s.chiba-u.ac.jp/emacs/emacs-24.3.90-mac-4.90.tar.gz ftp://ftp.math.s.chiba-u.ac.jp/emacs/emacs-hires-icons-1.0.tar.gz This version (4.9X) should be regarded as experimental/hackers-only. Things are subject to change/removal in an incompatible way. Please refrain from distributing this in any different form, including for (binary) distribution basis, until the version gets to 5.0. YAMAMOTO Mitsuharu mituharu@math.s.chiba-u.ac.jp * emacs-24.3.90-mac-4.90 [experimental/hackers-only] (2014-04-14) Based on Emacs 24.3.90. High-resolution icons are now distributed as a separate package. File notification is supported via GLib (you'll also need `pkg-config' when running the configure command). The `image-io' image type supports `:max-width', `:max-height', and `:format' keywords just as in `imagemagick'. Now that Image mode supports multi-frame image navigation (`f', 'b', and `F'), you can browse multi-page documents in several formats that `image-io' supports (e.g., PDF and DOC) with the setting like this: (when (and (image-type-available-p 'image-io) (not (boundp 'imagemagick-render-type))) ;; Image I/O is used as a fallback of ImageMagick. (setq imagemagick-enabled-types t) (setq imagemagick-types-inhibit (cons 'XML (delq 'PDF imagemagick-types-inhibit))) (imagemagick-register-types)) Note: if you have ImageMagick installed, you need to build the Mac port executable without the genuine ImageMagick support so `image-io' can be used as a fallback of `imagemagick'. ** Improvements *** Graphical drawing operations might be performed in non-main threads via GCD (Grand Central Dispatch) on Mac OS X 10.6 and later. You can turn this off by setting `mac-drawing-use-gcd' to nil. *** DocView mode generates pixel-doubled "@2x" bitmap image files in addition to normal ones on high-resolution environments such as Retina display or HiDPI mode.