Recently in platform Category

Howdy all,

This Tuesday we pushed version 2.4.12 of the BrowserPlus platform. This update, like 2.4.9, includes a couple small focused fixes. There may be more drops in the coming weeks as we continue an aggressive period of QA.

Here's an idea of some of the fixes in 2.4.12:

  • Fixes related to proper functioning on windows when certain AntiVirus software in installed
  • Fix a regression introduced in 2.4.9 which would have caused platform update to fail in certain circumstances (fix is automatic, no user interaction required)
  • Change the way update is performed - before we would wait until you navigate away from the page using browserplus to perform an update. Now we perform the update immediately, so that upon page reload you're using the new software.

As always, keep the reports coming!

| No Comments | No TrackBacks

Howdy all,

We quietly pushed 2.4.9 today, a small iteration with a handful of fixes. Expect a couple more of these tight iterations as we work to harden the platform in response to community bug reports. Fixes in this release include:

  • FileBrowse built-in service -- Hitting enter on an autocomplete selection now works on Windows XP
  • Complete support for "High DPI" on all windows versions/browsers
  • Increase robustness of Installer, support uninstall/reinstall cases common in QA
  • Fix several issues in HTTP timeout support
  • Fix selection of shortcuts through File Browse dialog.

Thanks to all who have reported problems, and please keep the feedback coming. Finally, we'll have a new service to announce in the coming days, so stay tuned!

| No Comments | No TrackBacks

We're pleased to announce the general availability of BrowserPlus platform 2.4.8, some updated developer tools, and a shiny new service! Here's an itemized list of what's new and what's changed:

BrowserPlus platform 2.4.8 includes:

  • Experimental support for 3 new languages (Danish, Swedish, and Norwegian)
  • Experimental support for windows 7
  • Oodles of bugfixes and stability improvements.

The new and improved Service Explorer comes with the following enhancements:

  • Allows parameters to be specified for all argument types (including callbacks and file handles)
  • Automatically provides callback arguments for all functions
  • Improved parameter help
  • Improved provision of default parameters

Additionally we've shipped a new version of the Uploader service that supports cross domain uploads via a crossdomain.xml file hosted on the upload target. This is the same tried and true mechanism that flash employs to provide a similar feature, and you can read all about the file format on Adobe's site.

Finally, we've push an alpha version of a brand new service, PublishSubscribe, this service allows secure cross-document and even cross-browser messaging. Check out our code demo for a visceral idea of how this works.

Finally, thanks to all who continue to work with us and provide feedback in our forums and on IRC, don't be strangers!

| No Comments | No TrackBacks

Howdy folks,

We recently have had a new colocation facility come online with more distribution servers. So downloads of services and the platform installers should now be faster worldwide.

We've had some complaints in the past especially with latency in Asia and various locations in Europe. So test out your latency and throughput to BrowserPlus servers (like, for instance, downloading the installer).

And if you ever notice "slow performance", drop us a line, we'd love to hear about it, and fix it!

| No Comments | No TrackBacks

Howdy!

We are delighted to announce that BrowserPlus 2.2.0 is now live at browserplus.yahoo.com. Yes, we pushed on a Friday. Again.

Here's a brief summary of some of the highlights of this release:

1. Better Installer

Between our platform update code and our HTML/JavaScript/C++ interop technology, we had most of what we needed to make our own installer, rather than use a 3rd party package. So we did.

The main purpose and benefit was to dramatically reduce the number of clicks required from end users at install time.

Other benefits include complete skinnability using plain ol' HTML and CSS. An sdk for developing your own installer skin will be available.

We now provide better progress feedback to the user during install.

2. I18n and L10n

Using Yahoo's amazing localization resources, we have currently localized the platform into 13 languages and 30 locales.

The localization applies to our Installer, Permissions dialogs, and Configuration Panel.

Seeing is believing:

BrowserPlus Installer

We use IDNA to handle non-ascii domain names. We display dates and times in a locale-respectful manner in the Config Panel.

