Skip to content

Commit

Permalink
Merge branch 'refs/heads/main' into feature/pay-invoice-as-business
Browse files Browse the repository at this point in the history
  • Loading branch information
VickyStash committed Jul 31, 2024
2 parents 842e95d + 8e79c59 commit fbcaef9
Show file tree
Hide file tree
Showing 168 changed files with 2,461 additions and 1,600 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2ePerformanceTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ jobs:
status: custom
custom_payload: |
{
channel: '#newdot-performance',
channel: '#newdot-quality',
attachments: [{
color: 'danger',
text: `🔴 Performance regression detected in PR ${{ inputs.PR_NUMBER }}\nDetected in <https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}|${{ github.workflow }}> workflow.`,
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ruby ">= 2.6.10"

gem "cocoapods", "= 1.15.2"
gem "activesupport", ">= 6.1.7.3", "< 7.1.0"
gem "fastlane", "~> 2"
gem "fastlane", "~> 2", ">= 2.222.0"
gem "xcpretty", "~> 0"


Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
multiDexEnabled rootProject.ext.multiDexEnabled
versionCode 1009001402
versionName "9.0.14-2"
versionCode 1009001405
versionName "9.0.14-5"
// Supported language variants must be declared here to avoid from being removed during the compilation.
// This also helps us to not include unnecessary language variants in the APK.
resConfigs "en", "es"
Expand Down
6 changes: 6 additions & 0 deletions assets/images/filters.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 5 additions & 7 deletions docs/_includes/section.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,10 @@ <h1 class="title">

<section>
<div class="cards-group">
{% if section.articles %}
{% assign sortedArticles = section.articles | sort: 'order', 'last' | default: 999 %}
{% for article in sortedArticles %}
{% assign article_href = section.href | append: '/' | append: article.href %}
{% include article-card.html hub=hub.href href=article_href title=article.title platform=activePlatform %}
{% endfor %}
{% endif %}
{% assign sortedArticles = section.articles %}
{% for article in sortedArticles %}
{% assign article_href = section.href | append: '/' | append: article.href %}
{% include article-card.html hub=hub.href href=article_href title=article.title platform=activePlatform %}
{% endfor %}
</div>
</section>

This file was deleted.

Loading

0 comments on commit fbcaef9

Please sign in to comment.