diff --git a/src/activities/mosaic/mosaic.js b/src/activities/mosaic/mosaic.js index 314da5b94..2656f7025 100644 --- a/src/activities/mosaic/mosaic.js +++ b/src/activities/mosaic/mosaic.js @@ -1,92 +1,92 @@ /* GCompris - mosaic.js * * Copyright (C) 2014 Bruno Coudoin * * Authors: * Clement coudoin (GTK+ version) * Bruno.coudoin (Qt Quick port) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ .pragma library .import QtQuick 2.6 as Quick .import "qrc:/gcompris/src/core/core.js" as Core var questionModel var answerModel var selectorModel var url = "qrc:/gcompris/src/activities/mosaic/resource/" var currentLevel = 0 var numberOfLevel var items function start(items_) { items = items_ currentLevel = 0 initLevel() numberOfLevel = items.levels.length } function stop() { } function initLevel() { items.bar.level = currentLevel + 1 items.background.areaWithKeyboardFocus = items.selector items.selectedItem = "" items.nbItems = items.levels[currentLevel].nbOfCells items.questionLayoutColumns = items.levels[currentLevel].layout[0][0] items.questionLayoutRows = items.levels[currentLevel].layout[0][1] items.modelDisplayLayout = items.levels[currentLevel].modelDisplayLayout selectorModel = items.levels[currentLevel].images items.selector.model = selectorModel questionModel = Core.shuffle(selectorModel) items.question.model = questionModel answerModel = new Array() for(var i=0; i < questionModel.length; i++) - answerModel.push("die_0.svg") + answerModel.push("dice_0.svg") items.answer.model = answerModel } function nextLevel() { if(numberOfLevel <= ++currentLevel ) { currentLevel = 0 } initLevel(); } function previousLevel() { if(--currentLevel < 0) { currentLevel = numberOfLevel - 1 } initLevel(); } function answerSelected(index) { if(!items.selectedItem) return items.audioEffects.play("qrc:/gcompris/src/activities/redraw/resource/brush.wav") answerModel[index] = items.selectedItem items.answer.model = answerModel if(answerModel.toString() === questionModel.toString()) { items.bonus.good("flower") } } diff --git a/src/activities/mosaic/resource/1/Data.qml b/src/activities/mosaic/resource/1/Data.qml index 3bbf4b4f5..e4571e674 100644 --- a/src/activities/mosaic/resource/1/Data.qml +++ b/src/activities/mosaic/resource/1/Data.qml @@ -1,80 +1,80 @@ /* GCompris - Data.qml * * Copyright (C) 2020 Deepak Kumar * * Authors: * Deepak Kumar * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ import GCompris 1.0 Data { objective: qsTr("Up to 5 items are placed on single line.") difficulty: 2 property var images: [ - "aquarela_colors.svg", - "giraffe.svg", + "oil_paint.svg", + "tux.svg", "pencil.svg", - "mouse_on_cheese.svg", - "mushroom_house.svg", + "banana.svg", + "mushroom.svg", "pencils_paper.svg", "pencils.svg", - "white_cake.svg", - "die_1.svg", - "die_2.svg", - "die_3.svg", - "die_4.svg", - "die_5.svg", - "die_6.svg", - "die_7.svg", - "die_0.svg", - "digital_die0.svg", - "digital_die1.svg", - "digital_die2.svg", - "digital_die3.svg", - "digital_die4.svg", - "digital_die5.svg", - "digital_die6.svg", - "digital_die7.svg" + "orange.svg", + "dice_1.svg", + "dice_2.svg", + "dice_3.svg", + "dice_4.svg", + "dice_5.svg", + "dice_6.svg", + "dice_7.svg", + "dice_0.svg", + "digital_dice0.svg", + "digital_dice1.svg", + "digital_dice2.svg", + "digital_dice3.svg", + "digital_dice4.svg", + "digital_dice5.svg", + "digital_dice6.svg", + "digital_dice7.svg" ] data: [ { "nbOfCells": 3, "layout": [ [3,1] ], "modelDisplayLayout": "smaller", "images": images.slice(0,3) }, { "nbOfCells": 4, "layout": [ [4,1] ], "modelDisplayLayout": "smaller", "images": images.slice(1,5) }, { "nbOfCells": 5, "layout": [ [5,1] ], "modelDisplayLayout": "smaller", "images": images.slice(2,7) } ] } diff --git a/src/activities/mosaic/resource/2/Data.qml b/src/activities/mosaic/resource/2/Data.qml index 93e57319d..812efb2b9 100644 --- a/src/activities/mosaic/resource/2/Data.qml +++ b/src/activities/mosaic/resource/2/Data.qml @@ -1,80 +1,80 @@ /* GCompris - Data.qml * * Copyright (C) 2020 Deepak Kumar * * Authors: * Deepak Kumar * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ import GCompris 1.0 Data { objective: qsTr("Up to 8 items are placed on single line.") difficulty: 2 property var images: [ - "aquarela_colors.svg", - "giraffe.svg", + "oil_paint.svg", + "tux.svg", "pencil.svg", - "mouse_on_cheese.svg", - "mushroom_house.svg", + "banana.svg", + "mushroom.svg", "pencils_paper.svg", "pencils.svg", - "white_cake.svg", - "die_1.svg", - "die_2.svg", - "die_3.svg", - "die_4.svg", - "die_5.svg", - "die_6.svg", - "die_7.svg", - "die_0.svg", - "digital_die0.svg", - "digital_die1.svg", - "digital_die2.svg", - "digital_die3.svg", - "digital_die4.svg", - "digital_die5.svg", - "digital_die6.svg", - "digital_die7.svg" + "orange.svg", + "dice_1.svg", + "dice_2.svg", + "dice_3.svg", + "dice_4.svg", + "dice_5.svg", + "dice_6.svg", + "dice_7.svg", + "dice_0.svg", + "digital_dice0.svg", + "digital_dice1.svg", + "digital_dice2.svg", + "digital_dice3.svg", + "digital_dice4.svg", + "digital_dice5.svg", + "digital_dice6.svg", + "digital_dice7.svg" ] data: [ { "nbOfCells": 6, "layout": [ [6,1] ], "modelDisplayLayout": "smaller", "images": images.slice(3,9) }, { "nbOfCells": 7, "layout": [ [7,1] ], "modelDisplayLayout": "smaller", "images": images.slice(2,9) }, { "nbOfCells": 8, "layout": [ [8,1] ], "modelDisplayLayout": "smaller", "images": images.slice(5,13) } ] } diff --git a/src/activities/mosaic/resource/3/Data.qml b/src/activities/mosaic/resource/3/Data.qml index c0f15f989..3bcb845f9 100644 --- a/src/activities/mosaic/resource/3/Data.qml +++ b/src/activities/mosaic/resource/3/Data.qml @@ -1,120 +1,120 @@ /* GCompris - Data.qml * * Copyright (C) 2020 Deepak Kumar * * Authors: * Deepak Kumar * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ import GCompris 1.0 Data { objective: qsTr("Up to 16 items are placed on multiple lines.") difficulty: 3 property var images: [ - "aquarela_colors.svg", - "giraffe.svg", + "oil_paint.svg", + "tux.svg", "pencil.svg", - "mouse_on_cheese.svg", - "mushroom_house.svg", + "banana.svg", + "mushroom.svg", "pencils_paper.svg", "pencils.svg", - "white_cake.svg", - "die_1.svg", - "die_2.svg", - "die_3.svg", - "die_4.svg", - "die_5.svg", - "die_6.svg", - "die_7.svg", - "die_0.svg", - "digital_die0.svg", - "digital_die1.svg", - "digital_die2.svg", - "digital_die3.svg", - "digital_die4.svg", - "digital_die5.svg", - "digital_die6.svg", - "digital_die7.svg" + "orange.svg", + "dice_1.svg", + "dice_2.svg", + "dice_3.svg", + "dice_4.svg", + "dice_5.svg", + "dice_6.svg", + "dice_7.svg", + "dice_0.svg", + "digital_dice0.svg", + "digital_dice1.svg", + "digital_dice2.svg", + "digital_dice3.svg", + "digital_dice4.svg", + "digital_dice5.svg", + "digital_dice6.svg", + "digital_dice7.svg" ] data: [ { "nbOfCells": 8, "layout": [ [4,2] ], "modelDisplayLayout": "sameSize", "images": images.slice(0,8) }, { "nbOfCells": 8, "layout": [ [4,2] ], "modelDisplayLayout": "sameSize", "images": images.slice(1,9) }, { "nbOfCells": 8, "layout": [ [4,2] ], "modelDisplayLayout": "sameSize", "images": images.slice(2,10) }, { "nbOfCells": 8, "layout": [ [4,2] ], "modelDisplayLayout": "sameSize", "images": images.slice(3,11) }, { "nbOfCells": 16, "layout": [ [8,2] ], "modelDisplayLayout": "sameSize", "images": images.slice(4,20) }, { "nbOfCells": 16, "layout": [ [8,2] ], "modelDisplayLayout": "sameSize", "images": images.slice(5,21) }, { "nbOfCells": 16, "layout": [ [8,2] ], "modelDisplayLayout": "sameSize", "images": images.slice(6,22) }, { "nbOfCells": 16, "layout": [ [8,2] ], "modelDisplayLayout": "sameSize", "images": images.slice(2,18) } ] } diff --git a/src/activities/mosaic/resource/4/Data.qml b/src/activities/mosaic/resource/4/Data.qml index ab46ffd80..ffcfd4714 100644 --- a/src/activities/mosaic/resource/4/Data.qml +++ b/src/activities/mosaic/resource/4/Data.qml @@ -1,120 +1,120 @@ /* GCompris - Data.qml * * Copyright (C) 2020 Deepak Kumar * * Authors: * Deepak Kumar * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ import GCompris 1.0 Data { objective: qsTr("Up to 24 items are placed on multiple lines.") difficulty: 4 property var images: [ - "aquarela_colors.svg", - "giraffe.svg", + "oil_paint.svg", + "tux.svg", "pencil.svg", - "mouse_on_cheese.svg", - "mushroom_house.svg", + "banana.svg", + "mushroom.svg", "pencils_paper.svg", "pencils.svg", - "white_cake.svg", - "die_1.svg", - "die_2.svg", - "die_3.svg", - "die_4.svg", - "die_5.svg", - "die_6.svg", - "die_7.svg", - "die_0.svg", - "digital_die0.svg", - "digital_die1.svg", - "digital_die2.svg", - "digital_die3.svg", - "digital_die4.svg", - "digital_die5.svg", - "digital_die6.svg", - "digital_die7.svg" + "orange.svg", + "dice_1.svg", + "dice_2.svg", + "dice_3.svg", + "dice_4.svg", + "dice_5.svg", + "dice_6.svg", + "dice_7.svg", + "dice_0.svg", + "digital_dice0.svg", + "digital_dice1.svg", + "digital_dice2.svg", + "digital_dice3.svg", + "digital_dice4.svg", + "digital_dice5.svg", + "digital_dice6.svg", + "digital_dice7.svg" ] data: [ { "nbOfCells": 24, "layout": [ [8,3] ], "modelDisplayLayout": "sameSize", "images": images.slice(0,24) }, { "nbOfCells": 24, "layout": [ [8,3] ], "modelDisplayLayout": "sameSize", "images": images.slice(0,24) }, { "nbOfCells": 24, "layout": [ [8,3] ], "modelDisplayLayout": "sameSize", "images": images.slice(0,24) }, { "nbOfCells": 24, "layout": [ [8,3] ], "modelDisplayLayout": "sameSize", "images": images.slice(0,24) }, { "nbOfCells": 24, "layout": [ [8,3] ], "modelDisplayLayout": "sameSize", "images": images.slice(0,24) }, { "nbOfCells": 24, "layout": [ [8,3] ], "modelDisplayLayout": "sameSize", "images": images.slice(0,24) }, { "nbOfCells": 24, "layout": [ [8,3] ], "modelDisplayLayout": "sameSize", "images": images.slice(0,24) }, { "nbOfCells": 24, "layout": [ [8,3] ], "modelDisplayLayout": "sameSize", "images": images.slice(0,24) } ] } diff --git a/src/activities/mosaic/resource/README b/src/activities/mosaic/resource/README index e66a7e32e..76ceeb39f 100644 --- a/src/activities/mosaic/resource/README +++ b/src/activities/mosaic/resource/README @@ -1,56 +1,28 @@ -Copyright: nicubunu, 2007 -License: Public domain -Files: -white_cake.svg - -Copyright: valessiobrito, 2007 -License: Public domain -Files: -aquarela_colors.svg - -Copyright: klsgfx, 2008 -License: Public domain -Files: -pencils_paper.svg - -Copyright: lemmling, 2008 -License: Public domain -Files: -mushroom_house.svg -mouse_on_cheese.svg - -Copyright: dear_theophilus, 2011 -License: Public domain +Copyright: Timothée Giet, 2020 +Licence: CC-BY-SA 4.0 Files: +background.svg +banana.svg +dice_0.svg +dice_1.svg +dice_2.svg +dice_3.svg +dice_4.svg +dice_5.svg +dice_6.svg +dice_7.svg +digital_dice0.svg +digital_dice1.svg +digital_dice2.svg +digital_dice3.svg +digital_dice4.svg +digital_dice5.svg +digital_dice6.svg +digital_dice7.svg +mushroom.svg +oil_paint.svg +orange.svg pencil.svg - -Copyright: ryanlerch, 2011 -License: Public domain -Files: -giraffe.svg - -Copyright: freevectorfinder, 2012 -License: Public domain -Files: +pencils_paper.svg pencils.svg - -Copyright: 2000, 2008 Bruno Coudoin and others -License: GPLv3 -Files: -background.svg -die_0.svg -die_1.svg -die_2.svg -die_3.svg -die_4.svg -die_5.svg -die_6.svg -die_7.svg -digital_die0.svg -digital_die1.svg -digital_die2.svg -digital_die3.svg -digital_die4.svg -digital_die5.svg -digital_die6.svg -digital_die7.svg +tux.svg diff --git a/src/activities/mosaic/resource/aquarela_colors.svg b/src/activities/mosaic/resource/aquarela_colors.svg deleted file mode 100644 index a765374d6..000000000 --- a/src/activities/mosaic/resource/aquarela_colors.svg +++ /dev/null @@ -1,347 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - Aquarela Colors - 2007-07-17T21:16:23 - aquarela, aquarela, cartoon, cartoon, clip art, clipart, colors, colors, image, media, paint, paint, png, public domain, svg, tool, tool, - http://openclipart.org/detail/4421/aquarela-colors-by-valessiobrito-4421 - - - valessiobrito - - - - - aquarela - cartoon - clip art - clipart - colors - image - media - paint - png - public domain - svg - tool - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/background.svg b/src/activities/mosaic/resource/background.svg index d8536ea29..45ae0cb4d 100644 --- a/src/activities/mosaic/resource/background.svg +++ b/src/activities/mosaic/resource/background.svg @@ -1,13239 +1,197 @@ + id="defs2349"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + id="linearGradient5413"> + + + - - - - - - + units="px" + inkscape:snap-global="false" + inkscape:window-width="1884" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" /> + id="metadata2352"> image/svg+xml + 2020 + + + Timothée Giet + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + transform="translate(0,-11.249983)"> + + d="m 535.83814,136.85989 c -32.6547,11.65716 -1.15627,38.53278 -35.33205,53.93375 -40.45688,4.86422 -272.88357,-7.92189 -327.56095,-19.43977 -54.67737,-11.51788 59.21471,-28.70297 112.15916,-38.36146 92.27515,-16.83352 168.70304,-10.78203 250.73384,3.86748 z" + id="path12045" + sodipodi:nodetypes="ccssc" /> - - - - - + d="m -19.11032,116.84673 c -8.857232,38.29437 -55.697544,87.32668 51.11672,104.71327 106.81426,17.38659 435.8838,3.85605 491.11265,-0.65852 l -9.72864,-59.76691 C 198.91148,196.97479 53.709326,57.157411 -19.11032,116.84673 Z" + id="path12043" + sodipodi:nodetypes="csccc" /> - + sodipodi:nodetypes="cccccccccccccccc" /> + sodipodi:nodetypes="cccccccccccccccc" /> + sodipodi:nodetypes="cccccccccccccccc" /> + sodipodi:nodetypes="cccccccccccccccc" /> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + sodipodi:nodetypes="cccccccccccccccc" /> + sodipodi:nodetypes="cccccccccccccccc" /> + sodipodi:nodetypes="cccccccccccccccc" /> + sodipodi:nodetypes="cccccccccccccccc" /> + sodipodi:nodetypes="cccccccccccccccc" /> + sodipodi:nodetypes="cccccccccccccccc" /> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + d="m -27.967552,191.42681 c 9.054511,23.09373 6.533055,77.49365 39.740667,78.31628 l 483.106495,3.06125 c 5.94221,3.75467 70.64137,-76.53097 39.57873,-82.14095 -105.64436,-19.07959 -317.57715,-24.28983 -562.425892,0.76342 z" + id="path12041" + sodipodi:nodetypes="cccsc" /> - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/banana.svg b/src/activities/mosaic/resource/banana.svg new file mode 100644 index 000000000..72172c698 --- /dev/null +++ b/src/activities/mosaic/resource/banana.svg @@ -0,0 +1,88 @@ + + + + + + + + image/svg+xml + + + 2015 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/dice_0.svg b/src/activities/mosaic/resource/dice_0.svg new file mode 100644 index 000000000..3579f2c30 --- /dev/null +++ b/src/activities/mosaic/resource/dice_0.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/dice_1.svg b/src/activities/mosaic/resource/dice_1.svg new file mode 100644 index 000000000..7b230990c --- /dev/null +++ b/src/activities/mosaic/resource/dice_1.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/dice_2.svg b/src/activities/mosaic/resource/dice_2.svg new file mode 100644 index 000000000..4a6429563 --- /dev/null +++ b/src/activities/mosaic/resource/dice_2.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/dice_3.svg b/src/activities/mosaic/resource/dice_3.svg new file mode 100644 index 000000000..e44fb69bb --- /dev/null +++ b/src/activities/mosaic/resource/dice_3.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/dice_4.svg b/src/activities/mosaic/resource/dice_4.svg new file mode 100644 index 000000000..bc0e9c286 --- /dev/null +++ b/src/activities/mosaic/resource/dice_4.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/dice_5.svg b/src/activities/mosaic/resource/dice_5.svg new file mode 100644 index 000000000..fdd78db2f --- /dev/null +++ b/src/activities/mosaic/resource/dice_5.svg @@ -0,0 +1,135 @@ + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/dice_6.svg b/src/activities/mosaic/resource/dice_6.svg new file mode 100644 index 000000000..b723d0868 --- /dev/null +++ b/src/activities/mosaic/resource/dice_6.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/dice_7.svg b/src/activities/mosaic/resource/dice_7.svg new file mode 100644 index 000000000..a315c5bb3 --- /dev/null +++ b/src/activities/mosaic/resource/dice_7.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/die_0.svg b/src/activities/mosaic/resource/die_0.svg deleted file mode 100644 index 41658d4d2..000000000 --- a/src/activities/mosaic/resource/die_0.svg +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - dado 1 - 2010-11-16T20:18:42 - The six sides of a dice - http://openclipart.org/detail/96079/dado-1-by-rg1024 - - - rg1024 - - - - - clip art - clipart - dice - game - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/die_1.svg b/src/activities/mosaic/resource/die_1.svg deleted file mode 100644 index 14e3f0100..000000000 --- a/src/activities/mosaic/resource/die_1.svg +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - dado 1 - 2010-11-16T20:18:42 - The six sides of a dice - http://openclipart.org/detail/96079/dado-1-by-rg1024 - - - rg1024 - - - - - clip art - clipart - dice - game - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/die_2.svg b/src/activities/mosaic/resource/die_2.svg deleted file mode 100644 index 13e628687..000000000 --- a/src/activities/mosaic/resource/die_2.svg +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - dado 2 - 2010-11-16T20:18:43 - The six sides of a dice - http://openclipart.org/detail/96085/dado-2-by-rg1024 - - - rg1024 - - - - - clip art - clipart - dice - game - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/die_3.svg b/src/activities/mosaic/resource/die_3.svg deleted file mode 100644 index 5fa6e02d4..000000000 --- a/src/activities/mosaic/resource/die_3.svg +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - dado 3 - 2010-11-16T20:18:43 - The six sides of a dice - http://openclipart.org/detail/96091/dado-3-by-rg1024 - - - rg1024 - - - - - clip art - clipart - dice - game - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/die_4.svg b/src/activities/mosaic/resource/die_4.svg deleted file mode 100644 index 3c28a8210..000000000 --- a/src/activities/mosaic/resource/die_4.svg +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - dado 4 - 2010-11-16T20:18:44 - The six sides of a dice - http://openclipart.org/detail/96097/dado-4-by-rg1024 - - - rg1024 - - - - - clip art - clipart - dice - game - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/die_5.svg b/src/activities/mosaic/resource/die_5.svg deleted file mode 100644 index a043a5a2d..000000000 --- a/src/activities/mosaic/resource/die_5.svg +++ /dev/null @@ -1,252 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - dado 5 - 2010-11-16T20:18:44 - The six sides of a dice - http://openclipart.org/detail/96103/dado-5-by-rg1024 - - - rg1024 - - - - - clip art - clipart - dice - game - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/die_6.svg b/src/activities/mosaic/resource/die_6.svg deleted file mode 100644 index 0f6df8ab8..000000000 --- a/src/activities/mosaic/resource/die_6.svg +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - dado 6 - 2010-11-16T20:18:45 - The six sides of a dice - http://openclipart.org/detail/96109/dado-6-by-rg1024 - - - rg1024 - - - - - clip art - clipart - dice - game - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/die_7.svg b/src/activities/mosaic/resource/die_7.svg deleted file mode 100644 index 77f08ef43..000000000 --- a/src/activities/mosaic/resource/die_7.svg +++ /dev/null @@ -1,313 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - dado 6 - 2010-11-16T20:18:45 - The six sides of a dice - http://openclipart.org/detail/96109/dado-6-by-rg1024 - - - rg1024 - - - - - clip art - clipart - dice - game - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/digital_dice0.svg b/src/activities/mosaic/resource/digital_dice0.svg new file mode 100644 index 000000000..578c0c034 --- /dev/null +++ b/src/activities/mosaic/resource/digital_dice0.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/digital_dice1.svg b/src/activities/mosaic/resource/digital_dice1.svg new file mode 100644 index 000000000..183840cfc --- /dev/null +++ b/src/activities/mosaic/resource/digital_dice1.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/digital_dice2.svg b/src/activities/mosaic/resource/digital_dice2.svg new file mode 100644 index 000000000..235f088e4 --- /dev/null +++ b/src/activities/mosaic/resource/digital_dice2.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/digital_dice3.svg b/src/activities/mosaic/resource/digital_dice3.svg new file mode 100644 index 000000000..3afc16308 --- /dev/null +++ b/src/activities/mosaic/resource/digital_dice3.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/digital_dice4.svg b/src/activities/mosaic/resource/digital_dice4.svg new file mode 100644 index 000000000..283413329 --- /dev/null +++ b/src/activities/mosaic/resource/digital_dice4.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/digital_dice5.svg b/src/activities/mosaic/resource/digital_dice5.svg new file mode 100644 index 000000000..8a02454d7 --- /dev/null +++ b/src/activities/mosaic/resource/digital_dice5.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/digital_dice6.svg b/src/activities/mosaic/resource/digital_dice6.svg new file mode 100644 index 000000000..656435e16 --- /dev/null +++ b/src/activities/mosaic/resource/digital_dice6.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/digital_dice7.svg b/src/activities/mosaic/resource/digital_dice7.svg new file mode 100644 index 000000000..69af071c1 --- /dev/null +++ b/src/activities/mosaic/resource/digital_dice7.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/digital_die0.svg b/src/activities/mosaic/resource/digital_die0.svg deleted file mode 100644 index d500c8077..000000000 --- a/src/activities/mosaic/resource/digital_die0.svg +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - Digital Die 0 - 2011-02-07T05:24:51 - Reimagined a six sided die for an LCD-like display. Different than your usual dice, displays digital pips around a circle. - http://openclipart.org/detail/117277/digital-die-0-by-orsonj - - - orsonj - - - - - clip art - clipart - dice - die - digital - game - - - - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/digital_die1.svg b/src/activities/mosaic/resource/digital_die1.svg deleted file mode 100644 index 490f58ea5..000000000 --- a/src/activities/mosaic/resource/digital_die1.svg +++ /dev/null @@ -1,306 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - Digital Die 1 - 2011-02-07T05:24:51 - Reimagined a six sided die for an LCD-like display. Different than your usual dice, displays digital pips around a circle. - http://openclipart.org/detail/117283/digital-die-1-by-orsonj - - - orsonj - - - - - clip art - clipart - dice - die - digital - game - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/digital_die2.svg b/src/activities/mosaic/resource/digital_die2.svg deleted file mode 100644 index edc3cec54..000000000 --- a/src/activities/mosaic/resource/digital_die2.svg +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - Digital Die 2 - 2011-02-07T05:24:51 - Reimagined a six sided die for an LCD-like display. Different than your usual dice, displays digital pips around a circle. - http://openclipart.org/detail/117289/digital-die-2-by-orsonj - - - orsonj - - - - - clip art - clipart - dice - die - digital - game - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/digital_die3.svg b/src/activities/mosaic/resource/digital_die3.svg deleted file mode 100644 index 00b1c7670..000000000 --- a/src/activities/mosaic/resource/digital_die3.svg +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - Digital Die 3 - 2011-02-07T05:24:51 - Reimagined a six sided die for an LCD-like display. Different than your usual dice, displays digital pips around a circle. - http://openclipart.org/detail/117295/digital-die-3-by-orsonj - - - orsonj - - - - - clip art - clipart - dice - die - digital - game - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/digital_die4.svg b/src/activities/mosaic/resource/digital_die4.svg deleted file mode 100644 index c7e161d49..000000000 --- a/src/activities/mosaic/resource/digital_die4.svg +++ /dev/null @@ -1,299 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - Digital Die 4 - 2011-02-07T05:24:51 - Reimagined a six sided die for an LCD-like display. Different than your usual dice, displays digital pips around a circle. - http://openclipart.org/detail/117301/digital-die-4-by-orsonj - - - orsonj - - - - - clip art - clipart - dice - die - digital - game - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/digital_die5.svg b/src/activities/mosaic/resource/digital_die5.svg deleted file mode 100644 index fb19d7020..000000000 --- a/src/activities/mosaic/resource/digital_die5.svg +++ /dev/null @@ -1,298 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - Digital Die 5 - 2011-02-07T05:24:52 - Reimagined a six sided die for an LCD-like display. Different than your usual dice, displays digital pips around a circle. - http://openclipart.org/detail/117307/digital-die-5-by-orsonj - - - orsonj - - - - - clip art - clipart - dice - die - digital - game - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/digital_die6.svg b/src/activities/mosaic/resource/digital_die6.svg deleted file mode 100644 index 7985c7068..000000000 --- a/src/activities/mosaic/resource/digital_die6.svg +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - Digital Die 6 - 2011-02-07T05:24:52 - Reimagined a six sided die for an LCD-like display. Different than your usual dice, displays digital pips around a circle. - http://openclipart.org/detail/117313/digital-die-6-by-orsonj - - - orsonj - - - - - clip art - clipart - dice - die - digital - game - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/digital_die7.svg b/src/activities/mosaic/resource/digital_die7.svg deleted file mode 100644 index 894c56a22..000000000 --- a/src/activities/mosaic/resource/digital_die7.svg +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - Digital Die 7 - 2011-02-07T05:24:52 - Reimagined a six sided die for an LCD-like display. Different than your usual dice, displays digital pips around a circle. - http://openclipart.org/detail/117319/digital-die-7-by-orsonj - - - orsonj - - - - - clip art - clipart - dice - die - digital - game - - - - - - - - - - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/giraffe.svg b/src/activities/mosaic/resource/giraffe.svg deleted file mode 100644 index cc43e170c..000000000 --- a/src/activities/mosaic/resource/giraffe.svg +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - New Cartoon Giraffe - 2011-09-15T12:42:14 - a redone version of the giraffe - http://openclipart.org/detail/160609/new-cartoon-giraffe-by-ryanlerch - - - ryanlerch - - - - - animal - cartoon - clip art - clipart - giraffe - mammal zoo - safari - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/mouse_on_cheese.svg b/src/activities/mosaic/resource/mouse_on_cheese.svg deleted file mode 100644 index 155aa51db..000000000 --- a/src/activities/mosaic/resource/mouse_on_cheese.svg +++ /dev/null @@ -1,280 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - Cartoon mouse on top of a cheese - 2008-07-07T17:57:24 - My previously published mouse on a cheese - http://openclipart.org/detail/17633/cartoon-mouse-on-top-of-a-cheese-by-lemmling - - - lemmling - - - - - animal - cartoon - cheese - clip art - clipart - colour - food - how i did it - image - mammal - media - mouse - png - public domain - svg - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/mushroom.svg b/src/activities/mosaic/resource/mushroom.svg new file mode 100644 index 000000000..fd8dc4b13 --- /dev/null +++ b/src/activities/mosaic/resource/mushroom.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/mushroom_house.svg b/src/activities/mosaic/resource/mushroom_house.svg deleted file mode 100644 index 7e4172c08..000000000 --- a/src/activities/mosaic/resource/mushroom_house.svg +++ /dev/null @@ -1,318 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - Mushroom house - 2008-07-12T17:11:24 - Inspired by http://openclipart.org/media/files/artmaster/7331 - http://openclipart.org/detail/17760/mushroom-house-by-lemmling - - - lemmling - - - - - cartoon - clip art - clipart - colour - house - image - media - mushroom - png - public domain - svg - toadstool - - - - - - - - - - - diff --git a/src/activities/mosaic/resource/oil_paint.svg b/src/activities/mosaic/resource/oil_paint.svg new file mode 100644 index 000000000..68a062b71 --- /dev/null +++ b/src/activities/mosaic/resource/oil_paint.svg @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/orange.svg b/src/activities/mosaic/resource/orange.svg new file mode 100644 index 000000000..0e3803719 --- /dev/null +++ b/src/activities/mosaic/resource/orange.svg @@ -0,0 +1,105 @@ + + + + + + + + image/svg+xml + + + 2015 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/pencil.svg b/src/activities/mosaic/resource/pencil.svg index 44673be61..b56894cdd 100644 --- a/src/activities/mosaic/resource/pencil.svg +++ b/src/activities/mosaic/resource/pencil.svg @@ -1,193 +1,134 @@ + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + inkscape:snap-global="true"> + + + id="metadata836"> - + image/svg+xml - - - - Openclipart - - - Pencil - 2011-02-24T01:58:58 - clip art, clipart, edit, icon, pencil, school, write, - http://openclipart.org/detail/122155/pencil-by-dear_theophilus + + 2020 - dear_theophilus + Timothée Giet - - - clip art - clipart - edit - icon - pencil - school - write - - + + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/pencils.svg b/src/activities/mosaic/resource/pencils.svg index 30de61fce..f2585006b 100644 --- a/src/activities/mosaic/resource/pencils.svg +++ b/src/activities/mosaic/resource/pencils.svg @@ -1,195 +1,192 @@ + + + + image/svg+xmlOpenclipartpencil2012-06-06T22:34:07A pencil cliparthttp://openclipart.org/detail/170449/pencil-by-freevectorfinder-170449freevectorfinderartartisticblueclip artclipartcollectioncolorcolorfulcreativedesigndraweducationequipmenterasergreenillustrationinscriptionjobnoticeobjectofficepencilscalableschoolset \ No newline at end of file + inkscape:snap-global="true"> + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/pencils_paper.svg b/src/activities/mosaic/resource/pencils_paper.svg index 84b5a0d00..d8f52c57e 100644 --- a/src/activities/mosaic/resource/pencils_paper.svg +++ b/src/activities/mosaic/resource/pencils_paper.svg @@ -1,272 +1,217 @@ + + + id="defs833" /> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + inkscape:zoom="7.919596" + inkscape:cx="-9.5704742" + inkscape:cy="15.755402" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + units="px" + inkscape:window-width="1884" + inkscape:window-height="1051" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:snap-global="false"> + + + id="metadata836"> - + image/svg+xml - - - - Openclipart - - - Pencils - 2008-07-01T15:30:25 - Much more simple pencils then most of the others one can find here in OCAL. - http://openclipart.org/detail/17520/pencils-by-klsgfx + + 2020 - klsgfx + Timothée Giet - - - cartoon - clip art - clipart - colour - image - media - pencil - png - public domain - svg - tool - - + + rdf:about="http://creativecommons.org/licenses/by-sa/4.0/"> + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/tux.svg b/src/activities/mosaic/resource/tux.svg new file mode 100644 index 000000000..e9c314c5d --- /dev/null +++ b/src/activities/mosaic/resource/tux.svg @@ -0,0 +1,266 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + 2020 + + + Timothée Giet + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/activities/mosaic/resource/white_cake.svg b/src/activities/mosaic/resource/white_cake.svg deleted file mode 100644 index 0085aaebb..000000000 --- a/src/activities/mosaic/resource/white_cake.svg +++ /dev/null @@ -1,346 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Openclipart - - - White cake - 2007-07-18T14:09:27 - A white cake (vanilla maybe?) - http://openclipart.org/detail/4463/white-cake-by-nicubunu - - - nicubunu - - - - - cake - clip art - clipart - dessert - food - image - media - png - public domain - svg - - - - - - - - - - -