MaidSafe Dev Update - September 21, 2017 - Alpha 2

As you all most likely know this is no ordinary dev update. This update announces the formal launch of Alpha 2! This release is called ‘the Authenticator’ and focuses on the network access mechanism of the same name. The Authenticator makes a number of improvement over its predecessor (the Launcher) not least mobile support in the shape of Android, which we previewed last week, while iOS support is well underway and will be released in the not too distant future.

The Authenticator, bundled with the SAFE Browser, provides account access control that is now enforced by the network as opposed to the Client. For developers, this release contains more fine-grained access control through the use of smart data types.

We continue to support the 3 major desktop platforms and the tutorial apps for this release are the Web Hosting Manager and SAFE Mail. In addition, on Android we have the Authenticator and SAFE Messages. These are all available to install directly from our new MaidSafe.net site. As you will notice this is a release specific website and hats off to @shona who came through with the design and @shankar for the very speedy implementation. We hope you like it!

As we tick of this next major milestone it would be remiss of us not to thank you all, the SAFE community, who have tested every release we have put out. Your continued feedback is hugely helpful to us. Without the insights this community provides, our releases would not be as usable or as fun to create. Our hats off to each of you from everyone at MaidSafe!

This is a new network, so trying to access data from Test 19 won’t work (you will need to create a new account). We are planning to take Test 19 offline this weekend.

The number of clients per account that can connect at a time has been increased to 8 clients instead of 4.

SAFE Browser v0.10.2

Browse public content and web applications in the SAFE Network using SAFE Browser.

This alpha network is limited to forum users who are at least trust level 1 (basic user). See this topic for more information.

Accounts can be created using the SAFE Authenticator which is bundled with the SAFE Browser. To obtain an invitation token, trust level 1 forum users can use this website, which can also be accessed via the SAFE Browser itself when creating an account.

Each client account is limited to 1000 operations. It’s worth noting that this number is just a temporary placeholder and is shared between all the apps on a given account.

Please be aware that we might need to restart this alpha network, wiping all data that is stored on it. We will announce this in a dev update (when possible) prior to taking it down.

Download

  • Alternatively you can try the Peruse browser. Peruse will eventually be the default browser for the SAFE Network - make sure you download the latest version that does not begin ‘dev-’. The ‘dev’- versions will not connect to the network.

Changelog

See CHANGELOG.md on GitHub.

Known limitations

  • Localisation is not supported.
  • Unicode characters are not supported in public IDs, services names, or file names.
  • When there is a network latency the browser can freeze for a few moments while it’s trying to communicate with the network for different operations, like reading/saving bookmarks & history entries, loading a website, etc.

Example applications

Please note we are not supporting either localisation for the apps nor Unicode characters in the public IDs, service names, or file names for the web services, although they are supported in email IDs.

Web Hosting Manager v0.4.4

Manage web hosted contents in the SAFE Network using the Web Hosting Manager. Create services/websites and upload web content that can be hosted in the network. The hosted services can be viewed using the SAFE Browser.

When uploading files using Web Hosting Manager, the maximum file size is 20 MiB per file.

Note: To upload a website, you’ll need to upload the files and folders separately. This is because we added support for uploading subdirectories. Ideally, it would be possible to choose both files and folders at the same time, but it looks like Electron doesn’t provide the upload dialog option which will let users choose files and folders. Hence the current mashup of both options. So to upload your website, you might need to first upload the files from the root of the website by selecting all of them via the upload file feature and then choose the folders via the upload directory feature.

Download

Changelog

See CHANGELOG.md on GitHub.

SAFE Mail Tutorial v0.4.3

Send secure messages using Messaging/Email Example app between users. Create an ID and send the messages between users from desktop and mobile.

Download

Changelog

See CHANGELOG.md on GitHub.

SAFE Web API Playground

The SAFE Web API Playground allows any developer to learn and experiment with the DOM API in a friendly and interactive way.

It is meant to help people aiming at creating websites/webapps that need to access the SAFE Network DOM API, which is available on the global window object in the SAFE Browser.

Instead of having to upload your site to the network every time you want to test some code, you can simply use this tool to experiment and get a deeper understanding of how each API works.

In order to use it, follow the instructions found in its README, and either upload it as a web app using the Web Hosting Manager application or just run it locally and access it from the SAFE Browser using the now supported localhost protocol (see above for details).

Repository

Mobile examples

Demo mobile applications that showcase some of the initial key features of the Alpha 2 SAFE Network. These apps can be used in conjunction with the Alpha 2 desktop apps; the SAFE Browser and the Email/Messaging App.

Changelog

2017-10-05

  • Password fields enable a toggle to view credentials
  • Android minimum supported version switched to 4.1.2 (API 16)
  • Auto reconnect to network on app resume if user specifically opts to choose auto reconnect
  • iOS device support has also now been integrated so devs would be able to test these applications on their devices, and we’re working on getting the apps through the application review process so community members will also be able to try these example on their iOS devices

SAFE Authenticator

Download

SAFE Messages

Download

Support

If you need help with anything related to SAFE Browser, Web Hosting Manager or SAFE Mail Tutorial, please use the #support category of this forum.

For more technical questions (e.g. about the SAFE APIs), please use the #support category of the SAFE Dev Forum.

Where should I report issues?

If you know which component a bug is associated with, feel free to report it on GitHub in the corresponding repo.


SAFE Authenticator & API

The biggest change this week comes to the Web Hosting Manager app, which has been updated and improved by @shankar and @shona with a new UI and UX. We’ve included some fixes based on the feedback from the previous release, as well as on findings and feedback from our internal testings performed in the last few days to make sure the new version is as stable as the previous one. We believe this new version is not only nicer but also easier for people who never used the tool or the SAFE Network before, since it provides hints of usage in different parts of the tool.

