Moved myself up in the credits, tweaks here and there

This commit is contained in:
Mitchell Livingston 2006-06-13 00:12:46 +00:00
parent 66c9fffb82
commit 4d20e5c525
3 changed files with 12 additions and 10 deletions

View File

@ -17,12 +17,12 @@ Bryan Varner <bryan@varnernet.com>
Michael Demars <keul@m0k.org> Michael Demars <keul@m0k.org>
+ OS X interface (Growl notifications, AppleScript) + OS X interface (Growl notifications, AppleScript)
Mitchell Livingston <livings124@gmail.com>
+ OS X interface
Thanks to: Thanks to:
Mitchell Livingston
+ OS X patches (Badging, preferences, check for update and much more)
Omar and Adrien Omar and Adrien
+ Beta testing + Beta testing
@ -48,4 +48,4 @@ Martin Stadtmueller
+ Icon tweaking + Icon tweaking
FOOOD FOOOD
+ Badging images + Badging images, Progress Bar images

View File

@ -19,13 +19,13 @@ Bryan Varner <{\field{\*\fldinst{HYPERLINK "mailto:bryan@varnernet.com"}}{\fldrs
\ \
Michael Demars <{\field{\*\fldinst{HYPERLINK "mailto:keul@m0k.org"}}{\fldrslt keul@m0k.org}}>\ Michael Demars <{\field{\*\fldinst{HYPERLINK "mailto:keul@m0k.org"}}{\fldrslt keul@m0k.org}}>\
+ OS X interface (Growl notifications, AppleScript)\ + OS X interface (Growl notifications, AppleScript)\
\
Mitchell Livingston <{\field{\*\fldinst{HYPERLINK "mailto:livings124@gmail.com"}}{\fldrslt livings124@gmail.com}}>\
+ OS X interface\
\ \
\ \
Thanks to:\ Thanks to:\
\ \
Mitchell Livingston\
+ OS X patches (Badging, preferences, sorting, and much more)\
\
Omar and Adrien\ Omar and Adrien\
+ Beta testing\ + Beta testing\
\ \
@ -51,5 +51,5 @@ Martin Stadtmueller\
+ Icon tweaking\ + Icon tweaking\
\ \
FOOOD\ FOOOD\
+ Badging images\ + Badging images, Progress Bar images\
} }

View File

@ -248,12 +248,14 @@ static uint32_t kRed = 0xFF6450FF, //255, 100, 80
[bitmap release]; [bitmap release];
//draw overlay over advanced bar //draw overlay over advanced bar
width -= 2.0;
[fProgressEndAdvanced compositeToPoint: point operation: NSCompositeSourceOver]; [fProgressEndAdvanced compositeToPoint: point operation: NSCompositeSourceOver];
point.x += 1.0; point.x += 1.0;
[self placeBar: fProgressAdvanced width: width - 2.0 point: point]; [self placeBar: fProgressAdvanced width: width point: point];
point.x += width - 2.0; point.x += width;
[fProgressEndAdvanced compositeToPoint: point operation: NSCompositeSourceOver]; [fProgressEndAdvanced compositeToPoint: point operation: NSCompositeSourceOver];
} }