Skip to content

Commit

Permalink
update website url
Browse files Browse the repository at this point in the history
  • Loading branch information
Mas7erMind committed Feb 29, 2024
1 parent 2b03685 commit c8aa227
Show file tree
Hide file tree
Showing 57 changed files with 149 additions and 146 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ A secure and light weight wallet to store your Scala coins on any Android device
* Forked from [monerujo](https://github.com/m2049r/xmrwallet)

## Contacts
* [Website](https://scalaproject.io/)
* [hello@scalaproject.io](mailto:hello@scalaproject.io)
* [Website](https://scala.network/)
* [hello@scala.network](mailto:hello@scala.network)
* [Discord](https://discord.gg/djAFVvy)
* [Telegram](https://t.me/scalaofficial)
* [Twitter](https://twitter.com/scalahq)
Expand Down
4 changes: 2 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"nodes": [{
"host": "remote.one.scalaproject.io",
"host": "remote.one.scala.network",
"port": "11812"
},
{
"host": "remote.two.scalaproject.io",
"host": "remote.two.scala.network",
"port": "11812"
},
{
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
compileSdk 33
minSdkVersion 21
targetSdkVersion 33
versionCode 12
versionName "1.1.1"
versionCode 13
versionName "1.1.2"

testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
externalNativeBuild {
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/io/scalaproject/vault/LoginActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public class LoginActivity extends BaseActivity
// USAGE: The GitHub raw file might not be available in some countries, so the IPFS option
// is a fallback. When the DEFAULT_NODES_REPOSITORY file is modified, we need to upload the new file
// to the IPNS gateway as well.
static private final String IPNS_NAME = "node-list.scalaproject.io";
static private final String IPNS_NAME = "node-list.scala.network";
static private final String[] NODES_REPOSITORY_IPNS_GATEWAYS = {
"https://dweb.link/ipns/",
"https://ipfs.io/ipns/",
Expand All @@ -115,7 +115,7 @@ public class LoginActivity extends BaseActivity
static private final String DEFAULT_NODE = "{\n" +
"\"nodes\": [\n" +
"{\n" +
"\"host\": \"remote.one.scalaproject.io\",\n" +
"\"host\": \"remote.one.scala.network\",\n" +
"\"port\": \"11812\"\n" +
"} ]\n" +
"}";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,13 @@
import timber.log.Timber;

@AcraCore(buildConfigClass = BuildConfig.class)
@AcraMailSender(mailTo = "hello@scalaproject.io")
@AcraMailSender(mailTo = "support@scala.network")
public class ScalaVaultApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
SharedPreferences preferences = getSharedPreferences(getPackageName() + "_preferences", MODE_PRIVATE);
Config.initialize(preferences);

if (BuildConfig.DEBUG) {
Timber.plant(new Timber.DebugTree());
}
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/io/scalaproject/vault/TxFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ private void show(TransactionInfo info) {
tvTxId.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String paymentURL = "https://explorer.scalaproject.io/tx/" + tvTxId.getText();
String paymentURL = "https://explorer.scala.network/tx/" + tvTxId.getText();
Uri uri = Uri.parse(paymentURL);
startActivity(new Intent(Intent.ACTION_VIEW, uri));
}
Expand Down
37 changes: 22 additions & 15 deletions app/src/main/java/io/scalaproject/vault/WalletActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -807,14 +807,16 @@ public void run() {
});
}

Wallet wal = getWallet();
String walletAddress = wal.getAddress();
if (walletAddress != null) {
runOnUiThread(new Runnable() {
public void run() {
initWalletFragmentAddress(walletAddress);
}
});
Wallet wallet = getWallet();
if(wallet != null ) {
String walletAddress = wallet.getAddress();
if (walletAddress != null) {
runOnUiThread(new Runnable() {
public void run() {
initWalletFragmentAddress(walletAddress);
}
});
}
}
}

Expand Down Expand Up @@ -881,11 +883,13 @@ public void onProgress(final String text) {
try {
final WalletFragment walletFragment = (WalletFragment)
getSupportFragmentManager().findFragmentByTag(WalletFragment.class.getName());
runOnUiThread(new Runnable() {
public void run() {
walletFragment.setProgress(text);
}
});
if(walletFragment != null) {
runOnUiThread(new Runnable() {
public void run() {
walletFragment.setProgress(text);
}
});
}
} catch (ClassCastException ex) {
// not in wallet fragment (probably send scala)
Timber.d(ex.getLocalizedMessage());
Expand Down Expand Up @@ -1326,8 +1330,11 @@ private void addAccount() {
}

public void onCopyAddress(View view) {
Helper.clipBoardCopy(this, getString(R.string.label_copy_address), getWallet().getAddress());
Toast.makeText(this, getString(R.string.message_copy_address), Toast.LENGTH_SHORT).show();
Wallet wallet = getWallet();
if(wallet != null) {
Helper.clipBoardCopy(this, getString(R.string.label_copy_address), getWallet().getAddress());
Toast.makeText(this, getString(R.string.message_copy_address), Toast.LENGTH_SHORT).show();
}
}

private class AsyncAddAccount extends AsyncTask<Void, Void, Boolean> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ private void updateWalletInfo(Wallet wallet) {
tvAddressType.setText("Subaddress");
}

if(wallet == null)
if(wallet != null)
tvWalletAddress.setText(Helper.getPrettyAddress(wallet.getAddress()));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public void onResumeFragment() {
tvTxId.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String paymentURL = "https://explorer.scalaproject.io/tx/" + tvTxId.getText();
String paymentURL = "https://explorer.scala.network/tx/" + tvTxId.getText();
Uri uri = Uri.parse(paymentURL);
startActivity(new Intent(Intent.ACTION_VIEW, uri));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public ExchangeApiImpl(@NonNull final OkHttpClient okHttpClient, final HttpUrl b
}

public ExchangeApiImpl(@NonNull final OkHttpClient okHttpClient) {
this(okHttpClient, HttpUrl.parse("https://prices.scalaproject.io/"));
this(okHttpClient, HttpUrl.parse("https://prices.scala.network/"));
}

@Override
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/values-cat/about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<br/>
Scala Team
<br/><br/>
<a href="https://scalaproject.io/">scalaproject.io</a>
<a href="https://scala.network/">scala.network</a>
]]></string>

<string name="privacy_policy"><![CDATA[
Expand Down Expand Up @@ -40,14 +40,14 @@
<li>CAMERA : Escanejar codis QR per rebre Scala</li>
</ul>
<h2>Canvis en aquesta Política de Privacitat</h2>
<p>És possible que actualitzem aquesta política de privacitat de tant en tant. Li notificarem de qualsevol canvi publicant la nova política de privacitat a l’aplicació i al lloc web (www.scalaproject.io)
<p>És possible que actualitzem aquesta política de privacitat de tant en tant. Li notificarem de qualsevol canvi publicant la nova política de privacitat a l’aplicació i al lloc web (www.scala.network)
         Us recomanem que reviseu aquesta política de privacitat periòdicament per conèixer els canvis.
<p>Aquesta Política de Privacitat es va actualitzar per darrer cop: 10th November, 2017.
</p>
<h2>Contacti amb nosaltres</h2>
<p>Si teniu alguna consulta sobre la nostra política de privadesa,
         o com es recullen i processen les vostres dades,
         si us plau envieu un correu electrònic a hello@scalaproject.io.
         si us plau envieu un correu electrònic a hello@scala.network.
</p>
]]></string>
</resources>
4 changes: 2 additions & 2 deletions app/src/main/res/values-cat/help.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<h1>Llista de Portamonedes</h1>
<h2>Node</h2>
<p>Scala Vault utilitza un node remot per comunicar-se amb la xarxa Scala sense necessitat
         de descarregar i emmagatzemar una còpia de tota la blockchain sencera. Podeu trobar una llista dels nodes remots més populars o aprendre a configurar el vostre propi node remot aquí https://scalaproject.io/<p>
         de descarregar i emmagatzemar una còpia de tota la blockchain sencera. Podeu trobar una llista dels nodes remots més populars o aprendre a configurar el vostre propi node remot aquí https://scala.network/<p>
<p>Scala Vault té alguns Nodes remots incorporats. Se’n recorda dels últims cinc nodes empleats.</p>
<h2>Portamonedes</h2>
<p>Aquí podeu veure els portamonedes. Es troben a la carpeta <tt> Scala Vault </tt>
Expand All @@ -102,7 +102,7 @@
<h2>ID de Pagament</h2>
Podeu utilitzar un ID de pagament per identificar el motiu pel qual heu enviat a Scala entre dues parts. Això és totalment opcional i privat. Per exemple, això pot permetre a una empresa associar la transacció amb un article que heu comprat.
<h2>ID de Transacció</h2>
Aquest és el vostre ID de transacció que podeu utilitzar per identificar la vostra transacció oculta en un Explorador de Blockchain de Scala com <a href="https:// xlachain.net/"> https://explorer.scalaproject.io/ </a>
Aquest és el vostre ID de transacció que podeu utilitzar per identificar la vostra transacció oculta en un Explorador de Blockchain de Scala com <a href="https:// xlachain.net/"> https://explorer.scala.network/ </a>
<h2>Clau de Transacció</h2>
Aquesta és la vostra clau privada de transacció, manteniu-la segureta ja que mostrar-la a tercers els revelia quina signatura dins un anell és la vostra, fent que la vostra transacció sigui transparent.
<h2>Bloc</h2>
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/values-de/about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<br/>
Scala Team
<br/><br/>
<a href="https://scalaproject.io/">scalaproject.io</a>
<a href="https://scala.network/">scala.network</a>
]]></string>

<string name="privacy_policy"><![CDATA[
Expand Down Expand Up @@ -47,14 +47,14 @@
<h2>Änderungen an dieser Datenschutzerklärung</h2>
<p>Wir können diese Datenschutzerklärung von Zeit zu Zeit aktualisieren.
Wir werden dich über jegliche Änderungen an der Datenschutzerklärung in der App und auf der
Website (www.scalaproject.io) informieren.
Website (www.scala.network) informieren.
Es wird empfohlen, diese Datenschutzerklärung regelmäßig auf Änderungen zu überprüfen.
<p>Diese Datenschutzerklärung wurde zuletzt geändert am: 10. November 2017.
</p>
<h2>Kontakt</h2>
<p>Wenn du Fragen zu unserer Datenschutzerklärung hast,
oder wie deine Daten gesammelt und verarbeitet werden,
schreibe bitte eine eMail an hello@scalaproject.io
schreibe bitte eine eMail an hello@scala.network
</p>
]]></string>
</resources>
4 changes: 2 additions & 2 deletions app/src/main/res/values-de/help.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
<h2>Node</h2>
<p>Scala Vault benutzt einen Drittanbieter-Node, um mit dem Scala-Netzwerk zu kommunizieren, ohne
die gesamte Blockchain herunterladen zu müssen. Eine Liste bekannter Drittanbieter-Nodes
oder eine Anleitung zum Betreiben eines eigenen Drittanbieter-Nodes findest du unter https://scalaproject.io/<p>
oder eine Anleitung zum Betreiben eines eigenen Drittanbieter-Nodes findest du unter https://scala.network/<p>
<p>Scala Vault besitzt einige voreingestellte Drittanbieter-Nodes. Es erinnert sich an die letzten 5 benutzten Nodes.</p>
<h2>Wallets</h2>
<p>Hier siehst du deine Wallets. Sie befinden sich im <tt>scala vault</tt> Ordner
Expand Down Expand Up @@ -130,7 +130,7 @@
Zum Beispiel kann ein Unternehmen damit Zahlungen und Verkäufe miteinander verbinden.
<h2>TX-ID</h2>
Dies ist deine Transaktions-ID, die du benutzen kannst, um verschleierte Transaktionen mit einem Scala-
Blockchain-Explorer wie <a href="https://explorer.scalaproject.io/">https://explorer.scalaproject.io/</a> zu identifizieren.
Blockchain-Explorer wie <a href="https://explorer.scala.network/">https://explorer.scala.network/</a> zu identifizieren.
<h2>TX-Schlüssel (Transaktionsschlüssel)</h2>
Dies ist dein geheimer Transaktionsschlüssel. Bewahre ihn sicher auf, da er Dritten deine Signatur in einem Ring offenbart
und deshalb deine Transaktionen transparent macht.
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/values-el/about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<br/>
Scala Team
<br/><br/>
<a href="https://scalaproject.io/">scalaproject.io</a>
<a href="https://scala.network/">scala.network</a>
]]></string>

<string name="privacy_policy"><![CDATA[
Expand Down Expand Up @@ -47,14 +47,14 @@
<h2>Changes to this Privacy Policy</h2>
<p>We may update this privacy policy from time to time. We will notify
you of any changes by posting the new privacy policy in the app and on the
website (www.scalaproject.io)
website (www.scala.network)
You are advised to review this privacy policy periodically for any changes.
<p>This Privacy Policy was last updated: 10th November, 2017.
</p>
<h2>Contact Us</h2>
<p>If you have any questions about our privacy policy,
or how your data is being collected and processed,
please e-mail hello@scalaproject.io.
please e-mail hello@scala.network.
</p>
]]></string>
</resources>
4 changes: 2 additions & 2 deletions app/src/main/res/values-el/help.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<h2>Κόμβος</h2>
<p>Το Scala Vault χρησιμοποιεί έναν Απομακρυσμένο Κόμβο(Remote Node) για επικοινωνία με το Δίκτυο του Scala χωρίς
να χρειάζεται να κατεβάσει και αποθηκεύσει ολόκληρο το blockchain. Μπορείς να βρεις μια λίστα απο δημοφιλείς
απομακρυσμένους κόμβους ή να μάθεις πως να τρέχεις τον δικό σου απομακρυσμένο κόμβο εδώ https://scalaproject.io/<p>
απομακρυσμένους κόμβους ή να μάθεις πως να τρέχεις τον δικό σου απομακρυσμένο κόμβο εδώ https://scala.network/<p>
<p>Το Scala Vault έχει κάποιους προκαθορισμένους Απομακρυσμένους Κόμβους. Θυμάται τους τελευταίους πέντε που χρησιμοποιήθηκαν.</p>
<h2>Πορτοφόλια</h2>
<p>Εδώ βλέπεις τα πορτοφόλια σου. Βρίσκοντε στον φάκελο <tt>scala vault</tt>
Expand Down Expand Up @@ -109,7 +109,7 @@
να κανονίσει την συναλλαγή σου με ένα αντικείμενο που αγόρασες.
<h2>ID Συναλλαγής(TX ID)</h2>
Αυτό είναι το ID της συναλλαγής που μπορείς να χρησιμοποιήσεις για να διευκρινήσεις την θολωμένη συναλλαγή σου σε εναν Scala
Blockchain εξερευνητή όπως το <a href="https://explorer.scalaproject.io/">https://explorer.scalaproject.io/</a>
Blockchain εξερευνητή όπως το <a href="https://explorer.scala.network/">https://explorer.scala.network/</a>
<h2>Κλειδί συναλλαγής(TX KEY)</h2>
Αυτό είναι το ιδιωτικό κλειδί της συναλλαγής σου, κράτησέ το ασφαλές από τρίτους γιατί
αποκαλύπτει ποια υπογραφή σε έναν δακτύλιο(ring) είναι δική σου, επομένως κάνει την συναλλαγή σου φανερή.
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/values-eo/about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
m2049r, baltsar777, anhdres, keejef,
rehrar, EarlOfEgo, ErCiccione kaj aliaj.
<br/><br/>
<a href="https://scalaproject.io/">scalaproject.io</a>
<a href="https://scala.network/">scala.network</a>
]]></string>

<string name="privacy_policy"><![CDATA[
Expand Down Expand Up @@ -44,14 +44,14 @@
<h2>Ŝanĝoj de la privateca politiko</h2>
<p>Ni eble ĝisdatigos tiun privatecan politikon de temp\' al tempo. Ni
sciigos vin pri ĉiu ŝanĝo tiel : ni sendos la novan privatecan politikon en la
aplikaĵon kaj sur la retejo (www.scalaproject.io)
aplikaĵon kaj sur la retejo (www.scala.network)
Ni konsilas al vi, ke vi regule gvatu tiun dokumenton kaze de ŝanĝoj.
<p>Tiu privateca politiko ĝisdatiĝis lastfoje la 10an de novembro 2017.
</p>
<h2>Kontaktu nin</h2>
<p>Se vi havas ian demandon pri nia privateca politiko,
aŭ pri kiel viaj datumoj kolektiĝas kaj traktiĝas,
kontaktu retpoŝte hello@scalaproject.io.
kontaktu retpoŝte hello@scala.network.
</p>
]]></string>
</resources>
4 changes: 2 additions & 2 deletions app/src/main/res/values-eo/help.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
<h2>Nodo</h2>
<p>Scala Vault uzas foran nodon por komuniki kun la Scala-Reto sen elŝuti kaj konservi kopion
de la tuta blokĉeno. Vi povas trovi liston de popularaj foraj nodoj, aŭ lerni kiel starigi
vian propran foran nodon, tie : https://scalaproject.io/</p>
vian propran foran nodon, tie : https://scala.network/</p>
<p>Scala Vault estas jam antaŭagordita por kelkaj foraj nodoj. Ĝi memoros la kvin laste uzitajn
nodojn. </p>
Expand Down Expand Up @@ -160,7 +160,7 @@
<h2>Transakcia ID</h2>
Tio identigas vian transakcion, vi povas uzi ĝin por sekvi vian tro daŭran transakction ĉe
Monera blokĉen-esplorilo, kiel <a href="https://explorer.scalaproject.io/">https://explorer.scalaproject.io/</a>
Monera blokĉen-esplorilo, kiel <a href="https://explorer.scala.network/">https://explorer.scala.network/</a>
<h2>Transakcia ŝlosilo</h2>
Tio estas la privata ŝlosilo de la transakcio, vi konservu ĝin sekrete. Se iu triulo vidos
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/values-es/about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<br/>
Scala Team
<br/><br/>
<a href="https://scalaproject.io/">scalaproject.io</a>
<a href="https://scala.network/">scala.network</a>
]]></string>

<string name="privacy_policy"><![CDATA[
Expand Down Expand Up @@ -43,15 +43,15 @@
<h2>Cambios a esta Política de Privacidad</h2>
<p>Es posible que actualicemos esta política de privacidad de vez en cuando. Le
notificaremos de cualquier cambio publicando la nueva política de privacidad en la app
y en el sitio web (www.scalaproject.io)
y en el sitio web (www.scala.network)
Le aconsejamos que revise esta política de privacidad periódicamente para cualquier
cambio.
<p>Esta Política de Privacidad fue actualizada por última vez: 10 de Noviembre de 2017.
</p>
<h2>Contáctanos</h2>
<p>Si tiene cualquier cuestión sobre nuestra política de privacidad,
o sobre como sus datos están siendo recolectados y procesados,
por favor escríbanos a hello@scalaproject.io
por favor escríbanos a hello@scala.network
</p>
]]></string>
</resources>
Loading

0 comments on commit c8aa227

Please sign in to comment.