¿Cómo consigo enlaces Magnet con Deluge o incluso es posible?


4

Dicen que ya no es compatible? ¿Por qué el botón hash de información está en gris?

¿Alguien sabe cómo puedo obtener enlaces Magnet con Deluge Web UI Client?

Por cierto, mi versión de cliente de diluvio es 1.3.5


Hola, esto no tiene nada que ver con Raspberry Pi, así que tendré que migrar a otra parte. Espero que esté bien.
Jivings

@Jivings hola, técnicamente estaba usando RPi pero accedí a él a través de SSH desde mi PC xD, supongo que es un problema general. no biggie: d
psyko666

Respuestas:


2

De acuerdo a AskUbuntu , el soporte magnético en la WebUI se agregó en 1.3.4 en mayo. ¿Estás seguro de que estás al día?


Acabo de editarlo hace un tiempo, el mío es 1.3.5, no sé realmente lo que está sucediendo pero, intente agregar archivos torrent desde kat.ph, no me funcionó, ni siquiera el imán uri
psyko666

4

Hago clic derecho en el enlace imán y en "Copiar dirección de enlace" o similar, y luego copio ese enlace en el diluvio en "agregar torrent".


no funcionó para mí :(
psyko666

Funciona para mí, cuando agrego torrent como una url, y simplemente pego el enlace del imán allí.
gajdipajti

2
También descubrí que puede arrastrar y soltar el enlace magnético en el cliente.
Impulss

2

Para Mac, usuario de GitHub. Señor-kamina ha escrito Diluvio-imán-controlador , una solución de AppleScript. Se instala en la carpeta Aplicaciones y se ejecuta una vez para asociarse con magnet: enlaces, esas URL's deberían abrirse automáticamente en Deluge a partir de entonces.

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

1
Si bien este enlace puede responder a la pregunta, es mejor incluir las partes esenciales de la respuesta aquí y proporcionar el enlace de referencia. Las respuestas de solo enlace pueden volverse inválidas si la página vinculada cambia. - De la opinión
DavidPostill

Bueno, sin copiar descaradamente el código AppleScript del autor aquí, ¿no estoy seguro de qué preferiría que me escribiera? Creo que la información esencial está ahí: alguien ha escrito una solución AppleScript que mitiga el problema para los usuarios de Mac, y puede encontrarla aquí, en GitHub, donde él eligió alojarla.
Chris

Esta respuesta no tendrá sentido si se elimina el enlace de GitHub. Siempre puede copiar el código aquí, siempre que proporcione la atribución adecuada. El código de licencia no lo impide.
DavidPostill

3
Hecho. Aunque todavía no estoy encantado con esto. El enlace contiene una aplicación AppleScript previamente empaquetada que solo necesita descargarse, moverse y hacer clic. Siento que publicar todo el código aquí hace que un usuario piense que tiene que iniciar AppleScript y crear su propia aplicación, lo cual es realmente innecesario.
Chris
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.