Skip to content
This repository was archived by the owner on Aug 24, 2025. It is now read-only.

Commit ec08717

Browse files
pstorchdennisguse
andauthored
Before codeberg migration (#2159)
Co-authored-by: Dennis Guse <dennis.guse@alumni.tu-berlin.de>
1 parent 30dc440 commit ec08717

48 files changed

Lines changed: 107 additions & 221 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/dependabot.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/workflows/build_apk.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

.github/workflows/lint.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Testing
44

55
Just use OpenTracks and tell us what can be improved by opening an
6-
issue [here](https://github.com/OpenTracksApp/OpenTracks/issues/new/choose).
6+
issue [here](https://codeberg.org/OpenTracksApp/OpenTracks/issues/new/choose).
77

88
If we broke things (happens now and then), please tell us also.
99

@@ -16,7 +16,7 @@ Translations are hosted on [hosted.weblate.org](https://hosted.weblate.org/engag
1616
You have a cool idea for a feature that is missing in OpenTracks?
1717
And you would like to help by implementing it?
1818
If not, you can just take a look at
19-
the [issue tracker](https://github.com/OpenTracksApp/OpenTracks/issues).
19+
the [issue tracker](https://codeberg.org/OpenTracksApp/OpenTracks/issues).
2020

2121
Advices:
2222

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ adb shell am start -n "de.dennisguse.opentracks.playstore/de.dennisguse.opentrac
151151
As of v3.3.1, OpenTracks supports custom dashboards for displaying previously recorded and live
152152
tracks.
153153

154-
The reference implementation is [OSMDashboard](https://github.com/OpenTracksApp/OSMDashboard), which
154+
The reference implementation is [OSMDashboard](https://codeberg.org/OpenTracksApp/OSMDashboard), which
155155
presents an OpenStreetMap map (showing the current track, incl. updates). The Dashboard API is also
156156
used by [Gadgetbridge](https://codeberg.org/Freeyourgadget/Gadgetbridge/) for displaying live track
157157
statistics on supported wearables.

README_API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ By using explicit Intents for the calls and URIs with specific temporary read pe
3131

3232
All required information can be found in `IntentDashboardUtils.java`.
3333

34-
A _reference implementation_ is the [OSMDashboard](https://github.com/OpenTracksApp/OSMDashboard).
34+
A _reference implementation_ is the [OSMDashboard](https://codeberg.org/OpenTracksApp/OSMDashboard).

README_TESTED_SENSORS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ We do not support type of movement (i.e., walking vs running).
6969
Sadly, Bluetooth sensors providing _air pressure_ via Environmental Sensing Service seem to be very rare.
7070

7171
* [Flybeeper Pressure Sensor](https://market.flybeeper.com/device/ps1)
72-
* NoTrustIssues: https://github.com/OpenTracksApp/NoTrustIssues
72+
* NoTrustIssues: https://codeberg.org/OpenTracksApp/NoTrustIssues
7373
An Android app that exposes the internal barometer via Environmental Sensing Service.
7474

7575
### Internal: tested Barometric Sensor Smartphones

src/androidTest/java/de/dennisguse/opentracks/share/DescriptionGeneratorTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public void testGenerateTrackDescription() {
8282
track.setTrackStatistics(stats);
8383
track.setActivityTypeLocalized("hiking");
8484
String expected = //"Created by"
85-
"<a href='https://github.com/OpenTracksApp/OpenTracks'>OpenTracks (Debug)</a><p>"
85+
"<a href='https://codeberg.org/OpenTracksApp/OpenTracks'>OpenTracks (Debug)</a><p>"
8686
+ "Name: -<br>"
8787
+ "Activity type: hiking<br>"
8888
+ "Description: -<br>"
@@ -120,7 +120,7 @@ public void testGenerateTrackDescriptionWithoutMaxMinAltitude() {
120120
track.setTrackStatistics(stats);
121121
track.setActivityTypeLocalized("hiking");
122122
String expected = //"Created by"
123-
"<a href='https://github.com/OpenTracksApp/OpenTracks'>OpenTracks (Debug)</a><p>"
123+
"<a href='https://codeberg.org/OpenTracksApp/OpenTracks'>OpenTracks (Debug)</a><p>"
124124
+ "Name: -<br>"
125125
+ "Activity type: hiking<br>"
126126
+ "Description: -<br>"

src/main/java/de/dennisguse/opentracks/sensors/sensorData/AggregatorCyclingCadence.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ protected void computeValue(Raw<BluetoothHandlerCyclingCadence.CrankData> curren
3636
return;
3737
}
3838

39-
// TODO We have to treat with overflow according to the documentation: read https://github.com/OpenTracksApp/OpenTracks/pull/953#discussion_r711625268
39+
// TODO We have to treat with overflow according to the documentation: read https://codeberg.org/OpenTracksApp/OpenTracks/pulls/953#issuecomment-6466930
4040
if (current.value().crankRevolutionsCount() < previous.value().crankRevolutionsCount()) {
4141
Log.e(TAG, "Crank revolutions count difference is invalid: cannot compute cadence.");
4242
return;

0 commit comments

Comments
 (0)