Skip to content

Commit f98f10d

Browse files
author
Eugene Kazaev
committed
Disabled the fix for IOS 15.1 in IOS 15.2 as it was fixed by Apple in UICollectionView. See https://feedbackassistant.apple.com/feedback/9727104
1 parent 95aefee commit f98f10d

File tree

67 files changed

+1393
-1347
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+1393
-1347
lines changed

ChatLayout.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'ChatLayout'
3-
s.version = '1.1.16'
3+
s.version = '1.1.17'
44
s.summary = 'Chat UI Library. It uses custom UICollectionViewLayout to provide you full control over the presentation.'
55
s.swift_version = '5.2'
66

ChatLayout/Classes/Core/ChatLayout.swift

+16-9
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,8 @@ public final class ChatLayout: UICollectionViewLayout {
115115
/// There is an issue in IOS 15.1 that proposed content offset is being ignored by the UICollectionView when user is scrolling.
116116
/// This flag enables a hack to compensate this offset later. You can disable it if necessary.
117117
/// Bug reported: https://feedbackassistant.apple.com/feedback/9727104
118+
///
119+
/// PS: This issue was fixed in 15.2
118120
public var enableIOS15_1Fix: Bool = true
119121

120122
// MARK: Internal Properties
@@ -183,7 +185,7 @@ public final class ChatLayout: UICollectionViewLayout {
183185
// MARK: IOS 15.1 fix flags
184186

185187
private var needsIOS15_1IssueFix: Bool {
186-
return enableIOS15_1Fix && isIOS15_1orHigher && isUserInitiatedScrolling && !controller.isAnimatedBoundsChange
188+
return enableIOS15_1Fix && isIOS15_1orHigher && !isIOS15_2orHigher && isUserInitiatedScrolling && !controller.isAnimatedBoundsChange
187189
}
188190

189191
// MARK: Constructors
@@ -497,8 +499,7 @@ public final class ChatLayout: UICollectionViewLayout {
497499
let isAboveBottomEdge = originalAttributes.frame.minY.rounded() <= visibleBounds.maxY.rounded()
498500

499501
if heightDifference != 0,
500-
(keepContentOffsetAtBottomOnBatchUpdates && controller.contentHeight(at: state).rounded() + heightDifference > visibleBounds.height.rounded())
501-
|| isUserInitiatedScrolling,
502+
(keepContentOffsetAtBottomOnBatchUpdates && controller.contentHeight(at: state).rounded() + heightDifference > visibleBounds.height.rounded()) || isUserInitiatedScrolling,
502503
isAboveBottomEdge {
503504
context.contentOffsetAdjustment.y += heightDifference
504505
invalidationActions.formUnion([.shouldInvalidateOnBoundsChange])
@@ -958,20 +959,26 @@ extension ChatLayout {
958959

959960
}
960961

961-
@inline(__always)
962-
var isIOS13orHigher: Bool {
962+
var isIOS13orHigher: Bool = {
963963
if #available(iOS 13.0, *) {
964964
return true
965965
} else {
966966
return false
967967
}
968-
}
968+
}()
969969

970-
@inline(__always)
971-
var isIOS15_1orHigher: Bool {
970+
var isIOS15_1orHigher: Bool = {
972971
if #available(iOS 15.1, *) {
973972
return true
974973
} else {
975974
return false
976975
}
977-
}
976+
}()
977+
978+
var isIOS15_2orHigher: Bool = {
979+
if #available(iOS 15.2, *) {
980+
return true
981+
} else {
982+
return false
983+
}
984+
}()

Example/Podfile.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
PODS:
2-
- ChatLayout (1.1.16):
3-
- ChatLayout/Ultimate (= 1.1.16)
4-
- ChatLayout/Core (1.1.16)
5-
- ChatLayout/Extras (1.1.16):
2+
- ChatLayout (1.1.17):
3+
- ChatLayout/Ultimate (= 1.1.17)
4+
- ChatLayout/Core (1.1.17)
5+
- ChatLayout/Extras (1.1.17):
66
- ChatLayout/Core
7-
- ChatLayout/Ultimate (1.1.16):
7+
- ChatLayout/Ultimate (1.1.17):
88
- ChatLayout/Core
99
- ChatLayout/Extras
1010
- DifferenceKit (1.2.0):
@@ -35,7 +35,7 @@ EXTERNAL SOURCES:
3535
:path: "../"
3636

3737
SPEC CHECKSUMS:
38-
ChatLayout: 090d5048f9a56d1e2a9bb212061a1b3663a501dd
38+
ChatLayout: 7a1bb0300a65833605c0902b68e179817fecd9c6
3939
DifferenceKit: 5659c430bb7fe45876fa32ce5cba5d6167f0c805
4040
FPSCounter: 884afec377de66637808c4f52ecc3b85a404732b
4141
InputBarAccessoryView: 74d471ab1fa1736806be50328df79257e52865a9

docs/Classes/CellLayoutContainerView.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
ChatLayout 1.1.16 Docs
24+
ChatLayout 1.1.17 Docs
2525
</a>
2626
(100% documented)
2727
</p>
@@ -457,7 +457,7 @@ <h4>Parameters</h4>
457457
</article>
458458
</div>
459459
<section class="footer">
460-
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-19)</p>
460+
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-20)</p>
461461
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.14.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
462462
</section>
463463
</body>

