Updated COMPILE, README, Changelog, and version number.
parent
daba91b462
commit
9114be99bd
4
COMPILE
4
COMPILE
|
@ -1,5 +1,3 @@
|
|||
To compile Cog, you must first compile all of the projects in the Frameworks, Plugins, and Preferences folders with the Release build configuration.
|
||||
|
||||
To make this easier, I have created a bash script named build_dependencies.sh in the Scripts folder. Just run that in a terminal from the project root (./Scripts/build_dependencies.sh). When it is finished, all the dependencies should be built.
|
||||
To compile Cog, simply open the Cog xcode project and build it.
|
||||
|
||||
If you have any problems, email me at vspader@users.sourceforge.net
|
||||
|
|
46
Changelog
46
Changelog
|
@ -1,55 +1,43 @@
|
|||
0.06
|
||||
----
|
||||
Drag from iTunes support. (Aaron VonderHaar)
|
||||
Drag from iTunes support (Aaron VonderHaar)
|
||||
Output selection
|
||||
Preferences
|
||||
Last.fm support (Much thanks to Stephen Booth)
|
||||
File Drawer
|
||||
Plugins
|
||||
Apple Remote support
|
||||
Better automatic updates thanks to the Sparkle framework
|
||||
Global Hotkey support (Chris Henderson)
|
||||
New UI (Aaron Marlin, Shaun Martin)
|
||||
Makes honey-baked ham. (Kevin Wilson)
|
||||
|
||||
0.05
|
||||
----
|
||||
Wavpack length should be reported correctly.
|
||||
|
||||
0.05 alpha 6
|
||||
-----------
|
||||
Updated libsndfile to 1.0.15
|
||||
Wave/Aiff should now work on intel.
|
||||
|
||||
0.05 alpha 5
|
||||
------------
|
||||
Hopefully fixes wavpack on intel.
|
||||
|
||||
0.05 alpha 4
|
||||
------------
|
||||
Volume slider now gravitates to 100%, in the middle.
|
||||
Fixes endian issues for intel?
|
||||
|
||||
0.05 alpha 3
|
||||
------------
|
||||
Universal binary
|
||||
|
||||
0.05 alpha 2
|
||||
------------
|
||||
Fixed dock menu connections, and menu connections for play, stop, next, and previous.
|
||||
Fixed bindings for tag/info drawer.
|
||||
Volume settings are now consistent across songs.
|
||||
Window remembers its location.
|
||||
Info button now turns off when manually dragging the info drawer closed.
|
||||
Fixed weirdness when displaying the info drawer after closing the window (via menu or keyboard shortcut). Performing Get info now makes the window visible.
|
||||
Fixed weirdness when displaying the info drawer after closing the window (via menu or keyboard shortcut).
|
||||
Performing Get info now makes the window visible.
|
||||
Added a donation menu item. ($)
|
||||
Clicking the text field now toggles Time Elapsed with Time Remaining.
|
||||
Invalid files are now skipped.
|
||||
Shiny new status bar! (simon savary)
|
||||
current song is displayed in the dock! (simon savary)
|
||||
|
||||
0.05 alpha 1
|
||||
------------
|
||||
Dragging to the dock icon now works in 10.3.
|
||||
Selection now selects the first song added when adding new files.
|
||||
Now seeds the random number generator for shuffle mode.
|
||||
Redesigned UI thanks to Julian Mayer <julianmayer (at) mac.com>.
|
||||
Redesigned UI thanks to Julian Mayer
|
||||
If nothing is selected when the user presses play, the first song is selected and played.
|
||||
Double-clicking when out of focus now behaves as expected.
|
||||
Now has a simple dock menu courtesy of Nathanael Weldon <nathanael (at) mailblocks.com>.
|
||||
Now has a simple dock menu courtesy of Nathanael Weldon
|
||||
The playlist index now starts at 1.
|
||||
Seekbar now updates the time field as you drag it, Simon Savary <savary (at) oricom.ca>
|
||||
French translation courtesy of Simon Savary <savary (at) oricom.ca>
|
||||
Seekbar now updates the time field as you drag it, Simon Savary
|
||||
French translation courtesy of Simon Savary
|
||||
Window is now brought to the front when opening a playlist.
|
||||
Should work with 3rd party audio devices.
|
||||
Gapless playback.
|
||||
|
|
10
Info.plist
10
Info.plist
|
@ -1,6 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
|
||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<plist version='1.0'>
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
|
@ -205,7 +206,7 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>r400</string>
|
||||
<string>r514</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.06</string>
|
||||
<key>NSAppleScriptEnabled</key>
|
||||
|
@ -215,6 +216,7 @@
|
|||
<key>NSPrincipalClass</key>
|
||||
<string>NSApplication</string>
|
||||
<key>SUFeedURL</key>
|
||||
<string>http://cogosx.sourceforge.net/appcast.xml</string>
|
||||
<string>http://cogx.org/appcast/stable.xml</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
||||
|
|
6
README
6
README
|
@ -1,8 +1,8 @@
|
|||
Cog is released under the GPL. See COPYING for details.
|
||||
Cog is authored by Vincent Spader. It is released under the GPL. See COPYING for details.
|
||||
|
||||
The libraries folder contains various decoding and tagging libraries, which i have created Xcode projects for, and possibly modified to make compile on OS X. The various libraries are under each of their own licenses.
|
||||
The libraries folder contains various decoding and tagging libraries, which i have created Xcode projects for, and possibly modified to make compile on OS X. The various libraries are under each of their own licenses/copyrights.
|
||||
|
||||
All Cog code is copyrighted by me, and is licensed under the GPL.
|
||||
All Cog code is copyrighted by me, and is licensed under the GPL. Cog contains bits of other code from third parties that are under their own licenses/copyright.
|
||||
|
||||
If you would like the photoshop sources for the various icons and graphics, please send me an email, and I will be happy to get them to you.
|
||||
|
||||
|
|
Loading…
Reference in New Issue