Skip to content

Make it clear that bash is required #47

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 42 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
d56ff47
fix switch if no commandline field in POST
facchinm Oct 22, 2015
b4e0d43
remove outdated assembleCompilerCommand function
facchinm Oct 22, 2015
391a2d3
rework network programming and add ssh ability
facchinm Oct 22, 2015
29c6b4e
add OS field to reported infos
facchinm Oct 23, 2015
15c1083
slightly rework multiWriter log
facchinm Oct 23, 2015
b84138f
drop flasher extension
facchinm Oct 23, 2015
a58dca9
rework port disappear/reappear for 1200bps_touch
facchinm Oct 23, 2015
8494054
add configurable CORS allowed origins
facchinm Nov 13, 2015
e68ccb4
add certificate in Windows format
facchinm Nov 23, 2015
e6ba498
add createCerts commandline switch
facchinm Nov 26, 2015
e9fb7e8
Merge pull request #33 from facchinm/configurable_CORS
matteosuppo Nov 27, 2015
85b2c98
Merge branch 'devel' into configurable_CORS
matteosuppo Nov 27, 2015
aa45d83
Fix cors by adding the correct commas
matteosuppo Nov 27, 2015
46ab69e
Merge pull request #35 from arduino/configurable_CORS
mastrolinux Nov 27, 2015
7e4bbc7
Be sure we have a comma + space separated list
mastrolinux Nov 27, 2015
ebaed24
Merge pull request #36 from arduino/the-space-matters
matteosuppo Nov 27, 2015
82c2134
Merge pull request #32 from facchinm/auto_certificate
mastrolinux Nov 27, 2015
3bb66ad
genCert: exit with proper error code
facchinm Nov 30, 2015
cff4c84
Update README.md
facchinm Nov 30, 2015
6a12390
use a similarity map to try to resolve cmdline completely
facchinm Dec 1, 2015
af4189d
Give the correct port for upload
matteosuppo Dec 4, 2015
1ca342c
Merge pull request #40 from arduino/fix_https
facchinm Dec 4, 2015
139b8e6
update Godeps
facchinm Dec 9, 2015
1dd1fed
Merge branch 'devel' of https://github.com/arduino/arduino-create-age…
facchinm Dec 9, 2015
6e1d110
add CA fields to self signed certificate
facchinm Dec 15, 2015
e3ac16a
Create a certification authority
matteosuppo Dec 17, 2015
5cb9f10
Create a signed certificate
matteosuppo Dec 17, 2015
c140d7a
Ensure the second certificate is not a CA
matteosuppo Dec 18, 2015
8636c6d
Output certificate in cer form
matteosuppo Dec 21, 2015
647db95
Hide certificate button
matteosuppo Dec 21, 2015
75e74c7
Merge pull request #42 from arduino/certificates
mastrolinux Dec 21, 2015
010b471
fix old dependencies and unused code
facchinm Dec 22, 2015
aa13744
update godeps
facchinm Dec 22, 2015
9155e2e
Merge branch 'devel' of https://github.com/arduino/arduino-create-age…
facchinm Dec 22, 2015
0f756a3
Use a different key
matteosuppo Jan 8, 2016
37c1917
We need to use two different CommonName
matteosuppo Jan 8, 2016
64461d0
Merge pull request #44 from arduino/certificates
mastrolinux Jan 8, 2016
2c881d8
Add template for other browsers than firefox
matteosuppo Jan 11, 2016
c0647b9
Add page for wrong browser
matteosuppo Jan 11, 2016
62d461f
Change padding
matteosuppo Jan 11, 2016
b2fd478
Merge pull request #46 from arduino/certificates
Jan 12, 2016
374fbbb
Make it clear that bash is required
xrmx Jan 12, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 79 additions & 36 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
arduino-create-agent
====================

Version X.XX

Get the latest version of the Agent for all supported platforms:

* [Windows](http://downloads.arduino.cc/CreateBridgeStable/ArduinoCreateAgent-1.1-windows-installer.exe)
Expand All @@ -21,6 +19,16 @@ Please use the current latest version:
* [MacOSX dev](http://downloads.arduino.cc/CreateBridge/staging/ArduinoCreateAgent-1.0-osx-installer.dmg)
* [Linux x64 dev](http://downloads.arduino.cc/CreateBridge/staging/ArduinoCreateAgent-1.0-linux-x64-installer.run)

## Compiling

`compile_webidebridge.sh` contains the cross-platform script we use to deploy the agent for all the supported platforms; it needs to be adjusted as per your `go` installation paths and OS.

You can use `bootstrapPlatforms` function to compile the needed CGO-enabled environment

Other prerequisites are:
* libappindicator (Linux only)
* [go-selfupdate] (https://github.com/sanbornm/go-selfupdate) if you want to test automatic updates

## Submitting an issue

Please attach the output of the commands running at the debug console if useful.
Expand Down
Loading