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

Commit 57c54f2

Browse files
committed
prepare Codeberg migration on GitHub
1 parent e1309c1 commit 57c54f2

46 files changed

Lines changed: 108 additions & 118 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.

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

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ android {
104104
versionNameSuffix 'irreproducible'
105105
}
106106
reproducible {
107-
// Developer Binaries: https://github.com/OpenTracksApp/OSMDashboard/releases/download/v%v/de.dennisguse.opentracks.playstore_%v.apk
107+
// Developer Binaries: https://github.com/OpenTracksApp/OpenTracks/releases/download/v%v/de.dennisguse.opentracks.playstore_%v.apk
108108
// FDroid: https://f-droid.org/de/packages/de.dennisguse.opentracks.playstore
109109
// PlayStore: https://play.google.com/store/apps/details?id=de.dennisguse.opentracks.playstore
110110
dimension 'version'

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;

src/main/res/values-ar/strings.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ limitations under the License.
589589
<string name="permission_bluetooth_failed">يتطلب المسارات المفتوحة إذنًا لاستخدام البلوتوث.</string>
590590
<string name="permission_bluetooth_failed_rejected">يجب عليك منح المسارات المفتوحة إذن الوصول إلى الأجهزة القريبة يدويًا في إعدادات النظام.</string>
591591
<string name="generic_dismiss">استبعاد</string>
592-
<string name="help_track_map_content">استخدم أيقونة الخريطة الصغيرة.\n أ) (تحديثات مباشرة) قم بتثبيت <a href="https://github.com/المسارات المفتوحةApp/OSMDashboard">OSMDashboard</a>. يوفر خرائط عبر الإنترنت أو دون اتصال عبر <a href="https://www.openstreetmap.org">OpenStreetMap</a>.\n في الواقع، OSMDashboard هو تطبيق منفصل يمكنه الوصول (مؤقتًا) إلى بيانات المسار (المسارات) التي سيتم عرضها. \n ب) عبر تطبيق خرائط عادي (مثل <a href="http://osmand.net/">OsmAnd</a> و<a href="https://maps.me/">MAPS.ME</a>). يجب أن تدعم هذه التطبيقات تنسيق ملف KMZ (المواقع والطوابع الزمنية فقط). في الواقع، يحتاج التطبيق إلى دعم <i>ACTION_VIEW</i> مع MIME <i>application/vnd.google-earth.kmz</i>.</string>
592+
<string name="help_track_map_content">استخدم أيقونة الخريطة الصغيرة.\n أ) (تحديثات مباشرة) قم بتثبيت <a href="https://codeberg.org/OpenTracksApp/OSMDashboard">OSMDashboard</a>. يوفر خرائط عبر الإنترنت أو دون اتصال عبر <a href="https://www.openstreetmap.org">OpenStreetMap</a>.\n في الواقع، OSMDashboard هو تطبيق منفصل يمكنه الوصول (مؤقتًا) إلى بيانات المسار (المسارات) التي سيتم عرضها. \n ب) عبر تطبيق خرائط عادي (مثل <a href="http://osmand.net/">OsmAnd</a> و<a href="https://maps.me/">MAPS.ME</a>). يجب أن تدعم هذه التطبيقات تنسيق ملف KMZ (المواقع والطوابع الزمنية فقط). في الواقع، يحتاج التطبيق إلى دعم <i>ACTION_VIEW</i> مع MIME <i>application/vnd.google-earth.kmz</i>.</string>
593593
<string name="bluetooth_disabled">يرجى تفعيل البلوتوث.</string>
594-
<string name="help_support_content">يمكنك:\n أ) نشر الكلمة عن المسارات المفتوحة،\n ب) <a href="https://github.com/المسارات المفتوحةApp/المسارات المفتوحة/issues">اقتراح ميزات</a>،\n ج) <a href="https://github.com/المسارات المفتوحةApp/المسارات المفتوحة/issues">الإبلاغ عن أخطاء</a>،\n د) المساعدة في تطوير البرمجيات،\n ه) الشراء من <a href="https://play.google.com/store/apps/details?id=de.dennisguse.opentracks.playstore">متجر Google Play</a>،\n و) التبرع، و\n ز) القيام بأي شيء تعتقد أنه يساعد المسارات المفتوحة.</string>
594+
<string name="help_support_content">يمكنك:\n أ) نشر الكلمة عن المسارات المفتوحة،\n ب) <a href="https://codeberg.org/OpenTracksApp/OpenTracks/issues">اقتراح ميزات</a>،\n ج) <a href="https://codeberg.org/OpenTracksApp/OpenTracks/issues">الإبلاغ عن أخطاء</a>،\n د) المساعدة في تطوير البرمجيات،\n ه) الشراء من <a href="https://play.google.com/store/apps/details?id=de.dennisguse.opentracks.playstore">متجر Google Play</a>،\n و) التبرع، و\n ز) القيام بأي شيء تعتقد أنه يساعد المسارات المفتوحة.</string>
595595
</resources>

src/main/res/values-b+es+419/strings.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -301,8 +301,8 @@
301301
\nSi todo no ayuda, informe un error. </string>
302302
<string name="help_support_content"> Usted puede:
303303
\na) haga correr la voz sobre OpenTracks,
304-
\nb) <a href="https://github.com/OpenTracksApp/OpenTracks/issues"> proponer funciones </a>,
305-
\nc) <a href="https://github.com/OpenTracksApp/OpenTracks/issues"> informar errores </a>,
304+
\nb) <a href="https://codeberg.org/OpenTracksApp/OpenTracks/issues"> proponer funciones </a>,
305+
\nc) <a href="https://codeberg.org/OpenTracksApp/OpenTracks/issues"> informar errores </a>,
306306
\nd) ayuda en el desarrollo de software,
307307
\ne) comprar en <a href="https://play.google.com/store/apps/details?id=de.dennisguse.opentracks.playstore"> Google Play Store </a>,
308308
\nf) donar, y
@@ -321,7 +321,7 @@
321321
<string name="aggregated_stats_empty_message">Grabe su primer recorrido para ver estadísticas agregadas</string>
322322
<string name="settings_default_export_uri_title">Directorio de exportación de recorrido</string>
323323
<string name="help_track_map_content"> Utilice el pequeño icono de mapa.
324-
\na) (actualizaciones en vivo) Instale <a href="https://github.com/OpenTracksApp/OSMDashboard"> OSMDashboard </a>. Proporciona mapas en línea o fuera de línea a través de <a href="https://www.openstreetmap.org"> OpenStreetMap </a>.
324+
\na) (actualizaciones en vivo) Instale <a href="https://codeberg.org/OpenTracksApp/OSMDashboard"> OSMDashboard </a>. Proporciona mapas en línea o fuera de línea a través de <a href="https://www.openstreetmap.org"> OpenStreetMap </a>.
325325
\nEn realidad, OSMDashboard es una aplicación separada que solo puede acceder (temporalmente) a los datos de los recorridos que se mostrarán.
326326
\nb) A través de una aplicación de mapas normal (p. ej., <a href="http://osmand.net/"> OsmAnd </a> y <a href="https://maps.me/"> MAPS.ME </a>). Estas aplicaciones deben admitir el formato de archivo KMZ (solo ubicaciones y marcas de tiempo). De hecho, una aplicación debe admitir <i> ACTION_VIEW </i> con MIME <i> application / vnd.google-earth.kmz</i>. </string>
327327
<string name="about_third_party_data">Datos de terceros</string>

0 commit comments

Comments
 (0)