Skip to content

Commit 0c3e95b

Browse files
manuelscManuel
andauthored
v1 Pectra (#316)
* fix: post pectra apr, remove prater network * misc: formatting misc: android widget submodule update * misc: ios prep * fix: storage mirror (use v2 sotrage mirror plugin) * fix: storage mirror v2 build in pipe * feat: add hoodi network, remove prater, holesky and sepolia * feat: support hoodi network, remove support for prater, holesky and sepolia * misc: bitfly gmbh -> bitfly explorer gmbh * fix: rocketpool reward calculation * fix: sync committee stats not showing * feat: add hoodi network, remove prater, holesky and sepolia * feat: update rocket pool repo --------- Co-authored-by: Manuel <manuel@Manuels-Mini.lan>
1 parent ae111f0 commit 0c3e95b

257 files changed

Lines changed: 10049 additions & 496 deletions

File tree

Some content is hidden

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

.github/workflows/build.yaml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,29 @@ jobs:
1616
matrix:
1717
node-version: [16.x]
1818
steps:
19-
2019
- name: Check out code
2120
uses: actions/checkout@v3
2221

2322
- name: Use Node.js
2423
uses: actions/setup-node@v3
2524
with:
2625
node-version: ${{ matrix.node-version }}
27-
26+
27+
- name: Build Storage Mirror
28+
run: |
29+
cd storage-mirror
30+
npm ci
31+
npm run build
32+
2833
- name: Dependency install
2934
run: |
30-
npm install @ionic/cli@6.20.4 native-run@1.3.0
31-
npm install
32-
35+
npm install @ionic/cli@6.20.4 native-run@1.3.0
36+
npm install
37+
npm install storage-mirror
38+
3339
- name: Build
3440
run: |
3541
./node_modules/@ionic/cli/bin/ionic build --prod --release
36-
42+
3743
#- name: Test
3844
# run: ./node_modules/@angular/cli/bin/ng test

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,6 @@ android/.idea/jarRepositories.xml
4242
android/.idea/misc.xml
4343
/src/environments/environment.prod.ts
4444
ios/GoogleService-Info.plist
45+
/tmp
46+
/local_env
4547
/storage-mirror
46-
/tmp

android/.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
namespace "in.beaconcha.mobile"
99
minSdkVersion rootProject.ext.minSdkVersion
1010
targetSdkVersion rootProject.ext.targetSdkVersion
11-
versionCode 114
12-
versionName "4.5.12"
11+
versionCode 121
12+
versionName "4.5.20"
1313

1414
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1515
}

android/app/capacitor.build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ dependencies {
2323
implementation project(':capacitor-status-bar')
2424
implementation project(':capacitor-toast')
2525
implementation project(':capacitor-navigationbarnx')
26+
implementation project(':storage-mirror')
2627
implementation "com.android.billingclient:billing:7.0.0"
2728
}
2829

android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* // Copyright (C) 2020 - 2021 Bitfly GmbH
2+
* // Copyright (C) 2020 - 2021 bitfly explorer GmbH
33
* // Manuel Caspari (manuel@bitfly.at)
44
* //
55
* // This file is part of Beaconchain Dashboard.

android/app/src/main/assets/capacitor.plugins.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,9 @@
5454
{
5555
"pkg": "capacitor-navigationbarnx",
5656
"classpath": "com.nikosdouvlis.navigationbar.NavigationBar"
57+
},
58+
{
59+
"pkg": "storage-mirror",
60+
"classpath": "at.bitfly.storagemirror.StorageMirrorPlugin"
5761
}
5862
]

android/app/src/main/java/in/beaconcha/mobile/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* // Copyright (C) 2020 - 2021 Bitfly GmbH
2+
* // Copyright (C) 2020 - 2021 bitfly explorer GmbH
33
* // Manuel Caspari (manuel@bitfly.at)
44
* //
55
* // This file is part of Beaconchain Dashboard.
Submodule widget updated from 51c4441 to 834ce82

android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* // Copyright (C) 2020 - 2021 Bitfly GmbH
2+
* // Copyright (C) 2020 - 2021 bitfly explorer GmbH
33
* // Manuel Caspari (manuel@bitfly.at)
44
* //
55
* // This file is part of Beaconchain Dashboard.

0 commit comments

Comments
 (0)