edited Dandelion contribution

Added Screenshots for F-Droid
This commit is contained in:
massimiliano 2018-09-29 21:47:10 +02:00
parent f427e25a77
commit 2446d8cf58
47 changed files with 78 additions and 79 deletions

View File

@ -1,2 +0,0 @@
#Mon Sep 24 16:56:29 CEST 2018
gradle.version=4.4

View File

@ -1,13 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id="AndHub" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$USER_HOME$/Documenti/AndHub" external.system.id="GRADLE" type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="java-gradle" name="Java-Gradle">
<configuration>
<option name="BUILD_FOLDER_PATH" value="$MODULE_DIR$/build" />
<option name="BUILDABLE" value="false" />
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">

View File

@ -1,7 +1,11 @@
## 0.8.9
* Edited Dandelion* references in contributors
* Edited Nomad channel references in share tag
* Edited F-Droid information text
## 0.8.8
* Changed App Logo
* Added visibility option for all menu items
##0.8.7
## 0.8.7
* Changed App name to Nomad
## 0.0.6
* Added visibility option for icons in top bar
@ -16,6 +20,7 @@
* moved some menu items in top menu
* started the visibility option as functionality but doesn't do what it supposed to do yet
## 0.0.1
* forked Nomad from Dandelion*
* changed all pods in Hubs
* edited most of the things to fit for Hubzilla
* changed default colors and added them in color colorPicker

View File

