2002-12-20  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* configure.in: Slight cleanups, don't create eu documentation
	Makefiles.
	* Makefile.am: Added intl subdirectory.
	* gncal/Makefile.am: Increased readability.

2002-12-19  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* configure.ind: Version 1.4.9.

	* NEWS: Updated.

	* DEPENDS: Removed.

	* configure.in:
	* Makefile.am: gettext updates.
	
2002-11-26  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gnomecard/gnomecard.c (main):	Always initialize gnomecard_fname;
	if no filename is given, use the empty string.
	* NEWS: Should fix a crasher.

2002-08-19  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gnomecard/gnomecard.c:
	(gnomecard_save): Slightly improved readability.
	(main): g_strdup() -f argument to prevent the original argument
	memory from being free. Fixes a segfault.

2002-08-16  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* README: Empty file, since it didn't contain any useful or up-to-date
	information.

	* gncal/calendar-conduit.c: Define global variable all_calendars.

2002-08-06  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gnomecard/list.c (drag_data_get): Bug fix from Vincent Untz
	for Bugzilla #5112: gnomecard crashed, if a card was dragged,
	even though no card active.
	* gncal/doc/C/topic.dat: Removed non-working link to cmdline.html.

2002-08-02  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	Warning fixes:

	* gncal/corba-cal.h: Include gnome-cal.h.
	* gncal/gnome-cal.c: Include alarm.h.
	(mail_notify): Make static.
	* gncal/layout.c (find_index): Ditto.
	* gncal/quick-view.c (create_items_for_event): Ditto.

	Memory leaks:

	* gnomecard/canvas.c (gnomecard_update_canvas): Plug a memory leak.
	* gnomecard/dialog.c: Removed some old commented out code.
	(gnomecard_cancel):
	(gnomecard_prop_close): Another memory leak plugged.
	* gnomecard/list.c (gnomecard_add_card_to_list): Another one.

	Fix for Bugzilla #13574:

	* gnomecard/dialog.h:
	(GnomeCardEditor): Replaced the GList pointer "l" by a Card pointer
	"card". There was no reason to store the list element instead of
	the card pointer in the first place.
	(gnomecard_edit): Take a card pointer instead of a GList pointer.
	* gnomecard/dialog.c:
	(gnomecard_edit):
	(gnomecard_prop_apply):
	(gnomecard_edit_card): Changed accordingly.
	* gnomecard/gnomecard.c:
	(gnomecard_new_card): Ditto.
	* gnomecard/list.c:
	(gnomecard_list_selected): Ditto.

	* configure.in:
	* NEWS: Version 1.4.8

2002-07-10  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gncal/calendar-conduit.c: Added global variable roll_at_midnight.
	This was undefined before, and so the conduit would refuse to run.