@hunterlester made a starter pack to help developers get started with building SAFE web apps :slightly_smiling_face:

We’ve also set up the foundations of a test suite for the browser DOM APIs, which should help prevent problems as things evolve there. @joshuef has been trying to debug and improve the reliability of the authenticator test suite and npm package issues.

Some minor internal changes which don’t affect the API were made to the safe_app_nodejs package in order to make use of the latest version of the safe_client_libs which includes some minor fixes and several internal enhancements as explained in the next section below.

During the next few days, we will continue our efforts on automation of tests and artifacts packaging, and we will start reviewing and discussing tasks we have in our backlog to prioritise them and think of enhancements needed for next releases.

SAFE Client Libs

Yesterday, we released new versions of SAFE Client Libs: safe_app & safe_authenticator have been updated to 0.4.0, safe_core to 0.27.0, and ffi_utils to 0.3.0. These versions are published on crates.io now and they contain all recent changes in SAFE Client Libs.

We wrote a couple of NFS tests this week for reading and writing to files in chunks for MAID-2352 and MAID-2357. We also documented FFI callback parameters throughout our API, making it clear what each variable is, in MAID-2322. Previously they were unnamed, which wasn’t helpful to readers of our documentation. We are still waiting for Issue 44570 to get resolved on the Rust side, but each callback parameter in safe_authenticator and safe_app has also been documented in doc comments. In addition, @marcin’s tasks from last week (C header generation and writing missing test cases) have been reviewed and merged.

There were many improvements and refactorings that are not visible on the surface (i.e., the API hasn’t been changed). With the help of the front-end team, we also discovered and fixed a bug in the way we handle the Object Cache, the storage tied to the App object that maps object handles to the actual objects. Currently, the Object Cache is implemented as an LRU cache, meaning the stale objects get freed automatically, and it was implemented in the same way in the SAFE Launcher and REST API times. This approach simplified memory management a lot, but nowadays we have switched from the REST API to the FFI API, and memory management became more straightforward. But the Object Cache remains, and the fact that it is limited to 100 entries for each object type can result in some obscure bugs, e.g. when you try to create more than 100 Mutable Data objects at once. We fixed this by raising that limit to 1000 entries temporarily, and we’ll be looking into resolving this problem in a more general way by switching from the LRU cache to a plain HashMap, thus making it the front-end apps’ responsibility to free stale objects and prevent memory leaks (and the Node.js library already does that, so it should not affect it). Also, @adam found that some FFI functions miss the catch_unwind wrapper, which could have resulted in Rust panics not caught and propagated to FFI - or, in simple words, in crashing apps and the browser. This issue is fixed by this PR.

We improved error reporting for account creation, to help the user better determine the actions to take to recover from the error. We also fixed a couple of minor bugs that manifested themselves only on the nightly compiler. This compiler is used by docs.rs to generate the API docs, so by fixing those bugs, the docs are now being generated again.

Routing, Vault & Crust

Work this week has again been focused primarily on the design of the message flow. Several ideas have been explored and a lot of effort has gone into finding flaws in these and looking for ones with the potential for later optimisations. A long-standing idea to use a form of Information Dispersal Algorithm to increase the efficiency of message-passing (and perhaps also data-storage) is being explored further. There are still some unresolved issues around this proposal, but we’re hopeful that these can be addressed since the apparent benefits of this approach would be fairly significant.

Over the last couple of weeks, we’ve been improving our implementation of uTP (BitTorrent’s micro transport protocol). It’s now in a usable state and work has now begun on integrating it into Crust. At the moment, this means seeing how our existing code can be refactored as Tokio-style state machines, starting with our NAT traversal library.

113 Likes

1st ‌‌ ‌‌ ‌‌ ‌‌ ‌‌ ‌‌ ‌‌ ‌‌ ‌‌ ‌‌ ‌‌ ‌‌ ‌‌ ‌‌ ‌‌‌‌ ‌‌ ‌‌ ‌‌ ‌‌ ‌‌

14 Likes

yay!

20 chars-… yay!

6 Likes

First with this Alpha 2… ok nr 3 :slight_smile:

Thank you all for the hard work…now ill read the update

11 Likes

Well done can’t wait to read!!!
Happy days

4 Likes

Holy moly are you people fast…

8 Likes

Thankyou @maidsafe :heart_eyes: :santa:

5 Likes

Well done!! Keep up all the good work. You’ll change this world!

5 Likes

That’s what she said

13 Likes

Much love to the team! Thank you :tada:

5 Likes

Thanks! And congratulation too the Maid Safe team.

5 Likes

Onwards and upwards. Well done dev team. We are with you😊

6 Likes

Congratulations! Amazing lot of work done by the team. Big thumbs up to all of you.

serveimage

Now I need to register safe://rene really hard before it is stolen!

17 Likes

woop! well done team Dai iawn!

5 Likes

@Shona, @Shankar the website is a massive improvement, great job :clap:

11 Likes

Unable to set my IP on invite.maidsafe.net. After a 1 minute hang I get a 504 error.

3 Likes

Can you try again pls - there was a hitch

2 Likes

Hooray! The new website looks amazing, it’s great to see things being worked on in the marketing front. :smiley:

@maidsafe, you guys deserve a fantastic break, seriously, go out and party. You must’ve all worked like mad for this release, and I commend you all for it!

Cheers!

13 Likes

Congratulations! :sun_behind_small_cloud: :tada:
The new website looks very cool indeed!

7 Likes

Well done and thank you all at Maidsafe. This is a massive achievement and a very important milestone. You are an amazing team :clap:

Coooooooooooool new website for The World’s First Truly Autonomous Network, with download links front and centre :slight_smile:

19 Likes