source: trunk/Cocoa/Pester/Source/Sparkle.diff@ 533

Last change on this file since 533 was 512, checked in by Nicholas Riley, 15 years ago

Sparkle.diff: Update to the last Subversion-maintained Sparkle revision.

  • Property svn:mime-type set to application/octet-stream
File size: 2.1 KB
  • Sparkle/en.lproj/Sparkle.strings

     
    5656"Installing update..." = "Installing update...";
    5757
    5858/* No comment provided by engineer. */
    59 "No" = "No";
     59"No" = "Don t Check";
    6060
    6161/* No comment provided by engineer. */
    6262"OK" = "OK";
     
    7474"Would you like %@ to check for updates on startup? If not, you can initiate the check manually from the %@ menu." = "Would you like %1$@ to check for updates on startup? If not, you can initiate the check manually from the %2$@ menu.";
    7575
    7676/* No comment provided by engineer. */
    77 "Yes" = "Yes";
     77"Yes" = "Check";
    7878
    7979/* No comment provided by engineer. */
    8080"You're up to date!" = "You're up to date!";
    81 
    8281
    83  No newline at end of file
  • Sparkle/SUAppcastItem.m

     
    120120                {
    121121                        // Separate the url by underscores and take the last component, as that'll be closest to the end,
    122122                        // then we remove the extension. Hopefully, this will be the version.
    123                         NSArray *fileComponents = [[enclosure objectForKey:@"url"] componentsSeparatedByString:@"_"];
     123                        NSArray *fileComponents = [[enclosure objectForKey:@"url"] componentsSeparatedByString:@"-"];
    124124                        if ([fileComponents count] > 1)
    125125                                newVersion = [[fileComponents lastObject] stringByDeletingPathExtension];
    126126                        else
Note: See TracBrowser for help on using the repository browser.