Package Details: jdownloader2 latest-21

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: LicenseRef-GPL-3.0+proprietary
Submitter: None
Maintainer: C0rn3j
Last Packager: C0rn3j
Votes: 433
Popularity: 1.90
First Submitted: 2011-09-07 23:08 (UTC)
Last Updated: 2024-10-17 15:08 (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 .. 14 Next › Last »

C0rn3j commented on 2024-10-17 15:09 (UTC)

@bluetail looks to me like you should be setting that yourself more globally, and it looks to be the wrong var for non-dead Java.

https://wiki.archlinux.org/title/Java#Gray_window,_applications_not_resizing_with_WM,_menus_immediately_closing

bluetail commented on 2024-09-30 20:07 (UTC)

Maintainer:

Please change jdownloader.desktop so it will not be blank in sway / wayland window managers. specific: Exec=env _JAVA_AWT_WM_NONREPARENTING=1 JDownloader

[Desktop Entry]
Type=Application
Name=JDownloader
Icon=jdownloader
TryExec=JDownloader
Exec=env _JAVA_AWT_WM_NONREPARENTING=1 JDownloader
Terminal=false
Categories=Application;Network;
StartupWMClass=jd-Main

seanfire99 commented on 2024-07-24 19:25 (UTC)

I can not paste anything i can copy just fine from browsers and my password-manager but i can not paste into this app making it unusable.

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.