mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
3685f79f91
* src/nautilus-window-menus.c: (help_menu_about_nautilus_callback): * libnautilus-extensions/nautilus-program-chooser.c: (nautilus_program_chooser_new), (nautilus_program_chooser_show_no_choices_message): Fixed bug 2210 (GNOME is referred to as Gnome in the about dialog). It was in one other place too. * libnautilus/nautilus-view-component.idl: Fixed some comments. * libnautilus-extensions/nautilus-directory-private.h: * libnautilus-extensions/nautilus-directory-async.c: (dequeue_pending_idle_callback): * libnautilus-extensions/nautilus-directory.c: (nautilus_directory_emit_files_changed), (nautilus_directory_emit_change_signals_deep), (nautilus_directory_emit_metadata_changed), (call_files_changed_free_list), (call_files_changed_unref_free_list): * libnautilus-extensions/nautilus-file.c: (nautilus_file_changed): Separated out the call so you can emit a files_changed without also emitting a changed signal on each file. * libnautilus-extensions/nautilus-trash-directory.h: * libnautilus-extensions/nautilus-trash-directory.c: (trash_callback_remove_directory), (directory_ready_callback), (forward_files_added_cover), (forward_files_changed_cover), (nautilus_trash_directory_add_real_directory), (trash_callback_remove_directory_cover), (nautilus_trash_directory_remove_real_directory), (remove_all_real_directories), (fm_desktop_icon_view_discover_trash_callback), (add_one_writable_device), (get_trashable_volume_uris), (nautilus_trash_monitor_async_get_trash_directories): More trash work. A bunch is commented out. I'm doing this *so* slowly, but I need to check in at this point for Gene's sake. * libnautilus-extensions/nautilus-volume-monitor.h: * libnautilus-extensions/nautilus-volume-monitor.c: (nautilus_volume_monitor_initialize_class), (mount_device_activate), (mount_device_deactivate): Changed the signals to be both more useful and easier to use. * src/file-manager/fm-desktop-icon-view.c: (fm_desktop_icon_view_initialize): * src/file-manager/nautilus-trash-monitor.c: Moved 1/2-written trash code out of here. * HACKING: Spell checking.
41 lines
1.4 KiB
Text
41 lines
1.4 KiB
Text
====================
|
|
0: Table of contents
|
|
====================
|
|
|
|
0: Table of contents
|
|
1: Intro
|
|
2: Using the leak checker
|
|
|
|
========
|
|
1: Intro
|
|
========
|
|
|
|
Nautilus source tree is available from CVS (the latest-cutting edge
|
|
version) and in releases (tarballs).
|
|
|
|
If you plan to hack on Nautilus, please make sure you work from the
|
|
CVS version. The CVS version is available on GNOME CVS. The page
|
|
http://developer.gnome.org/tools/cvs.html details how to get started
|
|
with GNOME CVS.
|
|
|
|
If you want to contribute patches, please send mail to the nautilus
|
|
maintainer (Darin Adler <darin@eazel.com>) and/or the nautilus mailing
|
|
list: <nautilus-list@lists.eazel.com> (subscriptions should be made to
|
|
<nautilus-list-request@lists.eazel.com> with "subscribe" as a
|
|
subject).
|
|
|
|
Patches should be made with 'cvs diff -u >patch' and should conform to
|
|
Nautilus coding style as described in docs/style-guide.html Please
|
|
read other relevant documents in the docs directory too.
|
|
|
|
=========================
|
|
2: Using the leak checker
|
|
=========================
|
|
|
|
Nautilus is set up to use the libleakcheck.so leak checking
|
|
library. To use it, run Nautilus with LD_PRELOAD set to the path to
|
|
the installed libleakcheck.so library. For example, if you are using a
|
|
Bourne-compatible shell, like bash, you can run Nautilus this way to
|
|
run with leak checking:
|
|
|
|
LD_PRELOAD=/gnome/libs/libleakcheck.so /gnome/bin/nautilus
|