Skip to content

Commit

Permalink
Bump to 1.2.2 and update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanebruckert committed Dec 23, 2016
1 parent 052e08b commit 35a7ad8
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 18 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ It works together with the [Shazam Mac App](https://itunes.apple.com/us/app/shaz

### Requirements

- macOS Yosemite/El Capitan/Sierra
- Shazam 1.2.0 (get it from the [App Store](https://itunes.apple.com/gb/app/shazam/id897118787?mt=12))
- [Shazam](https://itunes.apple.com/gb/app/shazam/id897118787?mt=12)
- macOS Yosemite/Capitan/Sierra

### Installation

Expand All @@ -23,6 +23,9 @@ It works together with the [Shazam Mac App](https://itunes.apple.com/us/app/shaz

## CHANGELOG

#### 1.2.2 (2016/12/23)
- Support for Shazam 1.2.2

#### 1.2.1 (2016/11/28)
- Support for Shazam 1.2.0
- Confirmed compatibility with MacOS Sierra
Expand Down
24 changes: 12 additions & 12 deletions ShazamScrobbler/AboutWindowController.xib
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="11542" systemVersion="16B2555" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="11762" systemVersion="16C67" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
<dependencies>
<deployment identifier="macosx"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="11542"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="11762"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
Expand All @@ -26,19 +26,10 @@
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<color key="color" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
</colorWell>
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ACy-M7-Nhr">
<rect key="frame" x="100" y="204" width="398" height="47"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="ShazamScrobbler for OS X" id="KYO-GS-EYy">
<font key="font" size="27" name=".HelveticaNeueDeskInterface-Bold"/>
<color key="textColor" name="selectedTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="SdM-5G-yCq">
<rect key="frame" x="189" y="172" width="277" height="17"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Scrobbler version 1.2.1 for Shazam 1.2.0" id="gJt-wU-JGY">
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Scrobbler version 1.2.2 for Shazam 1.2.2" id="gJt-wU-JGY">
<font key="font" size="13" name="Helvetica"/>
<color key="textColor" name="controlShadowColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
Expand Down Expand Up @@ -78,6 +69,15 @@
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="logo" id="Psa-EX-LhD"/>
</imageView>
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ACy-M7-Nhr">
<rect key="frame" x="94" y="204" width="398" height="47"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="ShazamScrobbler for macOS" id="KYO-GS-EYy">
<font key="font" size="27" name=".HelveticaNeueDeskInterface-Bold"/>
<color key="textColor" name="selectedTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
</view>
<connections>
Expand Down
2 changes: 1 addition & 1 deletion ShazamScrobbler/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ - (void) loadView {
- (void) alert {
NSAlert* msgBox = [[NSAlert alloc] init];
[msgBox setAlertStyle:NSCriticalAlertStyle];
[msgBox setMessageText: @"The scrobbler could not find the Shazam library.\n\nMake sure of two things:\n\t- you are using Shazam 1.2.0,\n\t- Shazam found at least one song.\n\nRestart the scrobbler when that's done."];
[msgBox setMessageText: @"The scrobbler could not find the Shazam library. Please make sure Shazam found at least one song and restart the scrobbler."];
[msgBox addButtonWithTitle: @"OK"];
[msgBox runModal];
}
Expand Down
6 changes: 3 additions & 3 deletions ShazamScrobbler/ShazamScrobbler-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.2.1</string>
<string>1.2.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.2.1</string>
<string>1.2.2</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.music</string>
<key>LSBackgroundOnly</key>
Expand All @@ -39,7 +39,7 @@
<key>Product Homepage</key>
<string>https://github.com/stephanebruckert/ShazamScrobbler</string>
<key>Shazam Compatibility</key>
<string>1.2.0</string>
<string>1.2.2</string>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
Expand Down

0 comments on commit 35a7ad8

Please sign in to comment.