1. 11 Nov, 2014 - 1 commit
  2. 28 Oct, 2014 - 1 commit
    • Shawn Rutledge's avatar
      Revert: use the new form of QTranslator::load() for more flexibility · 05d8ffb4
      Shawn Rutledge authored
      This reverts commit 427646b8
      
      .
      It seems that it should have been more correct, but we are still not
      shipping English translations, and static QString find_translation()
      in qtranslator.cpp will return any language which is in
      QLocale::uiLanguages() for which the translation file is found.
      That is a long list on OSX.
      
      Reverting the patch means find_translation() is not called in
      such cases.  This change can be re-done whenever we are more sure
      that the attempt to find a translation will succeed in finding a
      sensible one, or fall back to not translating, rather than choosing
      a language that the user didn't intend.
      
      Task-number: QTBUG-41977
      Change-Id: I425946cc71cec96b4f38629eb2b7e80220c5236d
      Reviewed-by: default avatarJan Arve Sæther <jan-arve.saether@theqtcompany.com>
      05d8ffb4
  3. 01 Oct, 2014 - 1 commit
    • Shawn Rutledge's avatar
      use the new form of QTranslator::load() for more flexibility · 427646b8
      Shawn Rutledge authored
      
      As the docs explain, the variant of QTranslator::load() taking a
      const QLocale& is better because it "uses QLocale::uiLanguages()
      and not simply the locale name, which refers to the formatting of
      dates and numbers and not necessarily the UI language."  And, using
      a default-constructed QLocale permits QLocale::setDefault() to
      override the system locale, so for example an application's
      main.cpp can do that before constructing a QQmlApplicationEngine.
      
      Task-number: QTBUG-7329
      Change-Id: Ia29a4c894087c92b071c0fe484728866f2660fe6
      Reviewed-by: default avatarJan Arve Sæther <jan-arve.saether@digia.com>
      427646b8
  4. 25 Aug, 2014 - 1 commit
  5. 02 Jul, 2014 - 1 commit
  6. 09 May, 2014 - 1 commit
  7. 13 Mar, 2014 - 1 commit
    • Erik Larsson's avatar
      Fix crash in qml/qmlscene when using dummy-data with imports · f3d8386b
      Erik Larsson authored
      
      When using the tools qml and qmlscene with dummy-data it will crash or
      behave wrong, due to the dummy-data component will get the state not
      ready, if the dummy-data qml-files does an import of another folder or
      a js-file.  By changing the way of loading dummy-data, by letting
      QQmlComponent handle the file opening instead of using the setData()
      method, qmlscene and qml will be able to handle this type of
      dummy-data.
      
      The tool qml also needed to load the dummy data before loading the
      regular components, otherwise the dummy-data would not be ready for the
      other components to use.
      
      Task-number: QTBUG-32721
      
      Change-Id: Ia1cc2b2626187e23c7d7313be788202d91b12471
      Reviewed-by: default avatarAlan Alpert <aalpert@blackberry.com>
      f3d8386b
  8. 10 Mar, 2014 - 1 commit
  9. 20 Nov, 2013 - 1 commit
  10. 16 Nov, 2013 - 1 commit
  11. 11 Nov, 2013 - 1 commit
  12. 01 Nov, 2013 - 1 commit
  13. 30 Oct, 2013 - 1 commit
  14. 25 Oct, 2013 - 1 commit
  15. 25 Sep, 2013 - 2 commits
  16. 17 Sep, 2013 - 1 commit
    • Alan Alpert's avatar
      Add qml tool · 9aec6efd
      Alan Alpert authored
      
      This tool simply runs QML files using a QQmlApplicationEngine.
      
      It is configurable so as to behave, by default, like qmlscene in
      that it will automatically place non-Window QtQuick 2 Items inside
      a QQuickWindow with the size of the root item. The configuration
      is extensible so that other GUI scenes can also use it by altering
      the configuration files in their installation.
      
      On OS X, it is an app bundle, and handles the QFileOpenEvent so that
      it can be the tool with which qml files are usually launched by
      double-clicking.  (This does not break the ability to use it on the
      command line too: the options still work, you just have to give the
      path to the executable inside the bundle.)
      
      Change-Id: I6bac813ce188be54842a78d7b532fcf2d54dc443
      Reviewed-by: default avatarAlan Alpert (Personal) <416365416c@gmail.com>
      9aec6efd