Package Details: jdownloader2 latest-19

Git Clone URL: https://aur.archlinux.org/jdownloader2.git (read-only, click to copy)
Package Base: jdownloader2
Description: Download manager, written in Java, for one-click hosting sites like Rapidshare and MEGA. Uses its own updater.
Upstream URL: https://jdownloader.org/
Keywords: download hoster internet jdownloader manager oneclick
Licenses: GPL
Submitter: None
Maintainer: C0rn3j
Last Packager: C0rn3j
Votes: 422
Popularity: 2.38
First Submitted: 2011-09-07 23:08 (UTC)
Last Updated: 2023-12-08 11:45 (UTC)

Dependencies (4)

Required by (0)

Sources (21)

Pinned Comments

d-air1 commented on 2024-02-12 08:48 (UTC)

Might need to put the "updates itself" message in bold. Looks like someone once again flagged this package as out of date.

Latest Comments

1 2 3 4 5 6 .. 13 Next › Last »

d-air1 commented on 2024-02-12 08:48 (UTC)

Might need to put the "updates itself" message in bold. Looks like someone once again flagged this package as out of date.

carsme commented on 2023-12-09 08:57 (UTC)

Might be interesting to some - I just published an SVN package for JDownloader that builds from source (except bundled dependencies): https://aur.archlinux.org/packages/jdownloader2-svn

C0rn3j commented on 2023-12-08 11:48 (UTC)

I took over this package.

I've skimmed the comments and fixed what I could for now, if anyone has an issue other than the changePath() function that I'll look at later and the 3 INSTALL calls that should be handled by hooks, let me know.

I got rid of the wget dependency and rewrote the script that used it for curl, if wget was actually required for JDownloader in some way, please let me know so I can add it back.

korimitsu commented on 2023-05-28 08:59 (UTC)

I'll mark it as out of date until changes are made to meet XDG.

sant0s commented on 2023-05-07 08:35 (UTC)

Could you please update changePath() to something like this to respect the XDG Directory Specification?

function changePath(){
  # check the groups of the current loggedin users
  groups | grep -q -E '(\s|^)jdownloader(\s|$)' >/dev/null
  if [ "$?" -eq  0 ] || isRoot ; then
    export JD_SCOPE="global"
    echo "[global JDownloader scope]"
    umask u=rwx,g=rwx,o=rx
    cd '/opt/JDownloader'
  else
    export JD_SCOPE="user"
    echo "[user JDownloader scope]"
    mkdir -p "${XDG_DATA_HOME}/jdownloader2"
    cd "${XDG_DATA_HOME}/jdownloader2"
  fi
}

evh5150 commented on 2023-02-06 12:18 (UTC) (edited on 2023-02-07 22:43 (UTC) by evh5150)

An update has broken this for me. One line from the error is: Illegal reflective access by org.appwork.utils.ReflectionUtils

EDIT: fixed by making a later version of OpenJDK the default.

lollilol commented on 2022-09-05 16:13 (UTC)

I fixed the font issue by putting --> _JAVA_OPTIONS='-Dawt.useSystemAAFontSettings=on' <-- in $HOME/.profile and then signing out

Creto commented on 2022-05-19 21:54 (UTC)

I temporarily solved my problem with installing JDownloader2 by installing zlib-git https://forum.biglinux.com.br/t/solucao-quanto-ao-erro-no-jdownloader2/1696

Nanook commented on 2022-04-24 23:25 (UTC) (edited on 2022-04-24 23:30 (UTC) by Nanook)

@achilleas8095 & @mezzocorso: it's an issue with zlib 1.2.12; (temporarily) downgrading it to 1.2.11 fixes it. See issues on JDownloader forums and zlib issue #46.