# Update News v4.1.1 2020/07/23 Fix RecyclerView Adapter hased notify data changed that RecyclerViewStickyHeadItemDecoration won't refresh. v4.1 2019/12/27 1. Fix RecyclerViewStickyHeadItemDecoration bug. 2. Add ignoreTypes for RecyclerViewLinearSpaceItemDecoration.Builder. v4.0 2019/10/23 * RecyclerViewItemDecoration changes to RecyclerViewLinearItemDecoration and RecyclerViewGridItemDecoration (not support color with alpha). * RecyclerViewSpaceDecoration changes to RecyclerViewLinearSpaceItemDecoration and RecyclerViewGridSpaceItemDecoration ( support StaggeredGridLayoutManager) . v3.1 2019/9/20 Fix fit RecyclerView padding for LinearLayoutManger. v3.0 2019/07/2nd change to androidx libs。 2018/11/27th add RecyclerViewStickyHeadItemDecoration, auto make group view type to sticky head mode. 2018/4/4th * add a new attribute "ignoreType" to filter the viewTypes(int array) which are no need to draw ItemDecoration, meanwhile if the first child of ReyclerView is the ignore viewType,the "firstLineVisible" attributes won't work, the lastest child of ReyclerView with "lastLineVisible" attributes as well. 2018/3/15th * remove StickyHeadItemDecoration. 2017/12/20th * Upgrate algorithm,not including StickyHeadItemDecoration. 2017/10/25th * add sticky head style that it can auto get your group view if you tell it the viewtype of group series. It can completely auto compatible the group view that need to be shown on the top stickily.Only support this layout orientation -- LinearLayoutManager.VERTICAL. 2017/9/8th * optimize draw and compatible LayoutManager. * remove two attributes mode and parent. * add RecyclerViewSpaceItemDecoration to build spacing diver. * update sample. It can completely auto compatible the orientation of LayoutManager. 2017/7/3rd * optimize draw lines for grid mode. * remove old methods that deprecated. * add two new attributes gridHorizontalSpacing and gridVerticalSpacing for grid mode with pure or gap lines. 2017/5/27th * add compatible method to compatible with support v7 LayoutManager. If you don't understand the orientation of this RecyclerViewItemDecoration common tool class,just use builder.parent(recycelerView) instead of builder.mode(orientaion), it can automatic compatible with the layoutmanager of RecyclerView. 2017/5/23rd * add gridBottomVisible,gridTopVisible,gridLeftVisible,gridRightVisible params for MODE_GRID. You can control the borders' visibility of grid mode,it's up to you make them shown or hidden(default is hidden). * optimizate algorithm. 2017/4/15th * add Builder for RecyclerViewItemDecoration to create. * add params paddingStart and paddingEnd for MODE_HORIZONTAL and MODE_VERTICAL. * add params firstLineVisible and lastLineVisible for MODE_HORIZONTAL and MODE_VERTICAL.