Index: src/activities/memory-math-div-tux/ActivityInfo.qml =================================================================== --- src/activities/memory-math-div-tux/ActivityInfo.qml +++ src/activities/memory-math-div-tux/ActivityInfo.qml @@ -38,4 +38,5 @@ credit: "" section: "math memory arithmetic" createdInVersion: 0 + levels: "1" } Index: src/activities/memory-math-div-tux/MemoryMathDivTux.qml =================================================================== --- src/activities/memory-math-div-tux/MemoryMathDivTux.qml +++ src/activities/memory-math-div-tux/MemoryMathDivTux.qml @@ -22,10 +22,8 @@ import QtQuick 2.6 import "../memory" -import "../memory-math-div/memory-divdataset.js" as Dataset MemoryCommon { - dataset: Dataset.get() backgroundImg: "qrc:/gcompris/src/activities/memory/resource/background.svg" withTux: true } Index: src/activities/memory-math-div-tux/resource/1/Data.qml =================================================================== --- src/activities/memory-math-div-tux/resource/1/Data.qml +++ src/activities/memory-math-div-tux/resource/1/Data.qml @@ -1,10 +1,9 @@ -/* gcompris +/* GCompris - Data.qml * - * Copyright (C) 2014 JB BUTET + * Copyright (C) 2020 Deepak Kumar * * Authors: - * Bruno Coudoin (GTK+ version) - * JB BUTET (Qt Quick port) + * Deepak Kumar * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,15 +16,21 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, see . + * along with this program; if not, see . */ -import QtQuick 2.6 -import "../memory" -import "../memory-math-div/memory-divdataset.js" as Dataset +import GCompris 1.0 +import "qrc:/gcompris/src/activities/memory/math_util.js" as Memory -MemoryCommon { - dataset: Dataset.get() - backgroundImg: "qrc:/gcompris/src/activities/memory/resource/background.svg" - withTux: true +Data { + objective: qsTr("Division table of 1.") + difficulty: 4 + + data: [ + { // Level 1 + columns: 5, + rows: 2, + texts: Memory.getDivTable(1) + } + ] }