Skip to content

Commit

Permalink
2004-09-07 Pierre-Luc Paour <gallery@paour.com> (1.4.2-b3)
Browse files Browse the repository at this point in the history
	* Removed File menu on mac: it's empty...
  • Loading branch information
Pierre-Luc Paour committed Sep 7, 2004
1 parent a91c072 commit b8d20a9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
2004-09-07 Pierre-Luc Paour <gallery@paour.com> (1.4.2-b3)

* Removed File menu on mac: it's empty...

2004-09-03 Pierre-Luc Paour <gallery@paour.com> (1.4.2-b2)

* Fixed Drag and Drop issues for first-time users.
Expand Down
6 changes: 4 additions & 2 deletions com/gallery/GalleryRemote/MainFrame.java
Expand Up @@ -1042,7 +1042,10 @@ private void jbInit()
jTopPanel.add(jLoginButton, new GridBagConstraints(2, 0, 1, 1, 0.0, 0.0
, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, new Insets(0, 5, 0, 0), 0, 0));

jMenuBar1.add(jMenuFile);
if (!GalleryRemote.IS_MAC_OS_X) {
// nothing in File menu on the mac...
jMenuBar1.add(jMenuFile);
}
jMenuBar1.add(jMenuEdit);
jMenuBar1.add(jMenuOptions);
if (!GalleryRemote.IS_MAC_OS_X) {
Expand All @@ -1069,7 +1072,6 @@ private void jbInit()
jMenuHelp.add(jMenuItemAbout);
}


jMenuEdit.add(jMenuItemCut);
jMenuEdit.add(jMenuItemCopy);
jMenuEdit.add(jMenuItemPaste);
Expand Down
4 changes: 2 additions & 2 deletions defaults.properties
Expand Up @@ -234,6 +234,6 @@ updateUrlBeta=http://gallery.sourceforge.net/gallery_remote_version_check_beta.p
#
# --- Do not edit below this line ---
#
version=1.4.2-b2
releaseDate=2004/09/03
version=1.4.2-b3
releaseDate=2004/09/07
aboutText=Gallery Remote\n \n \nA part of the Gallery Open-Source Project\nhttp://gallery.sourceforge.net\n \n \nMaintained by:\n \nPierre-Luc Paour\n \n \nInitial version by Chris Smith\n \n \nContributors:\n \nTim Miller\nDolan Halbrook\nMarkus Cozowicz\nScott Gartner\nAmedeo Paglione\nChris Schwerdt\n \n \nArtwork by Ross A. Reyman\n \n \nBundled software:\n \nImageMagick\nJSX\nJava look and feel Graphics Repository icons\njpegtran, Guido Vollbeding's version\nMetadataExtractor

0 comments on commit b8d20a9

Please sign in to comment.