sensible-cinema 0.16.1 → 0.16.2
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/Rakefile +4 -3
- data/TODO +1 -1
- data/VERSION +1 -1
- data/bin/sensible-cinema +6 -5
- data/sensible-cinema.gemspec +1 -1
- metadata +2 -2
data/Rakefile
CHANGED
|
@@ -103,7 +103,8 @@ task 'create_distro_dir' do
|
|
|
103
103
|
p 'created (still need to zip it) ' + dir_out
|
|
104
104
|
end
|
|
105
105
|
|
|
106
|
-
desc 'j -S rake bundle_dependencies create_distro_dir ...'
|
|
107
|
-
task 'full_release' => [:bundle_dependencies, :create_distro_dir, :build] do # :release
|
|
108
|
-
system("#{Gem.ruby} -S gem push pkg/*.gem")
|
|
106
|
+
desc 'j -S rake bundle_dependencies create_distro_dir ... (releases with clean cache dir, which we need now)'
|
|
107
|
+
task 'full_release' => [:bundle_dependencies, :create_distro_dir, :build] do # :release sigh
|
|
108
|
+
system("#{Gem.ruby} -S gem push #{Dir['pkg/*.gem'][-1]}")
|
|
109
|
+
puts "don't forget to blog about it..."
|
|
109
110
|
end
|
data/TODO
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
add a way to get the label rather easily...
|
|
30
30
|
add an option "just save full disk (unedited) to hard drive..."
|
|
31
31
|
note to people: can edit those to your liking
|
|
32
|
-
|
|
32
|
+
a real DVD player...plz? smplayer chokes on bob's big plan...chokes in a bad way...
|
|
33
33
|
|
|
34
34
|
advertise urug, ruby flow :)
|
|
35
35
|
"Re-run most recent" disabled when there isn't one [?]
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.16.
|
|
1
|
+
0.16.2
|
data/bin/sensible-cinema
CHANGED
|
@@ -53,8 +53,10 @@ module SensibleSwing
|
|
|
53
53
|
(though VLC only has approximate timings).", "Lacking dependency", JOptionPane::ERROR_MESSAGE)
|
|
54
54
|
system("start http://smplayer.sourceforge.net/downloads.php")
|
|
55
55
|
else
|
|
56
|
-
drive, volume, md5 = choose_dvd_drive
|
|
57
|
-
|
|
56
|
+
#drive, volume, md5 = choose_dvd_drive
|
|
57
|
+
command = "smplayer dvd://"
|
|
58
|
+
puts command
|
|
59
|
+
system(command)
|
|
58
60
|
end
|
|
59
61
|
}
|
|
60
62
|
b.set_bounds(44,150,button_width,23)
|
|
@@ -131,11 +133,10 @@ module SensibleSwing
|
|
|
131
133
|
answer = JOptionPane.showConfirmDialog(nil, "Appears that you need to install a dependency: mencoder.
|
|
132
134
|
Its license is at: http://www.gnu.org/licenses/gpl-2.0.html.
|
|
133
135
|
Also this will download 7z locally (license: http://www.7-zip.org/license.txt).
|
|
134
|
-
Click yes if you accept the terms of the several license agreements.
|
|
135
|
-
Or click no to cancel.", "Lacking dependency", JOptionPane::YES_NO_OPTION)
|
|
136
|
+
Click yes if you accept the terms of the several license agreements mentioned. The programs will then be downloaded.
|
|
137
|
+
Or click no to cancel and exit.", "Lacking dependency", JOptionPane::YES_NO_OPTION)
|
|
136
138
|
if answer == 1
|
|
137
139
|
p 'exiting, no mencoder...'
|
|
138
|
-
sleep 10
|
|
139
140
|
java.lang.System.exit(1)
|
|
140
141
|
end
|
|
141
142
|
vendor_cache = File.expand_path(File.dirname(__FILE__)) + "/../vendor/cache/"
|
data/sensible-cinema.gemspec
CHANGED