Skip to content

Commit a51723f

Browse files
author
Federico Fissore
committed
Updated and add libs
1 parent 3341c8b commit a51723f

8 files changed

+11
-12
lines changed

Diff for: arduino-core/src/processing/app/BaseNoGui.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -618,8 +618,8 @@ static public void initPackages() throws Exception {
618618
}
619619

620620
private static void copyStockLibraryIndexIfUpstreamIsMissing(File librariesIndexFile) throws IOException {
621-
if (!librariesIndexFile.isFile()) {
622-
File defaultLibraryJsonFile = new File(getContentFile("dist"), "library_index.json");
621+
File defaultLibraryJsonFile = new File(getContentFile("dist"), "library_index.json");
622+
if (!librariesIndexFile.isFile() || (defaultLibraryJsonFile.isFile() && defaultLibraryJsonFile.lastModified() > librariesIndexFile.lastModified())) {
623623
if (defaultLibraryJsonFile.isFile()) {
624624
FileUtils.copyFile(defaultLibraryJsonFile, librariesIndexFile);
625625
} else {

Diff for: build/Bridge-1.0.7.zip.sha

-1
This file was deleted.

Diff for: build/Bridge-1.1.0.zip.sha

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cedc2a161b7ec2977f5311ff1f98b1f834ec5b3f

Diff for: build/Keyboard-1.0.0.zip.sha

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
175879b1f0cbc982756c083b8dbdebee38ed8dcb

Diff for: build/Mouse-1.0.0.zip.sha

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
55a186583f272b19646bd88d0ef5439b1b533568

Diff for: build/Temboo-1.1.3.zip.sha

-1
This file was deleted.

Diff for: build/Temboo-1.1.4.zip.sha

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3d847f79cbb913ea1a65239ca458b3eddc1d12ac

Diff for: build/build.xml

+5-8
Original file line numberDiff line numberDiff line change
@@ -182,22 +182,19 @@
182182
<!-- copy library folder -->
183183
<target name="assemble-libraries" unless="light_bundle">
184184
<copy todir="${target.path}/libraries">
185-
<fileset dir="../libraries">
186-
<!-- exluding non AVR libraries -->
187-
<exclude name="**/Audio/**"/>
188-
<exclude name="**/Scheduler/**"/>
189-
<exclude name="**/USBHost/**"/>
190-
</fileset>
185+
<fileset dir="../libraries"/>
191186
</copy>
192187

193188
<download-library name="Firmata" version="2.4.4" tag="v2.4.4"/>
194-
<download-library name="Bridge" version="1.0.7"/>
189+
<download-library name="Bridge" version="1.1.0"/>
195190
<download-library name="Robot_Control" version="1.0.2"/>
196191
<download-library name="Robot_Motor" version="1.0.2"/>
197192
<download-library name="RobotIRremote" version="1.0.2"/>
198193
<download-library name="SpacebrewYun" version="1.0.0"/>
199-
<download-library name="Temboo" version="1.1.3" githubuser="temboo"/>
194+
<download-library name="Temboo" version="1.1.4" githubuser="temboo"/>
200195
<download-library name="Esplora" version="1.0.4"/>
196+
<download-library name="Mouse" version="1.0.0"/>
197+
<download-library name="Keyboard" version="1.0.0"/>
201198
</target>
202199

203200
<macrodef name="download-library">

0 commit comments

Comments
 (0)