Package Details: yed 1:3.24-1

Git Clone URL: https://aur.archlinux.org/yed.git (read-only, click to copy)
Package Base: yed
Description: Very powerful graph editor written in java
Upstream URL: http://www.yworks.com/en/products_yed_about.html
Licenses: custom
Submitter: fatmike
Maintainer: Bevan
Last Packager: Bevan
Votes: 249
Popularity: 0.086367
First Submitted: 2009-03-08 11:56 (UTC)
Last Updated: 2024-07-06 18:45 (UTC)

Dependencies (2)

Required by (0)

Sources (4)

Pinned Comments

balazsbotond commented on 2021-02-23 14:21 (UTC)

In case you need HiDPI support, run:

# $EDITOR $(which yed)

And add the -Dsun.java2d.uiScale=2.0 option to the java command, like:

/usr/bin/java -Dsun.java2d.uiScale=2.0 -jar /usr/share/java/yed/yed.jar "$@"

Latest Comments

« First ‹ Previous 1 .. 4 5 6 7 8 9 10 11 12 Next › Last »

<deleted-account> commented on 2012-11-07 20:21 (UTC)

I've found two bugs in the PKGBUILD 1) The checksum for yEd-3.9.2.zip is incorrect, it should be ed4a1328b73d643a1a9f805c9e789793. 2) There are two jars within the archive yEd-3.9.2.zip: yed.jar and vectorgraphics.jar. Both have to be copied to /usr/share/yed (currently, only yed.jar is copied to that location)

<deleted-account> commented on 2012-11-07 19:41 (UTC)

The checksum for yEd-3.9.2.zip is incorrect, it should be ed4a1328b73d643a1a9f805c9e789793.

Bevan commented on 2012-09-24 09:35 (UTC)

@laser_b: Thanks for your comment. I will test if it works for me (because jotomo stated differently in June) and if it does I'll change it here.

laser_b commented on 2012-09-24 09:23 (UTC)

I think the Exec command in the desktop file should be modified. Currently it is not possible to doubleclick on a graphml file to open it with yed (at least not in nautilus). But current version of yed seems to support opening more than one file via argument. Therefore it should read "Exec=yed %f" instead of just "Exec=yed".

Fallback commented on 2012-07-18 16:59 (UTC)

@Bevan that was the problem thank you anyways :) yed is working

Bevan commented on 2012-07-17 19:44 (UTC)

@Fallback: This seems to be a local problem. Error 23 means "Write error. Curl couldn't write data to a local filesystem or similar." Maybe your /tmp directory is on a full partition?

Fallback commented on 2012-07-17 19:23 (UTC)

Have a problem downloading yed curl: (23) Failed writing body (785 != 1420)

Bevan commented on 2012-06-16 12:23 (UTC)

@jotomo: Thank you very much for that. I applied your changes to the package.

jotomo commented on 2012-06-16 12:15 (UTC)

I've put a diff here http://pastebin.com/r2sHSHqZ

jotomo commented on 2012-06-16 11:36 (UTC)

I ran into some trouble configuring Eclipse to open files with yed, so here's what I did to make it work. 1) The desktop file has the content of the yed script duplicated. Generally, the Exec=... portion of the desktop file calls/delegates to a script/binary under /usr/bin. I'd suggest apapting this pattern as this removes the duplication. 2) In the yed script: the @* part is only partially right, it should read "$@" (including the double quotes, see the bash manpage section PARAMETERS->Special Parameters on * and @). Note that yed does not support opening more than one file via argument.