Skip to content

Commit 1412e1d

Browse files
committed
Removed all stereolux references given their poor behavior
1 parent bea8c0d commit 1412e1d

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2013 Xavier Seignard. http://drangies.fr
3+
Copyright (c) 2015 Xavier Seignard. http://drangies.fr
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Cordovarduino is a Cordova/Phonegap plugin that enable you to use serial communi
1616
### Install it
1717
From the root folder of your cordova project, run :
1818
```
19-
cordova plugin add https://github.com/stereolux/cordovarduino.git
19+
cordova plugin add https://github.com/xseignard/cordovarduino.git
2020
```
2121

2222
### How to use it

plugin.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
4-
id="org.stereolux.cordova.serial"
4+
id="fr.drangies.cordova.serial"
55
version="0.0.2">
66
<name>Serial</name>
77
<description>Cordova plugin to communicate with the android USB serial port</description>
@@ -17,11 +17,11 @@
1717
<platform name="android">
1818
<config-file target="res/xml/config.xml" parent="/*">
1919
<feature name="Serial">
20-
<param name="android-package" value="org.stereolux.cordova.serial.Serial"/>
20+
<param name="android-package" value="fr.drangies.cordova.serial.Serial"/>
2121
</feature>
2222
</config-file>
23-
<source-file src="src/android/org/stereolux/cordova/serial/Serial.java" target-dir="src/org/stereolux/cordova/serial" />
24-
<source-file src="src/android/org/stereolux/cordova/serial/UsbBroadcastReceiver.java" target-dir="src/org/stereolux/cordova/serial" />
23+
<source-file src="src/android/fr/drangies/cordova/serial/Serial.java" target-dir="src/fr/drangies/cordova/serial" />
24+
<source-file src="src/android/fr/drangies/cordova/serial/UsbBroadcastReceiver.java" target-dir="src/fr/drangies/cordova/serial" />
2525
<source-file src="lib/usbseriallibrary.jar" target-dir="libs" />
2626
</platform>
2727
</plugin>

src/android/org/stereolux/cordova/serial/Serial.java renamed to src/android/fr/drangies/cordova/serial/Serial.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.stereolux.cordova.serial;
1+
package fr.drangies.cordova.serial;
22

33
import java.io.IOException;
44
import java.util.concurrent.ExecutorService;

src/android/org/stereolux/cordova/serial/UsbBroadcastReceiver.java renamed to src/android/fr/drangies/cordova/serial/UsbBroadcastReceiver.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.stereolux.cordova.serial;
1+
package fr.drangies.cordova.serial;
22

33
import org.apache.cordova.CallbackContext;
44

@@ -17,7 +17,7 @@ public class UsbBroadcastReceiver extends BroadcastReceiver {
1717
// logging tag
1818
private final String TAG = UsbBroadcastReceiver.class.getSimpleName();
1919
// usb permission tag name
20-
public static final String USB_PERMISSION ="org.stereolux.cordova.serial.USB_PERMISSION";
20+
public static final String USB_PERMISSION ="fr.drangies.cordova.serial.USB_PERMISSION";
2121
// cordova callback context to notify the success/error to the cordova app
2222
private CallbackContext callbackContext;
2323
// cordova activity to use it to unregister this broadcast receiver

0 commit comments

Comments
 (0)