Browse Source

Release version 1.0

Carsten Porth 5 years ago
parent
commit
bbe71012f3

BIN
app/apk/hybrid-osn-1.0.0_SIGNED.apk


+ 1 - 1
app/config.xml

@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding='utf-8'?>
 <?xml version='1.0' encoding='utf-8'?>
-<widget id="de.porth.hybridosn" version="0.5.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
+<widget id="de.porth.hybridosn" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
     <name>HybridOSN</name>
     <name>HybridOSN</name>
     <description>HybridOSN is a Twitter client for Android. Beside the usual Twitter experience, the users can decide to exchange their data via a P2P network thus Twitter can't use this data.</description>
     <description>HybridOSN is a Twitter client for Android. Beside the usual Twitter experience, the users can decide to exchange their data via a P2P network thus Twitter can't use this data.</description>
     <author email="carsten.porth@stud.tu-darmstadt.de">Carsten Porth</author>
     <author email="carsten.porth@stud.tu-darmstadt.de">Carsten Porth</author>

+ 1 - 1
app/package.json

@@ -1,6 +1,6 @@
 {
 {
   "name": "hybrid-osn",
   "name": "hybrid-osn",
-  "version": "0.5.1",
+  "version": "1.0.0",
   "author": "Carsten Porth, TU Darmstadt",
   "author": "Carsten Porth, TU Darmstadt",
   "homepage": "https://www.informatik.tu-darmstadt.de",
   "homepage": "https://www.informatik.tu-darmstadt.de",
   "private": true,
   "private": true,

+ 1 - 1
app/src/pages/about/about.html

@@ -7,5 +7,5 @@
 
 
 <ion-content padding>
 <ion-content padding>
   <p>Hybrid OSN is a hybrid Twitter client for Android. While Twitter can be used as usual, data can also be securely exchanged with other users via a P2P network. Therefore Twitter is not able to analyse, sell or censor this data.</p>
   <p>Hybrid OSN is a hybrid Twitter client for Android. While Twitter can be used as usual, data can also be securely exchanged with other users via a P2P network. Therefore Twitter is not able to analyse, sell or censor this data.</p>
-  <p>Hybrid OSN was developed by Carsten Porth under the supervision of Aidmar Wainakh and Jörg Daubert as part of a master thesis at TU Darmstadt. It is a prototype which was programmed as proof of concept.</p>
+  <p>Hybrid OSN was developed by Carsten Porth under the supervision of Aidmar Wainakh and Jörg Daubert as part of a master thesis at TU Darmstadt. It is a prototype which was created as proof of concept.</p>
 </ion-content>
 </ion-content>

+ 1 - 1
app/src/providers/p2p-database-gun/p2p-database-gun.ts

@@ -5,7 +5,7 @@ import "gun/lib/then";
 @Injectable()
 @Injectable()
 export class P2pDatabaseGunProvider {
 export class P2pDatabaseGunProvider {
   private gun;
   private gun;
-  osnPrefix: string = "hybridOSN-beta011";
+  osnPrefix: string = "hybridOSN-v1.0.0";
 
 
   constructor() {
   constructor() {
     this.gun = Gun(["https://hybrid-osn.herokuapp.com/gun"]);
     this.gun = Gun(["https://hybrid-osn.herokuapp.com/gun"]);

+ 1 - 1
dashboard/app.js

@@ -1,5 +1,5 @@
 const gun = Gun("https://hybrid-osn.herokuapp.com/gun");
 const gun = Gun("https://hybrid-osn.herokuapp.com/gun");
-const gunId = "hybridOSN-beta011";
+const gunId = "hybridOSN-v1.0.0";
 
 
 const app = new Vue({
 const app = new Vue({
   el: "#app",
   el: "#app",