vitunes 0.4.8 → 0.4.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +14 -2
- data/lib/vitunes.vim +1 -1
- data/lib/vitunes/version.rb +1 -1
- metadata +3 -3
data/README.markdown
CHANGED
|
@@ -8,7 +8,7 @@ Benefits:
|
|
|
8
8
|
|
|
9
9
|
* Control iTunes without leaving Vim, where one is probably in a state of productive bliss
|
|
10
10
|
* Avoid using the mouse or trackpad; keystrokes get you there faster
|
|
11
|
-
* Zen-minimalist textual UI works better on small screens than iTunes'
|
|
11
|
+
* Zen-minimalist textual UI works better on small screens than iTunes' bulky, multi-paned GUI
|
|
12
12
|
* Control iTunes from another computer over ssh, across the room or across the world
|
|
13
13
|
* Let multiple people control one instance of iTunes over ssh ([how][multi])
|
|
14
14
|
* Control iTunes from a GNU/Linux client computer over ssh
|
|
@@ -134,7 +134,6 @@ To delete tracks from a playlist, put the cursor on a track or select a range
|
|
|
134
134
|
of tracks, and then hit `BACKSPACE` (the Apple delete key) to remove them from
|
|
135
135
|
the playlist that you are looking at.
|
|
136
136
|
|
|
137
|
-
|
|
138
137
|
### Managing playlists
|
|
139
138
|
|
|
140
139
|
* `,P` goes to the current playlist, if there is one
|
|
@@ -151,6 +150,19 @@ If you have cheap Linux netbooks, they make good ViTunes controllers. I
|
|
|
151
150
|
control the iTunes on my Mac Mini from two Linux Asus 1015PEM netbooks that I
|
|
152
151
|
move around the apartment.
|
|
153
152
|
|
|
153
|
+
### History and future
|
|
154
|
+
|
|
155
|
+
I've been interested in designing alternative user interfaces to iTunes since
|
|
156
|
+
2008, when I was working out of the creative hacker cooperative [Betahouse](http://betahouse.org/).
|
|
157
|
+
|
|
158
|
+
* My first experiment was [itunes-rails](http://code.google.com/p/itunes-rails/).
|
|
159
|
+
* My second experiment was [itunes-command](http://danielchoi.com/software/itunes-command.html).
|
|
160
|
+
* ViTunes is the third experiment.
|
|
161
|
+
|
|
162
|
+
If you run a coffeeshop or coworking space where you'd like to let people use a
|
|
163
|
+
common iTunes library like a jukebox, **please let me know**, because I'm
|
|
164
|
+
interested in making something convenient for this kind of environment. This
|
|
165
|
+
will probably require interaction via mobile devices.
|
|
154
166
|
|
|
155
167
|
### Buy more music, support the ViTunes project
|
|
156
168
|
|
data/lib/vitunes.vim
CHANGED
|
@@ -298,8 +298,8 @@ function! s:submitQueryOrSelection(command)
|
|
|
298
298
|
if (len(query) == 0 || query =~ '^\s*$')
|
|
299
299
|
return
|
|
300
300
|
endif
|
|
301
|
+
let query = substitute(query, "'", "\\\\'", '')
|
|
301
302
|
if a:command == 'artist'
|
|
302
|
-
let query = substitute(query, "'", "\'", '')
|
|
303
303
|
let bcommand = s:vitunes_tool."predicate ".shellescape("artist == '".query."'")
|
|
304
304
|
elseif a:command == 'genre'
|
|
305
305
|
let bcommand = s:vitunes_tool."predicate ".shellescape("genre == '".query."'")
|
data/lib/vitunes/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vitunes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.9
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2012-11-16 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: Control iTunes with Vim
|
|
15
15
|
email:
|
|
@@ -67,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
67
67
|
version: '0'
|
|
68
68
|
requirements: []
|
|
69
69
|
rubyforge_project: vitunes
|
|
70
|
-
rubygems_version: 1.8.
|
|
70
|
+
rubygems_version: 1.8.23
|
|
71
71
|
signing_key:
|
|
72
72
|
specification_version: 3
|
|
73
73
|
summary: A Vim interface to iTunes
|