i have test in 1.1 i can play withe the mod after i have change dependency verssion in info.json.
I have for this time a problem for copy/paste the game crash with this eror : https://gyazo.com/9c6c4d8acb605e0d8f7f68827fa2026a
I will try to see if I can find a solution by myself, but I have doubts to get there ^^
here is if the code of the function, if a modder comes here is seen where is the problem:
-- On copy paste
script.on_event(defines.events.on_pre_entity_settings_pasted, function(event)
    if (technologyName and not game.players[1].force.technologies[technologyName].researched)
        or not GuiEntities then       
        return    
    end
    local reference
    if GuiEntities[event.destination.name] then
        reference="name"
    elseif GuiEntities[event.destination.type] then
        reference="type"
    end
    if not reference then
        return
    end
    local guiEntities=GuiEntities[event.destination[reference]]
    if event.source[reference]==event.destination[reference] then
        guiEntities.data[getUnitId(event.destination)].globalData.guiData=clone(guiEntities.data[getUnitId(event.source)].globalData.guiData)     
    end
end)