You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2015/03/31 19:57:54 UTC

[1/4] cordova-plugin-camera git commit: docs: added 'Windows' to supported platforms

Repository: cordova-plugin-camera
Updated Branches:
  refs/heads/old-ID 081aec560 -> ccbbdccc4


docs: added 'Windows' to supported platforms

Untill Windows8 is depracted we should have both Windows and Windows8


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/commit/8062a006
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/tree/8062a006
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/diff/8062a006

Branch: refs/heads/old-ID
Commit: 8062a006c05d08863ac6c2b157e82d18dd6329d2
Parents: 081aec5
Author: sgrebnov <v-...@microsoft.com>
Authored: Thu Mar 19 17:47:46 2015 +0300
Committer: sgrebnov <v-...@microsoft.com>
Committed: Thu Mar 19 17:47:46 2015 +0300

----------------------------------------------------------------------
 README.md | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/blob/8062a006/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index c47d60f..59dc7a2 100644
--- a/README.md
+++ b/README.md
@@ -94,6 +94,7 @@ than `DATA_URL`.
 - Tizen
 - Windows Phone 7 and 8
 - Windows 8
+- Windows
 
 ### Preferences (iOS)
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[2/4] cordova-plugin-camera git commit: Fix cordova-paramedic path change, build with TRAVIS_BUILD_DIR, use npm to install paramedic

Posted by st...@apache.org.
Fix cordova-paramedic path change, build with TRAVIS_BUILD_DIR, use npm to install paramedic


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/commit/7209d38f
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/tree/7209d38f
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/diff/7209d38f

Branch: refs/heads/old-ID
Commit: 7209d38fa22f6c3a0dcac603477c8c7b831f5639
Parents: 8062a00
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Tue Mar 24 23:16:57 2015 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Tue Mar 24 23:16:57 2015 -0700

----------------------------------------------------------------------
 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/blob/7209d38f/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index b741964..fa7ae7d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,8 +6,8 @@ node_js:
 install:
   - echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config 
   - cd ..
-  - npm install -g purplecabbage/cordova-paramedic
+  - npm install -g cordova-paramedic
   - npm install -g cordova
   - npm install -g ios-sim
 script:
