Commit Graph

16 Commits

Author SHA1 Message Date
Robby Findler
e658e48b01 improve drracket to offer spelling suggestions and to jump to next misspelled word 2014-06-17 03:27:14 -05:00
Robby Findler
60e2c2400d add some string constants to be used by the gui pkg manager 2014-05-05 11:27:51 -05:00
Robby Findler
e8529ac30a add 'raco dependencies-graph'
That is, refactor DrRacket's module browser so that
it can be run outside of DrRacket.
2014-04-12 13:28:41 -05:00
Matthew Flatt
28fbd2dde2 DrRacket: add support for icon files, etc. for created executables 2014-01-25 08:53:05 -07:00
Philippe Meunier
9807a1ceeb yearly french update, and fixed a couple of typos in english version 2014-01-10 18:16:13 +09:00
Robby Findler
5059db47d3 adjust the installation package GUI so it doesn't install during
and installation (ditto update)

closes PR 14263

this may be a release branch candidate. I'm not sure myself, but the PR
sounds worrying.

If it should be considered, then this is the relevant diff (since more than
half of the diff is whitespace changes) to the file pkg/gui/main:

@@ -57,6 +57,8 @@

   (define terminal #f)
   (define (in-terminal-panel abort-label thunk)
+    (cond
+      [(or (not terminal) (send terminal can-close?))
     (send dlg begin-container-sequence)
     (when terminal (send terminal close))
     (define t (in-terminal
@@ -71,7 +73,10 @@
     (disallow-close)
     (send dlg end-container-sequence)
     (yield (send t can-close-evt))
-    (allow-close))
+       (allow-close)]
+      [else
+       (message-box (string-constant install-pkg-dialog-title)
+                    (string-constant install-pkg-not-rentrant))]))
2013-12-28 20:50:29 -06:00
Robby Findler
4a7c36e96e catch networking errors and show a dialog
that doesn't say "internal error"

closes PR 14254
2013-12-15 21:20:35 -06:00
Robby Findler
d95a6b02b0 add support for alt-as-meta to the mac os x drracket 2013-11-28 21:20:50 -06:00
Robby Findler
b17fb32544 improve the wording for the command-line menu item 2013-11-11 13:07:57 -06:00
Robby Findler
cda5c12f6c add a menu item to add (the appropriate) racket/bin
to the users' path under mac os x

it is in the help menu, but I'm not sure that's really
the best place
2013-11-10 21:05:56 -06:00
Robby Findler
88e3d84d82 add string constants to use in an improved
open-collection-path menu item
2013-11-09 16:44:38 -06:00
Robby Findler
35bb99c72a add "File|Open Collection Path" to DrRacket
This menu item is an attempt to make it easier
to find collection-path based files for editing

Inspired by Asumu's raco-find-collection package
2013-11-05 15:55:40 -06:00
Robby Findler
d2fade0e03 add new menu item string constant 2013-10-25 22:55:07 -05:00
Robby Findler
e5ec86dcaf add a string constant to describe a new text color 2013-10-25 22:55:06 -05:00
Robby Findler
1bd1ca5192 add a string constant for a menu item that just says "tab <i>"
(ie without a filename attached to it)
2013-10-25 13:59:55 -05:00
Matthew Flatt
5e29f6fbfa fix name of a directory containing packages 2013-10-16 10:11:35 -06:00