texworks-0.5.svn950-vine-vl7.patch 1.4 KB

1234567891011121314151617181920212223
  1. diff -up texworks-0.5/src/TWApp.cpp.vine texworks-0.5/src/TWApp.cpp
  2. --- texworks-0.5/src/TWApp.cpp.vine 2011-12-04 01:16:32.000000000 +0900
  3. +++ texworks-0.5/src/TWApp.cpp 2011-12-04 01:24:23.866877821 +0900
  4. @@ -842,6 +842,7 @@ void TWApp::setDefaultEngineList()
  5. *engineList
  6. // << Engine("LaTeXmk", "latexmk" EXE, QStringList("-e") <<
  7. // "$pdflatex=q/pdflatex -synctex=1 %O %S/" << "-pdf" << "$fullname", true)
  8. + << Engine("pdfpLaTeX", "pdfplatex" EXE, QStringList("$basename"), true)
  9. << Engine("pdfTeX", "pdftex" EXE, QStringList("$synctexoption") << "$fullname", true)
  10. << Engine("pdfLaTeX", "pdflatex" EXE, QStringList("$synctexoption") << "$fullname", true)
  11. << Engine("LuaTeX", "luatex" EXE, QStringList("$synctexoption") << "$fullname", true)
  12. @@ -851,7 +852,9 @@ void TWApp::setDefaultEngineList()
  13. << Engine("ConTeXt (LuaTeX)", "context" EXE, QStringList("--synctex") << "$fullname", true)
  14. << Engine("ConTeXt (pdfTeX)", "texexec" EXE, QStringList("--synctex") << "$fullname", true)
  15. << Engine("ConTeXt (XeTeX)", "texexec" EXE, QStringList("--synctex") << "--xtx" << "$fullname", true)
  16. + << Engine("pBibTeX", "pbibtex" EXE, QStringList("$basename"), false)
  17. << Engine("BibTeX", "bibtex" EXE, QStringList("$basename"), false)
  18. + << Engine("Mendex", "mendex" EXE, QStringList("$basename"), false)
  19. << Engine("MakeIndex", "makeindex" EXE, QStringList("$basename"), false);
  20. defaultEngineIndex = 1;
  21. }
  22. Diff finished. Sun Dec 4 01:24:29 2011