readme update

This commit is contained in:
Öppen 2020-11-03 23:22:03 +00:00
parent 56a63538e3
commit 0a737765d0
3 changed files with 6 additions and 8 deletions

View File

@ -1,6 +1,6 @@
# Ariane (formerly Två, and briefly Gem)
# Ariane
A Gemini protocol browser for Android based OS
A Gemini protocol browser for Android based OS. Formerly called Två, and briefly Gem.
## Releases
@ -8,8 +8,6 @@ See the project page on Öppenlab.net for latest download: [oppenlab.net/pr/aria
## TLS
**Note: Ariane is currently failing for some Gemini addresses (mostly any flounder.online capsules)**
From the [Gemini specification](https://gemini.circumlunar.space/docs/specification.html):
> Use of TLS for Gemini transactions is mandatory.
@ -53,7 +51,7 @@ That's it as far as the spec is concered, the rest is down to the Android API
* [SSLSocket](https://developer.android.com/reference/javax/net/ssl/SSLSocket)
* [Android keystore system](https://developer.android.com/training/articles/keystore.html)
Ariane is failing a socket handshake with the flounder.online gemini server, server details: https://www.ssllabs.com/ssltest/analyze.html?d=flounder.online
Ariane is failing a socket handshake with flounder.online, we're investigating. Server details: https://www.ssllabs.com/ssltest/analyze.html?d=flounder.online
```
socket error: javax.net.ssl.SSLHandshakeException: Read error: ssl=0xb4000075dcd530d8: Failure in SSL library, usually a protocol error

View File

@ -11,8 +11,8 @@
"type": "SINGLE",
"filters": [],
"properties": [],
"versionCode": 7,
"versionName": "1.0.0",
"versionCode": 8,
"versionName": "2.0.0",
"enabled": true,
"outputFile": "app-release.apk"
}

View File

@ -5,7 +5,7 @@ import android.app.Application
class Ariane: Application() {
companion object{
const val DEFAULT_HOME_CAPSULE = "gemini://oppen.flounder.online/ariane.gmi"
const val DEFAULT_HOME_CAPSULE = "gemini://gemini.circumlunar.space/~oppen/index.gmi"
const val GEMINI_USER_SEARCH_BASE = "gemini://gus.guru/search?"
const val GEMINI_BACKLINK_BASE = "gemini://gus.guru/backlinks?"
}