All of this is based on detection of the user's locale, and falling back to appropriate parent locales when necessary.

3. Services in their own process

As mentioned in a previous blog post, BrowserPlus Services now run in their own process. This enhances the stability of the platform, and also aids in debugging when you're writing a service.

4. It's Shrinkage!

We are now exploiting LZMA compression in our packaging and are seeing great improvement in the delivery size of the platform and services.

Enjoy!

| No Comments | No TrackBacks

Hey there, it's been a little while since our last announcement, and in case you haven't noticed, we've been a little too quiet ever since the new year. This silence has been mainly because we've had our heads buried in code! This blog will share with you some of the exciting new changes we're working on inside the BrowserPlus platform, that you can expect to see released in the next couple months. So let's jump in, what's coming?

1. New tools for service developers

When developing services, it would be cool if we reduce the develop/test cycle and make it easy to instantly validate and run the service you're working on, without having to write a line of javascript nor even start up your browser. Imagine, this would allow you to write automated tests in a shell script. Well, now you can, meet the "ServiceRunner" program:

service initialized: HelloRuby v1.0.0
> help
Available commands:
  allocate [0 args]: Allocate a new service instance....
  describe [0 args]: Extract and display the API description of the ser...
  destroy [1 arg]: Destroy a service instance, the single required pa...
  help [0-1 args]: Displays command usage.  help  gives more...
  invoke [1-2 args]: Invoke a function on a service instance.  First ar...
  prompts [0 args]: Show the outstanding user prompts that have been s...
  quit [0 args]: Quit the program...
  respond [1-2 args]: Respond to a prompt from the service.  The first a...
  select [1 arg]: Select the current instance, this is a numeric id ...
  show [0 args]: Show the currently allocated service instances....
> desc
Describing corelet 'HelloRuby', version: 1.0.0
   A service that tests callbacks from ruby.

1 function(s) supported:
   howdy:
      Say "hello" to the world

         callback callback
            the callback to send a hello message to
> a
allocated: 1
> i howdy
callback argument 1 invoked: 
"howdy there, for the 0th time"
callback argument 1 invoked: 
"howdy there, for the 1th time"
...
callback argument 1 invoked: 
"howdy there, for the 10th time"
"Hello world from my great corelet instance!"

Service Runner is a self documented console applications that lets you load and interact with a service. Here you can see we load up the sample ruby service from the SDK, get a textual API description (the 'describe' command), and actually invoke (the 'invoke' command) functions on the service.

A couple nice features in ServiceRunner are the live help, and some features which make interactive usage of the tool more pleasant: these include command disambiguation (you can type 'i' or 'inv' instead of 'invoke') and history and editing support (osx only) compliments of libedit.

2. Services Run In Distinct Processes

Here we took a page from Google Chromes' book, and listened to the feedback of several smart folks in the community (the guys from Flock most recently suggested this one). All services as of 2.1.15 will run in a temporal spawned process. This architectural change comes with zero api changes, so existing services will continue running. The benefits of this are extensive, and include 100% resource reclamation (when a service shuts down, absolutely all resources used will be released), a much more stable system (if a service crashes, BrowserPlus itself remains running, as does your browser and website), and an easier development experience: Because your services are now in their own process, it's easier to understand behaviors - (performance and memory usage), and easier to identify bugs (Is that a bug in the platform? In the service?)

This architectural change will allow us to drastically clean up the RubyInterpreter ruby environment in the near future. We'll be able to fix some community reported oddities (like bp_require() instead of just require()), and should allow us to empower ruby service developers to include their own native extensions.

  1. Streamlined Installation Experience

The number 1 feedback we get is around the fact that BrowserPlus is implemented as native code, and the end user must actually install the software. Folks tend to worry about user experience in software installation, so we're investing deeply in our installers to make them faster and easier to use. So for instance, on OSX users will no longer be required to type their password, and on both platforms the installers will be true 1 click installers, making the initial installation of BrowserPlus faster and easier.

