release_notes.txt 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. Moto Trial Racer
  2. ================
  3. Moto Trial Racer is a Nokia Developer example that demonstrates integrating QML
  4. with Box2D physics engine. See more information about the project at:
  5. - http://projects.forum.nokia.com/mototrialracer
  6. - http://projects.developer.nokia.com/mototrialracer/wiki/PhysicsIntegration
  7. What's new
  8. ----------
  9. Moto Trial Racer provides items that can be used in the game for sale via
  10. In-application Purchase API.
  11. Note: In-application Purchase functionality is enabled by INAPP_BILLING macro
  12. defined in the project file. If enabled, the functionality is supported only on
  13. Symbian platform. For more information about the In-App Purchase integration see
  14. the project wiki page:
  15. http://projects.developer.nokia.com/mototrialracer/wiki/IapIntegration
  16. 1. Playing Moto Trial Racer
  17. -------------------------------------------------------------------------------
  18. The goal is to get the motorcycle and the driver to the chequered flag as fast
  19. as possible. The game ends if any part of the motorcycle or player touches the
  20. spikes, or if the player's head touches any other object. When the player gets
  21. to the chequered flag fast enough, he/she gets his/her name and time on the
  22. high scores list. The game can be paused, restarted, and exited at any time
  23. via the options menu.
  24. The motorcycle is accelerated by tilting the device towards the player and
  25. braked by tilting the device away from the player. The center of mass can be
  26. moved backwards/forwards by tilting the device left/right.
  27. 2. Installing and Running the Application
  28. -------------------------------------------------------------------------------
  29. 2.1 Using Qt SDK
  30. ----------------
  31. You may also install and run the application on the device by using the Qt SDK.
  32. Open the project in the SDK, set up the correct target (depending on the device
  33. platform) and click the Run button. For more details about this approach, please
  34. visit Qt Getting Started at Nokia Developer
  35. (http://www.developer.nokia.com/Develop/Qt/Getting_started/).
  36. 2.2 Symbian Device
  37. ------------------
  38. There are two ways to install the application on the device.
  39. 0. The Qt libraries (4.7.4 or higher) must be installed. See the section
  40. COMPATIBILITY for more information about the installation.
  41. 1. a) Drag the Moto Trial Racer .sis file to the Nokia Ovi Suite while the
  42. device is connected with the USB cable.
  43. OR
  44. b) Send the application directly to the Messaging Inbox (for example,
  45. through Bluetooth).
  46. 2. After the installation is complete, return to the application menu and
  47. select the Applications folder.
  48. 3. Locate the Moto Trial Racer icon and select it to launch the application.
  49. 2.3 Nokia N9 and Nokia N950
  50. ---------------------------
  51. Copy the application Debian package onto the device. Locate the file with the
  52. device and run it; this will install the application. Note that you can also
  53. use the terminal application and install the application typing the command
  54. 'dpkg -i <package name>.deb' on the command line. To install the application
  55. using the terminal application, make sure you have the right privileges
  56. to do so (e.g. root access).
  57. Once the application is installed, locate the application icon from the
  58. application menu and launch the application by tapping the icon.
  59. 2.4 Desktop Windows
  60. -------------------
  61. 1. Extract the ZIP file containing the windows binary to the folder of your
  62. choosing.
  63. 2. Launch the extracted executable file.
  64. 3. Compatibility
  65. -------------------------------------------------------------------------------
  66. - Symbian Anna or Belle with Qt version 4.7.4 and Qt Mobility version 1.2.1 or higher
  67. - MeeGo 1.2 Harmattan
  68. Tested on:
  69. - Nokia E7-00
  70. - Nokia N8-00
  71. - Nokia X7-00
  72. - Nokia N9
  73. - Nokia N950
  74. - Windows 7
  75. Developed with:
  76. - QtSDK 1.2
  77. 4. License
  78. -------------------------------------------------------------------------------
  79. See the license text file delivered with this project. The license file is also
  80. available online at
  81. http://projects.developer.nokia.com/mototrialracer/browser/trunk/license.txt
  82. The Box2D QML Plug-in is licensed under LGPL 2.1. The license file is delivered
  83. with the project and is also available online at
  84. http://projects.developer.nokia.com/mototrialracer/browser/trunk/box2dqmlplugin/COPYING_LGPL.txt
  85. 5. Version History
  86. -------------------------------------------------------------------------------
  87. 1.2.2 IAP testmode fixed.
  88. 1.2.1 Symbian Belle support checked.
  89. 1.2.0 Updated IAP to the latest version.
  90. 1.1.1 Fix Symbian bike handling, fix "too small wheels" on Harmattan.
  91. 1.1.0 Added MeeGo 1.2 Harmattan support.
  92. 1.0.0 The first release.
  93. 0.4.b Moving the center of the mass is made more sensitive.
  94. 0.3.b The initial version.