docs/Classes/ChatLayout.html

+4-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
ChatLayout 1.1.16 Docs
24+
ChatLayout 1.1.17 Docs
2525
</a>
2626
(100% documented)
2727
</p>
@@ -498,6 +498,8 @@ <h4>Declaration</h4>
498498
This flag enables a hack to compensate this offset later. You can disable it if necessary.
499499
Bug reported: <a href="https://feedbackassistant.apple.com/feedback/9727104">https://feedbackassistant.apple.com/feedback/9727104</a></p>
500500

501+
<p>PS: This issue was fixed in 15.2</p>
502+
501503
</div>
502504
<div class="declaration">
503505
<h4>Declaration</h4>
@@ -1306,7 +1308,7 @@ <h4>Declaration</h4>
13061308
</article>
13071309
</div>
13081310
<section class="footer">
1309-
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-19)</p>
1311+
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-20)</p>
13101312
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.14.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
13111313
</section>
13121314
</body>

docs/Classes/ChatLayoutAttributes.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
ChatLayout 1.1.16 Docs
24+
ChatLayout 1.1.17 Docs
2525
</a>
2626
(100% documented)
2727
</p>
@@ -416,7 +416,7 @@ <h4>Declaration</h4>
416416
</article>
417417
</div>
418418
<section class="footer">
419-
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-19)</p>
419+
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-20)</p>
420420
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.14.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
421421
</section>
422422
</body>

docs/Classes/ChatLayoutInvalidationContext.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
ChatLayout 1.1.16 Docs
24+
ChatLayout 1.1.17 Docs
2525
</a>
2626
(100% documented)
2727
</p>
@@ -201,7 +201,7 @@ <h4>Declaration</h4>
201201
</article>
202202
</div>
203203
<section class="footer">
204-
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-19)</p>
204+
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-20)</p>
205205
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.14.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
206206
</section>
207207
</body>

docs/Classes/ContainerCollectionReusableView.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
ChatLayout 1.1.16 Docs
24+
ChatLayout 1.1.17 Docs
2525
</a>
2626
(100% documented)
2727
</p>
@@ -377,7 +377,7 @@ <h4>Parameters</h4>
377377
</article>
378378
</div>
379379
<section class="footer">
380-
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-19)</p>
380+
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-20)</p>
381381
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.14.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
382382
</section>
383383
</body>

docs/Classes/ContainerCollectionViewCell.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
ChatLayout 1.1.16 Docs
24+
ChatLayout 1.1.17 Docs
2525
</a>
2626
(100% documented)
2727
</p>
@@ -377,7 +377,7 @@ <h4>Parameters</h4>
377377
</article>
378378
</div>
379379
<section class="footer">
380-
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-19)</p>
380+
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-20)</p>
381381
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.14.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
382382
</section>
383383
</body>

docs/Classes/EdgeAligningView.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
ChatLayout 1.1.16 Docs
24+
ChatLayout 1.1.17 Docs
2525
</a>
2626
(100% documented)
2727
</p>
@@ -361,7 +361,7 @@ <h4>Parameters</h4>
361361
</article>
362362
</div>
363363
<section class="footer">
364-
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-19)</p>
364+
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-20)</p>
365365
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.14.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
366366
</section>
367367
</body>

