Skip to content

Commit 769641a

Browse files
committed
GRPC binding to arduino-cli (EXPERIMENTAL)
1 parent 072e3b6 commit 769641a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+62888
-1
lines changed

app/src/processing/app/UpdateCheck.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
*/
5252
public class UpdateCheck implements Runnable {
5353
Base base;
54-
String downloadURL = tr("https://www.arduino.cc/latest.txt");
54+
String downloadURL = "https://www.arduino.cc/latest.txt";
5555

5656
static final long ONE_DAY = 24 * 60 * 60 * 1000;
5757

arduino-core/.classpath

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,44 @@
2727
<classpathentry kind="lib" path="lib/commons-lang3-3.8.1.jar"/>
2828
<classpathentry kind="lib" path="lib/jssc-2.8.0-arduino4.jar"/>
2929
<classpathentry kind="lib" path="lib/commons-io-2.6.jar"/>
30+
<classpathentry kind="lib" path="lib/grpc/animal-sniffer-annotations-1.17.jar"/>
31+
<classpathentry kind="lib" path="lib/grpc/annotations-4.1.1.4.jar"/>
32+
<classpathentry kind="lib" path="lib/grpc/checker-compat-qual-2.5.2.jar"/>
33+
<classpathentry kind="lib" path="lib/grpc/error_prone_annotations-2.3.2.jar"/>
34+
<classpathentry kind="lib" path="lib/grpc/google-auth-library-credentials-0.13.0.jar"/>
35+
<classpathentry kind="lib" path="lib/grpc/grpc-all-1.20.0.jar"/>
36+
<classpathentry kind="lib" path="lib/grpc/grpc-auth-1.20.0.jar"/>
37+
<classpathentry kind="lib" path="lib/grpc/grpc-context-1.20.0.jar"/>
38+
<classpathentry kind="lib" path="lib/grpc/grpc-core-1.20.0.jar"/>
39+
<classpathentry kind="lib" path="lib/grpc/grpc-netty-1.20.0.jar"/>
40+
<classpathentry kind="lib" path="lib/grpc/grpc-okhttp-1.20.0.jar"/>
41+
<classpathentry kind="lib" path="lib/grpc/grpc-protobuf-1.20.0.jar"/>
42+
<classpathentry kind="lib" path="lib/grpc/grpc-protobuf-lite-1.20.0.jar"/>
43+
<classpathentry kind="lib" path="lib/grpc/grpc-protobuf-nano-1.20.0.jar"/>
44+
<classpathentry kind="lib" path="lib/grpc/grpc-stub-1.20.0.jar"/>
45+
<classpathentry kind="lib" path="lib/grpc/grpc-testing-1.20.0.jar"/>
46+
<classpathentry kind="lib" path="lib/grpc/gson-2.7.jar"/>
47+
<classpathentry kind="lib" path="lib/grpc/guava-26.0-android.jar"/>
48+
<classpathentry kind="lib" path="lib/grpc/hamcrest-core-1.3.jar"/>
49+
<classpathentry kind="lib" path="lib/grpc/j2objc-annotations-1.1.jar"/>
50+
<classpathentry kind="lib" path="lib/grpc/jsr305-3.0.2.jar"/>
51+
<classpathentry kind="lib" path="lib/grpc/junit-4.12.jar"/>
52+
<classpathentry kind="lib" path="lib/grpc/netty-buffer-4.1.34.Final.jar"/>
53+
<classpathentry kind="lib" path="lib/grpc/netty-codec-4.1.34.Final.jar"/>
54+
<classpathentry kind="lib" path="lib/grpc/netty-codec-http-4.1.34.Final.jar"/>
55+
<classpathentry kind="lib" path="lib/grpc/netty-codec-http2-4.1.34.Final.jar"/>
56+
<classpathentry kind="lib" path="lib/grpc/netty-codec-socks-4.1.34.Final.jar"/>
57+
<classpathentry kind="lib" path="lib/grpc/netty-common-4.1.34.Final.jar"/>
58+
<classpathentry kind="lib" path="lib/grpc/netty-handler-4.1.34.Final.jar"/>
59+
<classpathentry kind="lib" path="lib/grpc/netty-handler-proxy-4.1.34.Final.jar"/>
60+
<classpathentry kind="lib" path="lib/grpc/netty-resolver-4.1.34.Final.jar"/>
61+
<classpathentry kind="lib" path="lib/grpc/netty-transport-4.1.34.Final.jar"/>
62+
<classpathentry kind="lib" path="lib/grpc/okhttp-2.5.0.jar"/>
63+
<classpathentry kind="lib" path="lib/grpc/okio-1.13.0.jar"/>
64+
<classpathentry kind="lib" path="lib/grpc/opencensus-api-0.19.2.jar"/>
65+
<classpathentry kind="lib" path="lib/grpc/opencensus-contrib-grpc-metrics-0.19.2.jar"/>
66+
<classpathentry kind="lib" path="lib/grpc/proto-google-common-protos-1.12.0.jar"/>
67+
<classpathentry kind="lib" path="lib/grpc/protobuf-javanano-3.0.0-alpha-5.jar"/>
68+
<classpathentry kind="lib" path="lib/grpc/protobuf-java-3.9.2.jar"/>
3069
<classpathentry kind="output" path="bin"/>
3170
</classpath>

arduino-core/build.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
<fileset dir="lib">
66
<include name="*.jar"/>
77
</fileset>
8+
<fileset dir="lib/grpc">
9+
<include name="*.jar"/>
10+
</fileset>
811
<pathelement path="${env.JAVA_HOME}/lib/tools.jar"/>
912
</path>
1013

Binary file not shown.
3.05 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
361 Bytes
Binary file not shown.
13 KB
Binary file not shown.

0 commit comments

Comments
 (0)