release_notes.txt 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. QML RSS Reader v.1.4
  2. ====================
  3. This RSS Reader example application demonstrates the use of RSS feed resources.
  4. It presents the content of feed in a rich UI with view navigation, search,
  5. accordion list, and animations. The UI components are designed to be reusable
  6. in other applications. RSS Reader uses the QML local storage to store the
  7. feeds that the user has subscribed to. The application also demonstrates how
  8. a graphical theme can be switched, from the settings view.
  9. This example application is hosted in Nokia Developer Projects:
  10. - http://projects.developer.nokia.com/QMLRSSReader
  11. For more information on implementation visit the wiki page:
  12. - http://projects.developer.nokia.com/QMLRSSReader/wiki
  13. IMPORTANT CLASSES AND QML ELEMENTS
  14. -------------------------------------------------------------------------------
  15. Qt:
  16. - QmlApplicationViewer, QDeclarativeView, QTimer
  17. Standard QML elements used:
  18. - Component
  19. - Item
  20. - Rectangle
  21. - Text
  22. - TextEntry
  23. - Image
  24. - BorderImage
  25. - ListView
  26. - Grid
  27. - Column
  28. - FocusScope
  29. - Gradient
  30. - GradientStop
  31. - MouseArea
  32. - State
  33. - Transition
  34. - Behavior
  35. - PropertyChanges
  36. - PropertyAnimation
  37. - NumberAnimation
  38. - ParallelAnimation
  39. - SequentialAnimation
  40. QML elements from Qt Quick Components used:
  41. - Window
  42. - Page
  43. - PageStack
  44. - StatusBar
  45. - ToolBar
  46. - ToolBarLayout
  47. - ToolButton / ToolIcon
  48. - ToolTip
  49. - ButtonRow
  50. - Button
  51. FILES
  52. -------------------------------------------------------------------------------
  53. design/*
  54. - UI design files
  55. RssReader/*
  56. - The application itself. Contains a PRO file that can be opened in
  57. Qt SDK 1.1.4
  58. screenhots/*
  59. - Screenshots for the wiki page
  60. INSTALLATION INSTRUCTIONS
  61. -------------------------------------------------------------------------------
  62. Symbian^3 phone
  63. ~~~~~~~~~~~~~~~
  64. There are two ways to install the application on a phone.
  65. 1. a) Drag the RssReaderComponenets_1.4.0_installer.sis file to the Nokia Suite
  66. while your phone is connected with a USB cable.
  67. OR
  68. b) Send the application directly to the Messaging Inbox (for example,
  69. over a Bluetooth connection).
  70. 2. After the installation is complete, return to the application menu and
  71. open the Applications folder.
  72. 3. Locate the RssReader icon and select it to launch the application.
  73. Nokia N9
  74. ~~~~~~~~
  75. 1. Copy the rssreadercomponents_1.4.0_armel.deb file into a specific folder
  76. on the phone (for example, 'MyDocs').
  77. 2. Start XTerm. Type 'sudo gainroot' to get root access.
  78. 3. 'cd' to the directory in to which you copied the package
  79. (for example, 'cd MyDocs').
  80. 4. As root, install the package:
  81. dpkg -i rssreadercomponents_1.4.0_armel.deb
  82. 5. Launch the Applications menu.
  83. 6. Locate the RssReader icon and select it to launch the application.
  84. COMPATIBILITY
  85. -------------------------------------------------------------------------------
  86. - Symbian^3 with Qt version 4.7.4 or higher
  87. - Nokia N9 or N950 with Qt 4.7.4
  88. Tested on:
  89. - Nokia E6
  90. - Nokia E7-00
  91. - Nokia N9
  92. Developed with:
  93. - Qt SDK 1.1.4
  94. VERSION HISTORY
  95. -------------------------------------------------------------------------------
  96. v1.5 Added Nokia Conversations feed and done few bug fixes.
  97. v1.4 Added E6 support, UI fine tuning, some refactoring.
  98. v1.3 Version published on the Nokia Developer website.
  99. v1.1 Added MeeGo/Harmattan 1.2 support.
  100. v1.0 Initial release.
  101. v0.1.7 Initial version published in Forum Nokia Projects.