aboutsummaryrefslogtreecommitdiff
path: root/packages/patches/add_urls_to_help_menu-0.40.3.patch
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-10-10 05:26:59 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-10-10 05:26:59 +0000
commita21c1a0896ac957ac9b050a5eaadbb208c0158dd (patch)
treee8209f29c10e3920c4ab854e5ffd73944b75de79 /packages/patches/add_urls_to_help_menu-0.40.3.patch
parent023e423d66f549ca06e10c400b6fd2108a96fc94 (diff)
added useful content to the very short help menu
svn path=/trunk/; revision=8797
Diffstat (limited to 'packages/patches/add_urls_to_help_menu-0.40.3.patch')
-rw-r--r--packages/patches/add_urls_to_help_menu-0.40.3.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/packages/patches/add_urls_to_help_menu-0.40.3.patch b/packages/patches/add_urls_to_help_menu-0.40.3.patch
new file mode 100644
index 00000000..232e71a8
--- /dev/null
+++ b/packages/patches/add_urls_to_help_menu-0.40.3.patch
@@ -0,0 +1,26 @@
+Index: u_main.tk
+===================================================================
+RCS file: /cvsroot/pure-data/pd/src/u_main.tk,v
+retrieving revision 1.25
+diff -u -w -r1.25 u_main.tk
+--- u_main.tk 9 Oct 2006 04:36:12 -0000 1.25
++++ u_main.tk 10 Oct 2007 05:22:28 -0000
+@@ -549,6 +549,18 @@
+ -command {menu_doc_open doc/1.manual index.htm}
+ $mbar.help add command -label {Browser ...} \
+ -command {menu_doc_browser $help_top_directory}
++ $mbar.help add separator
++ $mbar.help add command -label {puredata.org} \
++ -command {menu_openhtml http://puredata.org}
++ $mbar.help add command -label {Pdpedia} \
++ -command {menu_openhtml http://pdpedia.org}
++ $mbar.help add separator
++ $mbar.help add command -label {mailing lists} \
++ -command {menu_openhtml http://puredata.org/community/lists}
++ $mbar.help add command -label {forums} \
++ -command {menu_openhtml http://puredata.org/community/forums}
++ $mbar.help add command -label {FAQ} \
++ -command {menu_openhtml http://puredata.org/docs/faq}
+ }
+
+ #################### the "File" menu for the Pd window ##############