ChangeLog.qml 558 B

123456789101112131415161718192021222324252627
  1. // Copyright (c) 2015 Ultimaker B.V.
  2. // Cura is released under the terms of the AGPLv3 or higher.
  3. import QtQuick 2.1
  4. import QtQuick.Controls 1.1
  5. import QtQuick.Layouts 1.1
  6. import QtQuick.Window 2.1
  7. import UM 1.1 as UM
  8. UM.Dialog
  9. {
  10. id: base
  11. width: 300 * Screen.devicePixelRatio;
  12. height: 500 * Screen.devicePixelRatio;
  13. title: "Changelog"
  14. ScrollView
  15. {
  16. anchors.fill:parent
  17. Text
  18. {
  19. text: manager.getChangeLogString()
  20. width:base.width - 35
  21. wrapMode: Text.Wrap;
  22. }
  23. }
  24. }