Skip to content

Releases: JOSM/Mapillary

v2.0.0-beta.8

27 Apr 21:54
v2.0.0-beta.8
791ef63
Compare
Choose a tag to compare
v2.0.0-beta.8 Pre-release
Pre-release
Various performance related fixes

v2.0.0-beta.7: Fix an issue where Mapillary would not autopopulate in changeset sources

18 Apr 14:24
v2.0.0-beta.7
d154416
Compare
Choose a tag to compare

v2.0.0-beta.6: Fix JOSM #21998: NPE on image download

06 Apr 21:18
v2.0.0-beta.6
84b47d1
Compare
Choose a tag to compare
This reworks the download system, so it should be more robust.

v2.0.0-beta.5

10 Mar 13:55
v2.0.0-beta.5
ae72e34
Compare
Choose a tag to compare
v2.0.0-beta.5 Pre-release
Pre-release
Fix JOSM #21921: NPE in VectorDataSetUtils#tryRead

v2.0.0-beta.4

07 Mar 15:32
v2.0.0-beta.4
ce92381
Compare
Choose a tag to compare
v2.0.0-beta.4 Pre-release
Pre-release
Fix JOSM #21914

v2.0.0-beta.3: JOSM #21871: Computed altitude and location can be wrong

17 Feb 13:29
v2.0.0-beta.3
4bc863b
Compare
Choose a tag to compare
  • Lint fixes (PMD)
  • JOSM #21871: Computed altitude and location can be wildly wrong

v2.0.0-beta.2: Fix JOSM #20274, #21717, and #21817

01 Feb 18:01
v2.0.0-beta.2
bc3d3d9
Compare
Choose a tag to compare

v2.0.0-beta.2

  • JOSM #20274: Cannot zoom in to detail.
    • Mapillary has added an API field for thumb_original_url, which has the original (processed) image.
    • Breaking change: getWidth/getHeight from MapillaryCache now require a parameter (can be null).
  • JOSM #21717: add filter to display only images that are not panoramas
    • The filter allows users to see all images, panoramic images, or non-panoramic images, depending upon their choice.
  • JOSM #21817: NPE in MapillaryImageEntry#read
    • This is caused by old image urls. We've reset the maximum age for the image metadata to be cached to be the same as mirror.maxtime (advanced preferences). This defaults to 7 days (down from 700 days).

v2.0.0-beta.1: Fix JOSM #21791 and #21530

25 Jan 22:48
v2.0.0-beta.1
5c90a9a
Compare
Choose a tag to compare

What's Changed

v2.0.0-beta.1

  • JOSM #21791: IOOBE in OffsetUtils#getOffsetLocation
  • JOSM #21530: Disable Mapillary tag insert when no Mapillary image selected.

v2.0.0-alpha.50

09 Dec 20:22
v2.0.0-alpha.50
19808e1
Compare
Choose a tag to compare
v2.0.0-alpha.50 Pre-release
Pre-release

What's Changed

v2.0.0-alpha.50

UI and OOM improvements

  • MapillaryImageEntry: Use SoftReferences to avoid OOM
  • Avoid blocking EDT when image is initially clicked

Full Changelog: v1.5.37...v2.0.0-alpha.50

v2.0.0-alpha.49: Fix JOSM #21603 and #21604, significantly improve map performance

29 Nov 13:26
v2.0.0-alpha.49
5e04f09
Compare
Choose a tag to compare
* JOSM #21603: AE: ImageViewerDialog instance not created
* JOSM #21604: MapillaryImageUtils: Check for null
* ImageDetection: Don't get detections for unknown images.
* MapillaryLayer: Improve rendering performance

  Fix an expensive recurrent call by storing initial results and passing
  to required locations.

  getSelectedNodes took up 60%+ of time spent in drawImageMarker, which
  took up ~75% of the time in paintWithLock. This means getSelectedNodes
  took up ~46% of the processing time in the paintWithLock method.

  getSelectedNodes now takes up 0.15% of the time in the paintWithLock
  method.

Signed-off-by: Taylor Smock <[email protected]>