Skip to content

Commit b69c50c

Browse files
authored
Merge pull request #2591 from segmentio/develop
Release 22.10.4
2 parents 41a1c14 + e390de5 commit b69c50c

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

src/_includes/content/destination-dossier.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@
3434
<div class="qi-content">
3535
<h6>Destination Info</h6>
3636
<ul class="qi">
37-
{% if destMethods.size > 0 %}<li>Accepts {% for method in destMethods%}{% if destMethods.size == 1 %}{{method}} calls.{% else %}{% unless forloop.last == true %}{{method}}, {% endunless %}{% if forloop.last == true%}and {{method}} calls.{%endif%}{% endif %}{% endfor %}</li>{% endif %}
37+
{% if destMethods.size > 0 %}<li>Accepts {% for method in destMethods%}{% if destMethods.size == 1 %}{{method}} calls.{% else %}{% unless forloop.last == true %}{{method}}, {% endunless %}{% if forloop.last == true%}and {{method}} calls{%endif%}{% endif %}{% endfor %}</li>{% endif %}
3838
<li>Referred to as <strong>{{destinationInfo.previous_names | join: '</strong>, or <strong>' }}</strong> in the <a href="/docs/guides/filtering-data/#filtering-with-the-integrations-object">Integrations object</a></li>
39+
{% if destinationInfo.status == "PUBLIC_BETA" %}<li>This destination is in <span class="release-pill">Beta</span></li>{% endif %}
3940
</ul>
4041
{% if components.size > 0%}
4142

src/_sass/components/_quickinfo.scss

+11-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@
1010
padding: 10px;
1111
}
1212

13+
.release-pill {
14+
background-color:#E7E4F9;
15+
color: #6E62B6;
16+
text-transform: uppercase;
17+
font-weight: 600;
18+
padding: 0px 6px;
19+
border-radius: 4px
20+
21+
}
22+
1323
@include breakpoint(small down) {
1424
max-width: 100%;
1525
float: none;
@@ -55,7 +65,7 @@
5565
font-size: 14px;
5666
line-height: 24px;
5767
}
58-
ul li:first-of-type {
68+
ul li:not(:last-of-type) {
5969
margin-bottom: 16px;
6070
}
6171
ul li:before{

src/connections/sources/catalog/libraries/mobile/kotlin-android/index.md

+1
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,7 @@ If you use a Java codebase, please refer to the [Java Compatibility docs](https:
450450
## Supported Destinations
451451
Segment currently supports these destinations for Analytics Kotlin and is actively adding more:
452452
* [Amplitude](https://github.com/segment-integrations/analytics-kotlin-amplitude)
453+
* [Appsflyer](https://github.com/segment-integrations/analytics-kotlin-appsflyer)
453454
* [Firebase](https://github.com/segment-integrations/analytics-kotlin-firebase)
454455
* [Mixpanel](https://github.com/segment-integrations/analytics-kotlin-mixpanel)
455456

src/connections/sources/catalog/libraries/mobile/swift-ios/index.md

+1
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,7 @@ analytics.add(plugin: idfaPlugin)
402402
## Supported Destinations
403403
Segment supports these destinations for Analytics Swift, with more to come:
404404
* [Amplitude](https://github.com/segment-integrations/analytics-swift-amplitude)
405+
* [Appsflyer](https://github.com/segment-integrations/analytics-swift-appsflyer)
405406
* [Facebook App Events](https://github.com/segment-integrations/analytics-swift-facebook-app-events)
406407
* [Firebase](https://github.com/segment-integrations/analytics-swift-facebook-app-events)
407408
* [Mixpanel](https://github.com/segment-integrations/analytics-swift-mixpanel)

0 commit comments

Comments
 (0)