texworks-0.2.3-ptex-vine.patch 1.3 KB

1234567891011121314151617181920212223
  1. diff -up texworks-0.2.3/src/TWApp.cpp.vine texworks-0.2.3/src/TWApp.cpp
  2. --- texworks-0.2.3/src/TWApp.cpp.vine 2009-10-09 03:03:52.000000000 +0900
  3. +++ texworks-0.2.3/src/TWApp.cpp 2010-08-07 15:42:22.722994261 +0900
  4. @@ -536,13 +536,17 @@ void TWApp::setDefaultEngineList()
  5. else
  6. engineList->clear();
  7. *engineList
  8. + << Engine("pdfpLaTeX", "pdfplatex" EXE, QStringList("$basename"), true)
  9. + << Engine("pdfepLaTeX", "pdfeplatex" EXE, QStringList("$basename"), true)
  10. << Engine("pdfTeX", "pdftex" EXE, QStringList("$synctexoption") << "$fullname", true)
  11. << Engine("pdfLaTeX", "pdflatex" EXE, QStringList("$synctexoption") << "$fullname", true)
  12. << Engine("XeTeX", "xetex" EXE, QStringList("$synctexoption") << "$fullname", true)
  13. << Engine("XeLaTeX", "xelatex" EXE, QStringList("$synctexoption") << "$fullname", true)
  14. << Engine("ConTeXt", "texmfstart" EXE, QStringList("texexec") << "$fullname", true)
  15. << Engine("XeConTeXt", "texmfstart" EXE, QStringList("texexec") << "--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. Sat Aug 7 15:44:12 2010