2000-05-07  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* docs/Makefile.am: fixed some bugs introduced yesterday.
	* src/preferences.c: added a missing closing bracket.
	* src/toolbar.c: made load_static_toolbar return GtkWidget *,
		so it can be easily packed into a handlebox.
	* src/common_headers.h: modified accordingly.
	* src/webdesigner.c: added code to pack the main toolbar
		into a handlebox. It is commented out for now,
		because I like the current design better. :)
	* mhp-docs/TODO: added/removed/changed order. see the diff...

2000-05-06  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* webdesigner-full.spec.in: initial version.
	* configure.in: some hacks to support the unofficial
		webdesigner-full packaging target.
	* debian/rules.in: added support for webdesigner-full.
	* debian/control: added control information for
		webdesigner-full.
	* docs/Makefile.am: hacked the installation of 
		documentation. Now the webdesigner-full package
		looks better.
	* Makefile.am: hacked it to make the webdesigner-full
		package cleaner.
	* debian/: many, many changes. Too many to list here.
	* src/preferences.c: fixed a bug that led to a segfault
		when HOME was not set.
	* mhp-docs/NOTES: added a script to preview the
		actual page in a running netscape.

2000-05-05  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* debian/: moved GNOME .desktop file and menuicon to
		the data/ directory.
	* docs/Makefile.am: modified it a bit, so installs some
		documentation too. (more to come later)
	* data/Makefile.am: modified to install GNOME .desktop
		file and webdesigner-menuicon.xpm. Also, install
		the tips from ./ not from webdesigner/. This makes
		it easier...
	* data/webdesigner/*: moved to data/.
	* data/webdesigner.desktop: fixed commandline, and removed
		paths.
	* Makefile.am: install some more documentation.
	* AUTHORS: fixed some indentitation.
	* debian/rules: hacked on it a bit, to conform to the new
		installation procedure.
	* webdesigner.spec.in: upgraded to new installation
		procedure. (installs GNOME .desktop into the RPM too)
	* autogen.sh: autogenerate in extra, if extra/autogen.sh exists.
	* configure.in: cleaned up a little bit, now make dist & co
		work even if the webdesigner-extra package is installed
		into extra/.

2000-05-04  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* man/tidy.1: moved to the webdesigner-extra package.
	* debian/rules: do not try to delete tidy.1. It is not
		here anymore.
	* po/hu.po: translated subscript and superscript. I forgot
		it somehow... :)
	* webdesigner.spec.in: added French and Japanese tip files
		to %files.
	* src/misc.c: uncommented some things I commented out last time.
		I misunderstood the purpose, sorry! (I really shouldn't
		try to hack at 1 AM)
	* src/menu.c: changed gtk_item_factory_add_item in add_menu_items
		to gtk_item_factory_add_items. I did not know what the
		last paramater for the original function stands for, so
		I changed it to a function, I know how to call. (I admit,
		I hoped it will fix the segfault bug, but it didn't)
	* src/recent.c: FINALLY!!!! I found the segfault bug! Shot me in
		the head, I was lame and blind! In recent_add, the for
		cycle looked: for ( i=10; i>=0; i--) ... So if i==0, we
		still decrease it, and THAT caused the segfault. The splash
		screen did not have anything to do with that, it was just
		a co-incident.

2000-05-02  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* webdesigner.c: turn off the splash screen in every
		circumstance. We should find that nasty bug
		fast...

2000-05-01  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* configure.in: fixed things I broke last month... :)
	* Makefile.am: some fixes.

2000-04-30 LADISLAS Willhem <zillprog@freesurf.fr>

	* change web site url error in the docs.



2000-04-24 LADISLAS Willhem <zillprog@freesurf.fr>

	* +data/webdesigner/tips.ja (provided by Haruka)
	  +data/webdesigner/tips.fr

	* Merged all patch provided by Gergely, Haruka and me (it was hard !)

	* fixed a bug in files.c which caused a segfault (I introduced it when
	  merging files : I had 3 versions of files.c... ;-|


2000-04-20 LADISLAS Willhem <zillprog@freesurf.fr>

	* navigation.c: it seems now that no bugs are remaining (they were
		certainly due tu a lazy memory management) I checked what I
		thought could be dangerous.
	* files.c: fixed a BIG memory leak in the save callback! I wonder
		how I hadn't seen it before...
	* project.c: fixed some little memory management problems


2000-04-29  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* docs/HISTORY: fixed a typo in my name... :)
	* webdesigner.spec.in: added warning message to
		postinstall scripts. (I hope it works :)
	* configure.in: fixed a typo (gtkxmhtml was misspelled
		as gtkxmlhtml), checks for configure script in
		extra/[package] too, and if found, uses it.
	* mhp-docs/REQUIREMENTS: reformatted.

2000-04-28  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* src/preferences.c: added more checks to _get_value, and
		removed FIXME comment from get_rc_filename, for it
		is fixed.
	* src/tips.c: solve the segfault bug nicely. Less code,
		less resource, and looks nicer.

2000-04-27  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* src/tips.c: fixed potential segfault in get_tips.
		(thanks for the report!)
	* src/preferences.c: fixed the same problem, although it
		appears everyone has the HOME variable set... :)
	* po/hu.po: updated.
	* configure.in: made enable-debugging enabled by default.
		For the rest of this development phase...

2000-04-26  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* all affected files: synced with 0.1.5.
	* recent.c: replaced recent_filename with getname (misc.c).
		(Thanks Willhem for pointing this out!) I guess I should
		read through the code to find if a function I need already
		exists...
	* data/Makefile.am: corrected typo: added a few \s...
	* src/preferences.c: fixed a bug that caused the dialog NOT to
		display when it was closed by clicking on Cancel
		( I made it modal, that should solve the same problem
		I tried to fix ).
	* src/misc.c: made the print window modal.
	* src/common_headers.h: removed some unused booleans from global.
	* src/webdesigner.c: do not initialize the global booleans I
		just removed... Also uncommented the itemfactory restore
		thingy, but use the new filename instead of .wdesignrc,
		that is used by preferences...
	* src/misc.c: commented back itemfactory dumping, but changed the
		filename to .wdesign.menu

2000-04-25  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* webdesigner.spec.in: hacked on it a bit, so it creates three
		packages: webdesigner, webdesigner-gnome, and
		webdesigner-common. Just like the debian packages.
		(Thanks to The Rasterman, for I used imlib2's spec
		file as a sample :)
	* mhp-docs/TODO: removed a couple of things. Either because
		they're gtk+ bugs, or they are fixed.
	* configure.in: added --without-extra-progs option.
	* debian/control: I think I changed something... need to
		look at the diff...
	* debian/changelog: added an entry for 0.1.4.
	* mhp-docs/NOTES: added an idea about open from the web. A simple
		shell script. (read RELEASE-NOTES too!)

2000-04-24  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* src/toolbar.c: split load_first_toolbar () to
		load_static_toolbar() and load_first_toolbar.
		The second one is packed into a notebook, which
		is packed in a handlebox. If we pack the first one
		in a handlebox, that looks awful. It could be done
		in other ways, but this one seemed logical.
	* src/webdesigner.c: put the menubar and the toolbar-notebook
		into a handlebox, so they are detachable. If you
		don't like it, tell me, and I'll restore the original
		look.
	* src/common_headers.h: reorganized it, and removed unused
		declarations.
	* src/misc.c: added default flag for buttons, fixed a bug
		in close_application (if the user did not have a
		HOME env.var., he couldn't exit)
	* src/common.c: fixed indentitation somewhere...
	* src/doc.c: fixed a translation bug: fichier->file. (init_clist)
	* src/edition.c: made some buttons default.
	* src/files.c: removed some extra empty lines. Also added default
		flag for some buttons. (not everywhere, for some
		dialogs looked ugly after adding a default button)

2000-04-23  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* src/common_headers.h: added #include "config_extra.h"
		(that one is generated by configure)
	* src/Makefile.am: removed @EXTRA_SRC_DIRS@
	* mhp-docs/NOTES: removed. I should have rewritten it,
		but it seemed to much work for almost nothing,
		so I dropped it.
	* mhp-docs/*: updated almost every file, I don't know
		exactly which ones... If anyone is interested,
		look at the timestamps... :)
	* src/constants.h: corrected copyright date.
	* src/preferences.c: display_preferences_dialog now
		uses gtk_table for the checkbutton and
		recent file box...
	* webdesigner.spec.in: removed --without tidy, for we build
		without it by default.
	* debian/rules: removed --without tidy.
	* docs/TODO: updated. We have startup tips, although only one,
		but the support is there, we have support for
		recent files, but it needs testing, the navigation bar
		was present in 0.1.1 I think.
	* configure.in: fixed a cosmetic bug in yesterdays extra/ hack...

2000-04-22  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* all affected files: merged my 4 & 5 patches to the
		0.1.4 tree. I hope I got all things right...
	* ChangeLog: merged with my one with Willhems permission.
	* src/tidy/*: removed them from this distribution.
	* configure.in: added check for the extra/ directory.
		Included in the webdesigner-extra package.
		(Or something like that :)
		Also corrected some version checking bugs
		(try an older version, 0.1.3-mhp-5 for example,
		but delete the .version file before running
		./configure)
	* Makefile.am: added @EXTRA_PACKAGES@ to the SUBDIRS
		variable, so building the extra programs is done
		in the same step...


2000-04-20  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* src/menu.c: fixed a bug in add_menu_item, that
		prevented us to use the callback data.
		Also added a separator line below /File/Quit.
		The recent files submenu will be placed under it.
	* src/recent.c: fixed up many things, so now it works fine.
	* src/preferences.c: added recent_display to apply_preferences().
		It also loads and saves the recent files.
	* src/files.c: added recent file handling to openfile2 and
		nfiles.
	* src/getline.c: added sanity check and some debugging messages
		to const2str.

2000-04-19 LADISLAS Willhem <zillprog@freesurf.fr>

	* po/fr.po: finally finished the translation... (pfeww!)
	* +po/ja.po: this is the japanese translation of Web Designer !
		it has been submitted by haruka kusumi (haruka76@capella.freemail.ne.jp)
		It isn't yet functionnal : encoding changes got to be made.
		(haruka send me a patch, I'll include it later)
	* +po/es.po: spanish translation by Antonio de la Torre

2000-04-19  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* src/recent.c: initial version. This will contain the
		funtions related to recent file handling.
	* src/common_headers.h: added recent.c headers.
	* src/Makefile.am: added recent.c to the sources list.
	* src/preferences.c: fixed potential segfault in _get_value.
		Implemented some of the recent file handling.
		(They're not saved, and not loaded yet).
	* po/POTFILES.in: added src/recent.c to the list.
	* po/hu.po: updated. just for testing...

2000-04-18  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* src/menu.c: made the Help menu go to the right (marked it
		as <LastBranch>)

2000-04-18  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* src/getline.c: added comments.
	* src/preferences.c: removed FIXMEs, for they are fixed. Also added
		some code to free up memory before giving new value to
		a dynamically allocated string (load_preferences).
	* release: 0.1.3-mhp-4 (probably this won't leave my box)

2000-04-17  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* Makefile.am: added @EXTRA_DIRS@ to EXTRA_DIST, so I can include
		my docs with an -mhp-x version. After a reconfigure, they
		won't be needed anymore.
	* configure.in: added --with-extra-dist option.
	* mhp-docs/RELEASE-NOTES: uhh... fixed a typo, and started to
		add 0.1.3-mhp-4 release notes.
	* src/getline.c: initial version.
	* src/common_headers.h: added header for get_full_line and
		const2str (getline.c), modified the preferences struct,
		and added done_preferences (preferences.c).
		Added hscrollbar element to widsheet struct... If we
		figure out how to add a horizontal scrollbar...
	* src/tips.c: now uses get_full_line. This eliminates the 1k
		limit for line length, and makes the source a little smaller
		and easier to understand, because a couple of safety checks
		could be removed.
	* src/preferences.c: now uses get_full_line and const2str
		(both from getline.c), so the 1k limit is gone.
		Also, added a new function: done_preferences(), which
		frees up memory. It is used internally and in
		close_application (misc.c).
	* src/misc.c: close_application calls done_preferences. Also removed
		all limits on print_command. Fixed a bug that allowed the
		user to try printing an unsaved file. The same fix is
		applied to netscape_view. Fixed a typo in netscape_view...
	* src/Makefile.am: added getline.c to wdesign_SOURCES.
	* src/webdesigner.c: load configuration after the first step of
		the command-line parsing. So no debugging output is
		printed when it is enabled and one calls wdesign with a
		--version paramater...
	* src/doc.c: fixed state display of newly created documents. Statusbar
		now shows "State: new file".
	* mhp-docs/TODO: removed the fixed things...
	* src/pixmaps/erreur.xpm: renamed to erreur.xpm.orig, and added the new
		one. This one is pretty transparent, so if my GTK theme has a
		lighter background it is still displayed correctly.
	* src/pixmaps/Makefile.am: removed program_icon.xpm
		(webdesigner-icon.xpm is used instead), but added
		erreur.xpm.orig. Just in case...
	* src/*.c: corrected all (C) 1999 things to (C) 1999-2000.
	* NEWS: added a final newline.
	* README: added a final newline. (I love final newlines :)
	* AUTHORS: removed some extra spaces...

2000-04-16  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* src/tips.c: initial version. The randomizer should be rewritten,
		it isn't that good... Also the 1k limit should be removed.
		But the memory handling is pretty good... if malloc fails,
		it prints an error message (merror. and fprintf if DEBUG
		is defined).
	* po/POTFILES.in: added tips.c
	* po/hu.po: updated.
	* src/webdesigner.c: display tips when preferences.show_tips is
		true. Also set global...._displayed to FALSE at the
		beginning.
	* src/preferences.c: added show tips checkbutton to the dialog. And
		also added some code to verify that this is the only
		preferences window displayed, to avoid segfaults.
		Added debugging messages.
	* src/common_headers.h: added show_tips to the preferences struct.
		Added some booleans to the global struct. Needed to check
		if a window that can cause segfault (those that have
		widgets whose values are used later) is already displayed.
	* src/Makefile.am: add tips.c to the wdesign_SOURCES variable.
	* src/common.c: Fixed typo: <SPAN ...></SPAN> was <SPAN ...></STYLE>
	* configure.in: added --enable-debugging option. (defaults to off)
	* src/menu.c: added debugging messages.
	* src/webdesigner.spec.in: added French mo and tip files to the rpm.

2000-04-15  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* src/webdesigner.c: fixed the bug I introduced a week ago: opening
		files should be done AFTER creating the main window, not
		before. Also made a check if the file specified after
		--file could be opened. If not, recreate the initial html
		file. Also changed the behaviour of --project. Now it
		creates a new html file if opening the project isn't
		possible, not a text file. The program also has a new icon.
	* src/pixmaps/webdesigner-icon.xpm: the new program icon. From the
		IDs-MachinE Enlightenment theme...
	* src/project.c: display the filename in the error message when
		opening a project from the command line.
	* po/hu.po: updated.
	* src/preferences.c: rewrote load_preferences and save_preferences,
		so they can handle spaces now. The only limitation is that
		that the line length should stay below 255 chars... Also no
		bounds checking & stuff is made, so the code pretty unsafe...
		Added saving and loading of printer_command, and added it to
		the preferences dialog. And added a label for the browser
		path thing...
	* src/misc.c: put printer command to the preferences struct, and
		use that value when asking for the command. Readded the
		paramater for the extarnal viewer (now user can specify a
		%s again)
	* debian/rules: configure webdesigner to build without tidy. I
		need to talk to Willhem about this...
	* webdesigner.spec.in: configure webdesigner to build without tidy.
	* Makefile.am: fixed build path of the bin-dist target to not
		conflict with dist. So one can run make dist and
		make bin-dist at the same time.
	* mhp-docs/TODO: updated.

2000-04-14  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* configure.in: made building of tidy optional. Well... I fixed
		*LOTS* of bugs in it. The AC_ARG_WITH things were too
		simple to be true...
	* src/Makefile.am: changed SUBDIRS line to have a @EXTRA_SRC_DIRS@
		in it, so we can trick automake, and add extra dirs at
		configure time. Required to make building of tidy
		optional.
	* mhp-docs/NOTES: initial version.
	* src/constants.h: initial version. This header file will contain
		most of the constants. Such as the TAG constants.
	* src/common.c: replaced constant values with constant names, removed
		duplicates, and possibly fixed some typos.
	* src/menu.c: replaced constant values with constant names, removed
		duplicates, and possibly fixed some typos.
	* src/navigation.c: fixed a typo. And replaced constant values with
		constant names.
	* src/toolbar.c: replaced constant values with constant names, removed
		duplicates, and possibly fixed some typos.
	* src/project.c: replaced constant values with constant names.
	* src/advanced.c: replaced constant values with constant names.
	* src/misc.c: fixed a bug that caused to display file informations incorrectly.
		It displayed that the file was modified when it wasn't, and vice versa.
		A TRUE was set to FALSE, and now works correctly. Also fixed a typo:
		memory was misspelled as memmory.
	* po/hu.po: updated after changing a couple of typos.
	* debian/webdesigner-gnome.menu: do not install icon. It looks awful.
	* debian/webdesigner-gnome-menuicon.xpm: removed from the distribution.
	* Makefile.am: do not depend on the menuicon anymore.
	* AUTHORS: corrected my e-mail address. An 'y' was missing... I guess hungarian
		is hard to learn/understand :)
	* mhp-docs/RELEASE-NOTES: initial version. I'll add some comments to this
		file, whenever I release an -mhp-x patch.
	* release: made a 0.1.3-mhp-2.90 prerelease, just for myself...

2000-04-13  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* configure.in: removed AM_INCLUDE stuff. Output a .version
		file without version.in, simply echo ${VERSION} >.version...
	* webdesigner.spec.in: do not do aclocal, etc stuff.
	* debian/rules: do not do aclocal stuff.
	* bugfix: if gtk.m4 can be found by aclocal, then it
		shouldn't be included from macros/ too. So
		it is turned off by default. If you get an
		error about a missing AM_PATH_GTK macros, try 
		aclocal -I macros.
		(bug noticed and reported by mark@sunshine.nkkorhaz.hu)
	* mhp-docs/THANKS: initial version.
	* mhp-docs/REQUIREMENTS: initial version.
	* src/files.c: added <META NAME="Generator" CONTENT="WebDesigner/VERSION"> tag
		to the initial document.
	* Makefile.am: removed .version.in, this is handled by configure now. removed
		macros stuff.
	* debian/webdesigner-gnome.desktop: added full path for icon.
	* debian/webdesigner-gnome.menu: added icon.
	* debian/webdesigner-gnome-menuicon.xpm: 32x32 version of mini_logo.xpm

2000-04-12  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* all affected files: applied my 0.1.2-mhp-2 patch to
		the 0.1.3 tree.
	* Makefile.am: added the bin-dist target. It is too simple
		to be true... There *must* be lots of bugs in it...
	* debian/changelog: added a new entry.
	* Changelog: corrected my name, there was an extra 'r'... :)
	* preferences.c: save_preferences saves preferences.tab_position
		in english, regardless of the current locale, load_preferences
		translates it back.
	* release: the 0.1.3-mhp-1 patch.


2000-04-11 LADISLAS Willhem <zillprog@freesurf.fr>

	* +man/wdesign.1 --> english man page
	* >man/wdesign.1>wdesign.fr.1
		    updated the french man page
	* src/misc.c : fixed the freeze problem when starting the
		   external browser
	* src/menu.c : removed 'CTRL+P' shorcut for the preference dialog
		   introduced by Gergely since it is already used by the
		   text widget 
	* src/webdesigner.c: reduced the splash screen display time to
		     2 seconds (it was 5)
	* configure.in: added reference to french translation
			    
2000-04-10 LADISLAS Willhem <zillprog@freesurf.fr>

	* webdesigner.c: fixed the forgotten translation and fixed
	          the splash logo problem (some WM used to consider it
	          as a normal window and gaved it a status bar) 
	* +fr.po : started french translation
	
2000-04-09  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* debian/control: added Build-Depends field.
	* webdesigner.spec: now it is autogenerated by configure from
		webdesigner.spec.in
	* webdesigner.spec.in: initial revision. Corrected some
		typos, and grammatic errors in the package description.
		At leas I hope I did... :)
	* po/hu.po: see the ChangeLog there...
	* configure.in: modified the --with-extra-version paramaters
		effect: it will preserve the extra-version, even if
		I run a ./configure; make... This is good if someone
		downloads a webdesigner binary from my FTP, so he'll
		know, that that one is not an official release.
	* src/menu.c: reverted to use GtkItemFactory. This way, we can
		get back those nice underlines, and shortcuts. I found
		a way to translate this kind of menu: we have a base menu,
		which is not translated, then we rebuild it, and while
		rebuilding, we translate the menus.
	* src/webdesigner.c: revert to old way of calling get_main_menu. Also,
		load the ItemFactory dump (or what that thing is). This
		change resulted in loss of 7k in the stripped binary. Great!
		Also added the --nosplash option, even to the help... And
		added a missing newline too...
	* src/misc.c: uncommented the ItemFactory dumping thing.
	* src/common_headers.h: updated to the old-new menu.c

2000-04-08  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* configure.in: made gtkxmhtml optional. By default, it is searched
		for, but it can be disabled, so one can compile such a
		version, that does not depend on any gnome library.
	* debian/*: rewrote the entire directory from scratch. Okay, I used
		xchat as a sample... So now three package is built from the
		sources: webdesigner-common which includes common files
		(documentation, manpages, locales), webdesigner, which
		is configured NOT to use gtkxmhtml, for that depends on
		a gnome library, one might not have, webdesigner-gnome, for
		people using gnome.
	* webdesigner.spec: fixed it, so it installs the locales correctly.
	* src/files.c: fixed a typo: in the initial HTML document, the <TITLE>
		tag wasn't closed.


2000-04-08 LADISLAS Willhem <zillprog@freesurf.fr>
	* navigation.c : fixed some memory allocation problems

2000-04-07  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* src/webdesigner.c: parse command line *before* starting GTK, so
		we can get a help from the console. Around there, changed
		it a bit to use VERSION instead of the major_release...
		things. This is not 0.2.0 yet, and we should include all
		extra versions...
		Also removed the last trace of the evil itemfactory.
	* src/misc.c: removed the last trace of the evil itemfactory.
	* configure.in: added --with-extra-version option. So I can easily
		generate an unofficial-release to be sent to Willhem.
	* debian/menu: corrected binary filename.
	* debian/rules: install GNOME menu component (webdesigner.desktop)
	* debian/webdesigner.desktop: initial version.
	* debian/webdesigner.xpm: exact copy of src/pixmaps/mini_logo.xpm

2000-04-06  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* src/menu.c: eliminated the warning message I introduced a few
		days ago, renamed create_menu_item to create_menu_item_accel,
		and added new create_menu_item. This made the binary smaller
		by 1k...
	* doc/mhp/TODO: Cleared some things, let the others do things too...

2000-04-02  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* po/hu.po: initial revision.
	* po/ChangeLog: started to make 'make dist' happy.
	* po/webdesigner.pot: regenerated.
	* po/POTFILES.in: added menu.c and navigation.c
	* src/menu.c: optimized the functions a bit, so I could get rid of
		almost all GTK_MENU () macros. This did not make the binary
		code much smaller, but the source looks nicer.
	* src/*.h: reorganized headers. Almost all of them are merged
		into common_headers.h. Only pixmaps.h and my_intl.h left out.
		Every c file includes common_headers.h only, except misc.c,
		which includes pixmaps.h and - if gtkxmhtml is used - the
		gtkxmhtml headers. Now the includes are pretty clean, and
		- in my opinion - easy to understand.
	* Makefile.am: include webdesigner.spec in EXTRA_DIST.
	* debian/dirs: deleted. make install installs directories too.
	* webdesigner.spec: renamed the old spec, and made it a little
		bit better. I think this should install everything correctly.
		The only thing missing is the locale file handling. They
		doesn't get to the RPM yet...
	* docs/mhp/BUGS: deleted. Everything is in the TODO list :)
	* src/menu.c: added a missing _().
	* bin/ and obj/: removed. They are not used anymore.
	* src/tidy/Makefile.am: declare LIBS and LDFLAGS as empty, so
		the binaries do not depend on gtk and X libraries.


2000-04-03 LADISLAS Willhem <zillprog@freesurf.fr>

	* fixed some dialogs bugs : when clicking several times on the "open file" button the program opened several dialogs which is not appropriate.
	* fixed some english translation I had forgotten (and algernon remind  me ;-)

2000-04-01  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* configure.in: added libgtkxmhtml check from original configure.in
	* pixmaps/: moved to src/pixmaps
	* src/tidy: autoconf/automake support added
	* Makefile.ams : modified them to work well when one does
		a make dist or make install.

2000-03-31  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* src/menu.c and src/menu.hu : initial versions.
		+ these files contain the menu system.
		+ the new system can be translated, for gcc does not
		complain about _() in the ItemFactory.
		+ but does not look so good... but that's not a big
		thing I think. Only a few underlines are missing...
		+ fixed a couple of bugs. (some menus inserted wrong things...)
	* src/webdesigner.c : modified to use menu.c, added icon.
	* src/webdesigner.h : wiped get_main_menu prototype. It is in
		menu.c now.
	* src/Makefile.am : add menu.c and menu.h to wdesign_SOURCES
	* pixmaps/program_icon.xpm : same as mini_logo.xpm, but smaller.

2000-03-30  Gergely Nagy <algernon@madhouse.lonyay.edu.hu>

	* Made the package use autoconf/automake and co.
	* Added some missing _() [i18n issue]
	* CPU optimisations were removed (configure.in was
	completely rewritten), it did not work for me...
	(my gcc does not support -mpentium)
	* Noticed some things, and made my own TODO list...
	* Reindented the src/ directory with:
		indent *.c *.h -cdb -nce -sob -cs -i4 -gnu -pcs -ss -ts4 -l70 -bs -fca -sc
	* Made new debian/ directory.

2000-03-15  LADISLAS Willhem <zillprog@freesurf.fr>

   * added the navigation bar
   * added ASP bar
   * changed toolbars look
   * added new insertion function for non symetrical tags
   * added two more files (advanced.c and navigation.c)
   * added references
   * changed package directory layout
   * and so much more that i'm too tired to list....

2000-03-13  LADISLAS Willhem <zillprog@freesurf.fr>

   * terminated key accelerators installation (fixed HOME environment variable problem)
   * changed the size of the notebook tabs
   * added the right click shortcut on tabs
   * added quick html start with preformatted new document
   * added selection change case (to lower or to upper) option

2000-03-11  LADISLAS Willhem <zillprog@freesurf.fr>

    * now key acceleretors are saved when quitting and reloaded on startup

2000-03-06  LADISLAS Willhem <zillprog@freesurf.fr>

    * Version 0.1.0
    * made gtk-xmhtml lib optional
    * terminated full i18n and l10n support
    * added frame tags
    * added optimised cpu compilation (-m386, -m486, ...)
    * added the -pipe option to the compilation command
      (require more memmory but speeds up the compilation)
    * started the implementon of the search/search and replace callbacks
    
2000-02-08  LADISLAS Willhem <w_ladislas@yahoo.com>

    * optimized paste/cut/copy/select all/copy in new doc code.
    * fixed the slow scrolling bug when going up in the text.
    * optimized the open / close file routine.
    * optimized the project code.
    * added i18n and i10n !!!!
    * reviewed/corrected some bad algorithms.

2000-02-19 LADISLAS Willhem <zillprog@freesurf.fr>

    So many things... but in brief :
    * added a function replacing of special characters.
    * added a function clearing all tags.
    * new icons / icons modified.
    * changed/added some menus and accelerator keys according to the text widget's predefined shortcuts.
    * slightly changed the layout of the main window (put space in the docs and icons).
      enlarged the size of the help bar.
    * changed the way information is given in the help bar.
    * added more informations on tags in the help bar.
    * added tearoffs in the menus !
