Simon Legner
Simon Legner
This will be fixed when merging #224.
Maybe also allow searching for `www=*musicpd.org*` in order to find https://repology.org/api/v1/project/mpd Maybe also allow searching for `name=nodejs-webpack` on `repo=aur` in order to find https://repology.org/api/v1/project/node:webpack
JOSM developer here. We've already been setting `RenderingHints.KEY_ANTIALIASING` to `RenderingHints.VALUE_ANTIALIAS_ON`, see https://github.com/openstreetmap/josm/blob/master/src/org/openstreetmap/josm/tools/ImageProvider.java#L1639-L1652 Adding the additional hints does not make a difference. Here is the result I obtain when adding all...
Wow, following https://stackoverflow.com/a/13236994/205629 (the `paintComponent` part) makes a positive difference to the text rendering, but not to the rendered icons:  ```diff diff --git a/src/org/openstreetmap/josm/actions/AboutAction.java b/src/org/openstreetmap/josm/actions/AboutAction.java index 505db8eb7..6899cb60c 100644 ---...
Dropping the clipping from `RenderableElement` results in an anti-aliased (but otherwise ugly) logo:  ```diff diff --git a/src/com/kitfox/svg/RenderableElement.java b/src/com/kitfox/svg/RenderableElement.java index 8d0a2e8fd..46566e551 100644 --- a/src/com/kitfox/svg/RenderableElement.java +++ b/src/com/kitfox/svg/RenderableElement.java @@ -122,47 +122,6 @@...
I found an interesting blog post from 2006 about clipping in Java: [Java 2D Trickery: Soft Clipping](http://web.archive.org/web/20120603053853/http://weblogs.java.net/blog/campbell/archive/2006/07/java_2d_tricker.html) For @JOSM, we currently target Java 8+ (there are outstanding issues before we...
This PR should resolve the following bug: [Bug 64564](https://bz.apache.org/bugzilla/show_bug.cgi?id=64564) - JUnitLauncher Task should support @ParameterizedTest (custom display name)
I see: the `file` section is not the correct section. The PBF compression could be included in the `--extended` output ```diff ... Data: Bounding box: (8.8331793,46.2012502,18.994394,49.3061616) Timestamps: First: 2005-07-28T14:53:13Z Last:...
I gave up waiting and replaced vue-svg-loader with a minimalistic loader stored in the project itself: ```js // vue-svg-loader.js module.exports = function VueSvgLoader(svg) { this.cacheable(); return `${svg}`; }; // vue.config.js...
@pmrotule, you're right. My use-case was to load [bootstrap-icons](https://icons.getbootstrap.com/). Thus, using svgo seemed unnecessary.