diff --git a/tools/check_activities.rb b/tools/check_activities.rb index b2821a86f..87776e026 100755 --- a/tools/check_activities.rb +++ b/tools/check_activities.rb @@ -1,197 +1,199 @@ require 'pathname' module ActivityCheck def self.readElementsToEscape @elementsToEscapeArray = Array.new f = File.open("./check_activities_ids_to_escape.txt", "r") f.each_line do |line| @elementsToEscapeArray.push(line.chomp.strip) end f.close puts "element ids escaped: " puts @elementsToEscapeArray end def self.initialize(activityDirName) # create js file name array @jsFilesArray = Dir.glob("../src/activities/" + activityDirName + "/**/*.js") # create qml file name array @qmlFilesArray = Dir.glob("../src/activities/" + activityDirName + "/**/*.qml") end # to print error def self.print_error(err) puts "\t ERROR #{err}" end # to print warning def self.print_warning(wrn) puts "\t WARNING #{wrn}" end # checks 'variant' used instead of 'var' def self.check_var (lineStr, lineNumber) if lineStr.include?("property variant") print_warning "line:#{lineNumber} replace variant with var" end end # checks import version def self.check_import_version(lineStr) # add modules and versions in hash moduleVersionHash = { "QtQuick" => "2.6", "QtGraphicalEffects" => "1.0", "QtQuick.Controls" => "1.5", "QtQml" => "2.2", "QtQuick.Controls.Styles" => "1.4", "QtQuick.Particles" => "2.0", "QtSensors" => "5.0", "QtMultimedia" => "5.0", "GCompris" => "1.0", "Box2D" => "2.0" } matchStr = /import (?(\w+)) (?(\d+.\d+))/.match(lineStr) if matchStr moduleName = matchStr["module"] correctModuleVersion = moduleVersionHash[moduleName] if matchStr["ver"] != correctModuleVersion print_error "#{moduleName} version must be #{correctModuleVersion}" end end end # checks credit updation def self.check_credits_update(lineStr) if lineStr.include?("THE GTK VERSION AUTHOR") print_error "Replace original GTK VERSION AUTHOR label by your own name" end if lineStr.include?("THE GTK VERSION AUTHOR") print_warning "Replace original QT Quick copyright label email by your own email address" end end # checks whether qsTr can be used in the lineStr def self.qsTr_use(lineStr, lineNumber) matchStr = /([^ ]+): "[^"]+"/.match(lineStr) if matchStr != nil if !@elementsToEscapeArray.include?(matchStr[1]) print_warning "line:#{lineNumber} #{matchStr[1]} qsTr may not be used" end end end # checks copyrights updated def self.activityInfo_QmlFile(lineStr, directoryName) valuesToTestArray = ["author: \"Your Name <yy@zz.org>\"", "name: \"test/Test.qml\"", "difficulty: 1", "icon: \"test/test.svg\"", "demo: false", "title: \"Test activity\"", "description: \"\"", "goal: \"\"", "prerequisite: \"\"", "manual: \"\"", "credit: \"\"", "section: \"\""] valuesToTestArray.each do |valueToTestStr| if lineStr.include?(valueToTestStr) if valueToTestStr.include?("difficulty: 1") then print_warning "#{valueToTestStr} may not be updated." else print_error "#{valueToTestStr} may not be updated." end end end end # check if directory empty def self.empty_directory? if @qmlFilesArray.empty? and @jsFilesArray.empty? fail "No file to check! Did you enter a correct directory?" end end def self.check_js_files @jsFilesArray.each do |jsFile| puts "FilePath: " + jsFile File.foreach(jsFile) do |line| check_credits_update line check_import_version line end end end def self.check_qml_files @qmlFilesArray.each do |qmlFile| lineNumber = 1 puts "FilePath: " + qmlFile # Assuming ActivityInfo.qml won't be much bigger if File.basename(qmlFile) == "ActivityInfo.qml" unless File.foreach(qmlFile).grep(/createdInVersion:/).any? print_error "ActivityInfo.qml does not have \"createdInVersion\":\n\n" end end File.foreach(qmlFile) do |line| if File.basename(qmlFile) == "ActivityInfo.qml" activityInfo_QmlFile line, @activityDirName end check_credits_update line qsTr_use line, lineNumber check_var line, lineNumber check_import_version line lineNumber = lineNumber + 1 end end end def self.check_every_gcompris_activities dirArray = Dir.glob("../src/activities/*").select { |fn| File.directory?(fn) } - + dirArray.sort! + dirArray.each { |dirName| dirName = File.basename(dirName) + if (dirName != "." and dirName != "..") - puts "\n\n\n********************************* File analysed " + dirName + "***************************************" + puts "\n\n\n*********************************-- " + dirName + " --***************************************" ActivityCheck.initialize(dirName) ActivityCheck.empty_directory? ActivityCheck.check_js_files ActivityCheck.check_qml_files end } end end # if it is the main file being run if __FILE__ == $0 if ARGV[0] == nil fail "\nMissing input filename.\nUsage: ruby checkActivities.rb activity_directory_name\neg: ruby checkActivity reversecount" end ActivityCheck.readElementsToEscape if ARGV[0] == "all" ActivityCheck.check_every_gcompris_activities else ActivityCheck.initialize(ARGV[0]) ActivityCheck.empty_directory? ActivityCheck.check_js_files ActivityCheck.check_qml_files end end diff --git a/tools/check_activities_ids_to_escape.txt b/tools/check_activities_ids_to_escape.txt index 86b04777d..7b1f9abd7 100644 --- a/tools/check_activities_ids_to_escape.txt +++ b/tools/check_activities_ids_to_escape.txt @@ -1,12 +1,35 @@ color properties winSound looseSound icon name value pixmapfile soundFile source difficulty -author \ No newline at end of file +author +section +image +image2 +url +property +state +label +border.color +"x" +"y" +"width" +"pixmapfile" +"image" +"image2" +"prefix" +"type" +type +collisionName +overlayColor +mode +group +styleColor +"soundFile" \ No newline at end of file diff --git a/tools/test.txt b/tools/test.txt new file mode 100644 index 000000000..94d21fc38 --- /dev/null +++ b/tools/test.txt @@ -0,0 +1,2304 @@ +element ids escaped: +color +properties +winSound +looseSound +icon +name +value +pixmapfile +soundFile +source +difficulty +author +section +image +image2 +url +property +state +label +border.color +"x" +"y" +"width" +"pixmapfile" +"image" +"image2" +"prefix" +"type" +type +collisionName +overlayColor +mode +group +styleColor +"soundFile" + + + +*********************************-- advanced_colors --*************************************** +FilePath: ../src/activities/advanced_colors/advanced_colors.js +FilePath: ../src/activities/advanced_colors/AdvancedColors.qml + WARNING line:31 backgroundImg qsTr may not be used +FilePath: ../src/activities/advanced_colors/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 //intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- algebra_by --*************************************** +FilePath: ../src/activities/algebra_by/algebra.js +FilePath: ../src/activities/algebra_by/AlgebraText.qml +FilePath: ../src/activities/algebra_by/Algebra.qml + WARNING line:159 text qsTr may not be used +FilePath: ../src/activities/algebra_by/AlgebraBy.qml +FilePath: ../src/activities/algebra_by/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- algebra_div --*************************************** +FilePath: ../src/activities/algebra_div/AlgebraDiv.qml +FilePath: ../src/activities/algebra_div/ActivityInfo.qml + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- algebra_minus --*************************************** +FilePath: ../src/activities/algebra_minus/AlgebraMinus.qml +FilePath: ../src/activities/algebra_minus/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- algebra_plus --*************************************** +FilePath: ../src/activities/algebra_plus/AlgebraPlus.qml +FilePath: ../src/activities/algebra_plus/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- algorithm --*************************************** +FilePath: ../src/activities/algorithm/algorithm.js +FilePath: ../src/activities/algorithm/Algorithm.qml +FilePath: ../src/activities/algorithm/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- align4 --*************************************** +FilePath: ../src/activities/align4/Align4.qml +FilePath: ../src/activities/align4/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- align4-2players --*************************************** +FilePath: ../src/activities/align4-2players/align4.js +FilePath: ../src/activities/align4-2players/Piece.qml +FilePath: ../src/activities/align4-2players/Align42players.qml + WARNING line:135 "2" qsTr may not be used +FilePath: ../src/activities/align4-2players/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- alphabet-sequence --*************************************** +FilePath: ../src/activities/alphabet-sequence/AlphabetSequence.qml +FilePath: ../src/activities/alphabet-sequence/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- baby_wordprocessor --*************************************** +FilePath: ../src/activities/baby_wordprocessor/BabyWordprocessor.qml + WARNING line:61 textSize qsTr may not be used + WARNING line:67 textSize qsTr may not be used + WARNING line:73 textSize qsTr may not be used + WARNING line:209 newline qsTr may not be used +FilePath: ../src/activities/baby_wordprocessor/ActivityInfo.qml + WARNING difficulty: 1 may not be updated. + ERROR demo: false may not be updated. + WARNING line:30 //intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- babymatch --*************************************** +FilePath: ../src/activities/babymatch/babymatch.js +FilePath: ../src/activities/babymatch/DragListItem.qml +FilePath: ../src/activities/babymatch/resource/board/board1_0.qml +FilePath: ../src/activities/babymatch/resource/board/board7_0.qml +FilePath: ../src/activities/babymatch/resource/board/board3_0.qml +FilePath: ../src/activities/babymatch/resource/board/board5_0.qml +FilePath: ../src/activities/babymatch/resource/board/board4_0.qml +FilePath: ../src/activities/babymatch/resource/board/board2_0.qml +FilePath: ../src/activities/babymatch/resource/board/board6_0.qml +FilePath: ../src/activities/babymatch/TextItem.qml +FilePath: ../src/activities/babymatch/ListWidget.qml +FilePath: ../src/activities/babymatch/Babymatch.qml + WARNING line:35 boardsUrl qsTr may not be used +FilePath: ../src/activities/babymatch/DropAnswerItem.qml +FilePath: ../src/activities/babymatch/ActivityInfo.qml + WARNING difficulty: 1 may not be updated. + WARNING line:33 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- babyshapes --*************************************** +FilePath: ../src/activities/babyshapes/resource/board/board1_0.qml +FilePath: ../src/activities/babyshapes/resource/board/board7_0.qml +FilePath: ../src/activities/babyshapes/resource/board/board3_0.qml +FilePath: ../src/activities/babyshapes/resource/board/board7_2.qml +FilePath: ../src/activities/babyshapes/resource/board/board7_3.qml +FilePath: ../src/activities/babyshapes/resource/board/board5_0.qml +FilePath: ../src/activities/babyshapes/resource/board/board4_0.qml +FilePath: ../src/activities/babyshapes/resource/board/board2_0.qml +FilePath: ../src/activities/babyshapes/resource/board/board6_0.qml +FilePath: ../src/activities/babyshapes/resource/board/board7_4.qml +FilePath: ../src/activities/babyshapes/resource/board/board7_1.qml +FilePath: ../src/activities/babyshapes/Babyshapes.qml + WARNING line:32 boardsUrl qsTr may not be used +FilePath: ../src/activities/babyshapes/ActivityInfo.qml + WARNING difficulty: 1 may not be updated. + WARNING line:34 intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + + + +*********************************-- balancebox --*************************************** +FilePath: ../src/activities/balancebox/balancebox_common.js +FilePath: ../src/activities/balancebox/editor/balanceboxeditor.js +FilePath: ../src/activities/balancebox/editor/editor_worker.js +FilePath: ../src/activities/balancebox/balancebox.js +FilePath: ../src/activities/balancebox/Goal.qml +FilePath: ../src/activities/balancebox/editor/BalanceboxEditor.qml + WARNING line:95 contactValue qsTr may not be used + WARNING line:562 "yellow" qsTr may not be used +FilePath: ../src/activities/balancebox/editor/EditorTool.qml +FilePath: ../src/activities/balancebox/Wall.qml +FilePath: ../src/activities/balancebox/BalanceContact.qml +FilePath: ../src/activities/balancebox/BalanceItem.qml +FilePath: ../src/activities/balancebox/Balancebox.qml + WARNING line:39 levelSet qsTr may not be used + WARNING line:378 text qsTr may not be used + WARNING line:386 text qsTr may not be used + WARNING line:498 "value" qsTr may not be used + WARNING line:499 "value" qsTr may not be used +FilePath: ../src/activities/balancebox/ActivityInfo.qml + WARNING line:33 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- ballcatch --*************************************** +FilePath: ../src/activities/ballcatch/ballcatch.js +FilePath: ../src/activities/ballcatch/Ball.qml +FilePath: ../src/activities/ballcatch/Ballcatch.qml +FilePath: ../src/activities/ballcatch/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING difficulty: 1 may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- bargame --*************************************** +FilePath: ../src/activities/bargame/bargame.js + ERROR QtQuick version must be 2.6 +FilePath: ../src/activities/bargame/Bargame.qml +FilePath: ../src/activities/bargame/ActivityInfo.qml + WARNING difficulty: 1 may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- bargame_2players --*************************************** +FilePath: ../src/activities/bargame_2players/Bargame2players.qml +FilePath: ../src/activities/bargame_2players/ActivityInfo.qml + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- braille_alphabets --*************************************** +FilePath: ../src/activities/braille_alphabets/braille_alphabets.js +FilePath: ../src/activities/braille_alphabets/questions.js +FilePath: ../src/activities/braille_alphabets/BrailleChar.qml +FilePath: ../src/activities/braille_alphabets/BrailleMap.qml +FilePath: ../src/activities/braille_alphabets/BrailleAlphabets.qml +FilePath: ../src/activities/braille_alphabets/Screen.qml +FilePath: ../src/activities/braille_alphabets/FirstScreen.qml +FilePath: ../src/activities/braille_alphabets/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 //intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- braille_fun --*************************************** +FilePath: ../src/activities/braille_fun/braille_fun.js +FilePath: ../src/activities/braille_fun/BrailleFun.qml +FilePath: ../src/activities/braille_fun/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- calendar --*************************************** +FilePath: ../src/activities/calendar/calendar.js +FilePath: ../src/activities/calendar/calendar_dataset.js +FilePath: ../src/activities/calendar/Calendar.qml + WARNING line:162 sameMonthDateTextColor qsTr may not be used + WARNING line:163 selectedDateColor qsTr may not be used + WARNING line:164 selectedDateTextColor qsTr may not be used + WARNING line:165 differentMonthDateTextColor qsTr may not be used + WARNING line:166 invalidDateColor qsTr may not be used +FilePath: ../src/activities/calendar/ChoiceTable.qml +FilePath: ../src/activities/calendar/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- canal_lock --*************************************** +FilePath: ../src/activities/canal_lock/CanalLock.qml +FilePath: ../src/activities/canal_lock/Lock.qml +FilePath: ../src/activities/canal_lock/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 //intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + + + +*********************************-- categorization --*************************************** +FilePath: ../src/activities/categorization/categorization.js +FilePath: ../src/activities/categorization/CategoryReview.qml +FilePath: ../src/activities/categorization/resource/board/category_alphabets.qml + WARNING line:26 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_flowers.qml + WARNING line:26 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_vegetables.qml + WARNING line:26 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_nature.qml + WARNING line:26 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_food.qml + WARNING line:26 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_numbers.qml + WARNING line:26 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_insects.qml + WARNING line:26 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_living_beings.qml + WARNING line:26 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_fruits.qml + WARNING line:26 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_animals.qml + WARNING line:26 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_tools.qml + WARNING line:26 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_household_goods.qml + WARNING line:26 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_colors.qml + WARNING line:26 imagesPrefix qsTr may not be used + WARNING line:34 "instructions" qsTr may not be used + WARNING line:43 "instructions" qsTr may not be used + WARNING line:52 "instructions" qsTr may not be used + WARNING line:62 "instructions" qsTr may not be used + WARNING line:71 "instructions" qsTr may not be used + WARNING line:80 "instructions" qsTr may not be used + WARNING line:81 "categorise" qsTr may not be used + WARNING line:90 "instructions" qsTr may not be used + WARNING line:99 "instructions" qsTr may not be used + WARNING line:108 "instructions" qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_renewable.qml + WARNING line:26 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_transports.qml + WARNING line:26 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_odd_even.qml + ERROR QtQuick version must be 2.6 + WARNING line:27 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_shapes.qml + WARNING line:28 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_fishes.qml + WARNING line:26 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_monuments.qml + WARNING line:26 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/resource/board/category_birds.qml + WARNING line:26 imagesPrefix qsTr may not be used +FilePath: ../src/activities/categorization/MenuScreen.qml +FilePath: ../src/activities/categorization/Zone.qml + WARNING line:62 currPosition qsTr may not be used +FilePath: ../src/activities/categorization/Categorization.qml + WARNING line:37 boardsUrl qsTr may not be used +FilePath: ../src/activities/categorization/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- checkers --*************************************** +FilePath: ../src/activities/checkers/engine.js +FilePath: ../src/activities/checkers/checkers.js + ERROR QtQuick version must be 2.6 +FilePath: ../src/activities/checkers/Checkers.qml + WARNING line:140 theme qsTr may not be used + WARNING line:156 theme qsTr may not be used + WARNING line:173 theme qsTr may not be used +FilePath: ../src/activities/checkers/Piece.qml +FilePath: ../src/activities/checkers/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + + + +*********************************-- checkers_2players --*************************************** +FilePath: ../src/activities/checkers_2players/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR prerequisite: "" may not be updated. +FilePath: ../src/activities/checkers_2players/Checkers2Players.qml + + + +*********************************-- chess --*************************************** +FilePath: ../src/activities/chess/engine.js +FilePath: ../src/activities/chess/chess.js +FilePath: ../src/activities/chess/Piece.qml +FilePath: ../src/activities/chess/Chess.qml + WARNING line:147 theme qsTr may not be used + WARNING line:163 theme qsTr may not be used + WARNING line:185 theme qsTr may not be used +FilePath: ../src/activities/chess/ActivityInfo.qml + ERROR demo: false may not be updated. + ERROR description: "" may not be updated. + WARNING line:30 //intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + + + +*********************************-- chess_2players --*************************************** +FilePath: ../src/activities/chess_2players/ActivityInfo.qml + ERROR demo: false may not be updated. + ERROR description: "" may not be updated. + WARNING line:30 //intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. +FilePath: ../src/activities/chess_2players/Chess2Players.qml + + + +*********************************-- chess_partyend --*************************************** +FilePath: ../src/activities/chess_partyend/ChessPartyEnd.qml +FilePath: ../src/activities/chess_partyend/ActivityInfo.qml + ERROR demo: false may not be updated. + WARNING line:30 //intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + + + +*********************************-- chronos --*************************************** +FilePath: ../src/activities/chronos/resource/board/board1_0.qml +FilePath: ../src/activities/chronos/resource/board/board3_0.qml +FilePath: ../src/activities/chronos/resource/board/board6_1.qml +FilePath: ../src/activities/chronos/resource/board/board5_2.qml +FilePath: ../src/activities/chronos/resource/board/board5_0.qml +FilePath: ../src/activities/chronos/resource/board/board6_3.qml +FilePath: ../src/activities/chronos/resource/board/board6_2.qml +FilePath: ../src/activities/chronos/resource/board/board4_0.qml +FilePath: ../src/activities/chronos/resource/board/board5_3.qml +FilePath: ../src/activities/chronos/resource/board/board2_0.qml +FilePath: ../src/activities/chronos/resource/board/board6_0.qml +FilePath: ../src/activities/chronos/resource/board/board5_1.qml +FilePath: ../src/activities/chronos/resource/board/board5_4.qml +FilePath: ../src/activities/chronos/Chronos.qml + WARNING line:32 boardsUrl qsTr may not be used +FilePath: ../src/activities/chronos/ActivityInfo.qml + WARNING difficulty: 1 may not be updated. + WARNING line:34 intro qsTr may not be used + + + +*********************************-- click_on_letter --*************************************** +FilePath: ../src/activities/click_on_letter/click_on_letter.js +FilePath: ../src/activities/click_on_letter/Carriage.qml +FilePath: ../src/activities/click_on_letter/ClickOnLetter.qml + WARNING line:49 locale qsTr may not be used +FilePath: ../src/activities/click_on_letter/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- click_on_letter_up --*************************************** +FilePath: ../src/activities/click_on_letter_up/ClickOnLetterUp.qml +FilePath: ../src/activities/click_on_letter_up/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- clickanddraw --*************************************** +FilePath: ../src/activities/clickanddraw/clickanddraw_dataset.js +FilePath: ../src/activities/clickanddraw/Clickanddraw.qml +FilePath: ../src/activities/clickanddraw/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING difficulty: 1 may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- clickgame --*************************************** +FilePath: ../src/activities/clickgame/clickgame.js +FilePath: ../src/activities/clickgame/Fish.qml +FilePath: ../src/activities/clickgame/Clickgame.qml +FilePath: ../src/activities/clickgame/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING difficulty: 1 may not be updated. + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + + + +*********************************-- clockgame --*************************************** +FilePath: ../src/activities/clockgame/clockgame.js +FilePath: ../src/activities/clockgame/Clockgame.qml +FilePath: ../src/activities/clockgame/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- color_mix --*************************************** +FilePath: ../src/activities/color_mix/colormix.js +FilePath: ../src/activities/color_mix/ColorButton.qml +FilePath: ../src/activities/color_mix/ColorMix.qml +FilePath: ../src/activities/color_mix/ColorChooser.qml +FilePath: ../src/activities/color_mix/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + + + +*********************************-- color_mix_light --*************************************** +FilePath: ../src/activities/color_mix_light/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + WARNING line:41 credit qsTr may not be used +FilePath: ../src/activities/color_mix_light/ColorMixLight.qml + + + +*********************************-- colors --*************************************** +FilePath: ../src/activities/colors/findit.js +FilePath: ../src/activities/colors/colors.js +FilePath: ../src/activities/colors/Colors.qml + WARNING line:30 backgroundImg qsTr may not be used +FilePath: ../src/activities/colors/FindIt.qml +FilePath: ../src/activities/colors/ColorItem.qml +FilePath: ../src/activities/colors/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING difficulty: 1 may not be updated. + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- crane --*************************************** +FilePath: ../src/activities/crane/crane.js +FilePath: ../src/activities/crane/wordset.js +FilePath: ../src/activities/crane/Crane.qml + WARNING line:35 dataSetUrl qsTr may not be used + WARNING line:411 command qsTr may not be used + WARNING line:421 command qsTr may not be used + WARNING line:431 command qsTr may not be used + WARNING line:441 command qsTr may not be used +FilePath: ../src/activities/crane/ActivityInfo.qml + WARNING line:35 //intro qsTr may not be used + ERROR credit: "" may not be updated. +FilePath: ../src/activities/crane/Controls.qml + + + +*********************************-- details --*************************************** +FilePath: ../src/activities/details/resource/board/board1_0.qml +FilePath: ../src/activities/details/resource/board/board7_0.qml +FilePath: ../src/activities/details/resource/board/board10_0.qml +FilePath: ../src/activities/details/resource/board/board18_0.qml +FilePath: ../src/activities/details/resource/board/board9_0.qml +FilePath: ../src/activities/details/resource/board/board3_0.qml +FilePath: ../src/activities/details/resource/board/board14_0.qml +FilePath: ../src/activities/details/resource/board/board12_0.qml +FilePath: ../src/activities/details/resource/board/board20_0.qml +FilePath: ../src/activities/details/resource/board/board16_0.qml +FilePath: ../src/activities/details/resource/board/board5_0.qml +FilePath: ../src/activities/details/resource/board/board4_0.qml +FilePath: ../src/activities/details/resource/board/board21_0.qml +FilePath: ../src/activities/details/resource/board/board15_0.qml +FilePath: ../src/activities/details/resource/board/board2_0.qml +FilePath: ../src/activities/details/resource/board/board6_0.qml +FilePath: ../src/activities/details/resource/board/board17_0.qml +FilePath: ../src/activities/details/resource/board/board11_0.qml +FilePath: ../src/activities/details/resource/board/board13_0.qml +FilePath: ../src/activities/details/resource/board/board8_0.qml +FilePath: ../src/activities/details/resource/board/board19_0.qml +FilePath: ../src/activities/details/Details.qml + WARNING line:32 boardsUrl qsTr may not be used +FilePath: ../src/activities/details/ActivityInfo.qml + WARNING difficulty: 1 may not be updated. + WARNING line:33 intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + + + +*********************************-- digital_electricity --*************************************** +FilePath: ../src/activities/digital_electricity/digital_electricity.js +FilePath: ../src/activities/digital_electricity/components/Switch.qml +FilePath: ../src/activities/digital_electricity/components/NandGate.qml +FilePath: ../src/activities/digital_electricity/components/NotGate.qml +FilePath: ../src/activities/digital_electricity/components/XorGate.qml +FilePath: ../src/activities/digital_electricity/components/SevenSegment.qml + WARNING line:42 infoImageSrc qsTr may not be used +FilePath: ../src/activities/digital_electricity/components/DigitalLight.qml +FilePath: ../src/activities/digital_electricity/components/Comparator.qml +FilePath: ../src/activities/digital_electricity/components/BcdCounter.qml +FilePath: ../src/activities/digital_electricity/components/One.qml +FilePath: ../src/activities/digital_electricity/components/AndGate.qml +FilePath: ../src/activities/digital_electricity/components/NorGate.qml +FilePath: ../src/activities/digital_electricity/components/ElectricalComponent.qml +FilePath: ../src/activities/digital_electricity/components/Zero.qml +FilePath: ../src/activities/digital_electricity/components/TerminalPoint.qml +FilePath: ../src/activities/digital_electricity/components/BCDToSevenSegment.qml +FilePath: ../src/activities/digital_electricity/components/SignalGenerator.qml +FilePath: ../src/activities/digital_electricity/components/OrGate.qml +FilePath: ../src/activities/digital_electricity/DragListItem.qml +FilePath: ../src/activities/digital_electricity/ListWidget.qml +FilePath: ../src/activities/digital_electricity/DigitalElectricity.qml + WARNING line:443 "value" qsTr may not be used + WARNING line:444 "value" qsTr may not be used +FilePath: ../src/activities/digital_electricity/Wire.qml +FilePath: ../src/activities/digital_electricity/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR credit: "" may not be updated. +FilePath: ../src/activities/digital_electricity/Dataset.qml + + + +*********************************-- drawletters --*************************************** +FilePath: ../src/activities/drawletters/drawletters_dataset.js +FilePath: ../src/activities/drawletters/Drawletters.qml +FilePath: ../src/activities/drawletters/ActivityInfo.qml + WARNING difficulty: 1 may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- drawnumbers --*************************************** +FilePath: ../src/activities/drawnumbers/drawnumbers_dataset.js +FilePath: ../src/activities/drawnumbers/Drawnumbers.qml +FilePath: ../src/activities/drawnumbers/ActivityInfo.qml + WARNING difficulty: 1 may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- enumerate --*************************************** +FilePath: ../src/activities/enumerate/enumerate.js +FilePath: ../src/activities/enumerate/Enumerate.qml +FilePath: ../src/activities/enumerate/ItemToEnumerate.qml +FilePath: ../src/activities/enumerate/AnswerArea.qml + WARNING line:146 text qsTr may not be used +FilePath: ../src/activities/enumerate/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- erase --*************************************** +FilePath: ../src/activities/erase/erase.js +FilePath: ../src/activities/erase/Erase.qml +FilePath: ../src/activities/erase/Block.qml +FilePath: ../src/activities/erase/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING difficulty: 1 may not be updated. + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- erase_2clic --*************************************** +FilePath: ../src/activities/erase_2clic/Erase2clic.qml +FilePath: ../src/activities/erase_2clic/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- erase_clic --*************************************** +FilePath: ../src/activities/erase_clic/EraseClic.qml +FilePath: ../src/activities/erase_clic/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING difficulty: 1 may not be updated. + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- explore_farm_animals --*************************************** +FilePath: ../src/activities/explore_farm_animals/explore-level.js +FilePath: ../src/activities/explore_farm_animals/resource/board/board1.qml + WARNING line:27 backgroundImage qsTr may not be used +FilePath: ../src/activities/explore_farm_animals/ExploreFarmAnimals.qml +FilePath: ../src/activities/explore_farm_animals/ExploreLevels.qml +FilePath: ../src/activities/explore_farm_animals/AnimalLevels.qml +FilePath: ../src/activities/explore_farm_animals/AnimalDescriptionLevels.qml + WARNING line:151 from qsTr may not be used + WARNING line:152 to qsTr may not be used + WARNING line:164 from qsTr may not be used + WARNING line:165 to qsTr may not be used +FilePath: ../src/activities/explore_farm_animals/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- explore_monuments --*************************************** +FilePath: ../src/activities/explore_monuments/resource/board/board3.qml + WARNING line:25 backgroundImage qsTr may not be used + WARNING line:35 "height" qsTr may not be used + WARNING line:46 "height" qsTr may not be used + WARNING line:57 "height" qsTr may not be used + WARNING line:68 "height" qsTr may not be used + WARNING line:79 "height" qsTr may not be used + WARNING line:90 "height" qsTr may not be used + WARNING line:101 "height" qsTr may not be used + WARNING line:112 "height" qsTr may not be used + WARNING line:123 "height" qsTr may not be used + WARNING line:134 "height" qsTr may not be used +FilePath: ../src/activities/explore_monuments/resource/board/board5.qml + WARNING line:25 backgroundImage qsTr may not be used + WARNING line:35 "height" qsTr may not be used + WARNING line:46 "height" qsTr may not be used + WARNING line:57 "height" qsTr may not be used + WARNING line:68 "height" qsTr may not be used + WARNING line:79 "height" qsTr may not be used + WARNING line:90 "height" qsTr may not be used + WARNING line:101 "height" qsTr may not be used + WARNING line:112 "height" qsTr may not be used + WARNING line:123 "height" qsTr may not be used + WARNING line:134 "height" qsTr may not be used +FilePath: ../src/activities/explore_monuments/resource/board/board4.qml + WARNING line:25 backgroundImage qsTr may not be used + WARNING line:35 "height" qsTr may not be used + WARNING line:46 "height" qsTr may not be used + WARNING line:57 "height" qsTr may not be used + WARNING line:68 "height" qsTr may not be used + WARNING line:79 "height" qsTr may not be used + WARNING line:90 "height" qsTr may not be used + WARNING line:101 "height" qsTr may not be used +FilePath: ../src/activities/explore_monuments/resource/board/board6.qml + WARNING line:24 backgroundImage qsTr may not be used + WARNING line:34 "height" qsTr may not be used + WARNING line:45 "height" qsTr may not be used + WARNING line:56 "height" qsTr may not be used + WARNING line:67 "height" qsTr may not be used +FilePath: ../src/activities/explore_monuments/resource/board/board2.qml + WARNING line:25 backgroundImage qsTr may not be used + WARNING line:35 "height" qsTr may not be used + WARNING line:46 "height" qsTr may not be used + WARNING line:57 "height" qsTr may not be used + WARNING line:68 "height" qsTr may not be used + WARNING line:79 "height" qsTr may not be used + WARNING line:90 "height" qsTr may not be used + WARNING line:101 "height" qsTr may not be used + WARNING line:112 "height" qsTr may not be used + WARNING line:123 "height" qsTr may not be used + WARNING line:134 "height" qsTr may not be used + WARNING line:145 "height" qsTr may not be used + WARNING line:156 "height" qsTr may not be used +FilePath: ../src/activities/explore_monuments/resource/board/board1.qml + WARNING line:26 backgroundImage qsTr may not be used + WARNING line:36 "height" qsTr may not be used + WARNING line:47 "height" qsTr may not be used + WARNING line:58 "height" qsTr may not be used + WARNING line:69 "height" qsTr may not be used + WARNING line:80 "height" qsTr may not be used + WARNING line:91 "height" qsTr may not be used + WARNING line:102 "height" qsTr may not be used +FilePath: ../src/activities/explore_monuments/Explore_monuments.qml +FilePath: ../src/activities/explore_monuments/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + + + +*********************************-- explore_world_animals --*************************************** +FilePath: ../src/activities/explore_world_animals/ExploreWorldAnimals.qml +FilePath: ../src/activities/explore_world_animals/resource/board/board3.qml + WARNING line:26 backgroundImage qsTr may not be used +FilePath: ../src/activities/explore_world_animals/resource/board/board2.qml + WARNING line:26 backgroundImage qsTr may not be used +FilePath: ../src/activities/explore_world_animals/resource/board/board1.qml + WARNING line:26 backgroundImage qsTr may not be used +FilePath: ../src/activities/explore_world_animals/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:34 intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- explore_world_music --*************************************** +FilePath: ../src/activities/explore_world_music/resource/board/board1.qml + WARNING line:27 backgroundImage qsTr may not be used +FilePath: ../src/activities/explore_world_music/ExploreWorldMusic.qml +FilePath: ../src/activities/explore_world_music/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + + + +*********************************-- family --*************************************** +FilePath: ../src/activities/family/family.js + ERROR QtQuick version must be 2.6 +FilePath: ../src/activities/family/Node.qml + ERROR QtQuick version must be 2.6 +FilePath: ../src/activities/family/Family.qml + WARNING line:191 borderColor qsTr may not be used + WARNING line:203 borderColor qsTr may not be used + WARNING line:216 borderColor qsTr may not be used +FilePath: ../src/activities/family/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR credit: "" may not be updated. +FilePath: ../src/activities/family/Dataset.qml + + + +*********************************-- family_find_relative --*************************************** +FilePath: ../src/activities/family_find_relative/ActivityInfo.qml + WARNING line:29 description qsTr may not be used + WARNING line:30 //intro qsTr may not be used + ERROR credit: "" may not be updated. +FilePath: ../src/activities/family_find_relative/Family_find_relative.qml + + + +*********************************-- fifteen --*************************************** +FilePath: ../src/activities/fifteen/fifteen.js +FilePath: ../src/activities/fifteen/Fifteen.qml +FilePath: ../src/activities/fifteen/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 //intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- find_the_day --*************************************** +FilePath: ../src/activities/find_the_day/find_the_day_dataset.js +FilePath: ../src/activities/find_the_day/FindTheDay.qml +FilePath: ../src/activities/find_the_day/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- followline --*************************************** +FilePath: ../src/activities/followline/followline.js +FilePath: ../src/activities/followline/Followline.qml +FilePath: ../src/activities/followline/LinePart.qml +FilePath: ../src/activities/followline/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING difficulty: 1 may not be updated. + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- football --*************************************** +FilePath: ../src/activities/football/football.js +FilePath: ../src/activities/football/Football.qml +FilePath: ../src/activities/football/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING difficulty: 1 may not be updated. + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- geo-country --*************************************** +FilePath: ../src/activities/geo-country/resource/board/board1_0.qml +FilePath: ../src/activities/geo-country/resource/board/board7_0.qml +FilePath: ../src/activities/geo-country/resource/board/board10_0.qml +FilePath: ../src/activities/geo-country/resource/board/board15_2.qml +FilePath: ../src/activities/geo-country/resource/board/board9_0.qml +FilePath: ../src/activities/geo-country/resource/board/board3_0.qml +FilePath: ../src/activities/geo-country/resource/board/board14_0.qml +FilePath: ../src/activities/geo-country/resource/board/board12_0.qml +FilePath: ../src/activities/geo-country/resource/board/board11_2.qml +FilePath: ../src/activities/geo-country/resource/board/board10_1.qml +FilePath: ../src/activities/geo-country/resource/board/board16_0.qml +FilePath: ../src/activities/geo-country/resource/board/board5_2.qml +FilePath: ../src/activities/geo-country/resource/board/board5_0.qml +FilePath: ../src/activities/geo-country/resource/board/board11_3.qml +FilePath: ../src/activities/geo-country/resource/board/board4_0.qml +FilePath: ../src/activities/geo-country/resource/board/board15_3.qml +FilePath: ../src/activities/geo-country/resource/board/board15_0.qml +FilePath: ../src/activities/geo-country/resource/board/board2_0.qml +FilePath: ../src/activities/geo-country/resource/board/board11_1.qml +FilePath: ../src/activities/geo-country/resource/board/board6_0.qml +FilePath: ../src/activities/geo-country/resource/board/board11_0.qml +FilePath: ../src/activities/geo-country/resource/board/board5_1.qml +FilePath: ../src/activities/geo-country/resource/board/board13_0.qml +FilePath: ../src/activities/geo-country/resource/board/board8_0.qml +FilePath: ../src/activities/geo-country/resource/board/board15_1.qml +FilePath: ../src/activities/geo-country/GeoCountry.qml + WARNING line:32 boardsUrl qsTr may not be used +FilePath: ../src/activities/geo-country/ActivityInfo.qml + WARNING line:34 intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- geography --*************************************** +FilePath: ../src/activities/geography/resource/board/board1_0.qml +FilePath: ../src/activities/geography/resource/board/board7_0.qml +FilePath: ../src/activities/geography/resource/board/board10_0.qml +FilePath: ../src/activities/geography/resource/board/board9_0.qml +FilePath: ../src/activities/geography/resource/board/board3_0.qml +FilePath: ../src/activities/geography/resource/board/board5_0.qml +FilePath: ../src/activities/geography/resource/board/board3_1.qml +FilePath: ../src/activities/geography/resource/board/board4_0.qml +FilePath: ../src/activities/geography/resource/board/board2_0.qml +FilePath: ../src/activities/geography/resource/board/board6_0.qml +FilePath: ../src/activities/geography/resource/board/board8_0.qml +FilePath: ../src/activities/geography/Geography.qml + WARNING line:33 boardsUrl qsTr may not be used +FilePath: ../src/activities/geography/ActivityInfo.qml + WARNING line:34 intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- gletters --*************************************** +FilePath: ../src/activities/gletters/gletters.js +FilePath: ../src/activities/gletters/FallingWord.qml +FilePath: ../src/activities/gletters/FallingDomino.qml +FilePath: ../src/activities/gletters/Gletters.qml + WARNING line:34 dataSetUrl qsTr may not be used + WARNING line:74 locale qsTr may not be used +FilePath: ../src/activities/gletters/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. +FilePath: ../src/activities/gletters/FallingImage.qml + + + +*********************************-- gnumch-equality --*************************************** +FilePath: ../src/activities/gnumch-equality/gnumch-equality.js +FilePath: ../src/activities/gnumch-equality/Reggie.qml + WARNING line:26 monsterType qsTr may not be used +FilePath: ../src/activities/gnumch-equality/Gnumch.qml + WARNING line:35 operator qsTr may not be used +FilePath: ../src/activities/gnumch-equality/Monster.qml +FilePath: ../src/activities/gnumch-equality/Creature.qml +FilePath: ../src/activities/gnumch-equality/Warning.qml +FilePath: ../src/activities/gnumch-equality/CellDelegate.qml +FilePath: ../src/activities/gnumch-equality/Muncher.qml + WARNING line:52 monsterType qsTr may not be used +FilePath: ../src/activities/gnumch-equality/GnumchEquality.qml +FilePath: ../src/activities/gnumch-equality/TopPanel.qml + WARNING line:94 monsterType qsTr may not be used +FilePath: ../src/activities/gnumch-equality/Smarty.qml + WARNING line:47 monsterType qsTr may not be used +FilePath: ../src/activities/gnumch-equality/Eater.qml + WARNING line:27 monsterType qsTr may not be used +FilePath: ../src/activities/gnumch-equality/Fraidy.qml + WARNING line:36 monsterType qsTr may not be used +FilePath: ../src/activities/gnumch-equality/WarnMonster.qml +FilePath: ../src/activities/gnumch-equality/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. +FilePath: ../src/activities/gnumch-equality/Diaper.qml + WARNING line:27 monsterType qsTr may not be used + + + +*********************************-- gnumch-factors --*************************************** +FilePath: ../src/activities/gnumch-factors/GnumchFactors.qml +FilePath: ../src/activities/gnumch-factors/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:31 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- gnumch-inequality --*************************************** +FilePath: ../src/activities/gnumch-inequality/GnumchInequality.qml +FilePath: ../src/activities/gnumch-inequality/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:31 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- gnumch-multiples --*************************************** +FilePath: ../src/activities/gnumch-multiples/GnumchMultiples.qml +FilePath: ../src/activities/gnumch-multiples/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:31 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- gnumch-primes --*************************************** +FilePath: ../src/activities/gnumch-primes/GnumchPrimes.qml +FilePath: ../src/activities/gnumch-primes/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:31 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- graph-coloring --*************************************** +FilePath: ../src/activities/graph-coloring/graph-coloring.js +FilePath: ../src/activities/graph-coloring/GraphColoring.qml + WARNING line:328 "value" qsTr may not be used + WARNING line:329 "value" qsTr may not be used +FilePath: ../src/activities/graph-coloring/Node.qml +FilePath: ../src/activities/graph-coloring/ActivityInfo.qml + WARNING difficulty: 1 may not be updated. + WARNING line:30 //intro qsTr may not be used + ERROR manual: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- guesscount --*************************************** +FilePath: ../src/activities/guesscount/dataset.js +FilePath: ../src/activities/guesscount/guesscount.js +FilePath: ../src/activities/guesscount/Tile.qml +FilePath: ../src/activities/guesscount/Admin.qml +FilePath: ../src/activities/guesscount/DropTile.qml +FilePath: ../src/activities/guesscount/OperatorRow.qml +FilePath: ../src/activities/guesscount/OperandRow.qml +FilePath: ../src/activities/guesscount/Guesscount.qml + WARNING line:217 "value" qsTr may not be used + WARNING line:218 "value" qsTr may not be used +FilePath: ../src/activities/guesscount/OperationRow.qml + WARNING line:159 text qsTr may not be used +FilePath: ../src/activities/guesscount/DragTile.qml +FilePath: ../src/activities/guesscount/ActivityInfo.qml + WARNING line:35 //intro qsTr may not be used + ERROR manual: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- guessnumber --*************************************** +FilePath: ../src/activities/guessnumber/guessnumber.js +FilePath: ../src/activities/guessnumber/Guessnumber.qml + WARNING line:75 fillMode qsTr may not be used +FilePath: ../src/activities/guessnumber/Helico.qml +FilePath: ../src/activities/guessnumber/AnswerArea.qml +FilePath: ../src/activities/guessnumber/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- hangman --*************************************** +FilePath: ../src/activities/hangman/hangman.js +FilePath: ../src/activities/hangman/Hangman.qml + WARNING line:35 dataSetUrl qsTr may not be used + WARNING line:55 locale qsTr may not be used +FilePath: ../src/activities/hangman/ActivityInfo.qml + ERROR prerequisite: "" may not be updated. + WARNING line:34 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- hanoi --*************************************** +FilePath: ../src/activities/hanoi/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used +FilePath: ../src/activities/hanoi/Hanoi.qml + WARNING line:28 activityMode qsTr may not be used + + + +*********************************-- hanoi_real --*************************************** +FilePath: ../src/activities/hanoi_real/hanoi_real.js +FilePath: ../src/activities/hanoi_real/HanoiReal.qml + WARNING line:36 activityMode qsTr may not be used +FilePath: ../src/activities/hanoi_real/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + + + +*********************************-- hexagon --*************************************** +FilePath: ../src/activities/hexagon/hexagon.js +FilePath: ../src/activities/hexagon/Hexagon.qml +FilePath: ../src/activities/hexagon/HexagonItem.qml +FilePath: ../src/activities/hexagon/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- imagename --*************************************** +FilePath: ../src/activities/imagename/resource/board/board1_0.qml +FilePath: ../src/activities/imagename/resource/board/board7_0.qml +FilePath: ../src/activities/imagename/resource/board/board3_0.qml +FilePath: ../src/activities/imagename/resource/board/board5_0.qml +FilePath: ../src/activities/imagename/resource/board/board4_0.qml +FilePath: ../src/activities/imagename/resource/board/board2_0.qml +FilePath: ../src/activities/imagename/resource/board/board6_0.qml +FilePath: ../src/activities/imagename/Imagename.qml + WARNING line:32 imagesUrl qsTr may not be used + WARNING line:33 boardsUrl qsTr may not be used +FilePath: ../src/activities/imagename/ActivityInfo.qml + WARNING line:33 intro qsTr may not be used + + + +*********************************-- instruments --*************************************** +FilePath: ../src/activities/instruments/instruments.js +FilePath: ../src/activities/instruments/Instruments.qml + WARNING line:31 backgroundImg qsTr may not be used +FilePath: ../src/activities/instruments/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- intro_gravity --*************************************** +FilePath: ../src/activities/intro_gravity/intro_gravity.js +FilePath: ../src/activities/intro_gravity/Asteroid.qml +FilePath: ../src/activities/intro_gravity/Planet.qml +FilePath: ../src/activities/intro_gravity/IntroGravity.qml +FilePath: ../src/activities/intro_gravity/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- land_safe --*************************************** +FilePath: ../src/activities/land_safe/land_safe.js +FilePath: ../src/activities/land_safe/Accelerometer.qml +FilePath: ../src/activities/land_safe/ControlButton.qml +FilePath: ../src/activities/land_safe/LandSafe.qml + ERROR QtQuick version must be 2.6 +FilePath: ../src/activities/land_safe/ActivityInfo.qml + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- lang --*************************************** +FilePath: ../src/activities/lang/lang.js +FilePath: ../src/activities/lang/quiz.js +FilePath: ../src/activities/lang/spell_it.js +FilePath: ../src/activities/lang/lang_api.js +FilePath: ../src/activities/lang/ImageReview.qml +FilePath: ../src/activities/lang/SpellIt.qml +FilePath: ../src/activities/lang/Quiz.qml +FilePath: ../src/activities/lang/MenuScreen.qml +FilePath: ../src/activities/lang/ActivityInfo.qml + WARNING line:36 intro qsTr may not be used +FilePath: ../src/activities/lang/Lang.qml + + + +*********************************-- leftright --*************************************** +FilePath: ../src/activities/leftright/leftright.js +FilePath: ../src/activities/leftright/Leftright.qml +FilePath: ../src/activities/leftright/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- letter-in-word --*************************************** +FilePath: ../src/activities/letter-in-word/letter-in-word.js +FilePath: ../src/activities/letter-in-word/LetterInWord.qml + WARNING line:47 locale qsTr may not be used +FilePath: ../src/activities/letter-in-word/Card.qml +FilePath: ../src/activities/letter-in-word/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR manual: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- lightsoff --*************************************** +FilePath: ../src/activities/lightsoff/lightsoff.js +FilePath: ../src/activities/lightsoff/Lightsoff.qml +FilePath: ../src/activities/lightsoff/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + + + +*********************************-- louis-braille --*************************************** +FilePath: ../src/activities/louis-braille/louis-braille.js +FilePath: ../src/activities/louis-braille/louis_braille_data.js +FilePath: ../src/activities/louis-braille/LouisBraille.qml +FilePath: ../src/activities/louis-braille/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. +FilePath: ../src/activities/louis-braille/ReorderList.qml + + + +*********************************-- magic-hat-minus --*************************************** +FilePath: ../src/activities/magic-hat-minus/magic-hat.js +FilePath: ../src/activities/magic-hat-minus/StarsBar.qml + WARNING line:34 starsColor qsTr may not be used +FilePath: ../src/activities/magic-hat-minus/MagicHat.qml + WARNING line:138 backgroundColor qsTr may not be used + WARNING line:158 backgroundColor qsTr may not be used + WARNING line:190 backgroundColor qsTr may not be used +FilePath: ../src/activities/magic-hat-minus/Hat.qml +FilePath: ../src/activities/magic-hat-minus/Star.qml + WARNING line:37 wantedColor qsTr may not be used +FilePath: ../src/activities/magic-hat-minus/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- magic-hat-plus --*************************************** +FilePath: ../src/activities/magic-hat-plus/MagicHatPlus.qml +FilePath: ../src/activities/magic-hat-plus/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- maze --*************************************** +FilePath: ../src/activities/maze/maze.js +FilePath: ../src/activities/maze/Maze.qml +FilePath: ../src/activities/maze/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING difficulty: 1 may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- mazeinvisible --*************************************** +FilePath: ../src/activities/mazeinvisible/Mazeinvisible.qml +FilePath: ../src/activities/mazeinvisible/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- mazerelative --*************************************** +FilePath: ../src/activities/mazerelative/Mazerelative.qml +FilePath: ../src/activities/mazerelative/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- melody --*************************************** +FilePath: ../src/activities/melody/Melody.qml +FilePath: ../src/activities/melody/ActivityInfo.qml + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- memory --*************************************** +FilePath: ../src/activities/memory/math_util.js +FilePath: ../src/activities/memory/memory.js +FilePath: ../src/activities/memory/memorydataset.js +FilePath: ../src/activities/memory/Memory.qml +FilePath: ../src/activities/memory/CardItem.qml +FilePath: ../src/activities/memory/MemoryCommon.qml +FilePath: ../src/activities/memory/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING difficulty: 1 may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- memory-case-association --*************************************** +FilePath: ../src/activities/memory-case-association/dataset.js +FilePath: ../src/activities/memory-case-association/MemoryCaseAssociation.qml + WARNING line:25 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-case-association/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- memory-case-association-tux --*************************************** +FilePath: ../src/activities/memory-case-association-tux/MemoryCaseAssociationTux.qml + WARNING line:25 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-case-association-tux/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- memory-enumerate --*************************************** +FilePath: ../src/activities/memory-enumerate/dataset.js +FilePath: ../src/activities/memory-enumerate/MemoryEnumerate.qml + WARNING line:29 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-enumerate/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- memory-math-add --*************************************** +FilePath: ../src/activities/memory-math-add/memory-adddataset.js +FilePath: ../src/activities/memory-math-add/MemoryMathAdd.qml + WARNING line:29 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-math-add/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- memory-math-add-minus --*************************************** +FilePath: ../src/activities/memory-math-add-minus/memory-addminusdataset.js +FilePath: ../src/activities/memory-math-add-minus/MemoryMathAddMinus.qml + WARNING line:29 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-math-add-minus/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- memory-math-add-minus-mult-div --*************************************** +FilePath: ../src/activities/memory-math-add-minus-mult-div/memory-addminusmultdivdataset.js +FilePath: ../src/activities/memory-math-add-minus-mult-div/MemoryMathAddMinusMultDiv.qml + WARNING line:29 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-math-add-minus-mult-div/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- memory-math-add-minus-mult-div-tux --*************************************** +FilePath: ../src/activities/memory-math-add-minus-mult-div-tux/memory-addminusmultdivdataset.js +FilePath: ../src/activities/memory-math-add-minus-mult-div-tux/MemoryMathAddMinusMultDivTux.qml + WARNING line:29 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-math-add-minus-mult-div-tux/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- memory-math-add-minus-tux --*************************************** +FilePath: ../src/activities/memory-math-add-minus-tux/MemoryMathAddMinusTux.qml + WARNING line:29 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-math-add-minus-tux/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- memory-math-add-tux --*************************************** +FilePath: ../src/activities/memory-math-add-tux/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. +FilePath: ../src/activities/memory-math-add-tux/MemoryMathAddTux.qml + WARNING line:29 backgroundImg qsTr may not be used + + + +*********************************-- memory-math-div --*************************************** +FilePath: ../src/activities/memory-math-div/memory-divdataset.js +FilePath: ../src/activities/memory-math-div/MemoryMathDiv.qml + WARNING line:29 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-math-div/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- memory-math-div-tux --*************************************** +FilePath: ../src/activities/memory-math-div-tux/MemoryMathDivTux.qml + WARNING line:29 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-math-div-tux/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- memory-math-minus --*************************************** +FilePath: ../src/activities/memory-math-minus/memory-minusdataset.js +FilePath: ../src/activities/memory-math-minus/MemoryMathMinus.qml + WARNING line:29 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-math-minus/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- memory-math-minus-tux --*************************************** +FilePath: ../src/activities/memory-math-minus-tux/MemoryMathMinusTux.qml + WARNING line:25 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-math-minus-tux/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- memory-math-mult --*************************************** +FilePath: ../src/activities/memory-math-mult/memory-multdataset.js +FilePath: ../src/activities/memory-math-mult/MemoryMathMult.qml + WARNING line:29 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-math-mult/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- memory-math-mult-div --*************************************** +FilePath: ../src/activities/memory-math-mult-div/memory-multdivdataset.js +FilePath: ../src/activities/memory-math-mult-div/MemoryMathMultDiv.qml + WARNING line:29 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-math-mult-div/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- memory-math-mult-div-tux --*************************************** +FilePath: ../src/activities/memory-math-mult-div-tux/MemoryMathMultDivTux.qml + WARNING line:29 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-math-mult-div-tux/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- memory-math-mult-tux --*************************************** +FilePath: ../src/activities/memory-math-mult-tux/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. +FilePath: ../src/activities/memory-math-mult-tux/MemoryMathMultTux.qml + WARNING line:29 backgroundImg qsTr may not be used + + + +*********************************-- memory-sound --*************************************** +FilePath: ../src/activities/memory-sound/memorysounddataset.js +FilePath: ../src/activities/memory-sound/MemorySound.qml + WARNING line:30 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-sound/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- memory-sound-tux --*************************************** +FilePath: ../src/activities/memory-sound-tux/MemorySoundTux.qml + WARNING line:29 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-sound-tux/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- memory-tux --*************************************** +FilePath: ../src/activities/memory-tux/MemoryTux.qml + WARNING line:29 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-tux/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING difficulty: 1 may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- memory-wordnumber --*************************************** +FilePath: ../src/activities/memory-wordnumber/dataset.js +FilePath: ../src/activities/memory-wordnumber/MemoryWordnumber.qml + WARNING line:29 backgroundImg qsTr may not be used +FilePath: ../src/activities/memory-wordnumber/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- menu --*************************************** +FilePath: ../src/activities/menu/ConfigurationItem.qml +FilePath: ../src/activities/menu/Menu.qml + WARNING line:84 tag qsTr may not be used + WARNING line:88 tag qsTr may not be used + WARNING line:92 tag qsTr may not be used + WARNING line:96 tag qsTr may not be used + WARNING line:100 tag qsTr may not be used + WARNING line:104 tag qsTr may not be used + WARNING line:108 tag qsTr may not be used + WARNING line:112 tag qsTr may not be used + WARNING line:116 tag qsTr may not be used + WARNING line:120 tag qsTr may not be used + WARNING line:572 textColor qsTr may not be used + WARNING line:598 placeholderTextColor qsTr may not be used +FilePath: ../src/activities/menu/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR credit: "" may not be updated. + + + +*********************************-- mining --*************************************** +FilePath: ../src/activities/mining/mining.js +FilePath: ../src/activities/mining/Mining.qml +FilePath: ../src/activities/mining/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING difficulty: 1 may not be updated. + ERROR demo: false may not be updated. + WARNING line:30 //intro qsTr may not be used + + + +*********************************-- missing-letter --*************************************** +FilePath: ../src/activities/missing-letter/missing-letter.js +FilePath: ../src/activities/missing-letter/MissingLetter.qml + WARNING line:48 locale qsTr may not be used +FilePath: ../src/activities/missing-letter/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR description: "" may not be updated. + WARNING line:31 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- money --*************************************** +FilePath: ../src/activities/money/money.js +FilePath: ../src/activities/money/MoneyCore.qml +FilePath: ../src/activities/money/Money.qml + WARNING line:26 dataset qsTr may not be used +FilePath: ../src/activities/money/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- money_back --*************************************** +FilePath: ../src/activities/money_back/MoneyBack.qml + WARNING line:27 dataset qsTr may not be used +FilePath: ../src/activities/money_back/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- money_back_cents --*************************************** +FilePath: ../src/activities/money_back_cents/MoneyBackCents.qml + WARNING line:27 dataset qsTr may not be used +FilePath: ../src/activities/money_back_cents/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- money_cents --*************************************** +FilePath: ../src/activities/money_cents/MoneyCents.qml + WARNING line:27 dataset qsTr may not be used +FilePath: ../src/activities/money_cents/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- mosaic --*************************************** +FilePath: ../src/activities/mosaic/mosaic.js +FilePath: ../src/activities/mosaic/Mosaic.qml +FilePath: ../src/activities/mosaic/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING difficulty: 1 may not be updated. + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- nine_men_morris --*************************************** +FilePath: ../src/activities/nine_men_morris/nine_men_morris.js +FilePath: ../src/activities/nine_men_morris/DragPoint.qml +FilePath: ../src/activities/nine_men_morris/Piece.qml +FilePath: ../src/activities/nine_men_morris/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. +FilePath: ../src/activities/nine_men_morris/NineMenMorris.qml + WARNING line:183 text qsTr may not be used + WARNING line:244 text qsTr may not be used + + + +*********************************-- nine_men_morris_2players --*************************************** +FilePath: ../src/activities/nine_men_morris_2players/NineMenMorris2players.qml +FilePath: ../src/activities/nine_men_morris_2players/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- note_names --*************************************** +FilePath: ../src/activities/note_names/note_names.js +FilePath: ../src/activities/note_names/resource/dataset_01.qml + ERROR QtQuick version must be 2.6 + WARNING line:28 "clef" qsTr may not be used + WARNING line:32 "clef" qsTr may not be used + WARNING line:36 "clef" qsTr may not be used + WARNING line:40 "clef" qsTr may not be used + WARNING line:44 "clef" qsTr may not be used + WARNING line:48 "clef" qsTr may not be used + WARNING line:52 "clef" qsTr may not be used + WARNING line:56 "clef" qsTr may not be used + WARNING line:60 "clef" qsTr may not be used + WARNING line:64 "clef" qsTr may not be used + WARNING line:68 "clef" qsTr may not be used + WARNING line:72 "clef" qsTr may not be used + WARNING line:76 "clef" qsTr may not be used + WARNING line:80 "clef" qsTr may not be used + WARNING line:84 "clef" qsTr may not be used + WARNING line:88 "clef" qsTr may not be used + WARNING line:92 "clef" qsTr may not be used + WARNING line:96 "clef" qsTr may not be used +FilePath: ../src/activities/note_names/NoteNames.qml + WARNING line:119 clefType qsTr may not be used + WARNING line:253 notesColor qsTr may not be used + WARNING line:298 labelsColor qsTr may not be used +FilePath: ../src/activities/note_names/AdvancedTimer.qml +FilePath: ../src/activities/note_names/ActivityInfo.qml + WARNING line:31 //intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- number_sequence --*************************************** +FilePath: ../src/activities/number_sequence/number_sequence_dataset.js +FilePath: ../src/activities/number_sequence/number_sequence.js +FilePath: ../src/activities/number_sequence/NumberSequence.qml +FilePath: ../src/activities/number_sequence/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- numbers-odd-even --*************************************** +FilePath: ../src/activities/numbers-odd-even/NumbersOddEven.qml + WARNING line:26 data qsTr may not be used + WARNING line:30 data qsTr may not be used + WARNING line:34 data qsTr may not be used + WARNING line:38 data qsTr may not be used +FilePath: ../src/activities/numbers-odd-even/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- paintings --*************************************** +FilePath: ../src/activities/paintings/resource/board/board22_0.qml +FilePath: ../src/activities/paintings/resource/board/board1_0.qml +FilePath: ../src/activities/paintings/resource/board/board7_0.qml +FilePath: ../src/activities/paintings/resource/board/board10_0.qml +FilePath: ../src/activities/paintings/resource/board/board18_0.qml +FilePath: ../src/activities/paintings/resource/board/board9_0.qml +FilePath: ../src/activities/paintings/resource/board/board3_0.qml +FilePath: ../src/activities/paintings/resource/board/board14_0.qml +FilePath: ../src/activities/paintings/resource/board/board12_0.qml +FilePath: ../src/activities/paintings/resource/board/board20_0.qml +FilePath: ../src/activities/paintings/resource/board/board16_0.qml +FilePath: ../src/activities/paintings/resource/board/board5_0.qml +FilePath: ../src/activities/paintings/resource/board/board4_0.qml +FilePath: ../src/activities/paintings/resource/board/board21_0.qml +FilePath: ../src/activities/paintings/resource/board/board15_0.qml +FilePath: ../src/activities/paintings/resource/board/board2_0.qml +FilePath: ../src/activities/paintings/resource/board/board6_0.qml +FilePath: ../src/activities/paintings/resource/board/board17_0.qml +FilePath: ../src/activities/paintings/resource/board/board11_0.qml +FilePath: ../src/activities/paintings/resource/board/board13_0.qml +FilePath: ../src/activities/paintings/resource/board/board8_0.qml +FilePath: ../src/activities/paintings/resource/board/board19_0.qml +FilePath: ../src/activities/paintings/Paintings.qml + WARNING line:32 boardsUrl qsTr may not be used +FilePath: ../src/activities/paintings/ActivityInfo.qml + WARNING difficulty: 1 may not be updated. + WARNING line:35 intro qsTr may not be used + + + +*********************************-- penalty --*************************************** +FilePath: ../src/activities/penalty/penalty.js +FilePath: ../src/activities/penalty/Penalty.qml + WARNING line:91 saveBallState qsTr may not be used +FilePath: ../src/activities/penalty/GoalZone.qml +FilePath: ../src/activities/penalty/Progress.qml + WARNING line:46 from qsTr may not be used + WARNING line:47 to qsTr may not be used +FilePath: ../src/activities/penalty/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING difficulty: 1 may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- photo_hunter --*************************************** +FilePath: ../src/activities/photo_hunter/photo_hunter.js +FilePath: ../src/activities/photo_hunter/PhotoHunter.qml +FilePath: ../src/activities/photo_hunter/Observe.qml +FilePath: ../src/activities/photo_hunter/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- piano_composition --*************************************** +FilePath: ../src/activities/piano_composition/melodies.js +FilePath: ../src/activities/piano_composition/piano_composition.js +FilePath: ../src/activities/piano_composition/NoteNotations.js +FilePath: ../src/activities/piano_composition/MusicElement.qml + WARNING line:78 "1" qsTr may not be used + WARNING line:79 "4" qsTr may not be used + WARNING line:80 "-1" qsTr may not be used + WARNING line:81 "-5" qsTr may not be used + WARNING line:83 "C" qsTr may not be used + WARNING line:85 "C#" qsTr may not be used + WARNING line:86 "Db" qsTr may not be used +FilePath: ../src/activities/piano_composition/OptionsRow.qml +FilePath: ../src/activities/piano_composition/PianoOctaveKeyboard.qml + WARNING line:50 labelsColor qsTr may not be used + WARNING line:135 "C" qsTr may not be used + WARNING line:136 "G" qsTr may not be used + WARNING line:137 "C#" qsTr may not be used + WARNING line:138 "Db" qsTr may not be used +FilePath: ../src/activities/piano_composition/PianoKey.qml +FilePath: ../src/activities/piano_composition/Piano_composition.qml + WARNING line:127 staffLength qsTr may not be used + WARNING line:138 currentType qsTr may not be used + WARNING line:139 restType qsTr may not be used +FilePath: ../src/activities/piano_composition/MelodyList.qml + WARNING line:131 theme qsTr may not be used +FilePath: ../src/activities/piano_composition/LyricsArea.qml +FilePath: ../src/activities/piano_composition/SwitchableOptions.qml +FilePath: ../src/activities/piano_composition/MultipleStaff.qml + WARNING line:40 notesColor qsTr may not be used + WARNING line:246 "elementType_" qsTr may not be used + WARNING line:308 "elementType_" qsTr may not be used +FilePath: ../src/activities/piano_composition/Staff.qml +FilePath: ../src/activities/piano_composition/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR credit: "" may not be updated. + + + +*********************************-- planegame --*************************************** +FilePath: ../src/activities/planegame/planegame.js +FilePath: ../src/activities/planegame/Sequence.qml + WARNING line:27 data qsTr may not be used + WARNING line:31 data qsTr may not be used + WARNING line:35 data qsTr may not be used + WARNING line:39 data qsTr may not be used +FilePath: ../src/activities/planegame/Planegame.qml +FilePath: ../src/activities/planegame/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. +FilePath: ../src/activities/planegame/Plane.qml +FilePath: ../src/activities/planegame/Cloud.qml + + + +*********************************-- play_piano --*************************************** +FilePath: ../src/activities/play_piano/play_piano.js +FilePath: ../src/activities/play_piano/dataset.js +FilePath: ../src/activities/play_piano/PlayPiano.qml + WARNING line:46 backgroundImagesUrl qsTr may not be used +FilePath: ../src/activities/play_piano/ActivityInfo.qml + WARNING difficulty: 1 may not be updated. + ERROR description: "" may not be updated. + WARNING line:34 //intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- play_rhythm --*************************************** +FilePath: ../src/activities/play_rhythm/play_rhythm.js +FilePath: ../src/activities/play_rhythm/PlayRhythm.qml + WARNING line:45 backgroundImagesUrl qsTr may not be used + WARNING line:84 clefType qsTr may not be used +FilePath: ../src/activities/play_rhythm/ActivityInfo.qml + WARNING difficulty: 1 may not be updated. + ERROR description: "" may not be updated. + WARNING line:34 //intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- railroad --*************************************** +FilePath: ../src/activities/railroad/railroad.js +FilePath: ../src/activities/railroad/Loco.qml +FilePath: ../src/activities/railroad/Railroad.qml +FilePath: ../src/activities/railroad/ActivityInfo.qml + WARNING difficulty: 1 may not be updated. + WARNING line:29 //intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- readingh --*************************************** +FilePath: ../src/activities/readingh/readingh.js +FilePath: ../src/activities/readingh/Readingh.qml + WARNING line:54 locale qsTr may not be used + WARNING line:246 theme qsTr may not be used +FilePath: ../src/activities/readingh/ActivityInfo.qml + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- readingv --*************************************** +FilePath: ../src/activities/readingv/Readingv.qml +FilePath: ../src/activities/readingv/ActivityInfo.qml + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- redraw --*************************************** +FilePath: ../src/activities/redraw/redraw.js +FilePath: ../src/activities/redraw/Redraw.qml +FilePath: ../src/activities/redraw/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 //intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- redraw_symmetrical --*************************************** +FilePath: ../src/activities/redraw_symmetrical/RedrawSymmetrical.qml +FilePath: ../src/activities/redraw_symmetrical/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 //intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- renewable_energy --*************************************** +FilePath: ../src/activities/renewable_energy/WindTurbine.qml +FilePath: ../src/activities/renewable_energy/Hydro.qml +FilePath: ../src/activities/renewable_energy/RenewableEnergy.qml +FilePath: ../src/activities/renewable_energy/Wind.qml +FilePath: ../src/activities/renewable_energy/Solar.qml +FilePath: ../src/activities/renewable_energy/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + + + +*********************************-- reversecount --*************************************** +FilePath: ../src/activities/reversecount/reversecount.js +FilePath: ../src/activities/reversecount/ChooseDiceBar.qml +FilePath: ../src/activities/reversecount/Reversecount.qml +FilePath: ../src/activities/reversecount/Tux.qml +FilePath: ../src/activities/reversecount/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- roman_numerals --*************************************** +FilePath: ../src/activities/roman_numerals/RomanNumerals.qml +FilePath: ../src/activities/roman_numerals/ActivityInfo.qml + ERROR description: "" may not be updated. + WARNING line:30 //intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- scalesboard --*************************************** +FilePath: ../src/activities/scalesboard/scalesboard.js +FilePath: ../src/activities/scalesboard/Question.qml +FilePath: ../src/activities/scalesboard/Message.qml +FilePath: ../src/activities/scalesboard/ScaleNumber.qml +FilePath: ../src/activities/scalesboard/Scalesboard.qml +FilePath: ../src/activities/scalesboard/MasseArea.qml +FilePath: ../src/activities/scalesboard/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + + + +*********************************-- scalesboard_weight --*************************************** +FilePath: ../src/activities/scalesboard_weight/ScalesboardWeight.qml +FilePath: ../src/activities/scalesboard_weight/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- scalesboard_weight_avoirdupois --*************************************** +FilePath: ../src/activities/scalesboard_weight_avoirdupois/ScalesboardWeight.qml +FilePath: ../src/activities/scalesboard_weight_avoirdupois/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- share --*************************************** +FilePath: ../src/activities/share/share.js +FilePath: ../src/activities/share/Share.qml +FilePath: ../src/activities/share/resource/board/board9.qml +FilePath: ../src/activities/share/resource/board/board3.qml +FilePath: ../src/activities/share/resource/board/board5.qml +FilePath: ../src/activities/share/resource/board/board0.qml + WARNING line:33 "forceShowBasket" qsTr may not be used +FilePath: ../src/activities/share/resource/board/board8.qml +FilePath: ../src/activities/share/resource/board/board4.qml +FilePath: ../src/activities/share/resource/board/board7.qml +FilePath: ../src/activities/share/resource/board/board6.qml +FilePath: ../src/activities/share/resource/board/board2.qml +FilePath: ../src/activities/share/resource/board/board1.qml +FilePath: ../src/activities/share/WidgetOption.qml +FilePath: ../src/activities/share/CandyWidget.qml + WARNING line:25 src qsTr may not be used +FilePath: ../src/activities/share/BasketWidget.qml + WARNING line:27 src qsTr may not be used + WARNING line:37 nameS qsTr may not be used +FilePath: ../src/activities/share/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR credit: "" may not be updated. +FilePath: ../src/activities/share/DropChild.qml +FilePath: ../src/activities/share/ChildWidget.qml + WARNING line:25 src qsTr may not be used + + + +*********************************-- simplepaint --*************************************** +FilePath: ../src/activities/simplepaint/simplepaint.js +FilePath: ../src/activities/simplepaint/Simplepaint.qml +FilePath: ../src/activities/simplepaint/PaintItem.qml +FilePath: ../src/activities/simplepaint/ActivityInfo.qml + WARNING difficulty: 1 may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- smallnumbers --*************************************** +FilePath: ../src/activities/smallnumbers/Smallnumbers.qml + WARNING line:32 dataSetUrl qsTr may not be used +FilePath: ../src/activities/smallnumbers/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- smallnumbers2 --*************************************** +FilePath: ../src/activities/smallnumbers2/Smallnumbers2.qml + WARNING line:32 dataSetUrl qsTr may not be used +FilePath: ../src/activities/smallnumbers2/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- submarine --*************************************** +FilePath: ../src/activities/submarine/submarine.js +FilePath: ../src/activities/submarine/BallastTank.qml +FilePath: ../src/activities/submarine/Whale.qml +FilePath: ../src/activities/submarine/Submarine.qml +FilePath: ../src/activities/submarine/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR credit: "" may not be updated. +FilePath: ../src/activities/submarine/Controls.qml + + + +*********************************-- sudoku --*************************************** +FilePath: ../src/activities/sudoku/sudoku.js +FilePath: ../src/activities/sudoku/SudokuCase.qml +FilePath: ../src/activities/sudoku/Sudoku.qml +FilePath: ../src/activities/sudoku/SudokuListWidget.qml +FilePath: ../src/activities/sudoku/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- superbrain --*************************************** +FilePath: ../src/activities/superbrain/superbrain.js +FilePath: ../src/activities/superbrain/SearchItem.qml +FilePath: ../src/activities/superbrain/Superbrain.qml + WARNING line:631 "value" qsTr may not be used + WARNING line:632 "value" qsTr may not be used +FilePath: ../src/activities/superbrain/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- tangram --*************************************** +FilePath: ../src/activities/tangram/tangram.js +FilePath: ../src/activities/tangram/dataset.js +FilePath: ../src/activities/tangram/toBeAligned.js +FilePath: ../src/activities/tangram/RotateMouseArea.qml +FilePath: ../src/activities/tangram/ActivityInfo.qml + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. +FilePath: ../src/activities/tangram/Tangram.qml + + + +*********************************-- target --*************************************** +FilePath: ../src/activities/target/target.js +FilePath: ../src/activities/target/Target.qml +FilePath: ../src/activities/target/Arrow.qml +FilePath: ../src/activities/target/TargetItem.qml +FilePath: ../src/activities/target/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + ERROR demo: false may not be updated. + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated. + + + +*********************************-- template --*************************************** +FilePath: ../src/activities/template/template.js + ERROR Replace original GTK VERSION AUTHOR label by your own name + WARNING Replace original QT Quick copyright label email by your own email address +FilePath: ../src/activities/template/Template.qml + ERROR Replace original GTK VERSION AUTHOR label by your own name + WARNING Replace original QT Quick copyright label email by your own email address + WARNING line:59 text qsTr may not be used +FilePath: ../src/activities/template/ActivityInfo.qml + WARNING difficulty: 1 may not be updated. + ERROR author: "Your Name <yy@zz.org>" may not be updated. + WARNING line:27 title qsTr may not be used + ERROR description: "" may not be updated. + WARNING line:30 //intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + ERROR manual: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- tic_tac_toe --*************************************** +FilePath: ../src/activities/tic_tac_toe/tic_tac_toe.js +FilePath: ../src/activities/tic_tac_toe/TicTacToe.qml + WARNING line:149 "2" qsTr may not be used +FilePath: ../src/activities/tic_tac_toe/Piece.qml +FilePath: ../src/activities/tic_tac_toe/ActivityInfo.qml + WARNING line:33 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- tic_tac_toe_2players --*************************************** +FilePath: ../src/activities/tic_tac_toe_2players/Tic_tac_toe_2players.qml +FilePath: ../src/activities/tic_tac_toe_2players/ActivityInfo.qml + WARNING line:33 intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- traffic --*************************************** +FilePath: ../src/activities/traffic/traffic.js +FilePath: ../src/activities/traffic/Car.qml +FilePath: ../src/activities/traffic/Traffic.qml + WARNING line:117 "value" qsTr may not be used + WARNING line:118 "value" qsTr may not be used +FilePath: ../src/activities/traffic/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR goal: "" may not be updated. + ERROR prerequisite: "" may not be updated. + ERROR credit: "" may not be updated. + + + +*********************************-- watercycle --*************************************** +FilePath: ../src/activities/watercycle/Watercycle.qml +FilePath: ../src/activities/watercycle/ActivityInfo.qml + WARNING line:30 //intro qsTr may not be used + ERROR prerequisite: "" may not be updated. + + + +*********************************-- wordsgame --*************************************** +FilePath: ../src/activities/wordsgame/Wordsgame.qml + WARNING line:33 dataSetUrl qsTr may not be used +FilePath: ../src/activities/wordsgame/ActivityInfo.qml + ERROR ActivityInfo.qml does not have "createdInVersion": + + WARNING line:30 intro qsTr may not be used + ERROR credit: "" may not be updated.