Skip to content

Commit

Permalink
2016
Browse files Browse the repository at this point in the history
It's 2016 now. Also preparing for v5..2.0 release.
  • Loading branch information
David Rudie committed Jan 21, 2016
1 parent 6b00078 commit bf5d048
Show file tree
Hide file tree
Showing 18 changed files with 32 additions and 25 deletions.
3 changes: 3 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,6 @@ Contributors

* gummi
* Norwegian translation

* TheLastRar & kamijoutouma
* Crash fix for when titles too long
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
CHANGES
=======
**v5.2.0 (2016-Jan-20):**
* Spotify deprecated the API Snip was using. Snip now uses the new API.
* Fixed crash when song titles are too long.

**v5.1.0 (2015-Aug-16):**
* Added feature allowing Snip to display a popup notification on track change.
* New Snip icon. Snip icon also moved out of the form resource and into a
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SNIP
====
Copyright 2012-2015 David Rudie <[email protected]>
Copyright 2012-2016 David Rudie <[email protected]>
Project Page: [Snip](https://github.com/dlrudie/Snip)

ABOUT
Expand Down
4 changes: 2 additions & 2 deletions Snip/AssemblyInformation.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region File Information
/*
* Copyright (C) 2012-2015 David Rudie
* Copyright (C) 2012-2016 David Rudie
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -89,4 +89,4 @@ public static string AssemblyShorterVersion
}
}
}
}
}
2 changes: 1 addition & 1 deletion Snip/Globals.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region File Information
/*
* Copyright (C) 2012-2015 David Rudie
* Copyright (C) 2012-2016 David Rudie
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions Snip/MediaPlayer.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region File Information
/*
* Copyright (C) 2012-2015 David Rudie
* Copyright (C) 2012-2016 David Rudie
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -138,4 +138,4 @@ public void SaveBlankImage()
}
}
}
}
}
2 changes: 1 addition & 1 deletion Snip/OutputFormat.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region File Information
/*
* Copyright (C) 2012-2015 David Rudie
* Copyright (C) 2012-2016 David Rudie
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions Snip/Players/Spotify.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region File Information
/*
* Copyright (C) 2012-2015 David Rudie
* Copyright (C) 2012-2016 David Rudie
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -323,4 +323,4 @@ protected override WebRequest GetWebRequest(Uri address)
}
}
}
}
}
4 changes: 2 additions & 2 deletions Snip/Players/VLC.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region File Information
/*
* Copyright (C) 2012-2015 David Rudie
* Copyright (C) 2012-2016 David Rudie
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -144,4 +144,4 @@ public override void StopTrack()
UnsafeNativeMethods.SendMessage(this.Handle, (uint)Globals.WindowMessage.AppCommand, IntPtr.Zero, new IntPtr((long)Globals.MediaCommand.StopTrack));
}
}
}
}
4 changes: 2 additions & 2 deletions Snip/Players/Winamp.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region File Information
/*
* Copyright (C) 2012-2015 David Rudie
* Copyright (C) 2012-2016 David Rudie
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -159,4 +159,4 @@ public override void StopTrack()
UnsafeNativeMethods.SendMessage(this.Handle, (uint)Globals.WindowMessage.AppCommand, IntPtr.Zero, new IntPtr((long)Globals.MediaCommand.StopTrack));
}
}
}
}
4 changes: 2 additions & 2 deletions Snip/Players/foobar2000.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region File Information
/*
* Copyright (C) 2012-2015 David Rudie
* Copyright (C) 2012-2016 David Rudie
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -171,4 +171,4 @@ public override void StopTrack()
UnsafeNativeMethods.SendMessage(this.Handle, (uint)Globals.WindowMessage.AppCommand, IntPtr.Zero, new IntPtr((long)Globals.MediaCommand.StopTrack));
}
}
}
}
2 changes: 1 addition & 1 deletion Snip/Players/iTunes.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region File Information
/*
* Copyright (C) 2012-2015 David Rudie
* Copyright (C) 2012-2016 David Rudie
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion Snip/Program.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region File Information
/*
* Copyright (C) 2012-2015 David Rudie
* Copyright (C) 2012-2016 David Rudie
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down
8 changes: 4 additions & 4 deletions Snip/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region File Information
/*
* Copyright (C) 2012-2015 David Rudie
* Copyright (C) 2012-2016 David Rudie
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -32,7 +32,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("David Rudie")]
[assembly: AssemblyProduct("Snip")]
[assembly: AssemblyCopyright("Copyright © David Rudie 2012-2015")]
[assembly: AssemblyCopyright("Copyright © David Rudie 2012-2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -54,8 +54,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.1.0.0")]
[assembly: AssemblyFileVersion("5.1.0.0")]
[assembly: AssemblyVersion("5.2.0.0")]
[assembly: AssemblyFileVersion("5.2.0.0")]

[assembly: NeutralResourcesLanguageAttribute("en-US")]
[assembly: CLSCompliant(false)]
2 changes: 1 addition & 1 deletion Snip/Settings.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region File Information
/*
* Copyright (C) 2012-2015 David Rudie
* Copyright (C) 2012-2016 David Rudie
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion Snip/Snip.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region File Information
/*
* Copyright (C) 2012-2015 David Rudie
* Copyright (C) 2012-2016 David Rudie
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion Snip/TextHandler.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region File Information
/*
* Copyright (C) 2012-2015 David Rudie
* Copyright (C) 2012-2016 David Rudie
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion Snip/UnsafeNativeMethods.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region File Information
/*
* Copyright (C) 2012-2015 David Rudie
* Copyright (C) 2012-2016 David Rudie
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down

0 comments on commit bf5d048

Please sign in to comment.