mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-11 18:29:05 +01:00
Rename client version to major version.
This commit is contained in:
@@ -22,9 +22,9 @@ public interface BlogManager {
|
||||
ClientId CLIENT_ID = new ClientId("org.briarproject.briar.blog");
|
||||
|
||||
/**
|
||||
* The current version of the blog client.
|
||||
* The current major version of the blog client.
|
||||
*/
|
||||
int CLIENT_VERSION = 0;
|
||||
int MAJOR_VERSION = 0;
|
||||
|
||||
/**
|
||||
* Adds the given {@link Blog).}
|
||||
|
||||
@@ -11,7 +11,7 @@ public interface BlogSharingManager extends SharingManager<Blog> {
|
||||
ClientId CLIENT_ID = new ClientId("org.briarproject.briar.blog.sharing");
|
||||
|
||||
/**
|
||||
* The current version of the blog sharing client.
|
||||
* The current major version of the blog sharing client.
|
||||
*/
|
||||
int CLIENT_VERSION = 0;
|
||||
int MAJOR_VERSION = 0;
|
||||
}
|
||||
|
||||
@@ -16,9 +16,9 @@ public interface FeedManager {
|
||||
ClientId CLIENT_ID = new ClientId("org.briarproject.briar.feed");
|
||||
|
||||
/**
|
||||
* The current version of the RSS feed client.
|
||||
* The current major version of the RSS feed client.
|
||||
*/
|
||||
int CLIENT_VERSION = 0;
|
||||
int MAJOR_VERSION = 0;
|
||||
|
||||
/**
|
||||
* Adds an RSS feed as a new dedicated blog.
|
||||
|
||||
@@ -23,9 +23,9 @@ public interface ForumManager {
|
||||
ClientId CLIENT_ID = new ClientId("org.briarproject.briar.forum");
|
||||
|
||||
/**
|
||||
* The current version of the forum client.
|
||||
* The current major version of the forum client.
|
||||
*/
|
||||
int CLIENT_VERSION = 0;
|
||||
int MAJOR_VERSION = 0;
|
||||
|
||||
/**
|
||||
* Subscribes to a forum.
|
||||
|
||||
@@ -11,7 +11,7 @@ public interface ForumSharingManager extends SharingManager<Forum> {
|
||||
ClientId CLIENT_ID = new ClientId("org.briarproject.briar.forum.sharing");
|
||||
|
||||
/**
|
||||
* The current version of the forum sharing client.
|
||||
* The current major version of the forum sharing client.
|
||||
*/
|
||||
int CLIENT_VERSION = 0;
|
||||
int MAJOR_VERSION = 0;
|
||||
}
|
||||
|
||||
@@ -21,9 +21,9 @@ public interface IntroductionManager extends ConversationClient {
|
||||
ClientId CLIENT_ID = new ClientId("org.briarproject.briar.introduction");
|
||||
|
||||
/**
|
||||
* The current version of the introduction client.
|
||||
* The current major version of the introduction client.
|
||||
*/
|
||||
int CLIENT_VERSION = 1;
|
||||
int MAJOR_VERSION = 1;
|
||||
|
||||
/**
|
||||
* Returns true if both contacts can be introduced at this moment.
|
||||
|
||||
@@ -19,9 +19,9 @@ public interface MessagingManager extends ConversationClient {
|
||||
ClientId CLIENT_ID = new ClientId("org.briarproject.briar.messaging");
|
||||
|
||||
/**
|
||||
* The current version of the messaging client.
|
||||
* The current major version of the messaging client.
|
||||
*/
|
||||
int CLIENT_VERSION = 0;
|
||||
int MAJOR_VERSION = 0;
|
||||
|
||||
/**
|
||||
* Stores a local private message.
|
||||
|
||||
@@ -22,9 +22,9 @@ public interface PrivateGroupManager {
|
||||
ClientId CLIENT_ID = new ClientId("org.briarproject.briar.privategroup");
|
||||
|
||||
/**
|
||||
* The current version of the private group client.
|
||||
* The current major version of the private group client.
|
||||
*/
|
||||
int CLIENT_VERSION = 0;
|
||||
int MAJOR_VERSION = 0;
|
||||
|
||||
/**
|
||||
* Adds a new private group and joins it.
|
||||
|
||||
@@ -26,9 +26,9 @@ public interface GroupInvitationManager extends ConversationClient {
|
||||
new ClientId("org.briarproject.briar.privategroup.invitation");
|
||||
|
||||
/**
|
||||
* The current version of the private group invitation client.
|
||||
* The current major version of the private group invitation client.
|
||||
*/
|
||||
int CLIENT_VERSION = 0;
|
||||
int MAJOR_VERSION = 0;
|
||||
|
||||
/**
|
||||
* Sends an invitation to share the given private group with the given
|
||||
|
||||
Reference in New Issue
Block a user