diff -urN freefem++-2.9.orig/DOC/freefem++doc.tex freefem++-2.9/DOC/freefem++doc.tex --- freefem++-2.9.orig/DOC/freefem++doc.tex Tue Sep 19 21:36:41 2006 +++ freefem++-2.9/DOC/freefem++doc.tex Wed Sep 20 10:19:13 2006 @@ -347,19 +347,16 @@ \item[\texttt{Crimson Editor}] at \url{http://www.crimsoneditor.com/} and adapt it as follows: -\begin{itemize} -\item Go to the \texttt{Tools/Preferences/File} association menu and add the .edp extension set -\item In the same panel go to Filters and add \texttt{freefem++(*.edp)} item -\item In the same panel again but under \texttt{Syntax Files} - add two files \texttt{FREEFEM.SPC} and \texttt{FREEFEM.KEY} to define the color syntax. To build - the first one simply copy paste the content of JAVA.SPC as for the second - copy paste the list of keywords in section \ref{keywrds}. +\begin{itemize} +\item Go to the \texttt{Tools/Preferences/File} association menu and add the .edp extension set \item In the same panel in \texttt{Tools/User} Tools, add a \texttt{FreeFem++} item (1st line) with the path to \texttt{freefem++.exe} on the second line and \texttt{\$(FilePath)} and \texttt{\$(FileDir)} on third and fourth lines. Tick the 8.3 box. +\item for color syntax, extract file from \texttt{crimson-freefem.zip} and put files in the corresponding sub-folder of + Crimson folder (\verb.C:\Program Files\Crimson Editor. ). \end{itemize} \item[winedt] for Windows : this is the best but it could be tricky to set up. Download it from @@ -11229,7 +11226,7 @@ Load: lg_fem lg_mesh eigenvalue UMFPACK 1 : // Example of dynamic function load 2 : // -------------------------------- - 3 : // $Id: freefem++doc.tex,v 1.38 2006-09-19 19:36:41 hecht Exp $ + 3 : // $Id: freefem++doc.tex,v 1.39 2006-09-20 08:19:13 hecht Exp $ 4 : 5 : load "myfunction" lood: myfunction @@ -11314,7 +11311,7 @@ Load: lg_fem cadna lg_mesh eigenvalue UMFPACK 1 : // Example of dynamic function load 2 : // -------------------------------- - 3 : // $Id: freefem++doc.tex,v 1.38 2006-09-19 19:36:41 hecht Exp $ + 3 : // $Id: freefem++doc.tex,v 1.39 2006-09-20 08:19:13 hecht Exp $ 4 : // Discret Fast Fourier Transform 5 : // ------------------------------- 6 : load "dfft" lood: init dfft @@ -11403,7 +11400,7 @@ \bFF // Implementation of P1-P0 FVM-FEM // --------------------------------------------------------------------- -// $Id: freefem++doc.tex,v 1.38 2006-09-19 19:36:41 hecht Exp $ +// $Id: freefem++doc.tex,v 1.39 2006-09-20 08:19:13 hecht Exp $ // compile and link with ./load.link mat\_dervieux.cpp (i.e. the file name without .cpp) #include #include diff -urN freefem++-2.9.orig/HISTORY freefem++-2.9/HISTORY --- freefem++-2.9.orig/HISTORY Tue Sep 19 21:39:10 2006 +++ freefem++-2.9/HISTORY Tue Sep 19 22:09:02 2006 @@ -1,3 +1,89 @@ +2006-09-19 21:36 hecht + + * correct openmpi trouble (async communication) + set version to 2.9 + +2006-09-19 17:07 hecht + + * update INNIVATION + +2006-09-19 16:24 hecht + + * change include.tar.gz file + +2006-09-19 16:02 hecht + + * add format output routine + see calculus.edp for examples + scientific, fixed, showpos, .... + +2006-09-19 11:47 hecht + + * correct configure.ac + problem with FLIBS flags with gfortan on macos + correct example++-load/install.tar.gz files + +2006-09-18 17:41 hecht + + * change under windows OS the installed files take the static + freefem++-cs because bug in dll version put by default programm + in \Program Files\FreeFem++ folder to remove automaticaly new + installation (For O. Pironneau) set the current version to 2.8-3 + +2006-07-21 18:35 hecht + + * passe to version 2.8-2 + +2006-07-21 17:02 hecht + + * correct bug with mpi (MPICH-2) + change the fortran in MacIntel (bug in complex eigenvalue) to + f2c. + +2006-06-30 11:16 hecht + + * add print in arpack error + correct missing speeling ciel in ceil function + add rint function + +2006-06-28 18:01 hecht + + * add missing file in make dist process + +2006-06-28 17:50 hecht + + * [no log message] + +2006-06-28 17:49 hecht + + * add missing file + +2006-06-28 17:46 hecht + + * add tool to remove cadna in ./configure -without-cadna + +2006-06-27 23:24 hecht + + * do correction for openmpi but the + openmpi is not asyncromous so some examples++-mpi do not work. + +2006-06-27 23:14 hecht + + * version 2.6-1 + +2006-06-16 16:04 hecht + + * correct doc netx step. + +2006-06-16 13:49 hecht + + * coorect lame.edp in chap 3 of the doc. + +2006-06-12 21:15 hecht + + * add correction from christophe.trophime@grenoble.cnrs.fr + to complie on FC5 with gcc 4.1 + 2006-06-01 09:28 hecht * add h flag to: Don't write symlinks as symlinks; write the data diff -urN freefem++-2.9.orig/Makefile.am freefem++-2.9/Makefile.am --- freefem++-2.9.orig/Makefile.am Tue Sep 19 17:07:07 2006 +++ freefem++-2.9/Makefile.am Wed Sep 20 10:27:08 2006 @@ -18,7 +18,7 @@ examples-bamg/square/*_g.* examples-bamg/square/do* \ examples-bamg/NACA012/[adp]* examples-bamg/NACA012/naca.awk \ examples-bamg/quadloop/dotest.pl examples-bamg/test/dotest*.pl \ -freefem++.spec +freefem++.spec crimon-freefem++.zip FF_MAC_PREFIX=FreeFem++v$(VERSION)$(ADD_PACKAGE_NAME) diff -urN freefem++-2.9.orig/Makefile.in freefem++-2.9/Makefile.in --- freefem++-2.9.orig/Makefile.in Tue Sep 19 21:36:41 2006 +++ freefem++-2.9/Makefile.in Wed Sep 20 10:27:35 2006 @@ -171,7 +171,7 @@ examples-bamg/square/*_g.* examples-bamg/square/do* \ examples-bamg/NACA012/[adp]* examples-bamg/NACA012/naca.awk \ examples-bamg/quadloop/dotest.pl examples-bamg/test/dotest*.pl \ -freefem++.spec +freefem++.spec crimon-freefem++.zip FF_MAC_PREFIX = FreeFem++v$(VERSION)$(ADD_PACKAGE_NAME) diff -urN freefem++-2.9.orig/README_WINDOWS freefem++-2.9/README_WINDOWS --- freefem++-2.9.orig/README_WINDOWS Thu Feb 9 16:30:47 2006 +++ freefem++-2.9/README_WINDOWS Wed Sep 20 10:01:25 2006 @@ -58,7 +58,7 @@ and the the cygwin package tex, pdflatex, ImageMagick , ghostscript -make WindowsPackage.iss +make win32 make documentation to build the setup file, use inno setup on file WindowsPackage.iss diff -urN freefem++-2.9.orig/WindowsPackage.m4 freefem++-2.9/WindowsPackage.m4 --- freefem++-2.9.orig/WindowsPackage.m4 Wed Apr 26 12:13:16 2006 +++ freefem++-2.9/WindowsPackage.m4 Wed Sep 20 10:26:15 2006 @@ -1,5 +1,5 @@ ; Creating a FreeFem++ package for Microsoft Windows with Inno Setup -; $Id: WindowsPackage.m4,v 1.26 2006-09-18 15:41:22 hecht Exp $ +; $Id: WindowsPackage.m4,v 1.27 2006-09-20 08:23:07 hecht Exp $ ; The Inno Setup configuration file WindowsPackage.iss is built from ; WindowsPackage.m4 with the command "make WindowsPackage.iss". @@ -26,6 +26,8 @@ Source: "COPYRIGHT"; DestDir: "{app}" Source: "COPYING"; DestDir: "{app}" Source: "README"; DestDir: "{app}" +Source: "crimon-freefem++.zip"; DestDir: "{app}" + ; Programs Source: "src\bin-win32\FreeFem++.exe"; DestDir: "{app}" ; to day the dll version do not works so we use the static one (FH) Binary files freefem++-2.9.orig/crimon-freefem++.zip and freefem++-2.9/crimon-freefem++.zip differ