Update to 0.4.4
Release 0.4.4 (TL'12) [April 2012] * Fix crash caused by Qt when adding lines at the beginning of a document * Fix search/replace for multi-line strings * Work around layout issues which cause lines to disappear * Fix building with BSD make * Fix block selection of last paragraph * Fix overwrite of "Find all occurrences" option * Improve "Unable to execute..." error dialog * Rename "Show/Hide Output Panel" to "Show/Hide Console Output" in the menu and the preferences dialog * Remove subject and add instructions to body of the "email to mailinglist" * Bring the window running TeX to the top at the beginning of typesetting to ensure that the console output is visible * Allow symlinks and display only folders in "path for programs" in the preferences dialog * Add "Clear Recent Files" to "Open Recent" menu * Add an autocompletion entry to the preferences dialog * Add Lua(La)TeX to the default tools (and drop LaTeXmk by default) * Add an option to open log files * Add CMake support (experimental) * Update SyncTeX to version 1.17 * Update URLs to http://www.tug.org/texworks/ * Some enhancements to functions available to scripting * Avoid showing an empty message box for script results * Resolve symlinks when looking for scripts * Expose the scripts' titles, authors, filenames, etc. to scripting * Update/improve scripts: open pdf in default viewer, derive spellchecking language from babel package, log parser
This commit is contained in:
parent
7875e97e25
commit
94cd450e03
4 changed files with 16 additions and 13 deletions
|
@ -1,8 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.10 2012/10/08 23:01:30 adam Exp $
|
||||
# $NetBSD: Makefile,v 1.11 2012/10/28 03:33:45 markd Exp $
|
||||
|
||||
DISTNAME= texworks-0.4.3-r858
|
||||
PKGNAME= texworks-0.4.3
|
||||
PKGREVISION= 8
|
||||
DISTNAME= texworks-0.4.4-r1004
|
||||
PKGNAME= texworks-0.4.4
|
||||
CATEGORIES= editors
|
||||
MASTER_SITES= http://texworks.googlecode.com/files/
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.2 2012/09/17 12:12:53 markd Exp $
|
||||
@comment $NetBSD: PLIST,v 1.3 2012/10/28 03:33:45 markd Exp $
|
||||
bin/texworks
|
||||
share/doc/texworks/COPYING
|
||||
share/doc/texworks/README
|
||||
|
@ -17,6 +17,8 @@ share/texworks-help/en/index17.html
|
|||
share/texworks-help/en/index18.html
|
||||
share/texworks-help/en/index14.html
|
||||
share/texworks-help/en/index33.html
|
||||
share/texworks-help/en/index43.html
|
||||
share/texworks-help/en/index50.html
|
||||
share/texworks-help/en/bibname.html
|
||||
share/texworks-help/en/index12.html
|
||||
share/texworks-help/en/Firststeps.html
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2012/03/21 22:44:20 markd Exp $
|
||||
$NetBSD: distinfo,v 1.2 2012/10/28 03:33:45 markd Exp $
|
||||
|
||||
SHA1 (texworks-0.4.3-r858.tar.gz) = ba2457a508233438d66641eb6b2a1c1645793ef8
|
||||
RMD160 (texworks-0.4.3-r858.tar.gz) = 4689e1ea18f3e3f2d99d00a7a440b410cb3480e4
|
||||
Size (texworks-0.4.3-r858.tar.gz) = 5169890 bytes
|
||||
SHA1 (texworks-0.4.4-r1004.tar.gz) = 5aea4f483a503dfdbee82d07f4684f639eacb300
|
||||
RMD160 (texworks-0.4.4-r1004.tar.gz) = 2c46cba89213a71cbdb27996bf7d8ce94edded9a
|
||||
Size (texworks-0.4.4-r1004.tar.gz) = 5305883 bytes
|
||||
SHA1 (patch-TeXworks.pro) = e3961a6993b6698853ed609b010f0d542de58abc
|
||||
SHA1 (patch-getDefaultBinPaths.sh) = 56c7f6a07ad2b065436b1e2c6c778c197218ebb6
|
||||
SHA1 (patch-getDefaultBinPaths.sh) = 211d4d08bce727ff36fb05315ae4a628344d5014
|
||||
|
|
|
@ -1,16 +1,18 @@
|
|||
$NetBSD: patch-getDefaultBinPaths.sh,v 1.1.1.1 2012/03/21 22:44:20 markd Exp $
|
||||
$NetBSD: patch-getDefaultBinPaths.sh,v 1.2 2012/10/28 03:33:45 markd Exp $
|
||||
|
||||
--- getDefaultBinPaths.sh.orig 2011-06-29 17:03:14.000000000 +0000
|
||||
--- getDefaultBinPaths.sh.orig 2012-04-29 16:00:44.000000000 +0000
|
||||
+++ getDefaultBinPaths.sh
|
||||
@@ -68,11 +68,11 @@ case $PLATFORM in
|
||||
@@ -74,12 +74,12 @@ case $PLATFORM in
|
||||
*) OS=`echo $PLATFORM | sed 's/.*-//'`
|
||||
esac
|
||||
|
||||
-appendPath "/usr/local/texlive/2012/bin/$ARCH-$OS"
|
||||
-appendPath "/usr/local/texlive/2011/bin/$ARCH-$OS"
|
||||
-appendPath "/usr/local/texlive/2010/bin/$ARCH-$OS"
|
||||
-appendPath "/usr/local/texlive/2009/bin/$ARCH-$OS"
|
||||
-appendPath "/usr/local/texlive/2008/bin/$ARCH-$OS"
|
||||
-appendPath "/usr/local/texlive/2007/bin/$ARCH-$OS"
|
||||
+#appendPath "/usr/local/texlive/2012/bin/$ARCH-$OS"
|
||||
+#appendPath "/usr/local/texlive/2011/bin/$ARCH-$OS"
|
||||
+#appendPath "/usr/local/texlive/2010/bin/$ARCH-$OS"
|
||||
+#appendPath "/usr/local/texlive/2009/bin/$ARCH-$OS"
|
||||
|
|
Loading…
Reference in a new issue