Skip to content

Commit

Permalink
version 1.4.7 (build 21)
Browse files Browse the repository at this point in the history
  • Loading branch information
gobbledegook committed Dec 15, 2021
1 parent 1c33fec commit 1ae72e6
Show file tree
Hide file tree
Showing 11 changed files with 43 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CreeveyController.m
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ - (char)trashFile:(NSString *)fullpath numLeft:(NSUInteger)numFiles {
NSLocalizedString(@"Cancel", @""),
(numFiles > 1 ? NSLocalizedString(@"Continue", @"") : nil),
nil,
[fullpath lastPathComponent], tag) == NSAlertDefaultReturn)
[fullpath lastPathComponent], (int)tag) == NSAlertDefaultReturn)
return 2;
return 0;
}
Expand Down
6 changes: 3 additions & 3 deletions CreeveyMainWindowController.m
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ - (void)keyDown:(NSEvent *)e {
if (!currCat || (c && c != currCat)) {
[statusFld setStringValue:[NSString stringWithFormat:
NSLocalizedString(@"%u image(s) updated for Group %i", @""),
[a count], c]];
(unsigned int)[a count], c]];
[self performSelector:@selector(updateStatusFld)
withObject:nil
afterDelay:2];
Expand Down Expand Up @@ -611,7 +611,7 @@ - (void)updateExifInfo:(id)sender {
} else {
id s = [selectedIndexes count]
? [NSString stringWithFormat:NSLocalizedString(@"%d images selected.", @""),
[selectedIndexes count]]
(unsigned int)[selectedIndexes count]]
: NSLocalizedString(@"No images selected.", @"");
NSMutableDictionary *atts = [NSMutableDictionary dictionaryWithObject:
[NSFont userFontOfSize:12] forKey:NSFontAttributeName];
Expand Down Expand Up @@ -672,7 +672,7 @@ - (void)wrappingMatrix:(DYWrappingMatrix *)m selectionDidChange:(NSIndexSet *)se
}
s = [NSString stringWithFormat:@"%@ (%@)",
[NSString stringWithFormat:NSLocalizedString(@"%d images selected.", @""),
[selectedIndexes count]],
(unsigned int)[selectedIndexes count]],
FileSize2String(totalSize)];
break;
}
Expand Down
3 changes: 1 addition & 2 deletions DYImageView.m
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ - (void)animateGIF:(NSTimer *)t {
gifTimer = nil;
if (image != [t userInfo]) return; // stop if image is changed

NSBitmapImageRep *rep = [[t userInfo] representations][0];
NSBitmapImageRep *rep = (NSBitmapImageRep *)[[t userInfo] representations][0];
NSNumber *frameCount = [rep valueForProperty:NSImageFrameCount];
int n = [[rep valueForProperty:NSImageCurrentFrame] intValue];
if (++n == [frameCount intValue]) n = 0;
Expand All @@ -164,7 +164,6 @@ - (void)setImage:(NSImage *)anImage zooming:(DYImageViewZoomMode)zoomMode {
if (!anImage) return;
[image release];
image = [anImage retain];
[image setScalesWhenResized:YES];
NSImageRep *rep = [image representations][0]; // ** assume not corrupt
if ([rep isKindOfClass:[NSBitmapImageRep class]]) {
[image setSize:NSMakeSize([rep pixelsWide], [rep pixelsHigh])];
Expand Down
6 changes: 3 additions & 3 deletions Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<key>CFBundleExecutable</key>
<string>Phoenix Slides</string>
<key>CFBundleGetInfoString</key>
<string>Phoenix Slides 1.4.6, Copyright 2005-2021 Dominic Yu, Gold Mountain Software</string>
<string>Phoenix Slides 1.4.7, Copyright 2005-2021 Dominic Yu, Gold Mountain Software</string>
<key>CFBundleHelpBookFolder</key>
<string>Phoenix Slides Help</string>
<key>CFBundleHelpBookName</key>
Expand All @@ -66,11 +66,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.4.6</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleSignature</key>
<string>CrvY</string>
<key>CFBundleVersion</key>
<string>20</string>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
Expand Down
2 changes: 1 addition & 1 deletion SlideshowWindow.m
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ - (void)displayImage {
} else {
if (hideInfoFld) [infoFld setHidden:NO];
[infoFld setStringValue:[NSString stringWithFormat:NSLocalizedString(@"Loading [%i/%i] %@...", @""),
currentIndex+1, [filenames count], [self currentShortFilename]]];
(unsigned int)currentIndex+1, (unsigned int)[filenames count], [self currentShortFilename]]];
[infoFld sizeToFit];
return;
}
Expand Down
4 changes: 4 additions & 0 deletions creevey.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -792,12 +792,14 @@
CODE_SIGN_IDENTITY = "Mac Developer";
CODE_SIGN_STYLE = Automatic;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 21;
DEVELOPMENT_TEAM = 9436CS8LQX;
ENABLE_HARDENED_RUNTIME = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = creevey_Prefix.pch;
INFOPLIST_FILE = Info.plist;
LIBRARY_SEARCH_PATHS = "$(SRCROOT)/libjpeg";
MARKETING_VERSION = 1.4.7;
PRODUCT_BUNDLE_IDENTIFIER = net.blyt.phoenixslides;
PRODUCT_NAME = "Phoenix Slides";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -816,13 +818,15 @@
CODE_SIGN_ENTITLEMENTS = "Phoenix Slides.entitlements";
CODE_SIGN_IDENTITY = "Mac Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 21;
DEVELOPMENT_TEAM = 9436CS8LQX;
ENABLE_HARDENED_RUNTIME = YES;
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = creevey_Prefix.pch;
INFOPLIST_FILE = Info.plist;
LIBRARY_SEARCH_PATHS = "$(SRCROOT)/libjpeg";
MARKETING_VERSION = 1.4.7;
PRODUCT_BUNDLE_IDENTIFIER = net.blyt.phoenixslides;
PRODUCT_NAME = "Phoenix Slides";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
6 changes: 6 additions & 0 deletions de.lproj/Phoenix Slides Help/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,12 @@ <h2><br>
<a name="vers"></a>Versions Historie (engl.)
</h2>

2021.12.15 1.4.7
<ul>
<li>improve image interpolation quality in slideshow</li>
<li>improve "Check For Update" behavior</li>
</ul>

2021.11.20 1.4.6
<ul>
<li>fix slideshow window position on macOS 12 (Monterey)</li>
Expand Down
6 changes: 6 additions & 0 deletions en.lproj/Phoenix Slides Help/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,12 @@ <h2>Help Wanted</h2>

<h2><a name="vers"></a>Version History</h2>

2021.12.15 1.4.7
<ul>
<li>improve image interpolation quality in slideshow</li>
<li>improve "Check For Update" behavior</li>
</ul>

2021.11.20 1.4.6
<ul>
<li>fix slideshow window position on macOS 12 (Monterey)</li>
Expand Down
6 changes: 6 additions & 0 deletions es.lproj/Phoenix Slides Help/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,12 @@ <h2>Se requiere ayuda </h2>

<h2><a name="vers"></a>Historial de cambios </h2>

2021.12.15 1.4.7
<ul>
<li>improve image interpolation quality in slideshow</li>
<li>improve "Check For Update" behavior</li>
</ul>

2021.11.20 1.4.6
<ul>
<li>fix slideshow window position on macOS 12 (Monterey)</li>
Expand Down
6 changes: 6 additions & 0 deletions it.lproj/Phoenix Slides Help/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,12 @@ <h2>Richiesta di Aiuto</h2> <p>Cerco aiuto per localizzazioni: se intendete trad

<h2><a name="vers"></a>Storia delle Versioni</h2>

2021.12.15 1.4.7
<ul>
<li>improve image interpolation quality in slideshow</li>
<li>improve "Check For Update" behavior</li>
</ul>

2021.11.20 1.4.6
<ul>
<li>fix slideshow window position on macOS 12 (Monterey)</li>
Expand Down
6 changes: 6 additions & 0 deletions zh-Hant.lproj/Phoenix Slides Help/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,12 @@ <h2>Help Wanted</h2>

<h2><a name="vers"></a>版本歷史(英文)</h2>

2021.12.15 1.4.7
<ul>
<li>improve image interpolation quality in slideshow</li>
<li>improve "Check For Update" behavior</li>
</ul>

2021.11.20 1.4.6
<ul>
<li>fix slideshow window position on macOS 12 (Monterey)</li>
Expand Down

0 comments on commit 1ae72e6

Please sign in to comment.