fixed execution order bug that was causing the first two frame numbers to output...
[puredata.git] / packages / patches / add_urls_to_help_menu-0.40.3.patch
blobb203c151453bc28fdf63d8acef69187b573d53ee
1 Index: u_main.tk
2 ===================================================================
3 RCS file: /cvsroot/pure-data/pd/src/u_main.tk,v
4 retrieving revision 1.25
5 diff -u -w -r1.25 u_main.tk
6 --- u_main.tk 9 Oct 2006 04:36:12 -0000 1.25
7 +++ u_main.tk 10 Oct 2007 05:22:28 -0000
8 @@ -549,6 +549,20 @@
9 -command {menu_doc_open doc/1.manual index.htm}
10 $mbar.help add command -label {Browser ...} \
11 -command {menu_doc_browser $help_top_directory}
12 + $mbar.help add separator
13 + $mbar.help add command -label {puredata.org} \
14 + -command {menu_openhtml http://puredata.org}
15 + $mbar.help add command -label {Pdpedia} \
16 + -command {menu_openhtml http://pdpedia.org}
17 + $mbar.help add command -label {FAQ} \
18 + -command {menu_openhtml http://puredata.org/docs/faq}
19 + $mbar.help add separator
20 + $mbar.help add command -label {mailing lists} \
21 + -command {menu_openhtml http://puredata.org/community/lists}
22 + $mbar.help add command -label {forums} \
23 + -command {menu_openhtml http://puredata.org/community/forums}
24 + $mbar.help add command -label {IRC} \
25 + -command {menu_openhtml irc://irc.freenode.net/dataflow}
28 #################### the "File" menu for the Pd window ##############