Skip to content
This repository has been archived by the owner on Jan 17, 2024. It is now read-only.

Commit

Permalink
updated to v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michael811125 committed Nov 7, 2023
1 parent aea4fda commit 193a05a
Show file tree
Hide file tree
Showing 8 changed files with 840 additions and 625 deletions.
24 changes: 24 additions & 0 deletions Assets/InfiniteScrollView/Scripts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
## CHANGELOG

## [1.5.0] - 2023-11-07
- Added DataOrder.
```C#
public enum DataOrder
{
Normal,
Reverse
}
```
- Added lastVisibleRangeSize param in InfiniteScrollView.
```C#
public float lastVisibleRangeSize { get; protected set; }
```
- Renamed RefreshCellVisibilityWithCheck to RefreshVisibleCells in InfiniteScrollView.
```C#
public void RefreshVisibleCells()
```
- Renamed RefreshCellVisibility to DoRefreshVisibleCells in InfiniteScrollView.
```C#
protected abstract void DoRefreshVisibleCells();
```
- Removed RefreshAndCheckVisibleInfo from InfiniteScrollView.
- Optimized code and refresh efficiency.

## [1.4.1] - 2023-11-03
- Fixed Refresh method default value bug issue (disabledRefreshCells = false).
- Added SnapFirst and SnapMiddle in InfiniteScrollView.
Expand Down

Large diffs are not rendered by default.

284 changes: 158 additions & 126 deletions Assets/InfiniteScrollView/Scripts/Runtime/HorizontalInfiniteScrollView.cs

Large diffs are not rendered by default.

Loading

0 comments on commit 193a05a

Please sign in to comment.