screen_recorder 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8440736fc079dde9ac1fae3d657141f118c66720
4
+ data.tar.gz: d8c6b39b4892f40a8066af8823984d764cd3f9a8
5
+ SHA512:
6
+ metadata.gz: 9b0af353403d20800319313b0b5179c70edf45853ddbb1b42facfce3c698843b228baeded224f1971e3bb3ef50c8195d3171434524d221bfa8b4c57e90fa5fdb
7
+ data.tar.gz: ff31a62a1290b63ffe6972f5f0a03491bb9849d1ebc4b8a8875619a204d61f77d59be5d553f2663a814473eb007a094a97b14e448db7c187b1ed9f9353f89327
@@ -1,3 +1,7 @@
1
+ # 0.1.6 - 32-bit compatible
2
+
3
+ * Fix build errors for 32-bit Objective-C (thanks @jonnyyu)
4
+
1
5
  # 0.1.5 - The real 0.1.4 release
2
6
 
3
7
  * Nothing...
@@ -61,3 +61,7 @@ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
61
61
  IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
62
62
  OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
63
63
  ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
64
+
65
+
66
+ [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/AXElements/screen_recorder/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
67
+
@@ -10,6 +10,11 @@
10
10
  #import <AVFoundation/AVFoundation.h>
11
11
 
12
12
  @interface MCScreenRecorder : NSObject <AVCaptureFileOutputDelegate, AVCaptureFileOutputRecordingDelegate> {
13
+ AVCaptureSession *_session;
14
+ AVCaptureScreenInput *_input;
15
+ AVCaptureMovieFileOutput *_output;
16
+ NSURL *_file;
17
+ dispatch_semaphore_t _sema;
13
18
  }
14
19
 
15
20
  @property (assign) AVCaptureSession* session;
@@ -11,11 +11,11 @@
11
11
 
12
12
  @implementation MCScreenRecorder
13
13
 
14
- @synthesize session;
15
- @synthesize input;
16
- @synthesize output;
17
- @synthesize file;
18
- @synthesize sema;
14
+ @synthesize session = _session;
15
+ @synthesize input = _input;
16
+ @synthesize output = _output;
17
+ @synthesize file = _file;
18
+ @synthesize sema = _sema;
19
19
 
20
20
 
21
21
  - (id)init
@@ -1,4 +1,4 @@
1
1
  class ScreenRecorder
2
2
  # @return [String]
3
- VERSION = '0.1.5'
3
+ VERSION = '0.1.6'
4
4
  end
metadata CHANGED
@@ -1,115 +1,56 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: screen_recorder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
5
- prerelease:
4
+ version: 0.1.6
6
5
  platform: ruby
7
6
  authors:
8
7
  - Mark Rada
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-12-26 00:00:00.000000000 Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
15
- name: yard
16
- requirement: !ruby/object:Gem::Requirement
17
- none: false
18
- requirements:
19
- - - ~>
20
- - !ruby/object:Gem::Version
21
- version: 0.8.3
22
- type: :development
23
- prerelease: false
24
- version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
- requirements:
27
- - - ~>
28
- - !ruby/object:Gem::Version
29
- version: 0.8.3
30
- - !ruby/object:Gem::Dependency
31
- name: kramdown
32
- requirement: !ruby/object:Gem::Requirement
33
- none: false
34
- requirements:
35
- - - ~>
36
- - !ruby/object:Gem::Version
37
- version: 0.14.1
38
- type: :development
39
- prerelease: false
40
- version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ~>
44
- - !ruby/object:Gem::Version
45
- version: 0.14.1
46
- - !ruby/object:Gem::Dependency
47
- name: rake-compiler
48
- requirement: !ruby/object:Gem::Requirement
49
- none: false
50
- requirements:
51
- - - ~>
52
- - !ruby/object:Gem::Version
53
- version: 0.8.1
54
- type: :development
55
- prerelease: false
56
- version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
- requirements:
59
- - - ~>
60
- - !ruby/object:Gem::Version
61
- version: 0.8.1
62
- description: ! 'screen_recorder is a wrapper around some of the OS X AVFoundation
63
- framework.
64
-
11
+ date: 2014-05-02 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: |
14
+ screen_recorder is a wrapper around some of the OS X AVFoundation framework.
65
15
 
66
16
  Originally extracted from the AXElements project.
67
-
68
- '
69
17
  email: markrada26@gmail.com
70
18
  executables: []
71
19
  extensions:
72
20
  - ext/screen_recorder/extconf.rb
73
21
  extra_rdoc_files: []
74
22
  files:
75
- - lib/screen_recorder/version.rb
76
- - ext/screen_recorder/screen_recorder.c
23
+ - ".yardopts"
24
+ - History.markdown
25
+ - README.markdown
26
+ - Rakefile
77
27
  - ext/screen_recorder/MCScreenRecorder.h
78
- - ext/screen_recorder/extconf.rb
79
28
  - ext/screen_recorder/MCScreenRecorder.m
80
- - Rakefile
81
- - README.markdown
82
- - History.markdown
83
- - .yardopts
29
+ - ext/screen_recorder/extconf.rb
30
+ - ext/screen_recorder/screen_recorder.c
31
+ - lib/screen_recorder/version.rb
84
32
  homepage: http://github.com/AXElements/screen_recorder
85
33
  licenses:
86
34
  - BSD 3-clause
35
+ metadata: {}
87
36
  post_install_message:
88
37
  rdoc_options: []
89
38
  require_paths:
90
39
  - lib
91
40
  required_ruby_version: !ruby/object:Gem::Requirement
92
- none: false
93
41
  requirements:
94
- - - ! '>='
42
+ - - ">="
95
43
  - !ruby/object:Gem::Version
96
44
  version: '0'
97
- segments:
98
- - 0
99
- hash: 2906631520062002862
100
45
  required_rubygems_version: !ruby/object:Gem::Requirement
101
- none: false
102
46
  requirements:
103
- - - ! '>='
47
+ - - ">="
104
48
  - !ruby/object:Gem::Version
105
49
  version: '0'
106
- segments:
107
- - 0
108
- hash: 2906631520062002862
109
50
  requirements: []
110
51
  rubyforge_project:
111
- rubygems_version: 1.8.24
52
+ rubygems_version: 2.2.2
112
53
  signing_key:
113
- specification_version: 3
54
+ specification_version: 4
114
55
  summary: A class that allows recording your screen in OS X
115
56
  test_files: []