aboutsummaryrefslogtreecommitdiff
path: root/windows/make-windows-installer.bat
AgeCommit message (Collapse)AuthorFilesLines
2016-10-19Download markdown version of the license from GNU and rename to `COPYING.md`Kolen Cheung1-1/+1
From https://www.gnu.org/licenses/old-licenses/gpl-2.0.md
2016-07-22Fix MANUAL.txt path in make-windows-installer.txt.John MacFarlane1-1/+1
2016-07-20Rename README to MANUAL.txtAlbert Krewinkel1-2/+2
2016-06-26Include table of contents in README.html in Windows package.John MacFarlane1-1/+1
2016-06-04Improved Windows installer (nkalvi, #2708, #2389).John MacFarlane1-2/+2
* Scope selection in the first screen. Since I couldn't detect if the user is 'real' admin user, default is still per user. * Scope is limited to per machine on servers. Though not perfect (couldn't detect `DisableMSI` policy), it should handle #2389 better. * For per machine, location can be changed by selecting Advanced. Localization: modified templates from WiX toolkit support localization very well. A short sample localization file for en-us is used. * Dialog elements are moved to their own files.
2016-03-20Removed strip commands from make-windows-installer.bat.John MacFarlane1-2/+0
2015-11-14Use stack for Windows installer.John MacFarlane1-17/+9
2015-11-13make-windows-installer.bat: run tests.John MacFarlane1-1/+3
2015-10-16make-windows-installer.bat: add copying to shared drive.John MacFarlane1-0/+3
2015-06-03Windows msi changes (nkalvi):John MacFarlane1-1/+1
* Allow setting of installation path. * Use cleaner wix syntax for setting the path: https://www.firegiant.com/wix/tutorial/com-expression-syntax-miscellanea/environmentally-friendly/ * Show the user what changes, in a new command window. See #2205.
2015-05-28Better fix for #2187.John MacFarlane1-4/+0
* Reverted kludgy change to make-windows-installer.bat. * Removed make-reference-fiels.hs. * Moved the individual ingredients of reference.docx and reference.odt to the data directory. * Removed reference.docx and reference.odt from data directory. * We now build the reference archives from their ingredient pieces in the docx and odt writers, instead of having a reference.docx or reference.odt intermediary. This should fix #2187. It also simplifies the bulid procedure. The one thing users may notice is different is that you can no longer get the reference.docx or reference.odt using `--print-default-data-file`. Instead, simply generate a docx or odt using pandoc with a blank or minimal input, and use that (or a customized version) with `--reference-docx` or `--reference-odt`.
2015-05-28More fixes to make-windows-installer for #2187.John MacFarlane1-1/+2
2015-05-28Ensure that docx and odt are built in windows installer.John MacFarlane1-0/+3
Closes #2187.
2014-08-14windows, osx package scripts: don't need alex, happy.John MacFarlane1-1/+1
2014-05-28Windows installer: Use one install command for pandoc, pandoc-citeproc.John MacFarlane1-3/+1
2014-05-28Windows install script: force install of pandoc-citeproc.John MacFarlane1-1/+1
2014-05-16Windows build script: add -windows to file name.John MacFarlane1-1/+1
2014-05-06Windows installer: more typos from transition from cabal-dev.John MacFarlane1-2/+2
2014-05-06Windows install script: Fixed typo in path.John MacFarlane1-1/+1
2014-05-06Windows install script: install alex, happy.John MacFarlane1-1/+1
2014-05-05Windows package script: use cabal sandbox, not cabal-dev.John MacFarlane1-9/+10
2014-01-05Removed references to biblio2yaml in installers.John MacFarlane1-1/+0
2013-09-20Added --force in make-windows-installer.bat.John MacFarlane1-2/+2
2013-09-14Updated windows installer batch file.John MacFarlane1-3/+6
2013-09-06Tweaked windows install script.John MacFarlane1-3/+1
Assumes that pandoc-types and pandoc-citeproc are in Hackage.
2013-09-05More windows package tweaks.John MacFarlane1-0/+1
Make sure subordinate packages are reinstalled.
2013-09-05Windows installer: gave up on unicode collation.John MacFarlane1-1/+0
2013-09-05Preliminary changes to windows installer script.John MacFarlane1-2/+6
2013-08-24Removed citeproc-hs from osx, windows build process.John MacFarlane1-1/+0
2013-07-04make-windows-installer.bat: Removed explicit paths for executables.John MacFarlane1-3/+3
2013-03-15WiX: Remove unnecessary parameter for candle.exe.Fyodor Sheremetyev1-1/+1
2013-02-13Disable WiX warning LGHT1076 ICE91.Fyodor Sheremetyev1-1/+1
It’s harmless. http://msdn.microsoft.com/en-us/library/aa369053(VS.85).aspx
2013-02-10Windows installer improvements.John MacFarlane1-2/+13
* Handle upgrades better: the old version will be removed automatically. * Detect version in batch file, so pandoc.wxs need not be modified when the version number changes. * Create pandoc-VERSION.msi.
2013-02-10windows installer: Add start menu entry with link to documentation.John MacFarlane1-2/+2
2013-02-09windows installer: UI with license, etc.John MacFarlane1-1/+2
2013-02-09Fixed make-windows-installer to use double quotes for path.John MacFarlane1-3/+6
2013-02-09make-windows-installer.bat: Use WiX instead of Inno.John MacFarlane1-1/+3
2013-01-22Changes to make-windows-installer.bat.John MacFarlane1-2/+4
* Exit batch file if any of the cabal-dev installs fail. * There's no longer any need to reinstall highlighting-kate. * Don't start with a 'cabal update'; leave that to the user.
2013-01-22windowns installer: Removed --disable-library-for-ghci.John MacFarlane1-1/+1
2013-01-22Force reinstall for windows package.John MacFarlane1-1/+1
2013-01-20make-windows-installer: force reinstall of citeproc-hs and h-k.John MacFarlane1-2/+2
2012-12-29Updated windows installer to use `embed_data_files` flag.John MacFarlane1-4/+2
2012-10-15Moved man page creation out of Setup.hs.John MacFarlane1-2/+1
* MakeManPage.hs has been transformed into man/make-pandoc-man-pages.hs. * There is now a cabal stanza for this, so the dependencies are handled by cabal. * Special treatment in Setup.hs ensures that this never gets installed; it is built and used to create the man pages. * Setup.hs cleaned up.
2012-06-03Have windows installer make man page first.John MacFarlane1-0/+2
In cabal-dev, makemanpage fails.
2012-05-12windows installer: use blaze html 0.5.John MacFarlane1-1/+2
2012-02-05Fixed template name in windows installer.John MacFarlane1-1/+1
2012-02-04make-windows-installer: We no longer need wrappers, highlighting flags.John MacFarlane1-1/+1
2012-01-20Removed markdown2pdf and documentation.John MacFarlane1-1/+0
2011-10-24Modified windows installer generater to use cabal-dev.John MacFarlane1-6/+6
2010-03-19Changes to Windows installer.fiddlosopher1-1/+0
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1913 788f1e2b-df1e-0410-8736-df70ead52e1b