Como obtenho links magnéticos com o Deluge ou é possível?

4

Eles dizem que não é mais compatível? Por que o botão de hash de informações fica cinza?

Alguém sabe como obtenho links Magnet com o Deluge Web UI Client?

BTW, minha versão do cliente do Deluge é 1.3.5

    
por psyko666 25.01.2013 / 15:13

3 respostas

2

De acordo com AskUbuntu , suporte a ímã em o WebUI foi adicionado em 1.3.4 em maio. Tem certeza de que você está atualizado?

    
por 25.01.2013 / 19:29
3

Eu clico com o botão direito do mouse no link magnético e "Copiar endereço do link" ou similar, e depois copio esse link para o dilúvio em "adicionar torrente".

    
por 26.01.2013 / 00:51
2

Para o Mac, o usuário Lord-Kamina do GitHub escreveu Dilúvio-Magnet-Handler , uma solução alternativa AppleScript. Instalado na pasta Aplicativos e executado uma vez para associar-se a magnet: links, essas URLs devem abrir automaticamente no Deluge depois disso.

on quit
    try
        tell application "System Events" to tell process "Deluge"
            activate
            set frontmost to true
            windows where title contains "Add Torrents"
            if result is not {} then perform action "AXRaise" of item 1 of result
        end tell
    end try
end quit

on open location this_URL
    try
        tell application "Finder" to set delugePath to POSIX path of (application file id "org.deluge" as string)
        set appExists to true
    on error
        set appExists to false
        display alert "Deluge.app must be installed in order to use this plug-in." as critical
        return
    end try
    set delugeArgument to quoted form of this_URL
    try
        tell application "Deluge" to activate
    end try
    do shell script (quoted form of (delugePath & "/Contents/MacOS/Deluge") & " add " & delugeArgument & "; return;")
    quit
end open location
tell application "Finder" to set thisPath to (POSIX path of (application file id "org.deluge.MagnetURIHandler" as string))
log thisPath
set lsToolRead to do shell script (quoted form of (thisPath & "/Contents/Resources/lstool") & " read url magnet")
if (lsToolRead contains "Magnet Handler.app") then
    display dialog "Magnet Handler is already the default application to handle magnet URIs" buttons {"OK"} with title "Notification" with icon POSIX file (thisPath & "/Contents/Resources/deluge_magnet.icns")
else
    try
        set dialogResult to display dialog "Magnet Handler has not been configured to handle magnet URIs.

Would you like to do this now?" buttons {"Yes", "No"} default button "Yes" cancel button "No" with title "Notification" with icon POSIX file (thisPath & "/Contents/Resources/deluge_magnet.icns")
    on error number -128
    end try
    try
        if button returned of dialogResult is "Yes" then
            do shell script (quoted form of (thisPath & "/Contents/Resources/lstool") & " write url magnet org.deluge.MagnetURIHandler")
            display dialog "Magnet Handler has now been configured as the default application to handle magnet URIs" buttons {"OK"} with title "Notification" with icon POSIX file (thisPath & "/Contents/Resources/deluge_magnet.icns")

        end if
    end try
end if
quit
    
por 22.04.2016 / 08:15

Tags