Skip to content
This repository has been archived by the owner on Oct 9, 2018. It is now read-only.

Commit

Permalink
Added BlackBerry 10 styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Neil committed Apr 28, 2012
1 parent 7973c3b commit c746e2e
Show file tree
Hide file tree
Showing 72 changed files with 20,185 additions and 1,233 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,33 @@
# Change Log

Below you will find all the different changes that have been added since the first introduction of versioning for the bbUI toolkit.

## Version 0.9.1

* First version number provided for the toolkit
* Modified menus to require both a caption and an image for PlayBook 2.x and BlackBerry 10 to follow UX guidelines
* Image List item text will now add an Ellipsis "..." to the end of text that is too long for the list item on devices that support it
* Merged the Inbox style list into the Image List control
* Removed the tall list layout... This will be merging into a feature of the Image List in a upcoming release
* Added sub title text to the image list control
* JS and CSS files now renamed to match the toolkit version
* Updated all the samples to show how to handle BB10 color themes while supporting non-BB10 devices at the same time
* New **manditory bb.int(options)** function to initialize the toolkit allowing for overrides of properties and events
* bb.onscreenready has now been removed and added as an option for the bb.init() function
* New header item support for the image list
* New grid view for BlackBerry 10
* New action bar for BlackBerry 10 with dark and light themes. Support for back button, highlight tabs, and action buttons
* New highlight and accent colors for BlackBerry 10
* New BlackBerry 10 button & pill button styling with dark and light themes
* New BlackBerry 10 swipe down menu styling
* New BlackBerry 10 Context Menu
* New BlackBerry 10 Press and hold Context Menu integration into Image Lists
* New BlackBerry 10 styled inputs with "delete" button and styled placeholder text
* Added screen and list coloring for BB10 with dark and light themes
* New **ondomready** event which fires after your screen has been loaded into the DOM
* Changed all of the isBB5/isBB6/etc functions to boolean properties. This avoids a scenario where these may evaluate to true simply because the function was assigned
* Sample: Added a fun random color changer for highlight and accent colors on BlackBerry 10
* Sample: Added BlackBerry 10 grid
* Sample: Added BlackBerry 10 action bar
* Sample: Grouped items on main menu screen

8 changes: 4 additions & 4 deletions Jakefile
Expand Up @@ -52,12 +52,12 @@ task('build', ['clean'], function () {
});

output += "bb.assignBackHandler(bb.popScreen);";
fs.writeFileSync(__dirname + "/pkg/bbUI.js", output);
fs.writeFileSync(__dirname + "/samples/bbUI.js", output);
fs.writeFileSync(__dirname + "/pkg/bbui-0.9.1.js", output);
fs.writeFileSync(__dirname + "/samples/bbui-0.9.1.js", output);

css += include("src/bbUI.css");
fs.writeFileSync(__dirname + "/pkg/bbUI.css", css);
fs.writeFileSync(__dirname + "/samples/bbUI.css", css);
fs.writeFileSync(__dirname + "/pkg/bbui-0.9.1.css", css);
fs.writeFileSync(__dirname + "/samples/bbui-0.9.1.css", css);

console.log("Prepare ship for ludicrous speed!");
});
322 changes: 307 additions & 15 deletions LICENSE

Large diffs are not rendered by default.

386 changes: 268 additions & 118 deletions README.md

Large diffs are not rendered by default.

0 comments on commit c746e2e

Please sign in to comment.