2002-07-03  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gncal/gncal-week-view.c (gncal_week_view_time_format_changed):
	Call gncal_week_view_set() so that the week view itself gets
	updated whenever the start-of-week setting changes. (Bugzilla
	#2334)

2002-06-12  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* main.c (init_default_alarms): Use a default value of 15 minutes
	  for all alarm types. Also, fixed loading of ALARM_MAIL defaults
	  (Dann Frazier).
	* eventedit.c: Removed useless forward declaration of
	  ee_store_alarm().
	  (ee_store_alarm): Added a third argument: exit_if_disabled. The
	  function will only return prematurely if this argument is true
	  and this alarm type is disabled. This way alarm->units and
	  alarm->count can get filled out, even if the alarm type is
	  disabled (needed for the properties dialog).
	  (ee_store_general_values_to_ical): Pass TRUE as third argument
	  to ee_store_alarm().
	* prop.c (prop_store_alarm_default_values): Pass FALSE as third
	  argument to ee_store_alarm().
	* NEWS: These changes fixed a bug in the alarm settings.

2002-06-01  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gncal/doc/C/topic.dat: gnomecal.html -> index.html
	(Thanks to Joe Clarke for pointing this out.)

2002-06-01  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* configure.in:
	* NEWS: Version 1.4.7

2002-05-14  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* configure.in: Added Vietnamese (vi) to ALL_LINGUAS

2002-05-02  Federico Mena Quintero  <federico@ximian.com>

	* MAINTAINERS: I'm no longer a maintainer!

2002-05-02  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gncal/gnome-cal.c:
	(get_current_page): Return NULL instead of crashing if
	notebook->cur_page is NULL.
	(gnome_calendar_goto): Return immediately if get_current_page()
	returned NULL.

2002-04-26  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* NEWS:
	* configure.in:
	Version 1.4.6.

2002-04-25  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gnomecard/list.c: (gnomecard_update_list):
	Corrected debug output.

	* gnomecard/gnomecard.c: (gnomecard_new_card):
	Append card to card GList before adding it to the CList, so that
	callbacks that are attached to the CList will find the correct
	GList structure. This fixes an annoying warning message as well
	as the incorrect update of the canvas.

	* gnomecard.c/card.c: (add_CardStrProperty):
	Check whether add_strProp() actually returned a not-NULL property
	before trying to use add_CardProperty(). This fixes a nasty segfault
	that lead to data loss.

	* gnomecard/dialog.c: (gnomecard_prop_apply):
	Use NULL instead of MY_STRDUP(""). (Has the same effect, but the
	former is cleaner.)

2002-04-19  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gnomecard/dialog.c:
	Removed debug output.

2002-04-15  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gncal/calobj.c: (ical_object_create_from_vobject):
	g_strdup() the "PUBLIC" string.

2002-04-08  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gncal/calendar.c: (calendar_save):
	Fixed annoying "Error while writing file: Success" messages.

2002-03-28  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* NEWS:
	* configure.in:
	Version 1.4.5.

2002-03-27  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gncal/main.h:
	Include files from which definitions are used.

	* gncal/month-view.c:
	Christian: Order events correctly in the month view. (Bugzilla #35052)

	Fixes by Vincent Untz:

	* gncal/gncal-week-view.c:
	Week view does now honor week_start_on_monday. (Bugzilla #2334)

	* gncal/gncal-week-view.c:
	Now, the current day is selected in the calendar widget.
	(Bugzilla #73816)

	* gncal/timeutil.c: (time_week_begin, time_week_end):
	Remove FIXMEs by honoring week_starts_on_monday.

	* gncal/gncal-week-view.c: (jump_to_day, sync_week,
	  gncal_week_view_set):
	Cleanups and small fixes.

	* gncal/gncal-day-panel.c: (gncal_day_panel_set):
	Fix a bug where the label in the day view did not appear after
	program start.

	* gncal/week-view.[ch]:
	Removed unused files.

2002-03-17  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gnomecard/gnomecard.c:
	Christian: Add short descriptions to Find/Sort menu.

	* gncal/main.c:
	* gncal/html-month.c:
	* gncal/Makefile.c:
	Removed html-month.c, since it was not used anyways and was way
	unfinished. Also removed an extra separator in the menu that was
	caused by this.

2002-03-14  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gncal/main.c: (parse_an_arg):
	Fix the --userfile command line option.

2002-03-13  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gncal/calendar-conduit-control-applet.c:
	Christian: Unmark two strings that were marked for translation;
	one was a name and e-mail address that contains just ASCII
	characters, the other is a file name.

	* gnomecard/gnomecard.c:
	* gnomecard/init.c: (gnomecard_init_defaults):
	Christian: Added command line option -f, --filename to load a given
	filename on startup. (Partly addresses Debian bug #126007, the
	rest is a Debian packaging issue.)

2002-03-12  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* libversit/Makefile.am:
	* gncal/Makefile.am:
	* gnomecard/Makefile.am:
	Christian: Fix linker errors on SGI IRIX 6.5 by not using libtool
	for libversit.a. (Bugzilla #61031) -rpath removal and some small
	cleanups by me.

	* gncal/corba-cal-factory.c: (init_corba_server, unregister_calendar_services):
	Christian: Fix startup crashes.

	* gncal/calobj.c: (ical_object_to_vobject):
	Christian: Don't save dtend if it's 0 (i.e. the epoch 1970-01-01
	00:00). Partly addresses Bugzilla #6058.

	* gncal/calendar.c: (calendar_open):
	Store errno privately so that the displayed error message is correct.

	* gncal/gncal-week-view.c: (gncal_week_view_set):
	Put %W time format string in week_end part, since otherwise we get
	problems when the week start is set to Sunday. Also use %V instead
	of %W to get the ISO week number, instead of the C week number.
	This makes the week number consistent with the one from GtkCalendar.

2002-03-10  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* libversit/vcc.y:
	Christian: Fix a problem with locale-dependent string comparisons.
	(Bugzilla #64801)

	* gncal/main.c:
	The main window's title is now just one localized string. This
	should make l10n easier.

	* gncal/calendar-conduit.c:
	Move #define of G_LOG_DOMAIN to the top of the file.

	* gncal/calendar.h:
	* gncal/calendar.c: (calendar_save):
	Rewrote function. Does now try to restore the backup file if
	writing the calendar file failed. (Bugzilla #51662) Also, make
	fname argument const.

	* gncal/gncal-full-day.c:
	Renamed get_tm_range() to time_row_usage(), documented this function
	and cleaned it up.

	* gncal/gncal-week-view.c:
	Christian/me: Show week numbers. (Bugzilla #26377)

	* gncal/corba-cal-factory.h:
	s/corba_server_init/init_corba_server/

	* gnomecard/sort.c: (gnomecard_do_sort_cards):
	Christian: Fixed a crash that occured if an empty card list was
	sorted. Also increased sort speed a bit.

	* libversit/vobject.c: (fakeCString):
	Christian: Fixed possible crashes by just returning an empty
	string if NULL is passed in.

	* gncal/calobj.c: (ical_object_create_from_vobject):
	Christian: Remove a now redundant error check.

	* gncal/main.h:
	* gncal/main.c:
	* gncal/calendar.c: (calendar_day_change):
	* gncal/prop.c:
	Christian/me: Calendar roll over at midnight. (Bugzilla #6435)

2002-03-09  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* configure.in:
	Call it 1.4.5pre.

	* Makefile.am:
	* gnomecard/Makefile.am:
	* gncal/Makefile.am:
	Don't distribute auto-generated files.

	* gncal/Makefile.am: (install-data-local):
	Fix installation into $(DESTDIR).

	* gnomecard/emaillist.c:
	Select "Internet" by default.

	* gncal/gncal-todo.c:
	Fixed the time format of the to do list to be in the current locale,
	instead of %m/%d/%Y.

2002-03-09  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* configure.in:
	Reordered some entries to remove a autoconf warning. Call it 1.4.4.

	* NEWS:
	Changes for 1.4.4: Various bug and build fixes.

	* gnomecard/help/eu/.cvsignore:
	* gncal/doc/eu/.cvsignore:
	* gncal/doc/eu/images/.cvsignore:
	Added files to ignore generated files.

	* gnomecard/gnomecard.c:
	Another patch by Christian that restores the pane in GnomeCard's
	main window. (Bugzilla #57554)

	* gncal/gncal-todo.c:
	Christian: Fix sort order in to do list. (Bugzilla #8469)

	* gncal/calobj.c:
	Christian: Fix a pilot-sync crash. (Bugzilla #50134)

	* gncal/gncal-day-panel.c:
	Christian/me: Replaced the vertical paned between the to do list
	and the month overview by a separator. The paned was of no point,
	since the month	overview is basically of fixed size. Also increased
	the gutter size of the horizontal paned. (Bugzilla #57456)

	* gncal/gncal-full-day.c: (gncal_full_day_get_day_start_yoffset):
	Added a check for fullday->interval being not null. This should
	change the floating point crashes as reported in bugs #8290 et al.
	to warnings. While this is not a proper fix, it should at least
	fix the crashes.

	* gncal/calobj.c: (ical_object_generate_events):
	Fixed a problem where the Palm sync would get stuck. Patch from
	the bug report. (Bugzilla #38518)

2002-03-08  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gnomecard/gnomecard.c:
	Fixed crash when the CORBA name server can't be found. Thanks to
	Christian Biesinger for fixing this. (Bugzilla #54580)

	* gnomecard/dialog.c:
	The text entry field in the find dialog will now get the focus
	initially. Thanks again to Christian. (Bugzilla #60373)

	* gncal/doc/eu/images/Makefile.am:
	Fix image file names.

	* gncal/doc/C/Makefile.am:
	Removed eu sub-directory until the Basque translation is in a better
	shape. (I.e. finished, current, and convertable.)

	* gncal/doc/C/gnomecal.sgml:
	Fixed the name of section gnomecal to calendar to avoid a
	duplicate id.

2002-02-28  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* configure.in, */eu/: added Basque help files

2002-02-13  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gncal/doc/C/gnomecal.sgml:
	Change id of gnomecal chapter grom gcal to gnomecal, since that's
	what topic.dat expects and what is nicer anyways.

	* libversit/README.TXT:
	* libversit/vobject.h:
	* libversit/vcaltmp.c:
	* libversit/vcaltmp.h:
	* libversit/vcaltest.c:
	* libversit/vctest.c:
	* libversit/vcc.h:
	Removed DOS-style line endings. (Bugzilla #16741)

	* gncal/gncal-todo.c: (make_todo_style), (insert_in_clist):
	* gncal/main.c: (parse_an_arg):
	Added break's to empty case blocks. (Bugzilla #16741)

2002-02-12  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gncal/calendar-conduit.c:
	* gncal/address-conduit.c:
	Non-gcc compatibility fixes (Bugzilla) and general cleanups.

	* gncal/calendar.c:
	Includes cleanups.

	* gncal/calendar.c: (calendar_save):
	Added a validity check and fixed a segfault. (Patch for the latter
	from Bugzilla.)

	* gncal/gnome-month-item.c: (gnome_month_item_init),
	(gnome_month_item_set_arg):
	Fixed i18n issues (Bugzilla).

	* gnomecard/address-conduit-capplet.c: (createCfgWindow):
	Non-gcc compatibility fix (Bugzilla).

	* gnomecard/deladdrlist.c: (deladdrlist_add_deladdr):
	Fixed a segfault (Bugzilla).

2002-02-05  Abel Cheung  <maddog@linux.org.hk>

	* configure.in (ALL_LINGUAS): zh_CN.GB2312 -> zh_CN

2002-01-29  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* po/POTFILES.skip:
	* po/POTFILES.in:
	Added missing files.

2002-01-04  Pablo Saratxaga  <pablo@mandrakesoft.com>

        * configure.in: Added "eu" to ALL_LINGUAS

2001-12-09  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gncal/doc/C/images/*.png:
	New images.
	* gncal/doc/C/images/*.gif:
	Removed.
	* gncal/doc/C/images/Makefile.am:
	* gncal/doc/C/gnomecal.sgml:
	Made new screen-shots. These are now in PNG format.

	* gncal/doc/C/.cvsignore:
	Ignore *.rtf, *.ps, and *.out files.

	* gncal/doc/C/Makefile.am:
	New rule to create PDF documentation.

2001-12-08  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gncal/doc/C/images/.cvsignore:
	New file to ignore Makefile and Makefile.in files in this directory.

	* configure.in:
	* gncal/doc/C/Makefile.am:
	* gncal/doc/C/images/Makefile.am:
	Re-wrote the documentation creation makefiles completely.

2001-12-02  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* gncal/calobj.h:
	Fixed a warning by removed a comma from the end of an enum list

	* gncal/gncal-todo.c:
	Fixed a problem, where gcc complained that it can't initialize
	a struct with dynamic content

	* gncal/doc/C/.cvsignore:
	Added files that are generated when creating DVI, PS, or PDF

	* gncal/doc/C/gnomecal.sgml:
	Use DocBook 4.1

	Renamed a section from tech.html to tech; the former caused the
	HTML file to be called tech.html.html

	Retitled a <tip> from "TIP" to "Adding Appointments Quickly";
	this removes the ugly "Tip: TIP" output in the HTML version

2001-11-28  Sebastian Rittau  <srittau@jroger.in-berlin.de>

	* MAINTAINERS:
	Added myself to maintainer list.

	* .cvsignore:
	Ignore stamp-h1 generated by automake 1.5.

	* gnomecard/Makefile.am:
	Changed "CLEANFILES += ..." to "CLEANFILES = ...". automake 1.5
	doesn't like the former.

	* gncal/calendar-conduit.h:
	Warning fix.

	* gncal/Makefile.am:
	* gnomecard/Makefile.am:
	Add $(ORBIT_CFLAGS) to INCLUDES variable.

2001-10-07  Eskil Heyn Olsen  <eskil@eskil.dk>

	* configure.in:
	prep for 1.4.4
	
2001-10-07  Eskil Heyn Olsen  <eskil@eskil.dk>

	* configure.in:
	done with 1.4.3

2001-10-07  Eskil Heyn Olsen  <eskil@eskil.dk>

	* NEWS:
	yadayada

	* gncal/Makefile.am:
	* gncal/allday.xpm:
	Added decor for allday events
	
	* gncal/calendar-conduit.c: (ical_from_remote_record), (transmit):
	Better conversion to/from allday events

	* gncal/calobj.c: (ical_object_new),
	(ical_object_create_from_vobject), (ical_object_to_vobject):
	* gncal/calobj.h:
	Added a gboolean field to indicate a timeless allday event

	* gncal/eventedit.c: (ee_check_all_day), (check_times),
	(set_all_day):
	Twiddled to use the icalobject->allday boolean field

	* gncal/gncal-full-day.c: (child_realize), (child_draw_decor),
	(child_compute_decor), (gncal_full_day_init),
	(gncal_full_day_unrealize):
	* gncal/gncal-full-day.h:
	Draw decor for allday events

	* gncal/gnome-cal.c: (mark_gtk_calendar_day):
	Correct marking for recurring events.
	
	* gncal/main.c:
	* gncal/main.h:
	Set up a color for days with events in year view

	* gncal/mark.c: (get_item_bg_color), (colorify_month_item),
	(mark_event_in_month), (mark_month_item), (mark_month_item_index),
	(day_event):
	* gncal/mark.h:
	* gncal/prop.c: (fake_mark_days):
	* gncal/year-view.c: (do_quick_view_popup):
	Tricks for display days with notime allday events with a different
	colored number label in the year view (also proper popups).
	
	* gncal/month-view.c: (do_quick_view_popup), (add_event):
	Print monthview with allday events without time, and proper popups.
	
	* gncal/quick-view.c: (create_items_for_event):	
	* gncal/view-utils.c: (view_utils_draw_events):
	Stuff for displaying allday events without time.

	* gnome-pim.spec.in:
	Don't quiet configure
	
	* gnomecard/Makefile.am:
	Readded SUBDIRS, couldn't tell why it was removed, but
	the files were expected to be there.
	
	* libversit/vobject.h:
	Defined XPilotNoTimeProp to X-PILOT-NOTIME
	
2001-10-07  Eskil Heyn Olsen  <eskil@eskil.dk>

	* NEWS:


	* gncal/calendar-conduit.c: (ical_from_remote_record), (transmit):
	
	* gncal/calobj.h:
	* gncal/calobj.c: (ical_object_new),
	(ical_object_create_from_vobject), (ical_object_to_vobject):
	Added a gboolean field to indicate a timeless allday event

	* gncal/eventedit.c: (ee_check_all_day), (check_times),
	(set_all_day):
	
	* gncal/gncal-full-day.h:
	* gncal/gncal-full-day.c: (child_realize), (child_draw_decor),
	(child_compute_decor), (gncal_full_day_init),
	(gncal_full_day_unrealize):
	
	* gncal/main.c:
	* gncal/main.h:
	
	* gncal/mark.h:
	* gncal/mark.c: (get_item_bg_color), (colorify_month_item),
	(mark_event_in_month), (mark_month_item), (mark_month_item_index),
	(day_event):
	* gncal/prop.c: (fake_mark_days):

	* gncal/quick-view.c: (create_items_for_event):
	* gncal/view-utils.c: (view_utils_draw_events):
	Don't display time for allday events
	
	* gncal/year-view.c: (do_quick_view_popup):
	* gnomecard/Makefile.am:
	* libversit/vobject.h:
	Defined XPilotNoTimeProp to X-PILOT-NOTIME
	
2001-09-16  Eskil Heyn Olsen  <eskil@eskil.dk>

	* NEWS:
	* configure.in:
	* gncal/Makefile.am:
	* gnome-pim.spec.in:
	* gnomecard/Makefile.am:
	* gnomecard/address-conduit.c: (pre_sync),
	(conduit_get_gpilot_conduit):
	* gnomecard/address-conduit.h:
	Fixed and stuff, no longer crash, no lib versions, yadayada.

2001-09-09  Eskil Heyn Olsen  <eskil@eskil.dk>

	* configure.in:
	Check the version of gnome-pilot and spew out status info,
	version++.	

	* gncal/Makefile.am:
	* gnomecard/Makefile.am:
	* gnome-pim.spec.in:
	No versions of the conduit libs.
	
	* gnomecard/address-conduit.c: (pre_sync),
	(conduit_get_gpilot_conduit):
	* gnomecard/address-conduit.h:
	Don't crash on startup.

2001-08-31  Abel Cheung  <maddog@linux.org.hk>

	* configure.in (ALL_LINGUAS): zh_TW.Big5 -> zh_TW

2001-06-22  Eskil Heyn Olsen  <eskil@eskil.dk>

	* configure.in:
	1.4.1

	* gncal/Makefile.am:
	* gncal/calendar-conduit.c: (check_for_slow_setting),
	(conduit_get_gpilot_conduit):
	* gncal/calendar-conduit.h:
	* gncal/gnomecal.conduit.in:
	* gnomecard/Makefile.am:
	* gnomecard/address-conduit-capplet.c:
	* gnomecard/address-conduit.c: (load_configuration),
	(save_configuration), (copy_configuration), (dupe_configuration),
	(spool_records), (pre_sync), (createCfgWindow), (setOptionsCfg),
	(readOptionsCfg), (create_settings_window), (display_settings),
	(save_settings), (revert_settings), (conduit_get_gpilot_conduit):
	* gnomecard/deladdrlist.c: (deladdrlist_edit):
	* gnomecard/dialog.c: (colsetup_addpress), (gnomecard_setup):
	* gnomecard/emaillist.c: (emaillist_edit):
	* gnomecard/gnomecard.c: (main):
	* gnomecard/gnomecard.conduit.in:
	* gnomecard/init.c: (gnomecard_init_defaults):
	* gnomecard/list.c:
	* gnomecard/phonelist.c: (phonelist_edit):
	Fixed a bunch of various warnings (eg. asserting on
	uninitialised variables).

	Removed the conduit capplets, now use the new conduit config
	stuff.

	Patched up the conduits to match the gnome-pilot api changes.

	* macros/gnome-pilot.m4:
	Fixed the cat's for pi-versoin.h.

2001-02-25  Eskil Heyn Olsen  <eskil@eazel.com>

	* configure.in: Bonged to vresion 1.3.1

2001-02-04  Eskil Heyn Olsen  <eskil@eazel.com>

	* gnomecard/address-conduit.h:
	Removed #include of header file that was removed from gnome-pilot

2001-01-25  Fatih Demir	<kabalak@gmx.net>

	* configure.in: Added "tr" to ALL_LINGUAS.

2000-12-02  Eskil Heyn Olsen  <eskil@eazel.com>

	* gncal/calendar-conduit.c: (ical_from_remote_record), (transmit),
	(compare):
	Applied patch from Robert Mibus <mibus@bigpond.com> related
	to monthly recurring events.

2000-11-16  Takayuki KUSANO  <AE5T-KSN@asahi-net.or.jp>

	* */*.desktop: Added Japanese strings.

2000-11-14  Stanislav Visnovsky	<visnovsky@nenya.ms.mff.cuni.cz>

	* configure.in: Added "sk" to ALL_LINGUAS.

2000-11-14  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.czm>

	* configure.in (ALL_LINGUAS): Added Slovak [sk] language

2000-10-20  Christophe Merlet  <christophe@merlet.net>

	* */*.desktop: Updated/Added French strings.

2000-07-28  Fatih Demir	<kabalak@gmx.net>

	* configure.in: Added "tr" to ALL_LINGUAS.

2000-05-07  Vadim Strizhevsky  <vadim@optonline.net>

	* libversit/vcc.y (lexAppendc): Fix off by 1 error. Fixes bugs 
	#9825 and #9512

2000-05-04  Jacob Berkman  <jacob@helixcode.com>

	* configure.in (LDFLAGS): check for new gnome-libs

2000-04-20  Pablo Saratxaga <pablo@mandrakesoft.com>

	* configure.in (ALL_LINGUAS): Added Catalan language

2000-04-11  Pablo Saratxaga <pablo@mandrakesoft.com>

	* configure.in (ALL_LINGUAS): Added Lithuanian and Ukrainian

2000-03-31  Eskil Heyn Olsen  <deity@eskil.dk>

        * gnome-pim.spec.in: requires gnome-pilot 0.1.50 for
	the conduits package.

2000-03-28  Russell Steinthal  <rms39@columbia.edu>

	* libversit/vcc.y (appendValue): New function (borrowed from
	Korganizer's libversit code) to combine semicolon-separated
	multiple-value properties into one long semicolon-delimited string
	(which can then be parsed by the application code).  This works
	around a bug in libversit by which multiple values would overwrite
	each other.

2000-03-16  Eskil Heyn Olsen  <deity@eskil.dk>

        * gnome-pim.spec.in: conduits package requires gnome-pilot 0.1.49

2000-03-12  Eskil Heyn Olsen  <deity@eskil.dk>

	* gnome-pim.spec.in: Don't look in $data/gnome/apps/Peripherals.

2000-03-12  Eskil Heyn Olsen  <deity@eskil.dk>

	* configure.in: Added GNOME_XML_CHECK as the capplets for
	the conduits now require xml.

2000-03-08 Alastair McKinstry <mckinstry@computer.org>
	
	* configure.in (ALL_LINGUAS) added gd,gv,kw,cy

2000-01-31  Yuan-Chung Cheng <platin@linux.org.tw>

        * configure.in: Added "zh_CN.GB2312" to ALL_LINGUAS.

1999-12-31  Vadim Strizhevsky  <vadim@optonline.net>

	* libversit/vobject.c: Fix handling of QUOTED-PRINTABLE strings.
	writeQPString has been fixed to escape all chars according to rfc 1521.
	writeString has been added for writing regular non-quoted strings.

1999-12-31  Jesus Bravo Alvarez  <jba@pobox.com>

	* configure.in (ALL_LINGUAS): Added Galician (gl)

	* */*.desktop: Added Galician entries

1999-12-29  Peter Teichman  <peter@helixcode.com>

	* MAINTAINERS (Email): remove myself from MAINTAINERS - I don't
	need to be in here.

1999-12-04  Eskil Heyn Olsen  <deity@eskil.dk>

	* Makefile.am (SUBDIRS): Removed intl

	* configure.in: uses AM_GNOME_GETTEXT instead of AM_GNU_GETTEXT,
	version = 1.1.2.

1999-10-11  Arturo Espinosa <arturo@nuclecu.unam.mx>

	* libversit/vcc.y (yylex): When finding a colon, the lex consumed all
	line separators, making it impossible to have empty values (bug 1260).

1999-10-09  ERDI Gergo  <cactus@cactus.rulez.org>

	* gnomecard/emaillist.c: The website URL in the edit dialog didn't
	display the previous value, this could have lead to data loss.

1999-09-30  Timur Bakeyev  <mc@bat.ru>

	* configure.in: Using development autoconf as prototipe wasn't a good
	idea, revert GC_TIMEZONE to 2.13 macro.
	
1999-09-27  Timur Bakeyev  <mc@bat.ru>

	* configure.in: Added defenition of GC_TIMEZONE - function, that checks
	if struct tm containes tm_gmtoff or we should use extern long timezone.
	
	* acinclude.h: Added HAVE_TM_GMTOFF and HAVE_TIMEZONE.
	
1999-09-27  Rodrigo Stulzer Lopes <rodrigo@conectiva.com.br>

	* configure.in: added pt_BR to ALL_LINGUAS

1999-09-20  Eskil Olsen <deity@eskil.dk>

	* gncal/calendar-conduit: lot of rework, implemented various set_* 
	functions, transmit and free_transmit, now appears stable, still
	only syncs oneway (pilot -> gnomecal)

1999-09-19  Lauris Kaplinski <lauris@ariman.ee>

	* configure.in: added et (Estonian) to ALL_LINGUAS

1999-09-19  Eskil Olsen <deity@eskil.dk>

	* libversit: changed to be a .la file instead of .a, this allows
	lib*_conduit to use the library.

	* gncal/calendar-conduit: implemented iterate and
	iterate_specific.

	* gncal/corba-cal: fixed warnings.
	
1999-09-15  Eskil Olsen <deity@eskil.dk>

	* gncal/Makefile.am: added sources to calendar-conduit

	* gncal/calendar-conduit.c: imported Miguels update_record
	function

	* gncal/corba-cal.c: fixed a grave bug in exception throwing,
	which cause ORBit to sigsegv.

1999-09-08  Eskil Olsen <deity@eskil.dk>

	* configure.in: uses GNOME_PILOT_CHECK

	* gncal/GnomeCal.idl: added a get_objects() call,
	which returns all the objects in the calendar.

	* gncal/Makefile.am: added two conduits with
	control-applets. Compiled only if configure sets
	HAVE_GNOME_PILOT
	
	* gncal/calender-conduit.[ch]: began implementing conduit.
	
	* gncal/todo-conduit.[ch]: begin implementing conduit.

	* gncal/corba-cal.c: implemented the get_objects() call.

1999-09-01  Miguel de Icaza  <miguel@gnu.org>

	* configure.in: Added call to GNOME_COMPILE_WARNINGS.

	* libversit: Removed all the rest of the C++ comments from C
	sources (per David's suggestion).

1999-08-10  Miguel de Icaza  <miguel@gnu.org>

	* libversit/Makefile.am: Mark the libversit library as a
	non-installable library.

1999-08-31  Kjartan Maraas  <kmaraas@online.no>

	* configure.in: Added "da" to ALL_LINGUAS.
	
1999-08-02  Peter Teichman  <pat4@acpub.duke.edu>

	* configure.in: gnome-pim actually compiles without libpisock now

	(PROGRAMS_GNCAL): don't try to run GNOME_CONDUIT_CHECK if it
	doesn't exist

1999-07-31  Peter Teichman  <pat4@acpub.duke.edu>

	* configure.in: more autoconf, again. calendar conduit now compiles
	conditionally

1999-07-30  Jonathan Blandford  <jrb@redhat.com>

	* configure.in: More Autoconf stuff

1999-07-30 Gregory McLean <gregm@comstar.net>

	* gnome-pim.spec.in: Updated the specfile, better description,
	uses sysconfdir so it is a better fit to the FSST systems.

1999-07-29  Miguel de Icaza  <miguel@gnu.org>

	* libversit/vcc.h: Added new ids XPilotId and XPilotStatus

1999-05-25  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* configure.in: Added the gncal/doc/* Makefiles to AC_OUTPUT.

1999-03-13  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* configure.in: Bumped version number to 1.0.3.

1999-02-25 Shooby Ban <bansz@szif.hu>

        * configure.in: Added hungarian translation (po)
          po/hu.po Hungarian po file added

1999-02-22  Timur Bakeyev  <mc@bat.ru>

	* configure.in: Added check for langinfo.h and for representation of
	timezone info - tzname or tm.tm_zone.
	
1999-02-15  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* configure.in: Bumped version number to 0.99.8.1.

1999-02-15 Sergey Panov <sipan@mit.edu>

        * ALL_LINGUAS: add ru

1999-02-11  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* configure.in: Bumped version number to 0.99.8.

1999-02-08  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* configure.in: Bumped version number to 0.99.7.

1999-02-04  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* configure.in: Bumped version number to 0.99.6.

1999-01-31  Arturo Espinosa <arturo@nuclecu.unam.mx>

	* configure.in: create gnomecard/help/Makefile and 
	  gnomecard/help/C/Makefile.

1998-12-22  Yukihiro Nakai  <Nakai@TokyoNet.AD.JP>

	* ALL_LINGUAS: add ja entry

1998-12-11 Sven Neumann <sven@gimp.org>

	* .cvsignore: added a few entries

1998-12-11  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>

	* .cvsignore: Added this file.

1998-12-03  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>

	* configure.in: Removed stamp.h.in output.

1998-12-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* gdialog/*.c: 
	s/gtk_window_position/gtk_window_set_position/
  	s/gtk_container_border_width/gtk_container_set_border_width/ 

1998-12-01  Raja R Harinath  <harinath@cs.umn.edu>

	Get ready for gettext 0.10.35.
	* acinclude.m4: Remove.
	* configure.in (AC_OUTPUT): Remove 'sed POTFILES ...' expression.

1998-11-27  Tuomas Lukka  <lukka@iki.fi>

	* ALL_LINGUAS: add fi.po

1998-11-23  Miguel de Icaza  <miguel@nuclecu.unam.mx>

	* gdialog/checklist.c (dialog_checklist): Update GtkCList usage.

1998-10-09  Tom Tromey  <tromey@cygnus.com>

	* configure.in: Don't mention edit-menus.

1998-09-29  Kang-Jin Lee <lee@arco.met.fu-berlin.de>

	* gdialog/guage.c (dialog_guage): Use fgets instead of gets.

1998-09-24  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* gdialog/*: Made the --menu work for gtk. first beginnings of
	--guage support.

1998-09-22  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* configure.in: Bumped the version number to 0.30.  Wheee!

1998-08-28  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* Makefile.am (SUBDIRS): Removed gedit from SUBDIRS.

1998-08-26  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* configure.in: Removed refrences to the gedit subdirs now that it
	has been split off into a separate package.

1998-08-25  Martin Baulig  <martin@home-of-linux.org>

	* gtop: This has now become its own top-level module.
	
	* Makefile.am (SUBDIRS): Removed `gtop'.
	* configure.in: Removed gtop subdirs.

1998-08-23  Martin Baulig  <martin@home-of-linux.org>

	* configure.in (GNOME_FILEUTILS_CHECKS): Removed this check.
	We now use libgtop to get all fsusage and mountlist stuff.

	* acconfig.h: Removed mountlist stuff.

	* Makefile.am (SUBDIRS): Conditionally building `gdiskfree'
	if we `HAVE_LIBGTOP'.

	* gdiskfree/ChangeLog: New file.

1998-08-17  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* configure.in: Bumped the version number to 0.28.

1998-08-09  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in (MU_IDETOOL): New automake conditional.
	(P_GENIUS): Likewise.
	(P_GTOP): Likewise.
	(USE_DEVGTK): Remove check.  `gnome' is now `gtk-1.1' only.
	
	* Makefile.am (DIST_SUBDIRS): Remove.
	(genius, gtop): Conditionally define.
	(SUBDIRS): Use them.  Also build `gncal' unconditionally.
	
	* mini-utils/Makefile.am (DIST_SUBDIRS): Remove.
	(idetool): Conditionally define.
	(SUBDIRS): List $(idetool).

Sun Aug  9 19:52:00 EDT 1998 Gregory Mclean <gregm@comstar.net>

	* po/POFILES.in: removed generated file getdate.c (getdate.y is there
	already) This fixes a compile problem.

1998-08-05  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* configure.in: Added AC_CHECK_CURSES for gdialog.
	* acconfig.h: Added the corresponding defs.

1998-07-31  Martin Baulig  <martin@home-of-linux.org>

	* acconfig.h (u_int64_t, int64_t): Added.

1998-07-30  Alan Cox  <alan@redhat.com>

	* added splash/* - the trivial splash screen program

1998-07-29  Martin Baulig  <martin@home-of-linux.org>

	* gdiskfree/error.[ch]: Removed since they're now part
	of gnomesupport.

1998-07-18  Raja R Harinath  <harinath@cs.umn.edu>

	* gpostit/Makefile.am (OBJCCOMPILE): Improve compile rules.

1998-07-16  Alex Roberts   <bse@dial.pipex.com>
	
	* gedit/plugins: Added directory
	
	* configure.in modified to take notice of gedit/plugins

1998-07-10  Martin Baulig  <martin@home-of-linux.org>

	* genius/Makefile.am (genius_SOURCES): Removed `parse.h'.

1998-07-08  Raja R Harinath  <harinath@cs.umn.edu>

	* gdiskfree/df.c (g_dirname): New function.  Essentially the
	contents of GNU fileutils lib/dirname.c.
	(find_mount_point): Use `g_dirname' instead of `dirname'.

1998-07-04  Carsten Schaar  <nhadcasc@fs-maphy.uni-hannover.de>

	* gcalc/gcalc.c (main): Check GTK_HAVE_ACCEL_GROUP and use old
	accelerator table stuff, if non existing.

1998-07-03  Richard Hestilow <hestgray@ionet.net>

	* configure.in, Makefile.am : only compile gncal if using devel
	gtk+.
	
1998-07-01  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>

	* configure.in (ALL_LINGUAS): Added Portuguese translation.

1998-06-24  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in (AC_OUTPUT): Sort lines.  Remove duplicated
	intl/Makefile. 

	* gdiskfree/error.c: Import from GLIBC.
	* gdiskfree/error.h: Likewise.
	* gdiskfree/save-cwd.c: Revert last two changes.
	* gdiskfree/Makefile.am (gdiskfree_LDADD): Add @LIBOBJS@, which is
	figured out in `macros/gnome-fileutils.m4'.
	
Wed Jun 24 11:13:02 EDT 1998 Gregory McLean <gregm@comstar.net>

	* gdiskfree/save-cwd.c : some patches to get it to build on something
	other then my system :)

Wed Jun 17 09:55:18 EDT 1998 Gregory McLean <gregm@comstar.net>

	* gdiskfree/save-cwd.c : deleted #include "error.h" as its not needed
	nor is that header file lying around :)

1998-06-10  Chris Lahey  <clahey@umich.edu>

	* gcalc/gcalc.c (main): Changed gtk_window_set_accelerator_table
	to gtk_window_set_accel_group to support new accelerator system.

Wed Jun 10 14:19:39 EDT 1998 Gregory McLean <gregm@comstar.net>

	* HAVE_DEVGTK, new tag for dev gtk stuff.

Mon Jun  8 21:51:19 1998  Havoc Pennington  <hp@pobox.com>

	* configure.in: Add gless, replace grun-minimalist with gnome-run.
	* mini-utils/Makefile.am: Add gless, subtract gsu, replace
	grun-minimalist with gnome-run.
	
Mon Jun  8 13:30:45 EDT 1998 Gregory McLean <gregm@comstar.net>

	* gdiskfree/df.c: stuck and about window and menuitem in so
	proper blame/credit can be given :)
	
Sun Jun 07 03:54:20 1998  George Lebl  <jirka@5z.com>

	* gdiskfree/df.c: quit on "destroy"

1998-06-03  Martin Baulig  <baulig@merkur.uni-trier.de>

	* acconfig.h (HAVE_GUILE): New tag.

1998-06-03  Jaka Mocnik <jaka.mocnik@kiss.uni-lj.si>

	* gdiskfree/Makefile.am: does no longer need libgtkext since
	gtkdial has been moved to libgnomeui.
	
Mon Jun  1 00:12:43 1998  Havoc Pennington  <hp@pobox.com>

	* Makefile.am: Build mini-utils by default.

Sun May 31 20:39:11 EDT 1998 Gregory McLean <gregm@comstar.net>

	* gdiskfree: Quick and dirty hack of df to gnomeification.
	This sorta resembles perfmeter on solaris, of which I liked and
	used often. I missed it on linux so here is the result. Most of
	the code was snarfed from the gnu fileutils df command. This requires
	the libgtkext from gxsnmp so it should not built by default. I haven't
	a clue how to do this so currently it does. Specificly this uses the
	hacked up gtkdial in that lib.

Tue May 26 00:55:41 1998  Havoc Pennington  <hp@pobox.com>

	* acconfig.h: Add tons of things for mountlist code. Copied from
 	gnome-core.
	* configure.in: Add GNOME_FILEUTILS_CHECKS
	
1998-05-25  Raja R Harinath  <harinath@cs.umn.edu>

	* Makefile.am (DIST_SUBDIRS): List all subdirs.

Mon May 25 16:22:36 1998  Havoc Pennington  <hp@pobox.com>

	* acconfig.h, configure.in: Check for libgtop.

Mon May 25 01:47:50 1998  George Lebl  <jirka@5z.com>

	* configure.in,Makefile.am: added gsearchtool

Fri May  8 10:42:43 1998  Tom Tromey  <tromey@cygnus.com>

	* gpostit/Makefile.am (gpostit_LDADD): Added INTLLIBS.

Fri Apr 24 18:30:57 1998  Havoc Pennington  <hp@pobox.com>

	* mini-utils/gw, mini-utils/guname: Added start on two new
 	utilities.

Thu Apr 23 13:01:50 EDT 1998 Gregory McLean
	
	* configure.in: added AC_PROG_YACC to correct the 
	getdate.y -> getdate.c problem on a fresh build. 
	(that file is in gncal)
	
1998-04-21  Miguel de Icaza  <miguel@nuclecu.unam.mx>

	* gcalc/gcalc.c (main): Added call to gtk_window_set_wmclass.

Sun Apr 19 17:00:02 1998  Havoc Pennington  <hp@pobox.com>

	* mini-utils: New dir for really small utilities, to avoid
	clutter.
	* mini-utils/gsu: Imported hack of GNU su with dialogs.
	* mini-utils/gshutdown: Imported GUI frontend to shutdown.
	* Makefile.am, configure.in, acconfig.h: Changed accordingly.
	
Sun Apr 12 18:19:39 1998  George Lebl  <jirka@5z.com>

	* gcalc: Added Gnome Calculator based on GnomeCalculator widget.

        * configure.in, Makefile.am: Added gcalc.

1998-04-08  Raja R Harinath  <harinath@cs.umn.edu>

	* Makefile.am (SUBDIRS): Add `edit-menus'.
	* configure.in (AC_OUTPUT): Add `edit-menus/Makefile'.

1998-04-06  Carsten Schaar  <nhadcasc@fs-maphy.uni-hannover.de>

	* ghex/.cvsignore: New file.
	
Fri Apr  3 12:12:15 1998  Tom Tromey  <tromey@cygnus.com>

	* Makefile.am (SUBDIRS): Added ghex.
	* configure.in: Create ghex/Makefile.
	* ghex/Makefile.am: New file.

Sun Mar 29 18:04:58 PST 1998 Manish Singh <yosh@gimp.org>

	* genius/Makefile.am
	* genius/mpwrap.h
	* genius/mpwrap.c
	* acconfig.h
	* configure.in: autoconf junk to get genius to detect gmp properly
	when it's libgmp2 (Debian installs it a funky way)

Wed Mar 25 22:15:18 CST 1998 Arturo Espinosa <arturo@nuclecu.unam.mx>

	* genius.c: Clean-up. gnome_config & gnome_stock stuff.

Sun Mar  8 18:31:33 1998  Tom Tromey  <tromey@cygnus.com>

	* version.h.in: Removed.
	* configure.in: Don't create version.h.

	* configure.in (PROGRAMS_GTOP): Don't create support/Makefile.

	* Makefile.am (SUBDIRS): Don't include support.
	* configure.in: Don't call GNOME_SUPPORT_CHECKS.

1998-02-18  Raja R Harinath  <harinath@cs.umn.edu>

	* configure.in (GNOME_SUPPORT_CHECKS): New check.
	(AC_OUTPUT): Also generate `support/Makefile'.

	* Makefile.am (SUBDIRS): Add `support'.

1998-02-15  Raja R Harinath  <harinath@cs.umn.edu>

	* Makefile.am (SUBDIRS): Add `macros'.
	(macros/macros.dep): Maintainer rule to auto-regenerate
	aclocal.m4.
	* configure.in (GNOME_X_CHECKS): New check.
	(AC_OUTPUT): Also generate `macros/Makefile'.
	* acconfig.h (HAVE_LIBSM): New tag.
	* autogen.sh: Use `macros/autogen.sh'.

1998-02-12  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* configure.in: Added intl/Makefile to the AC_OUTPUT list.

