summaryrefslogtreecommitdiff
path: root/Master/texmf/asymptote/GUI
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2009-07-15 00:43:13 +0000
committerKarl Berry <karl@freefriends.org>2009-07-15 00:43:13 +0000
commit181c66eec8ef64814280c5d11c6e4f92edc6c12d (patch)
tree52b0378314b83173765ad3bd3f9c1a2f7119686f /Master/texmf/asymptote/GUI
parente355922861e2bc91176c058d563d477444c2dfd9 (diff)
asymptote 1.81 install
git-svn-id: svn://tug.org/texlive/trunk@14263 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf/asymptote/GUI')
-rwxr-xr-xMaster/texmf/asymptote/GUI/xasy2asy.py5
-rwxr-xr-xMaster/texmf/asymptote/GUI/xasyVersion.py2
2 files changed, 3 insertions, 4 deletions
diff --git a/Master/texmf/asymptote/GUI/xasy2asy.py b/Master/texmf/asymptote/GUI/xasy2asy.py
index 23bd5a67c38..99a747cccda 100755
--- a/Master/texmf/asymptote/GUI/xasy2asy.py
+++ b/Master/texmf/asymptote/GUI/xasy2asy.py
@@ -57,7 +57,6 @@ def startQuickAsy():
quickAsy = Popen([xasyOptions.options['asyPath']]+
split("-noV -multiline -interactive -o"+AsyTempDir),
stdin=PIPE,stdout=PIPE,stderr=STDOUT)
- quickAsy.stdin.write("settings.xformat;\n")
if quickAsy.returncode != None:
quickAsyFailed = True
except:
@@ -480,8 +479,8 @@ class xasyItem:
syncQuickAsyOutput(verbose=True,queue=self.imageHandleQueue);
quickAsy.stdin.write("deconstruct(%f);\n"%mag)
quickAsy.stdin.flush()
- format = split(quickAsy.stdout.readline())[1]
- maxargs = int(split(quickAsy.stdout.readline())[0])
+ format = "png"
+ maxargs = int(split(quickAsy.stdout.readline())[1])
boxes=[]
batch=0
n=0
diff --git a/Master/texmf/asymptote/GUI/xasyVersion.py b/Master/texmf/asymptote/GUI/xasyVersion.py
index bbaa05404dc..c9fe270f7f7 100755
--- a/Master/texmf/asymptote/GUI/xasyVersion.py
+++ b/Master/texmf/asymptote/GUI/xasyVersion.py
@@ -1,2 +1,2 @@
#!/usr/bin/env python
-xasyVersion = "1.80"
+xasyVersion = "1.81"