@ -13,6 +13,7 @@ Where:
## LIST OF CONTRIBUTORS
-->
**[Dandelion*](https://github.com/gsantner/dandelion)**<br/>~° Starting fork for Nomad <br/>
**[Massimiliano](https://hub.disroot.org/channel/massimiliano)**<br/>~° Current developer of Nomad<br/>
**[gia vec](https://framagit.org/elvecio)**<br/>~° Italian Translator<br/>
**[F&#42;&#42;&#42;OffGoogle](https://framagit.org/ajeremias)**<br/>~° Logo designer<br/>

View File

@ -12,7 +12,7 @@ This is an unofficial webview based client for the community-run, distributed so
## Description
This is an unofficial webview based client for the community-run, distributed social network <b><a href="https://project.hubzilla.org/page/hubzilla/hubzilla-project/">Hubzilla</a></b>.
It's currently under development and should be used with that in mind. Please submit any bugs you might find.
We are basing our work on the dandelion* app
We started Nomad as a fork of the Dandelion* app
#### WebApp
The app is developed as a WebApp
@ -31,7 +31,7 @@ Hubzilla requires access to the Internet and to external storage to be able to u
The project is always open for contributions and accepts pull requests.
The project uses [AOSP Java Code Style](https://source.android.com/source/code-style#follow-field-naming-conventions), with one exception: private members are `_camelCase` instead of `mBigCamel`. You may use Android Studios _auto reformat feature_ before sending a PR.
Translations can be contributed on Framagit. You can use Stringlate ([![Translate - with Stringlate](https://img.shields.io/badge/stringlate-translate-green.svg)](https://lonamiwebs.github.io/stringlate/translate?git=https%3A%2F%2Fgithub.com%2Fgsantner%2Fdandelion.git)) to translate the project directly on your Android phone. It allows you to export as E-Mail attachement and to post on Framagit.
Translations can be contributed on Framagit. Or you can send us translations via E-Mail attachement.
Note that the main project members are working on this project for free during leisure time, are mostly busy with their job/university/school, and may not react or start coding immediately.
@ -39,7 +39,7 @@ Note that the main project members are working on this project for free during l
* Project: [Changelog](/CHANGELOG.md) | [Issues level/beginner](https://framagit.org/disroot/AndHub/issues) | [License](/LICENSE.md) | [CoC](/CODE_OF_CONDUCT.md)
* Project Nomad account: [not there yet](https://)
* Hubzilla: [Framagit](https://framagit.org/hubzilla/core) | [Web](https://project.hubzilla.org) | [Hub HQ account](https://project.hubzilla.org/channel/hubzilla)
* F-droid: Not there yet.
* F-droid: [Nomad](https://f-droid.org/en/packages/com.dfa.hubzilla_android/)
## Licensing
Nomad is released under GNU GENERAL PUBLIC LICENSE (see [LICENCE](https://framagit.org/disroot/AndHub/blob/master/LICENSE.md)).

View File

@ -18,8 +18,8 @@ android {
resValue "string", "manifest_package_id", "com.dfa.hubzilla_android"
applicationId "com.dfa.hubzilla_android"
versionName "0.8.8"
versionCode 38
versionName "0.8.9"
versionCode 39
vectorDrawables.useSupportLibrary = true
@ -100,4 +100,4 @@ dependencies {
}
repositories {
mavenCentral()
}
}

View File

@ -250,8 +250,8 @@ public class AboutActivity extends ThemedActivity
@BindView(R.id.fragment_license__license_button)
Button licenseBtn;
@BindView(R.id.fragment_license__leafpic_button)
Button leafpicBtn;
@BindView(R.id.fragment_license__Dandelion_button)
Button DandelionBtn;
private String accentColor;
@ -278,11 +278,11 @@ public class AboutActivity extends ThemedActivity
ContextUtils.get().loadMarkdownForTextViewFromRaw(R.raw.licenses_3rd_party, ""));
}
@OnClick({R.id.fragment_license__leafpic_button, R.id.fragment_license__license_button})
@OnClick({R.id.fragment_license__Dandelion_button, R.id.fragment_license__license_button})
public void buttonClicked(View v) {
switch (v.getId()) {
case R.id.fragment_license__leafpic_button:
ContextUtils.get().openWebpageInExternalBrowser(getString(R.string.fragment_licesen__misc_leafpic_link));
case R.id.fragment_license__Dandelion_button:
ContextUtils.get().openWebpageInExternalBrowser(getString(R.string.fragment_licesen__misc_Dandelion_link));
break;
case R.id.fragment_license__license_button:
ContextUtils.get().openWebpageInExternalBrowser(getString(R.string.fragment_license__license_gpl_link));
@ -293,7 +293,7 @@ public class AboutActivity extends ThemedActivity
@Override
protected void applyColorToViews() {
ThemeHelper.getInstance(getAppSettings());
ThemeHelper.updateButtonTextColor(leafpicBtn);
ThemeHelper.updateButtonTextColor(DandelionBtn);
ThemeHelper.updateButtonTextColor(licenseBtn);
ThemeHelper.updateTextViewLinkColor(maintainers);
ThemeHelper.updateTextViewLinkColor(thirdPartyLibs);

View File

@ -15,7 +15,7 @@
along with the dandelion*.
If not, see <http://www.gnu.org/licenses/>.
This class is inspired by org.horasapps.LeafPic
This class is inspired by org.horasapps.Dandelion*
*/
package com.dfa.hubzilla_android.ui.theme;

View File

@ -197,15 +197,15 @@
android:textAppearance="@style/TextAppearance.AppCompat"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/fragment_license__misc_leafpic"/>
android:text="@string/fragment_license__misc_Dandelion"/>
<Button
android:id="@+id/fragment_license__leafpic_button"
android:id="@+id/fragment_license__Dandelion_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
style="?android:attr/buttonBarButtonStyle"
android:text="@string/fragment_license__misc_leafpic_button"/>
android:text="@string/fragment_license__misc_Dandelion_button"/>
</LinearLayout>
</android.support.v7.widget.CardView>

View File

@ -1,7 +1,11 @@
## 0.8.9
* Edited Dandelion* references in contributors
* Edited Nomad channel references in share tag
* Edited F-Droid information text
## 0.8.8
* Changed App Logo
* Added visibility option for all menu items
##0.8.7
## 0.8.7
* Changed App name to Nomad
## 0.0.6
* Added visibility option for icons in top bar
@ -16,6 +20,7 @@
* moved some menu items in top menu
* started the visibility option as functionality but doesn't do what it supposed to do yet
## 0.0.1
* forked Nomad from Dandelion*
* changed all pods in Hubs
* edited most of the things to fit for Hubzilla
* changed default colors and added them in color colorPicker

View File

@ -13,6 +13,7 @@ Where:
## LIST OF CONTRIBUTORS
-->
**[Dandelion*](https://github.com/gsantner/dandelion)**<br/>~° Starting fork for Nomad <br/>
**[Massimiliano](https://hub.disroot.org/channel/massimiliano)**<br/>~° Current developer of Nomad<br/>
**[gia vec](https://framagit.org/elvecio)**<br/>~° Italian Translator<br/>
**[F&#42;&#42;&#42;OffGoogle](https://framagit.org/ajeremias)**<br/>~° Logo designer<br/>

View File

@ -12,7 +12,4 @@
* Android Design Library
<https://android-developers.blogspot.de/2015/05/android-design-support-library.html>
* Dandelion*
<https://github.com/gsantner/dandelion>

View File

@ -12,7 +12,7 @@ This is an unofficial webview based client for the community-run, distributed so
## Description
This is an unofficial webview based client for the community-run, distributed social network <b><a href="https://project.hubzilla.org/page/hubzilla/hubzilla-project/">Hubzilla</a></b>.
It's currently under development and should be used with that in mind. Please submit any bugs you might find.
We are basing our work on the dandelion* app
We started Nomad as a fork of the Dandelion* app
#### WebApp
The app is developed as a WebApp
@ -31,7 +31,7 @@ Hubzilla requires access to the Internet and to external storage to be able to u
The project is always open for contributions and accepts pull requests.
The project uses [AOSP Java Code Style](https://source.android.com/source/code-style#follow-field-naming-conventions), with one exception: private members are `_camelCase` instead of `mBigCamel`. You may use Android Studios _auto reformat feature_ before sending a PR.
Translations can be contributed on Framagit. You can use Stringlate ([![Translate - with Stringlate](https://img.shields.io/badge/stringlate-translate-green.svg)](https://lonamiwebs.github.io/stringlate/translate?git=https%3A%2F%2Fgithub.com%2Fgsantner%2Fdandelion.git)) to translate the project directly on your Android phone. It allows you to export as E-Mail attachement and to post on Framagit.
Translations can be contributed on Framagit. Or you can send us translations via E-Mail attachement.
Note that the main project members are working on this project for free during leisure time, are mostly busy with their job/university/school, and may not react or start coding immediately.
@ -39,7 +39,7 @@ Note that the main project members are working on this project for free during l
* Project: [Changelog](/CHANGELOG.md) | [Issues level/beginner](https://framagit.org/disroot/AndHub/issues) | [License](/LICENSE.md) | [CoC](/CODE_OF_CONDUCT.md)
* Project Nomad account: [not there yet](https://)
* Hubzilla: [Framagit](https://framagit.org/hubzilla/core) | [Web](https://project.hubzilla.org) | [Hub HQ account](https://project.hubzilla.org/channel/hubzilla)
* F-droid: Not there yet.
* F-droid: [Nomad](https://f-droid.org/en/packages/com.dfa.hubzilla_android/)
## Licensing
Nomad is released under GNU GENERAL PUBLIC LICENSE (see [LICENCE](https://framagit.org/disroot/AndHub/blob/master/LICENSE.md)).

View File

@ -117,8 +117,8 @@ nachträglich erteilen. Öffne dafür: Systemeinstellungen - Apps - dandelion*.
<string name="fragment_license__license_button">GNU GPLv3+ Lizenz</string>
<string name="fragment_license__thirdparty_libs">Drittanbieter-Bibliotheken</string>
<string name="fragment_license__thirdparty_libs_text">Die folgenden Bibliotheken werden genutzt:</string>
<string name="fragment_license__misc_leafpic">Wir haben ein wenig bei LeafPic gespickt. Schaut euch das mal an, es handelt sich dabei auch um freie Software!</string>
<string name="fragment_license__misc_leafpic_button">Erzähl mir mehr</string>
<string name="fragment_license__misc_Dandelion">Wir haben ein wenig bei Dandelion* gespickt. Schaut euch das mal an, es handelt sich dabei auch um freie Software!</string>
<string name="fragment_license__misc_Dandelion_button">Erzähl mir mehr</string>
<!-- Key Names (Untranslatable) -->
<!-- Operability -->

View File

@ -113,8 +113,8 @@
<string name="fragment_license__license_button">Licencia GNU GPLv3 +</string>
<string name="fragment_license__thirdparty_libs">Bibliotecas de terceros</string>
<string name="fragment_license__thirdparty_libs_text">Se utilizan las siguientes bibliotecas:</string>
<string name="fragment_license__misc_leafpic">Tomamos algo de inspiración y código de LeafPic. ¡Venga, tomad prestado, es software libre también!</string>
<string name="fragment_license__misc_leafpic_button">Saber más</string>
<string name="fragment_license__misc_Dandelion">Tomamos algo de inspiración y código de Dandelion*. ¡Venga, tomad prestado, es software libre también!</string>
<string name="fragment_license__misc_Dandelion_button">Saber más</string>
<!-- Key Names (Untranslatable) -->
<!-- Operability -->
@ -195,4 +195,4 @@
<string name="dialog_content__wipe_settings">Esto restablecerá todas las modificaciones en la configuración a sus valores predeterminados y se desconectará de todos los pods. Las imágenes descargadas permanecerán intactas. ¿Está seguro de que desea continuar?</string>
<string name="pref_desc__adblock_enable">Habilitar bloqueador de publicidad básico. Publicidad podrá ser incluida p.ej. en vistas incrustadas</string>
<string name="pref_title__adblock_enable">Bloquear publicidad</string>
</resources>
</resources>

View File

@ -116,8 +116,8 @@
<string name="fragment_license__license_button">Licence GNU GPLv3+</string>
<string name="fragment_license__thirdparty_libs">Bibliothèques tierces</string>
<string name="fragment_license__thirdparty_libs_text">Les bibliothèques suivantes sont utilisées :</string>
<string name="fragment_license__misc_leafpic">Nous avons pris des inspirations et du code de LeafPic. Allez voir, c\'est aussi un logiciel libre !</string>
<string name="fragment_license__misc_leafpic_button">En savoir plus</string>
<string name="fragment_license__misc_Dandelion">Nous avons pris des inspirations et du code de Dandelion*. Allez voir, c\'est aussi un logiciel libre !</string>
<string name="fragment_license__misc_Dandelion_button">En savoir plus</string>
<!-- Key Names (Untranslatable) -->
<!-- Operability -->

View File

@ -117,8 +117,8 @@
<string name="fragment_license__license_button">Licenza GNU GPLv3+</string>
<string name="fragment_license__thirdparty_libs">Código de terceiras partes</string>
<string name="fragment_license__thirdparty_libs_text">Utilízase o seguinte código:</string>
<string name="fragment_license__misc_leafpic">Inspirámonos e collemos código de LeafPic. Bótalle un ollo, tamén é software libre!</string>
<string name="fragment_license__misc_leafpic_button">Cóntame máis</string>
<string name="fragment_license__misc_Dandelion">Inspirámonos e collemos código de Dandelion*. Bótalle un ollo, tamén é software libre!</string>
<string name="fragment_license__misc_Dandelion_button">Cóntame máis</string>
<!-- Key Names (Untranslatable) -->
<!-- Operability -->

View File

@ -110,8 +110,8 @@
<string name="fragment_license__license_button">GNU GPLv3+ Licenc</string>
<string name="fragment_license__thirdparty_libs">3. személytől származó könyvtárak</string>
<string name="fragment_license__thirdparty_libs_text">A következő könyvtárak vannak használatban:</string>
<string name="fragment_license__misc_leafpic">A LeafPicből merítettünk némi inspirációt és programkódot. Próbáld ki, ez is szabad szoftver!</string>
<string name="fragment_license__misc_leafpic_button">Tudj meg többet</string>
<string name="fragment_license__misc_Dandelion">A Dandelion*ből merítettünk némi inspirációt és programkódot. Próbáld ki, ez is szabad szoftver!</string>
<string name="fragment_license__misc_Dandelion_button">Tudj meg többet</string>
<!-- Key Names (Untranslatable) -->
<!-- Operability -->

View File

@ -62,11 +62,11 @@
<string name="unable_to_load_image">Impossibile caricare immagine</string>
<!-- Permissions -->
<string name="permissions_screenshot">Devi garantire il permesso di accesso alla memoria per poter salvare gli screenshot. Dopodiché devi
chiudere completamente l\'app o riavviare il dispositivo. Se non permetti l\'accesso alla memoria ma vuoi usare la
chiudere completamente l\'app o riavviare il dispositivo. Se non permetti l\'accesso alla memoria ma vuoi usare la
funzione degli screenshot più avanti, puoi garantire il permesso successivamente. Vai su: Impostazioni - App -
Nomad. Nella sezione dei permessi puoi garantire il permesso per la scrittura sul dispositivo.</string>
<string name="permissions_image">Devi concedere il permesso di accesso alla memoria per poter salvare e caricare le immagini. Dopodiché devi
chiudere completamente l\'app o riavviare il dispositivo. Se non permetti l\'accesso alla memoria ma vuoi
chiudere completamente l\'app o riavviare il dispositivo. Se non permetti l\'accesso alla memoria ma vuoi
salvare le immagini più avanti, puoi concedere il permesso successivamente. Vai su: Impostazioni - App -
Nomad. Nella sezione dei permessi puoi concedere il permesso per la scrittura sul dispositivo.</string>
<string name="permission_denied">Permesso negato.</string>
@ -119,8 +119,8 @@
<string name="fragment_license__license_button">Licenza GNU GPL versione 3 o superiore</string>
<string name="fragment_license__thirdparty_libs">Librerie di terze parti</string>
<string name="fragment_license__thirdparty_libs_text">Sono utilizzate le seguenti librerie:</string>
<string name="fragment_license__misc_leafpic">Abbiamo preso ispirazione e parte del codice da LeafPic. Dagli un\'occhiata, anch\'esso è software libero!</string>
<string name="fragment_license__misc_leafpic_button">Dimmi di più</string>
<string name="fragment_license__misc_Dandelion">Abbiamo preso ispirazione e parte del codice da Dandelion*. Dagli un\'occhiata, anch\'esso è software libero!</string>
<string name="fragment_license__misc_Dandelion_button">Dimmi di più</string>
<!-- Key Names (Untranslatable) -->
<!-- Operability -->

View File

@ -113,8 +113,8 @@
<string name="fragment_license__license_button">GNU GPLv3+ ライセンス</string>
<string name="fragment_license__thirdparty_libs">サードパーティ ライブラリー</string>
<string name="fragment_license__thirdparty_libs_text">以下のライブラリーが使用されます:</string>
<string name="fragment_license__misc_leafpic">LeafPic からいくつかのインスピレーションとコードを得ました。チェックしてみてください。同様のフリーソフトウェアです!</string>
<string name="fragment_license__misc_leafpic_button">さらに詳しく</string>
<string name="fragment_license__misc_Dandelion">Dandelion* からいくつかのインスピレーションとコードを得ました。チェックしてみてください。同様のフリーソフトウェアです!</string>
<string name="fragment_license__misc_Dandelion_button">さらに詳しく</string>
<!-- Key Names (Untranslatable) -->
<!-- Operability -->

View File

@ -114,8 +114,8 @@
<string name="fragment_license__license_button">Turagt GNU GPLv3+</string>
<string name="fragment_license__thirdparty_libs">Tinedlisin tis kraḍ</string>
<string name="fragment_license__thirdparty_libs_text">Tinedlisin-agi ttwaseqdacent:</string>
<string name="fragment_license__misc_leafpic">Newwi kra n tiktiwin akked tengat si LeafPic. Duu ad ten-twaliḍ. D aseɣẓan ilellil!</string>
<string name="fragment_license__misc_leafpic_button">Ini-yid ugar</string>
<string name="fragment_license__misc_Dandelion">Newwi kra n tiktiwin akked tengat si Dandelion*. Duu ad ten-twaliḍ. D aseɣẓan ilellil!</string>
<string name="fragment_license__misc_Dandelion_button">Ini-yid ugar</string>
<!-- Key Names (Untranslatable) -->
<!-- Operability -->

View File

@ -86,8 +86,8 @@
<string name="fragment_debug__app_codename">കോഡ്നെയിം: %1$s</string>
<!-- License & help (large amount of text) -->
<string name="fragment_license__thirdparty_libs_text">താഴെ പറഞ്ഞിരിക്കുന്ന ലൈബ്രറികൾ ഉപയോഗിച്ചിരിക്കുന്നു:</string>
<string name="fragment_license__misc_leafpic">ഞങ്ങൾ ചില കോഡുകൾ കടമെടുത്തതും പ്രചോദനമായതും ലീഫ്പിക് ഇൽ നിന്നാണ്. ഒന്നു പരിശോധിക്കൂ.. അതും സ്വതന്ത്ര സോഫ്റ്റ്‌വേർ ആണ്!</string>
<string name="fragment_license__misc_leafpic_button">വിശദീകരിക്കുക</string>
<string name="fragment_license__misc_Dandelion">ഞങ്ങൾ ചില കോഡുകൾ കടമെടുത്തതും പ്രചോദനമായതും ലീഫ്പിക് ഇൽ നിന്നാണ്. ഒന്നു പരിശോധിക്കൂ.. അതും സ്വതന്ത്ര സോഫ്റ്റ്‌വേർ ആണ്!</string>
<string name="fragment_license__misc_Dandelion_button">വിശദീകരിക്കുക</string>
<!-- Key Names (Untranslatable) -->
<!-- Operability -->

View File

@ -109,8 +109,8 @@
<string name="fragment_license__license_button">GNU GPLv3 + licentie</string>
<string name="fragment_license__thirdparty_libs">3rd Party Bibliotheken</string>
<string name="fragment_license__thirdparty_libs_text">De volgende bibliotheken worden gebruikt:</string>
<string name="fragment_license__misc_leafpic">We zijn geïnspireerd door LeafPic en lenen er code van. Ga kijken, deze vrije software is het proberen waard!</string>
<string name="fragment_license__misc_leafpic_button">Vertel me meer</string>
<string name="fragment_license__misc_Dandelion">We zijn geïnspireerd door Dandelion* en lenen er code van. Ga kijken, deze vrije software is het proberen waard!</string>
<string name="fragment_license__misc_Dandelion_button">Vertel me meer</string>
<!-- Key Names (Untranslatable) -->
<!-- Operability -->

View File

@ -111,8 +111,8 @@
<string name="fragment_license__license_button">Licencja GNU GPLv3+</string>
<string name="fragment_license__thirdparty_libs">Biblioteki zewnętrzne</string>
<string name="fragment_license__thirdparty_libs_text">Zostały użyte następujące biblioteki zewnętrzne:</string>
<string name="fragment_license__misc_leafpic">Zaczerpnęliśmy kilka pomysłów oraz trochę kodu z aplikacji LeafPic. Wypróbuj ją, to także wolne oprogramowanie!</string>
<string name="fragment_license__misc_leafpic_button">Chcę wiedzieć więcej</string>
<string name="fragment_license__misc_Dandelion">Zaczerpnęliśmy kilka pomysłów oraz trochę kodu z aplikacji Dandelion*. Wypróbuj ją, to także wolne oprogramowanie!</string>
<string name="fragment_license__misc_Dandelion_button">Chcę wiedzieć więcej</string>
<!-- Key Names (Untranslatable) -->
<!-- Operability -->

View File

@ -113,8 +113,8 @@
<string name="fragment_license__license_button">Лицензия GNU GPLv3+</string>
<string name="fragment_license__thirdparty_libs">Сторонние библиотеки</string>
<string name="fragment_license__thirdparty_libs_text">Используются следующие библиотеки:</string>
<string name="fragment_license__misc_leafpic">Мы вдохновлялись и взяли немного кода из LeafPic. Попробуйте это приложение, оно тоже является свободным ПО!</string>
<string name="fragment_license__misc_leafpic_button">Расскажите мне больше</string>
<string name="fragment_license__misc_Dandelion">Мы вдохновлялись и взяли немного кода из Dandelion*. Попробуйте это приложение, оно тоже является свободным ПО!</string>
<string name="fragment_license__misc_Dandelion_button">Расскажите мне больше</string>
<!-- Key Names (Untranslatable) -->
<!-- Operability -->

View File

@ -139,8 +139,8 @@
<string name="fragment_license__license_button">Litzèntzia GNU GPLv3+</string>
<string name="fragment_license__thirdparty_libs">Librerias de terzas partes</string>
<string name="fragment_license__thirdparty_libs_text">Sunt impreadas custas librerias:</string>
<string name="fragment_license__misc_leafpic">Amus pigadu ispiratzione e parte de su còdighe dae LeafPic. Abbistade·bos·lu, est fintzas cussu unu programma lìberu!</string>
<string name="fragment_license__misc_leafpic_button">Àteras informatziones</string>
<string name="fragment_license__misc_Dandelion">Amus pigadu ispiratzione e parte de su còdighe dae Dandelion*. Abbistade·bos·lu, est fintzas cussu unu programma lìberu!</string>
<string name="fragment_license__misc_Dandelion_button">Àteras informatziones</string>
<!-- Key Names (Untranslatable) -->

View File

@ -115,8 +115,8 @@
<string name="fragment_license__license_button">GNU GPLv3+</string>
<string name="fragment_license__thirdparty_libs">Tredjepartsbibliotek</string>
<string name="fragment_license__thirdparty_libs_text">Följande bibliotek används:</string>
<string name="fragment_license__misc_leafpic">Vi hämtade inspiration och kod från LeafPic. Kika på det, det är också fri programvara!</string>
<string name="fragment_license__misc_leafpic_button">Berätta mer</string>
<string name="fragment_license__misc_Dandelion">Vi hämtade inspiration och kod från Dandelion*. Kika på det, det är också fri programvara!</string>
<string name="fragment_license__misc_Dandelion_button">Berätta mer</string>
<!-- Key Names (Untranslatable) -->
<!-- Operability -->

View File

@ -60,7 +60,7 @@
<string name="fragment_license__license_button">GNU GPLv3+ License</string>
<string name="fragment_license__thirdparty_libs">Üçüncü Parti Kütüphaneler</string>
<string name="fragment_license__thirdparty_libs_text">Şu kütüphaneler kullanıldı:</string>
<string name="fragment_license__misc_leafpic_button">Daha fazla göster</string>
<string name="fragment_license__misc_Dandelion_button">Daha fazla göster</string>
<!-- Key Names (Untranslatable) -->
<!-- Operability -->

View File

@ -115,8 +115,8 @@
<string name="fragment_license__license_button">Ліцензія GNU GPLv3+</string>
<string name="fragment_license__thirdparty_libs">Сторонні бібліотеки</string>
<string name="fragment_license__thirdparty_libs_text">Використовуються такі бібліотеки:</string>
<string name="fragment_license__misc_leafpic">Ми взяли трохи натхнення і коду з LeafPic. Це також вільне програмне забезпечення, тож користуйтеся!</string>
<string name="fragment_license__misc_leafpic_button">Хочу знати більше</string>
<string name="fragment_license__misc_Dandelion">Ми взяли трохи натхнення і коду з Dandelion*. Це також вільне програмне забезпечення, тож користуйтеся!</string>
<string name="fragment_license__misc_Dandelion_button">Хочу знати більше</string>
<!-- Key Names (Untranslatable) -->
<!-- Operability -->

View File

@ -113,8 +113,8 @@
<string name="fragment_license__license_button">GNU GPLv3+ 授權條款</string>
<string name="fragment_license__thirdparty_libs">第三方程式庫</string>
<string name="fragment_license__thirdparty_libs_text">我們使用了下列程式庫:</string>
<string name="fragment_license__misc_leafpic">我們從 LeafPic 應用程式得到一些啟發以及程式碼。去看看吧,它也是自由軟體喔!</string>
<string name="fragment_license__misc_leafpic_button">再多說一些</string>
<string name="fragment_license__misc_Dandelion">我們從 Dandelion* 應用程式得到一些啟發以及程式碼。去看看吧,它也是自由軟體喔!</string>
<string name="fragment_license__misc_Dandelion_button">再多說一些</string>
<!-- Key Names (Untranslatable) -->
<!-- Operability -->

View File

@ -6,7 +6,7 @@
<string name="shared_via_app" translatable="false">
\n\n\n_________________________\n
**Tags:** #Nomad \n\n
*via [Nomad](https://hub.disroot.org/channel/disroot) client [(Source)](https://framagit.org/disroot/AndHub)</string><!-- Edited for Nomad -->
*via [Nomad](https://hub.disroot.org/channel/nomad) client [(Source)](https://framagit.org/disroot/AndHub)</string><!-- Edited for Nomad -->
<string name="tor" translatable="false">Tor</string>
@ -26,14 +26,14 @@
</string>
<string name="fragment_license__license_gpl_link" translatable="false">https://www.gnu.org/licenses/gpl-3.0.html</string>
<string name="fragment_license__misc" translatable="false">@string/pref_title__sub_miscelaneous</string>
<string name="fragment_licesen__misc_leafpic_link" translatable="false">https://github.com/gsantner/dandelion</string>
<string name="fragment_licesen__misc_Dandelion_link" translatable="false">https://github.com/gsantner/dandelion</string>
<string name="fragment_about__fdroid_link" translatable="false">https://f-droid.org/repository/browse/?fdid=com.dfa.hubzilla_android</string>
<string name="fragment_about__about" translatable="false">@string/app_name</string>
<string name="fragment_about__contribute_link" translatable="false">https://framagit.org/disroot/AndHub</string>
<string name="fragment_about__translate_link" translatable="false">https://framagit.org/disroot/AndHub</string>
<string name="fragment_About__feedback_link" translatable="false">https://framagit.org/disroot/AndHub/issues</string>
<string name="fragment_About__feedback_link1" translatable="false">xmpp:dishub@chat.disroot.org?join</string>
<string name="fragment_About__feedback_link2" translatable="false">https://hub.disroot.org/channel/disroot</string>
<string name="fragment_About__feedback_link2" translatable="false">https://hub.disroot.org/channel/nomad</string>

View File

@ -260,7 +260,7 @@
<string name="fragment_license__license_button">GNU GPLv3+ License</string>
<string name="fragment_license__thirdparty_libs">Third-Party Libraries</string>
<string name="fragment_license__thirdparty_libs_text">The following libraries are used:</string>
<string name="fragment_license__misc_leafpic">We took some inspiration and code from Dandelion*. Go check it out, it\'s free software as well!</string><!-- edited for Nomad -->
<string name="fragment_license__misc_leafpic_button">Tell me more</string>
<string name="fragment_license__misc_Dandelion">We took some inspiration and code from Dandelion*. Go check it out, it\'s free software as well!</string><!-- edited for Nomad -->
<string name="fragment_license__misc_Dandelion_button">Tell me more</string>
</resources>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -1,4 +1,5 @@
<b>Nomad</b> is a client for the community-run, distributed social network Hubzilla.
Started as a fork of the Dandelion* app.
It adds useful features to your networking experience:
⚡ Quick access to most Hubzilla features
@ -11,6 +12,5 @@ It adds useful features to your networking experience:
✔️ Allows system independent language
<b>Support the project:</b>
✋ <a href="https://matrix.to/#/#dishub:disroot.org">Join discussion on Matrix</a>
✋ Join discussion on xmpp:dishub@chat.disroot.org
✋ Join discussion on <a href="xmpp:dishub@chat.disroot.org">xmpp:dishub@chat.disroot.org</a>
✋ Connect with us <a href="https://hub.disroot.org/channel/nomad</a>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 7.5 KiB

View File

@ -1 +1 @@
Nomad
Nomad - Hubzilla for Android