[commits] Horde-Hatchery branch, master, updated. e8ce333facc1bf4d98374cd9c9132b11b2f9c5f4
Michael Rubinsky
mike at theupstairsroom.com
Tue Dec 16 00:31:26 UTC 2008
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Horde-Hatchery".
The branch, master has been updated
via e8ce333facc1bf4d98374cd9c9132b11b2f9c5f4 (commit)
via 9f73c5d7fec17a56d322eb1f5d9705a61e76ee60 (commit)
via afc26a3fcee39da7b75c405f027a2b63da15c97e (commit)
via 84a583230f79f3bef4cc77f7d1635a47fa0022aa (commit)
from e505eea958fab18af0db600ae904bfbe04c7cd54 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit e8ce333facc1bf4d98374cd9c9132b11b2f9c5f4
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date: Mon Dec 15 19:25:34 2008 -0500
Take some UI ideas from other iPhoto plugins (mostly iPhotoToGallery):
* Use a NSPopUpButton for the server selection instead of a NSComboBox
* Put the "New Server" action in the PopUp instead of a seperate button.
* Auto connect to the default server (for now, it's the first gallery in the list)
* The start of a better status display
iPhoto2Ansel/AnselExportController.h | 6 +-
iPhoto2Ansel/AnselExportController.m | 91 +-
iPhoto2Ansel/English.lproj/Panel.nib/classes.nib | 92 -
.../English.lproj/Panel.nib/designable.nib | 1868 ++++++++++++++++
iPhoto2Ansel/English.lproj/Panel.nib/info.nib | 20 -
.../English.lproj/Panel.nib/keyedobjects.nib | Bin 17628 -> 19455 bytes
6 files changed, 1937 insertions(+), 140 deletions(-)
commit 9f73c5d7fec17a56d322eb1f5d9705a61e76ee60
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date: Mon Dec 15 17:32:40 2008 -0500
Clean up the nib files, remove old actions and outlets from previous
implementations.
iPhoto2Ansel/AnselExportController.h | 2 +-
iPhoto2Ansel/English.lproj/Panel.nib/classes.nib | 20 ----------------
iPhoto2Ansel/English.lproj/Panel.nib/info.nib | 1 -
.../English.lproj/Panel.nib/keyedobjects.nib | Bin 17588 -> 17628 bytes
4 files changed, 1 insertions(+), 22 deletions(-)
commit afc26a3fcee39da7b75c405f027a2b63da15c97e
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date: Mon Dec 15 16:00:35 2008 -0500
Don't require a user to click a connect button. Automatically connect when a server
is selected via the server combobox.
iPhoto2Ansel/AnselExportController.h | 2 -
iPhoto2Ansel/AnselExportController.m | 73 ++++++++++------
iPhoto2Ansel/English.lproj/Panel.nib/classes.nib | 2 +
iPhoto2Ansel/English.lproj/Panel.nib/info.nib | 2 +-
.../English.lproj/Panel.nib/keyedobjects.nib | Bin 18029 -> 17588 bytes
5 files changed, 48 insertions(+), 31 deletions(-)
commit 84a583230f79f3bef4cc77f7d1635a47fa0022aa
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date: Mon Dec 15 15:48:21 2008 -0500
* The start of implementing the ability to store multiple ansel server
configurations instead of having to type all the connection info on
each load.
* Some more playing around with the UI as well
iPhoto2Ansel/AnselExportController.h | 37 +++-
iPhoto2Ansel/AnselExportController.m | 154 +++++++++++--
.../English.lproj/AnselServers.nib/designable.nib | 192 ++++++++++++++++
.../AnselServers.nib/keyedobjects.nib | Bin 0 -> 1885 bytes
iPhoto2Ansel/English.lproj/Panel.nib/classes.nib | 10 +
iPhoto2Ansel/English.lproj/Panel.nib/info.nib | 3 +-
.../English.lproj/Panel.nib/keyedobjects.nib | Bin 14435 -> 18029 bytes
iPhoto2Ansel/TURAnselServersPanelController.h | 16 ++
iPhoto2Ansel/TURAnselServersPanelController.m | 14 ++
.../iPhoto2Ansel.xcodeproj/project.pbxproj | 20 ++-
10 files changed, 417 insertions(+), 29 deletions(-)
-----------------------------------------------------------------------
Summary of changes:
iPhoto2Ansel/AnselExportController.h | 37 +-
iPhoto2Ansel/AnselExportController.m | 262 +++-
.../English.lproj/AnselServers.nib/designable.nib | 192 ++
.../AnselServers.nib/keyedobjects.nib | Bin 0 -> 1885 bytes
iPhoto2Ansel/English.lproj/Panel.nib/classes.nib | 100 --
.../English.lproj/Panel.nib/designable.nib | 1868 ++++++++++++++++++++
iPhoto2Ansel/English.lproj/Panel.nib/info.nib | 20 -
.../English.lproj/Panel.nib/keyedobjects.nib | Bin 14435 -> 19455 bytes
iPhoto2Ansel/TURAnselServersPanelController.h | 16 +
iPhoto2Ansel/TURAnselServersPanelController.m | 14 +
.../iPhoto2Ansel.xcodeproj/project.pbxproj | 20 +-
11 files changed, 2355 insertions(+), 174 deletions(-)
create mode 100644 iPhoto2Ansel/English.lproj/AnselServers.nib/designable.nib
create mode 100644 iPhoto2Ansel/English.lproj/AnselServers.nib/keyedobjects.nib
delete mode 100644 iPhoto2Ansel/English.lproj/Panel.nib/classes.nib
create mode 100644 iPhoto2Ansel/English.lproj/Panel.nib/designable.nib
delete mode 100644 iPhoto2Ansel/English.lproj/Panel.nib/info.nib
create mode 100644 iPhoto2Ansel/TURAnselServersPanelController.h
create mode 100644 iPhoto2Ansel/TURAnselServersPanelController.m
hooks/post-receive
--
Horde-Hatchery
More information about the commits
mailing list