texplay 0.2.980-i386-mswin32 → 0.2.981-i386-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +8 -0
- data/README.markdown +1 -1
- data/Rakefile +5 -5
- data/examples/example_dup.rb +2 -1
- data/lib/1.8/texplay.so +0 -0
- data/lib/1.9/texplay.so +0 -0
- data/lib/texplay/version.rb +1 -1
- data/lib/texplay.rb +2 -2
- metadata +3 -3
data/CHANGELOG
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
16/8/10
|
2
|
+
version 0.2.981
|
3
|
+
* oops, added :caching => false to TexPlay#dup
|
4
|
+
* oops, put 'self' inside the capture block for TexPlay#clear
|
5
|
+
* got rid of tolerance member from rgba struct, as tolerance is now stored
|
6
|
+
separately
|
7
|
+
|
8
|
+
|
1
9
|
16/8/10
|
2
10
|
version 0.2.980
|
3
11
|
* added :caching option to TexPlay.set_options, and Gosu::Image.new. For
|
data/README.markdown
CHANGED
data/Rakefile
CHANGED
@@ -31,12 +31,12 @@ CLOBBER.include("**/*.#{$dlext}", "**/*~", "**/*#*", "**/*.log", "**/*.o")
|
|
31
31
|
# FileList["ext/**/extconf.rb", "ext/**/*.h", "ext/**/*.c", "examples/*.rb", "examples/media/*"].to_a
|
32
32
|
# end
|
33
33
|
|
34
|
-
#Rake::ExtensionTask.new('texplay', specification) do |ext|
|
35
|
-
|
36
|
-
|
37
|
-
|
34
|
+
# Rake::ExtensionTask.new('texplay', specification) do |ext|
|
35
|
+
# ext.config_script = 'extconf.rb'
|
36
|
+
# ext.cross_compile = true
|
37
|
+
# ext.cross_platform = 'i386-mswin32'
|
38
38
|
# ext.platform = 'i386-mswin32'
|
39
|
-
#end
|
39
|
+
# end
|
40
40
|
|
41
41
|
|
42
42
|
#comment this when want to build normal gems.
|
data/examples/example_dup.rb
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
|
1
2
|
require 'rubygems'
|
2
3
|
require 'common'
|
3
4
|
require 'gosu'
|
@@ -34,7 +35,7 @@ class W < Gosu::Window
|
|
34
35
|
# add a red line to the copy to identify it
|
35
36
|
#@bunk.line 0, 0, 1024, 1024, :color => :red
|
36
37
|
|
37
|
-
@bunk.each(:region =>[200,200,350,350]) { |c,x,y|
|
38
|
+
@bunk.each(:region =>[200,200,350,350]) { |c,x,y| #
|
38
39
|
|
39
40
|
num_pixels = 0
|
40
41
|
total = [0, 0, 0, 0]
|
data/lib/1.8/texplay.so
CHANGED
Binary file
|
data/lib/1.9/texplay.so
CHANGED
Binary file
|
data/lib/texplay/version.rb
CHANGED
data/lib/texplay.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: texplay
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 1981
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 0.2.
|
9
|
+
- 981
|
10
|
+
version: 0.2.981
|
11
11
|
platform: i386-mswin32
|
12
12
|
authors:
|
13
13
|
- John Mair (banisterfiend)
|