-  - cordova-paramedic --platform ios --plugin ../cordova-plugin-camera
\ No newline at end of file
+  - cordova-paramedic --platform ios --plugin ${TRAVIS_BUILD_DIR}


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[3/4] cordova-plugin-camera git commit: CB-8351 Fix custom implementation of integerValueForKey (close #79)

Posted by st...@apache.org.
CB-8351 Fix custom implementation of integerValueForKey (close #79)

https://github.com/apache/cordova-plugin-camera/commit/2ead6335c92deb117cc3ef84d0a15db296de8dc5#diff-3cfd0e1f93894bd4e501e8e0e4634850


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/commit/04ed502d
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/tree/04ed502d
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/diff/04ed502d

Branch: refs/heads/old-ID
Commit: 04ed502d9210c02d1ae3b5d0eadd6cfa8c41d7a9
Parents: 7209d38
Author: Gene Connolly <co...@gmail.com>
Authored: Mon Mar 30 14:13:50 2015 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Mon Mar 30 20:10:24 2015 -0400

----------------------------------------------------------------------
 src/ios/CDVCamera.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/blob/04ed502d/src/ios/CDVCamera.m
----------------------------------------------------------------------
diff --git a/src/ios/CDVCamera.m b/src/ios/CDVCamera.m
index 30e5173..6eaa79d 100644
--- a/src/ios/CDVCamera.m
+++ b/src/ios/CDVCamera.m
@@ -185,7 +185,7 @@ static NSString* toBase64(NSData* data) {
 {
     NSInteger value = defaultValue;
 
-    NSNumber* val = [self valueForKey:key];  // value is an NSNumber
+    NSNumber* val = [dict valueForKey:key];  // value is an NSNumber
 
     if (val != nil) {
         value = [val integerValue];


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[4/4] cordova-plugin-camera git commit: CB-8653 updated translated docs to use new id

Posted by st...@apache.org.
CB-8653 updated translated docs to use new id


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/commit/ccbbdccc
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/tree/ccbbdccc
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/diff/ccbbdccc

Branch: refs/heads/old-ID
Commit: ccbbdccc4cd207e26b6e6843eae147f9eba7f113
Parents: 04ed502
Author: Steve Gill <st...@gmail.com>
Authored: Tue Mar 31 10:53:30 2015 -0700
Committer: Steve Gill <st...@gmail.com>
Committed: Tue Mar 31 10:53:30 2015 -0700

----------------------------------------------------------------------
 doc/de/index.md | 2 +-
 doc/es/index.md | 2 +-
 doc/fr/index.md | 2 +-
 doc/it/index.md | 2 +-
 doc/ja/index.md | 2 +-
 doc/ko/index.md | 2 +-
 doc/pl/index.md | 2 +-
 doc/ru/index.md | 2 +-
 doc/zh/index.md | 2 +-
 9 files changed, 9 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/blob/ccbbdccc/doc/de/index.md
----------------------------------------------------------------------
diff --git a/doc/de/index.md b/doc/de/index.md
index b39a02e..fa43d9d 100644
--- a/doc/de/index.md
+++ b/doc/de/index.md
@@ -431,4 +431,4 @@ Fortgeschrittene Image-Dateien, die in vorübergehender Verwahrung gehalten werd
     
     function onFail(message) {
         alert('Failed because: ' + message);
-    }
\ No newline at end of file
+    }

http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/blob/ccbbdccc/doc/es/index.md
----------------------------------------------------------------------
diff --git a/doc/es/index.md b/doc/es/index.md
index 45e36e0..51e592d 100644
--- a/doc/es/index.md
+++ b/doc/es/index.md
@@ -388,4 +388,4 @@ Elimina intermedio archivos de imagen que se mantienen en depósito temporal des
     
     function onSuccess() {console.log ("cámara limpieza éxito.")}
     
-    function onFail(message) {alert (' falló porque: ' + mensaje);}
\ No newline at end of file
+    function onFail(message) {alert (' falló porque: ' + mensaje);}

http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/blob/ccbbdccc/doc/fr/index.md
----------------------------------------------------------------------
diff --git a/doc/fr/index.md b/doc/fr/index.md
index a7f1b53..3f963ce 100644
--- a/doc/fr/index.md
+++ b/doc/fr/index.md
@@ -388,4 +388,4 @@ Supprime les intermédiaires les fichiers image qui sont gardées en dépôt tem
     
     fonction onSuccess() {console.log ("succès de caméra nettoyage.")}
     
-    function onFail(message) {alert (' a échoué car: "+ message);}
\ No newline at end of file
+    function onFail(message) {alert (' a échoué car: "+ message);}

http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/blob/ccbbdccc/doc/it/index.md
----------------------------------------------------------------------
diff --git a/doc/it/index.md b/doc/it/index.md
index 140df67..557723d 100644
--- a/doc/it/index.md
+++ b/doc/it/index.md
@@ -431,4 +431,4 @@ Rimuove i file di immagine intermedia che vengono tenuti in custodia temporanea
     
     function onFail(message) {
         alert('Failed because: ' + message);
-    }
\ No newline at end of file
+    }

http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/blob/ccbbdccc/doc/ja/index.md
----------------------------------------------------------------------
diff --git a/doc/ja/index.md b/doc/ja/index.md
index ec72906..a3cbdd7 100644
--- a/doc/ja/index.md
+++ b/doc/ja/index.md
@@ -431,4 +431,4 @@ iOS だけ指定パラメーターをポップ オーバーのアンカー要素
     
     function onFail(message) {
         alert('Failed because: ' + message);
-    }
\ No newline at end of file
+    }

http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/blob/ccbbdccc/doc/ko/index.md
----------------------------------------------------------------------
diff --git a/doc/ko/index.md b/doc/ko/index.md
index 16c69c3..74d8eab 100644
--- a/doc/ko/index.md
+++ b/doc/ko/index.md
@@ -431,4 +431,4 @@ iOS 전용 매개 변수 iPad의 보관 함 또는 앨범에서 이미지를 선
     
     function onFail(message) {
         alert('Failed because: ' + message);
-    }
\ No newline at end of file
+    }

http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/blob/ccbbdccc/doc/pl/index.md
----------------------------------------------------------------------
diff --git a/doc/pl/index.md b/doc/pl/index.md
index 9727687..d207a35 100644
--- a/doc/pl/index.md
+++ b/doc/pl/index.md
@@ -431,4 +431,4 @@ Usuwa pliki obrazów pośrednich, które są przechowywane w pamięci tymczasowe
     
     function onFail(message) {
         alert('Failed because: ' + message);
-    }
\ No newline at end of file
+    }

http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/blob/ccbbdccc/doc/ru/index.md
----------------------------------------------------------------------
diff --git a/doc/ru/index.md b/doc/ru/index.md
index c7e5216..803e4a8 100644
--- a/doc/ru/index.md
+++ b/doc/ru/index.md
@@ -414,4 +414,4 @@ Tizen поддерживает только значение `destinationType` 
     
     function onFail(message) {
         alert('Failed because: ' + message);
-    }
\ No newline at end of file
+    }

http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/blob/ccbbdccc/doc/zh/index.md
----------------------------------------------------------------------
diff --git a/doc/zh/index.md b/doc/zh/index.md
index a23063b..c56c02a 100644
--- a/doc/zh/index.md
+++ b/doc/zh/index.md
@@ -432,4 +432,4 @@ iOS 僅指定氣泡框的錨元素的位置和箭頭方向,從 iPad 庫或專
     
     function onFail(message) {
         alert('Failed because: ' + message);
-    }
\ No newline at end of file
+    }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org