docs/Classes/EdgeAligningView/Edge.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../../index.html">
24-
ChatLayout 1.1.16 Docs
24+
ChatLayout 1.1.17 Docs
2525
</a>
2626
(100% documented)
2727
</p>
@@ -281,7 +281,7 @@ <h4>Declaration</h4>
281281
</article>
282282
</div>
283283
<section class="footer">
284-
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-19)</p>
284+
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-20)</p>
285285
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.14.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
286286
</section>
287287
</body>

docs/Classes/ImageMaskedView.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
ChatLayout 1.1.16 Docs
24+
ChatLayout 1.1.17 Docs
2525
</a>
2626
(100% documented)
2727
</p>
@@ -401,7 +401,7 @@ <h4>Declaration</h4>
401401
</article>
402402
</div>
403403
<section class="footer">
404-
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-19)</p>
404+
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-20)</p>
405405
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.14.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
406406
</section>
407407
</body>

docs/Classes/MessageContainerView.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
ChatLayout 1.1.16 Docs
24+
ChatLayout 1.1.17 Docs
2525
</a>
2626
(100% documented)
2727
</p>
@@ -347,7 +347,7 @@ <h4>Parameters</h4>
347347
</article>
348348
</div>
349349
<section class="footer">
350-
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-19)</p>
350+
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-20)</p>
351351
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.14.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
352352
</section>
353353
</body>

docs/Classes/RoundedCornersContainerView.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
ChatLayout 1.1.16 Docs
24+
ChatLayout 1.1.17 Docs
2525
</a>
2626
(100% documented)
2727
</p>
@@ -347,7 +347,7 @@ <h4>Declaration</h4>
347347
</article>
348348
</div>
349349
<section class="footer">
350-
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-19)</p>
350+
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-20)</p>
351351
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.14.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
352352
</section>
353353
</body>

docs/Core.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="index.html">
24-
ChatLayout 1.1.16 Docs
24+
ChatLayout 1.1.17 Docs
2525
</a>
2626
(100% documented)
2727
</p>
@@ -435,7 +435,7 @@ <h4>Declaration</h4>
435435
</article>
436436
</div>
437437
<section class="footer">
438-
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-19)</p>
438+
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-20)</p>
439439
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.14.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
440440
</section>
441441
</body>

docs/Enums/CellLayoutContainerViewAlignment.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
ChatLayout 1.1.16 Docs
24+
ChatLayout 1.1.17 Docs
2525
</a>
2626
(100% documented)
2727
</p>
@@ -281,7 +281,7 @@ <h4>Declaration</h4>
281281
</article>
282282
</div>
283283
<section class="footer">
284-
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-19)</p>
284+
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-20)</p>
285285
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.14.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
286286
</section>
287287
</body>

docs/Enums/ChatItemAlignment.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
ChatLayout 1.1.16 Docs
24+
ChatLayout 1.1.17 Docs
2525
</a>
2626
(100% documented)
2727
</p>
@@ -281,7 +281,7 @@ <h4>Declaration</h4>
281281
</article>
282282
</div>
283283
<section class="footer">
284-
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-19)</p>
284+
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-20)</p>
285285
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.14.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
286286
</section>
287287
</body>

docs/Enums/ImageMaskedViewTransformation.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
ChatLayout 1.1.16 Docs
24+
ChatLayout 1.1.17 Docs
2525
</a>
2626
(100% documented)
2727
</p>
@@ -227,7 +227,7 @@ <h4>Declaration</h4>
227227
</article>
228228
</div>
229229
<section class="footer">
230-
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-19)</p>
230+
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-20)</p>
231231
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.14.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
232232
</section>
233233
</body>

docs/Enums/InitialAttributesRequestType.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
ChatLayout 1.1.16 Docs
24+
ChatLayout 1.1.17 Docs
2525
</a>
2626
(100% documented)
2727
</p>
@@ -227,7 +227,7 @@ <h4>Declaration</h4>
227227
</article>
228228
</div>
229229
<section class="footer">
230-
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-19)</p>
230+
<p>&copy; 2022 <a class="link" href="https://github.com/ekazaev" target="_blank" rel="external noopener">Evgeny Kazaev</a>. All rights reserved. (Last updated: 2022-01-20)</p>
231231
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.14.1</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
232232
</section>
233233
</body>

0 commit comments

Comments
 (0)