source: josm/trunk/src/org/openstreetmap/josm/data/osm/visitor/paint

Revision Log Mode:


Legend:

Added
Modified
Copied or renamed
Diff Rev Age Author Log Message
(edit) @11722   7 years michael2402 Do not include text label in area style - use a separate class and …
(edit) @11719   7 years michael2402 Extract label placement strategy to new method.
(edit) @11716   7 years michael2402 Skip drawing empty names.
(edit) @11696   7 years michael2402 Move offset iterator to new file.
(edit) @11674   7 years michael2402 Add Javadoc to icon drawing functions. Fix AreaElement#equals/hashCode.
(edit) @11671   7 years michael2402 See #10176: Nicer stroke for icons of selected areas.
(edit) @11670   7 years michael2402 See #10176: Make icon-image work for areas. Icon is displayed at …
(edit) @11553   7 years Don-vip refactor handling of null values - use Java 8 Optional where possible
(edit) @11537   7 years Don-vip sonar - fb-contrib:CCNE_COMPARE_CLASS_EQUALS_NAME - Correctness - …
(edit) @11452   7 years Don-vip sonar - fb-contrib:SEO_SUBOPTIMAL_EXPRESSION_ORDER - Performance - …
(edit) @11385   7 years Don-vip sonar - squid:S1066 - Collapsible "if" statements should be merged
(edit) @11360   7 years bastiK fixed #10387 - efficiency for "inside(...)" function in MapCSS
(edit) @11357   7 years Don-vip findbugs - SIC_INNER_SHOULD_BE_STATIC_ANON
(edit) @11351   7 years Don-vip findbugs - SE_BAD_FIELD_INNER_CLASS
(edit) @11313   7 years Don-vip findbugs - NP_NULL_PARAM_DEREF
(edit) @11294   7 years simon04 Fix http://errorprone.info/bugpattern/NarrowingCompoundAssignment
(edit) @11285   7 years michael2402 More Javadoc for AreaElement
(edit) @11190   7 years Don-vip fix warnings caused by r11147
(edit) @11148   8 years michael2402 Fix #13636: Use clipping for images on a line (RepeatImageElement).
(edit) @11147   8 years michael2402 Fix 13636: Use line clipping for computing the one way arrows, too.
(edit) @11144   8 years michael2402 Fix #13793: Clip paths in a way that let's the dashes stay in place.
(edit) @11117   8 years simon04 fix #13591 - Change in multipolygon is not recognized by …
(edit) @11100   8 years Don-vip sonar - squid:S2148 - Underscores should be used to make large numbers …
(edit) @11090   8 years simon04 fix #13743 - Draw segment order numbers on selected way
(edit) @11087   8 years Don-vip sonar - squid:S1141 - Try-catch blocks should not be nested
(edit) @11060   8 years simon04 Checkstyle, fix deprecated usage
(edit) @11054   8 years michael2402 Add more crash report info to the StyledMapRenderer. See #13665
(edit) @11038   8 years simon04 Use Relation.getMemberPrimitivesList where possible to avoid …
(edit) @11027   8 years michael2402 See #13636: Speed up map paint by clipping the way segments.
(edit) @10953   8 years Don-vip sonar - squid:S3655 - Optional value should only be accessed after …
(edit) @10942   8 years Don-vip sonar - squid:S2325 - "private" methods that don't access instance …
(edit) @10925   8 years Don-vip see #11924 - fix javadoc warnings seen with jdk9b133
(edit) @10887   8 years Don-vip fix #13385 - rendering artifacts (patch by Gerd Petermann)
(edit) @10884   8 years Don-vip fix #13427 - in wireframe mode, some line segments are invisible …
(edit) @10875   8 years Don-vip fix #13413 - Clean ImproveWayAccuracyAction, add new class …
(edit) @10874   8 years Don-vip fix #13412 - Clean up DrawAction, add StrokeProperty (patch by …
(edit) @10869   8 years Don-vip fix #13402 - Shift+P (make parallel ways copy) causes crash (patch by …
(edit) @10857   8 years Don-vip see #13306 - remove unused LineClip class
(edit) @10856   8 years Don-vip fix #13375 - Fix icon rendering (patch by michael2402) - gsoc-core + …
(edit) @10842   8 years Don-vip fix #13375 - Fix icon rendering (patch by michael2402) - gsoc-core
(edit) @10829   8 years Don-vip see #13306 - fix wrong version number
(edit) @10827   8 years Don-vip fix #13306 - Make map paint code use double coordinates (patch by …
(edit) @10824   8 years Don-vip see #13309 - Caching and notifying preferences (patch by michael2402) …
(edit) @10747   8 years Don-vip sonar - squid:S1228 - Packages should have a javadoc file …
(edit) @10697   8 years Don-vip fix #13258 - Pull benchmark code out of renderer (patch by …
(edit) @10662   8 years Don-vip see #12472, fix #13230, fix #13225, fix #13228 - disable …
(edit) @10656   8 years Don-vip see #12472 - fix warning "ReferenceEquality"
(edit) @10655   8 years Don-vip see #12472 - fix warning "OperatorPrecedence"
(edit) @10626   8 years Don-vip simplify handling of ignored/traced exceptions
(edit) @10600   8 years Don-vip see #11390 - sonar - squid:S1609 - Java 8: @FunctionalInterface …
(edit) @10469   8 years Don-vip sonar - squid:S1166 - Exception handlers should preserve the original …
(edit) @10378   8 years Don-vip Checkstyle 6.19: enable SingleSpaceSeparator and fix violations
(edit) @10345   8 years Don-vip fix #12937 - Use the new LayerChangeListener (patch by michael2402) - …
(edit) @10312   8 years Don-vip sonar - squid:S2384 - Mutable members should not be stored or returned …
(edit) @10307   8 years Don-vip change log level to trace
(edit) @10303   8 years Don-vip sonar - squid:S2164 - Math should not be performed on floats
(edit) @10254   8 years Don-vip sonar - squid:S1948 - Fields in a "Serializable" class should either …
(edit) @10247   8 years Don-vip findbugs - DLS_DEAD_LOCAL_STORE_OF_NULL
(edit) @10244   8 years Don-vip findbugs - BIT_SIGNED_CHECK
(edit) @10216   8 years Don-vip findbugs - SF_SWITCH_NO_DEFAULT + various sonar fixes
(edit) @10181   8 years Don-vip sonar - squid:S2184 - Math operands should be cast before assignment
(edit) @10179   8 years Don-vip sonar - squid:AssignmentInSubExpressionCheck - Assignments should not …
(edit) @10000   8 years Don-vip sonar - fix various issues
(edit) @9978   8 years Don-vip sonar - remove useless initializations
(edit) @9952   8 years simon04 see #11516 - Compute multipolygon area, include in MapCSS, JOSM search
(edit) @9854   8 years Don-vip sonar - squid:S2272 - "Iterator.next()" methods should throw …
(edit) @9802   8 years bastiK fix NPE
(edit) @9800   8 years stoecker fix r9798 - variable is not used in JOSM, but in tests
(edit) @9798   8 years stoecker fix Coverity issues 1351364 and 1351265
(edit) @9793   8 years Don-vip checkstyle
(edit) @9788   8 years bastiK Jenkins truncates stdout, try to shorten it a bit
(edit) @9786   8 years bastiK new mappaint performance test tests different features separately
(edit) @9351   8 years simon04 Refactoring: use Fork/Join Tasks for parallel execution
(edit) @9284   8 years bastiK refactor some code from StyleCache into separate classes (see #9891)
(edit) @9278   8 years bastiK move ElemStyle classes to new package, rename to (Style)Element
(edit) @9243   8 years Don-vip javadoc update
(edit) @9102   8 years bastiK fixed #12182 - Plus sign (add node on way) renders different depending …
(edit) @9099   8 years bastiK mapcss partial fill: move threshold parameter ([9063]) into the mapcss …
(edit) @9082   8 years bastiK mapcss partial fill: remove [9061] code & turn it on again (see #12104)
(edit) @9079   8 years Don-vip update to CheckStyle 6.13
(edit) @9077   8 years bastiK mapcss: partial fill - fix linecap (see #12104)
(edit) @9076   8 years bastiK mapcss: partial fill - fix for [9063] - use scale instead of circum …
(edit) @9075   8 years Don-vip pmd - Useless qualified this usage in the same class
(edit) @9073   8 years Don-vip checkstyle - Comments Indentation
(edit) @9071   8 years bastiK mappaint partial fill: turn off margin on both sites for unclosed area …
(edit) @9067   8 years Don-vip sonar - Immutable Field
(edit) @9065   8 years Don-vip checkstyle
(edit) @9063   8 years bastiK mapcss: partial fill - if partial fill would only leave a small gap in …
(edit) @9061   8 years bastiK mappaint partial fill: render unclosed areas differently (margin on …
(edit) @9059   8 years Don-vip checkstyle
(edit) @9032   8 years bastiK mapcss / partial fill: multipolygon inners now closed loop without …
(edit) @9019   8 years Don-vip fix #12112 - Use java.util.Properties to read REVISION file in the …
(edit) @9017   8 years bastiK mapcss: fix partial fill for incomplete multipolygons (see #12104)
(edit) @9016   8 years bastiK mapcss: minor improvement for drawing of unclosed areas (see #12104)
(edit) @9008   8 years bastiK see #12104 - mapcss: partial filling of areas (fill-extent) for fill-image
(edit) @9005   8 years bastiK see #12104 - mapcss: add option for partial filling of areas (inspired …
(edit) @9002   8 years bastiK mappaint: added Einstein-pref to set text antialiasing hint (see …
(edit) @8994   8 years bastiK fixed #12025 - text along line rendering for bi-directional text
(edit) @8968   8 years Don-vip update javadoc
(edit) @8958   8 years Don-vip update javadoc + checkstyle fix + update presets links
Note: See TracRevisionLog for help on using the revision log.