Taking this a step further, end users are usually more interested in the actual features they'll be getting, rather than the ideas behind the BrowserPlus platform. So this new installer will have a UI completely in HTML, JavaScript, and CSS, that will be skinnable. So for instance, if you're using BrowserPlus on your site to provide advanced image editing features, you'll be able to easily put a light skin on the installer to clearly message to your users the value that they get by installing BrowserPlus. We hope that this makes the experience clearer to end users. This said, there will be some portion of required messaging that we'll request stays in, the end user license agreement being a key requirement.

  1. i18n and L10n - BrowserPlus Should Speak your Language

A key goal for our next release is to have the platform ready and simple to translate into new languages. We'll pick a small set of initial languages and translate into those, subsequently we'll seek to expand our coverage as well as soliciting donated translations from the community (you guys!).

  1. Closer to Open Source

Back in November 2008 we announced that by the middle of this year we'll be open source. What's up with this? How much does it really take?

Well here's the deal, we have been iterating on BrowserPlus for a long time now. In the beginning we leveraged tons of frameworks and tools both internal to Yahoo! and open source. As we move forward, there are benefits to make the whole platform more stand-alone. Some of the internal stuff we use isn't useful to open source, or really adds to the complexity of building the platform.

At present, we've eliminated all frameworks that either are not open source themselves or would add significantly to the complexity of building the platform. There have been benefits in terms of distribution size, performance, repository size, and build times.

So we're quite happy with the progress we've made, and are now much closer to releasing the code. We will definitely keep our commitment to having full code available by the end of the year. In the meantime you can check out a ton of open source BrowserPlus services by searching for projects starting with with 'bp-'. If you're tinkering with services yourselves, we urge you to follow this convention.

So stay tuned, and feel free to ask more questions about these upcoming features on our forums.

| No Comments | No TrackBacks

Howdy folks,

We're extremely happy to announce the availability of the BrowserPlus SDK. This first SDK and the accompanying documentation gives you all the tools you'll need to start extending the web using BrowserPlus. Getting started is easy, you can hop over to our tutorial and write your first service in about 15 minutes.

In addition to the SDK, we've pushed a new platform version, 2.1.14, that fixes several bugs reported by all of you. We deeply appreciate your continued contributions and hope with the SDK and our ongoing process of open sourcing BrowserPlus we'll empower you to contribute even more to the project.

And... Welcome the new Zipper service to our collection! A big problem with some web apps today is being able to efficiently attach all file types. Zipper plays nicely with Uploader and lets you compress files or folders on the client before uploading them. This service should be considered alpha, and we look forward to your feedback and ideas on how to make this more useful. We've got lots of ideas of which way to take this service (lzma being first and foremost), but would love to hear your thoughts.

Finally, as you start digging deep into the SDK we'll expect you'll have lots of thoughts and feedback. For that reason we'll be hanging out on github and on IRC (#browserplus at irc.freenode.net). You can check out some of the early open source projects dedicated to exploring new browserplus services on github right now

You probably have some questions, and we've done our best to preempt you over in our FAQ.

Thanks for reading and participating. We deeply believe that the continued success of this project is dependent all of you. Your feedback, talents, and creativity.

much love, The BrowserPlus Team

| No Comments | No TrackBacks

BrowserPlus 2.1.7 is now available. This release includes several bugfixes. If you use the site frequently, you should be automatically updated within a couple days. Otherwise, you may uninstall and reinstall to get the newest software.

Includes:

  1. Fix problem where non-standard firefox installation directories were not supported on windows
  2. several new security & privacy features.
  3. stability improvements.

enjoy!

The BrowserPlus Team

| No Comments | No TrackBacks

About this Archive

This page is an archive of recent entries in the platform category.

framework is the previous category.

screencast is the next category.

Find recent content on the main index or look in the archives to find all content.

OpenID accepted here Learn more about OpenID