release_notes.txt 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. QML Restaurant App
  2. ===================
  3. The Restaurant example application demonstrates how QML can be used to build a
  4. simple, impressive catalog-type application based on local XML data. It is
  5. straightforward to convert the application to use internet resources instead of
  6. local XML-resources. The application is designed in such a way that it is easy
  7. to replace the content and visual style for different restaurants.
  8. The application features tab based navigation using a tab bar UI component. The
  9. UI is implemented using custom graphics and UI elements, which are designed to
  10. be reusable. Special attention has been given for supporting the screen
  11. orientations. For example, there are two booking view implementations from which
  12. the correct one is chosen depending on the current orientation. The booking view
  13. also introduces the Reel UI component, which can be used to select items from a
  14. predefined list.
  15. FILES
  16. -------------------------------------------------------------------------------
  17. design/*
  18. - UI design files
  19. RestaurantApp/*
  20. - The application itself. Contains a .pro-file that can be opened in Qt SDK 1.1beta.
  21. screenhots/*
  22. - Screenshots for the wiki page
  23. INSTALLATION INSTRUCTIONS
  24. -------------------------------------------------------------------------------
  25. Mobile device (Symbian^3)
  26. ~~~~~~~~~~~~~~~~~~~~~~~~~
  27. There are two ways to install the application on the device.
  28. 0. The Qt libraries (4.7.2 or higher) must be installed. See the section
  29. COMPATIBILITY for more information about the installation.
  30. 1. a) Drag the restaurantapp_1.0.0.sis file to the Nokia Ovi Suite when the device is
  31. connected with the USB cable.
  32. OR
  33. b) Send the application directly to the Messaging Inbox (for example,
  34. through Bluetooth).
  35. 2. After the installation is complete, return to the Application menu and
  36. select the Applications folder.
  37. 3. Locate the RestaurantApp icon and select it to launch the application.
  38. Maemo device
  39. ~~~~~~~~~~~~
  40. Mobile device (Maemo)
  41. ~~~~~~~~~~~~~~~~~~~~~
  42. 0. The Qt libraries (4.7.0 or higher) must be installed. See the section
  43. COMPATIBILITY for more information about the installation.
  44. 1. Copy the restaurantapp_1.0.0_armel.deb file into a specific folder on the
  45. device (for example, 'MyDocs').
  46. 2. Start XTerm. Type 'sudo gainroot' to get root access.
  47. 3. 'cd' to the directory to which you copied the package
  48. (for example, 'cd MyDocs').
  49. 4. As root, install the package:
  50. dpkg -i restaurantapp_1.0.0_armel.deb
  51. 5. Launch the Applications menu.
  52. 6. Locate the RestaurantApp icon and select it to launch the application.
  53. COMPATIBILITY
  54. -------------------------------------------------------------------------------
  55. - Symbian^3 with Qt version 4.7.2 or higher.
  56. 1. Download Qt for Symbian (4.7.2 or higher) from qt.nokia.com.
  57. 2. Drag qt_installer.sis on top of the device in Nokia Ovi Suite while the
  58. device is connected. The SIS package is found in the installation folder
  59. of Qt for Symbian (4.7.2 or higher).
  60. - Maemo with PR1.3 which includes Qt 4.7.0.
  61. 1. Use Nokia Ovi Suite to update the device's firmware to PR1.3.
  62. Tested on:
  63. - Nokia N8-00
  64. - Nokia E7-00
  65. - Nokia N900
  66. Developed with:
  67. -QtSDK 1.1beta
  68. VERSION HISTORY
  69. -------------------------------------------------------------------------------
  70. v0.1.7 Initial version published in Forum Nokia Projects.