Skip to content
This repository has been archived by the owner on May 2, 2019. It is now read-only.

Commit

Permalink
Update version of agents to 1.0.0; Update Insertion Authority request…
Browse files Browse the repository at this point in the history
… key
  • Loading branch information
misaakidis committed Mar 30, 2016
1 parent 8c6b473 commit 9f40dec
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion ceno-box/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ do
PLUGINS=1
;;
m)
PLATFORMS=(darwin_amd64)
PLATFORMS=(darwin_amd64 windows_386)
esac
done

Expand Down
4 changes: 2 additions & 2 deletions ceno-box/ceno-extra/.CENO/client.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
bridgeKey=SSK@C7VZ~Ar87EKQDg7XhU2BrL8wY1Bo0cWXu3t5ODteUxQ,B6Z~AjwbM5GXusyZdjRsonnFL4KgLu4-e4SdfQwpAls,AQACAAE/
feedsLastVersion=57
bridgeKey=SSK@skyVcFU3qUK7lM-Ye2SGUwG1kQi1GPnI7tuiHttIOJA,d0aDf-qB~x7q7amxT935Kgju0Nw6TVfiIjZnPptmAF8,AQACAAE/
feedsLastVersion=0
2 changes: 1 addition & 1 deletion ceno-client/portal/html/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ <h2 id="aboutHeader5" class="directionToggles"></h2>
<p id="aboutParagraph5" class="directionToggles"></p>
<a href="https://equalit.ie">eQualit.ie</a>
<a href="https://equalit.ie"><img src="/cenoresources/images/logo_eq.png" /></a>
<p><h3>CENO version 1.0.0-beta</h3></p>
<p><h3>CENO version 1.0.0</h3></p>
</div>
{{template "SCRIPTS" . }}
<script src="/cenoresources/javascript/about.js"></script>
Expand Down
8 changes: 4 additions & 4 deletions ceno-client/src/portal.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,10 +294,10 @@ func PortalArticlesHandler(w http.ResponseWriter, r *http.Request) {
})
}
} else if err != nil {
HandleCCError(ERR_NO_ARTICLES_FILE, T("no_articles_file_err"), ErrorState{
"responseWriter": w,
"request": r,
})
HandleCCError(ERR_NO_ARTICLES_FILE, T("no_articles_file_err"), ErrorState{
"responseWriter": w,
"request": r,
})
} else {
pleaseWait(r.URL.Path, w)
}
Expand Down
8 changes: 4 additions & 4 deletions ceno-freenet/src/plugins/CENO/Client/CENOClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

/**
* CENO Client plugin
*
*
* Implements the Local Cache Server (LCS) and Request Sender (RS)
* CENO agents.
*/
Expand All @@ -45,7 +45,7 @@ public class CENOClient implements FredPlugin, FredPluginVersioned, FredPluginRe
private Thread channelMakerThread;

// Default bridge key (for the CENO bridge running on Deflect)
private static final String BRIDGE_KEY = "SSK@C7VZ~Ar87EKQDg7XhU2BrL8wY1Bo0cWXu3t5ODteUxQ,B6Z~AjwbM5GXusyZdjRsonnFL4KgLu4-e4SdfQwpAls,AQACAAE/";
private static final String BRIDGE_KEY = "SSK@skyVcFU3qUK7lM-Ye2SGUwG1kQi1GPnI7tuiHttIOJA,d0aDf-qB~x7q7amxT935Kgju0Nw6TVfiIjZnPptmAF8,AQACAAE/";

private static Long feedsLastVersion;

Expand Down Expand Up @@ -123,11 +123,11 @@ public long getRealVersion() {
public static String getBridgeKey() {
return bridgeKey;
}

public static Long getFeedsLastVersion() {
return feedsLastVersion;
}

static void setFeedsLastVersion(Long feedsLastVersionPar) {
feedsLastVersion = feedsLastVersionPar;
}
Expand Down
12 changes: 6 additions & 6 deletions ceno-freenet/src/plugins/CENO/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
public class Version implements FredPluginVersioned, FredPluginRealVersioned {

// Versions of the plugins, in human-readable and "real" format
public static final String CLIENT_VERSION = "1.0.0-beta";
public static final int CLIENT_REAL_VERSION = 14;
public static final String CLIENT_VERSION = "1.0.0";
public static final int CLIENT_REAL_VERSION = 15;

public static final String BRIDGE_VERSION = "1.0.0-beta";
public static final int BRIDGE_REAL_VERSION = 14;
public static final String BRIDGE_VERSION = "1.0.0";
public static final int BRIDGE_REAL_VERSION = 15;

public static final String BACKBONE_VERSION = "1.0.0-beta";
public static final int BACKBONE_REAL_VERSION = 14;
public static final String BACKBONE_VERSION = "1.0.0";
public static final int BACKBONE_REAL_VERSION = 15;

/** Revision number of Version.java as read from CVS */
public static final String cvsRevision = "@custom@";
Expand Down

0 comments on commit 9f40dec

Please sign in to comment.