vitunes 0.3.7 → 0.3.8
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/NOTES +13 -0
- data/README.markdown +3 -2
- data/Rakefile +1 -0
- data/coverage.markdown +3 -0
- data/lib/vitunes.vim +3 -3
- data/lib/vitunes/version.rb +1 -1
- metadata +30 -22
data/NOTES
CHANGED
|
@@ -225,9 +225,22 @@ http://freshmeat.net/projects/vitunes
|
|
|
225
225
|
Also
|
|
226
226
|
http://www.vim.org/scripts/script.php?script_id=523
|
|
227
227
|
|
|
228
|
+
An old applescript
|
|
229
|
+
http://www-personal.umich.edu/~apape/Post/itunescli/itunes
|
|
230
|
+
|
|
228
231
|
|
|
229
232
|
Sat Jul 2 16:26:56 EDT 2011
|
|
230
233
|
|
|
231
234
|
TODO: you can't add tracks to some playlists ; give user some indication
|
|
232
235
|
|
|
233
236
|
|
|
237
|
+
|
|
238
|
+
------------------------------------------------------------------------
|
|
239
|
+
Tue Jul 5 13:03:42 EDT 2011
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
Coverage
|
|
243
|
+
|
|
244
|
+
http://osxdaily.com/2011/07/05/command-line-tunes-player-vitunes/
|
|
245
|
+
http://www.macworld.com/article/160936/2011/07/vitunes.html
|
|
246
|
+
|
data/README.markdown
CHANGED
|
@@ -8,9 +8,10 @@ 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
|
-
*
|
|
11
|
+
* minimalist text-based UI works better on smaller screens than a honkin multi-paned GUI
|
|
12
|
+
* control iTunes from another computer (via ssh session), across the room or across the world
|
|
12
13
|
* let multiple people control one instance of iTunes over ssh ([how][multi])
|
|
13
|
-
* control iTunes from a Linux client
|
|
14
|
+
* control iTunes from a GNU/Linux client
|
|
14
15
|
|
|
15
16
|
[multi]:https://github.com/danchoi/vitunes/wiki
|
|
16
17
|
|
data/Rakefile
CHANGED
|
@@ -38,6 +38,7 @@ end
|
|
|
38
38
|
desc "build webpage"
|
|
39
39
|
task :build_webpage do
|
|
40
40
|
`cp README.markdown ../project-webpages/src/vitunes.README.markdown`
|
|
41
|
+
`cp coverage.markdown ../project-webpages/src/vitunes.coverage.markdown`
|
|
41
42
|
Dir.chdir "../project-webpages" do
|
|
42
43
|
puts `ruby gen.rb vitunes #{ViTunes::VERSION}`
|
|
43
44
|
`open out/vitunes.html`
|
data/coverage.markdown
ADDED
data/lib/vitunes.vim
CHANGED
|
@@ -244,7 +244,7 @@ function! s:openPlaylistDropdown()
|
|
|
244
244
|
endfunction
|
|
245
245
|
|
|
246
246
|
function! s:openArtistDropdown()
|
|
247
|
-
leftabove split
|
|
247
|
+
leftabove split ChooseArtist
|
|
248
248
|
inoremap <silent> <buffer> <cr> <Esc>:call <SID>submitQueryOrSelection('artist')<CR>
|
|
249
249
|
let s:selectionPrompt = s:selectArtistPrompt
|
|
250
250
|
call s:commonDropDownConfig()
|
|
@@ -253,7 +253,7 @@ function! s:openArtistDropdown()
|
|
|
253
253
|
endfunction
|
|
254
254
|
|
|
255
255
|
function! s:openGenreDropdown()
|
|
256
|
-
leftabove split
|
|
256
|
+
leftabove split ChooseGenre
|
|
257
257
|
inoremap <silent> <buffer> <cr> <Esc>:call <SID>submitQueryOrSelection('genre')<CR>
|
|
258
258
|
let s:selectionPrompt = s:selectGenrePrompt
|
|
259
259
|
call <SID>commonDropDownConfig()
|
|
@@ -262,7 +262,7 @@ function! s:openGenreDropdown()
|
|
|
262
262
|
endfunction
|
|
263
263
|
|
|
264
264
|
function! s:openAlbumDropdown()
|
|
265
|
-
leftabove split
|
|
265
|
+
leftabove split ChooseAlbum
|
|
266
266
|
inoremap <silent> <buffer> <cr> <Esc>:call <SID>submitQueryOrSelection('album')<CR>
|
|
267
267
|
let s:selectionPrompt = s:selectAlbumPrompt
|
|
268
268
|
call <SID>commonDropDownConfig()
|
data/lib/vitunes/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,27 +1,31 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vitunes
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.7
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
5
4
|
prerelease:
|
|
5
|
+
version: 0.3.8
|
|
6
6
|
platform: ruby
|
|
7
|
-
authors:
|
|
7
|
+
authors:
|
|
8
8
|
- Daniel Choi
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
|
|
12
|
+
|
|
13
|
+
date: 2011-07-06 00:00:00 -04:00
|
|
13
14
|
default_executable:
|
|
14
15
|
dependencies: []
|
|
16
|
+
|
|
15
17
|
description: Control iTunes with Vim
|
|
16
|
-
email:
|
|
18
|
+
email:
|
|
17
19
|
- dhchoi@gmail.com
|
|
18
|
-
executables:
|
|
20
|
+
executables:
|
|
19
21
|
- vitunes
|
|
20
22
|
- vitunes-help
|
|
21
23
|
- vitunes-install
|
|
22
24
|
extensions: []
|
|
25
|
+
|
|
23
26
|
extra_rdoc_files: []
|
|
24
|
-
|
|
27
|
+
|
|
28
|
+
files:
|
|
25
29
|
- .gitignore
|
|
26
30
|
- MIT-LICENSE.txt
|
|
27
31
|
- NOTES
|
|
@@ -31,6 +35,7 @@ files:
|
|
|
31
35
|
- bin/vitunes
|
|
32
36
|
- bin/vitunes-help
|
|
33
37
|
- bin/vitunes-install
|
|
38
|
+
- coverage.markdown
|
|
34
39
|
- iTunes.h
|
|
35
40
|
- lib/plugin.erb
|
|
36
41
|
- lib/vitunes-tool-objc
|
|
@@ -46,30 +51,33 @@ files:
|
|
|
46
51
|
has_rdoc: true
|
|
47
52
|
homepage: http://danielchoi.com/software/vitunes.html
|
|
48
53
|
licenses: []
|
|
49
|
-
post_install_message: ! '**************************************************************
|
|
50
54
|
|
|
55
|
+
post_install_message: |-
|
|
56
|
+
**************************************************************
|
|
51
57
|
** Now please run vitunes-install to install the Vim plugin **
|
|
52
|
-
|
|
53
|
-
**************************************************************'
|
|
58
|
+
**************************************************************
|
|
54
59
|
rdoc_options: []
|
|
55
|
-
|
|
60
|
+
|
|
61
|
+
require_paths:
|
|
56
62
|
- lib
|
|
57
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
63
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
58
64
|
none: false
|
|
59
|
-
requirements:
|
|
60
|
-
- -
|
|
61
|
-
- !ruby/object:Gem::Version
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
62
68
|
version: 1.8.6
|
|
63
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
64
70
|
none: false
|
|
65
|
-
requirements:
|
|
66
|
-
- -
|
|
67
|
-
- !ruby/object:Gem::Version
|
|
68
|
-
version:
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: "0"
|
|
69
75
|
requirements: []
|
|
76
|
+
|
|
70
77
|
rubyforge_project: vitunes
|
|
71
|
-
rubygems_version: 1.6.
|
|
78
|
+
rubygems_version: 1.6.1
|
|
72
79
|
signing_key:
|
|
73
80
|
specification_version: 3
|
|
74
81
|
summary: A Vim interface to iTunes
|
|
75
82
|
test_files: []
|
|
83
|
+
|