Merge pull request #738 from nextcloud/increment-versions
[stable10] Increment the versions and adjust the capitilization
This commit is contained in:
commit
167e248177
|
@ -14,5 +14,4 @@
|
|||
<types>
|
||||
<logging/>
|
||||
</types>
|
||||
<default_enable/>
|
||||
</info>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<licence>AGPL</licence>
|
||||
<author>Arthur Schiwon, Vincent Petry</author>
|
||||
<default_enable/>
|
||||
<version>0.3.0</version>
|
||||
<version>1.0.0</version>
|
||||
<dependencies>
|
||||
<owncloud min-version="9.1" max-version="9.1" />
|
||||
</dependencies>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<description>WebDAV endpoint</description>
|
||||
<licence>AGPL</licence>
|
||||
<author>owncloud.org</author>
|
||||
<version>0.2.5</version>
|
||||
<version>1.0.0</version>
|
||||
<default_enable/>
|
||||
<types>
|
||||
<filesystem/>
|
||||
|
|
|
@ -73,18 +73,18 @@ class StatusController extends Controller {
|
|||
case Session::INIT_EXECUTED:
|
||||
$status = 'interactionNeeded';
|
||||
$message = (string)$this->l->t(
|
||||
'Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.'
|
||||
'Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files.'
|
||||
);
|
||||
break;
|
||||
case Session::NOT_INITIALIZED:
|
||||
$status = 'interactionNeeded';
|
||||
$message = (string)$this->l->t(
|
||||
'Encryption App is enabled but your keys are not initialized, please log-out and log-in again'
|
||||
'Encryption app is enabled but your keys are not initialized, please log-out and log-in again'
|
||||
);
|
||||
break;
|
||||
case Session::INIT_SUCCESSFUL:
|
||||
$status = 'success';
|
||||
$message = (string)$this->l->t('Encryption App is enabled and ready');
|
||||
$message = (string)$this->l->t('Encryption app is enabled and ready');
|
||||
}
|
||||
|
||||
return new DataResponse(
|
||||
|
|
|
@ -7,7 +7,7 @@ style('encryption', 'settings-admin');
|
|||
?>
|
||||
<form id="ocDefaultEncryptionModule" class="sub-section">
|
||||
<?php if(!$_["initStatus"]): ?>
|
||||
<?php p($l->t("Encryption App is enabled but your keys are not initialized, please log-out and log-in again")); ?>
|
||||
<?php p($l->t("Encryption app is enabled but your keys are not initialized, please log-out and log-in again")); ?>
|
||||
<?php else: ?>
|
||||
<p id="encryptHomeStorageSetting">
|
||||
<input type="checkbox" class="checkbox" name="encrypt_home_storage" id="encryptHomeStorage"
|
||||
|
|
|
@ -5,7 +5,7 @@ script('encryption', 'settings-personal');
|
|||
script('core', 'multiselect');
|
||||
?>
|
||||
<form id="ocDefaultEncryptionModule" class="section">
|
||||
<h2><?php p($l->t('basic encryption module')); ?></h2>
|
||||
<h2><?php p($l->t('Basic encryption module')); ?></h2>
|
||||
|
||||
<?php if ($_["initialized"] === \OCA\Encryption\Session::NOT_INITIALIZED ): ?>
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
<?xml version="1.0"?>
|
||||
<info>
|
||||
<id>federatedfilesharing</id>
|
||||
<name>Federated File Sharing</name>
|
||||
<name>Federated file sharing</name>
|
||||
<description>Provide federated file sharing across servers</description>
|
||||
<licence>AGPL</licence>
|
||||
<author>Bjoern Schiessle, Roeland Jago Douma</author>
|
||||
<version>0.3.0</version>
|
||||
<version>1.0.0</version>
|
||||
<namespace>FederatedFileSharing</namespace>
|
||||
<category>other</category>
|
||||
<dependencies>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<description>Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing.</description>
|
||||
<licence>AGPL</licence>
|
||||
<author>Bjoern Schiessle</author>
|
||||
<version>0.1.0</version>
|
||||
<version>1.0.0</version>
|
||||
<namespace>Federation</namespace>
|
||||
<category>other</category>
|
||||
<dependencies>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<admin>admin-external-storage</admin>
|
||||
</documentation>
|
||||
<rememberlogin>false</rememberlogin>
|
||||
<version>0.6.0</version>
|
||||
<version>1.0.0</version>
|
||||
<types>
|
||||
<filesystem/>
|
||||
</types>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0"?>
|
||||
<info>
|
||||
<id>files_sharing</id>
|
||||
<name>Share Files</name>
|
||||
<name>File sharing</name>
|
||||
<description>
|
||||
This application enables users to share files within ownCloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within ownCloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of ownCloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.
|
||||
Turning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the ownCloud Documentation.
|
||||
|
@ -10,7 +10,7 @@ Turning the feature off removes shared files and folders on the server for all s
|
|||
<licence>AGPL</licence>
|
||||
<author>Michael Gapczynski, Bjoern Schiessle</author>
|
||||
<default_enable/>
|
||||
<version>0.10.0</version>
|
||||
<version>1.0.0</version>
|
||||
<types>
|
||||
<filesystem/>
|
||||
</types>
|
||||
|
|
|
@ -10,7 +10,7 @@ To prevent a user from running out of disk space, the Deleted files app will not
|
|||
<licence>AGPL</licence>
|
||||
<author>Bjoern Schiessle</author>
|
||||
<default_enable/>
|
||||
<version>0.9.0</version>
|
||||
<version>1.0.0</version>
|
||||
<types>
|
||||
<filesystem/>
|
||||
</types>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
<documentation>
|
||||
<admin>admin-provisioning-api</admin>
|
||||
</documentation>
|
||||
<version>0.5.0</version>
|
||||
<version>1.0.0</version>
|
||||
<namespace>Provisioning_API</namespace>
|
||||
<types>
|
||||
<prevent_group_restriction/>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<licence>AGPL</licence>
|
||||
<author>Vincent Petry, Joas Schilling</author>
|
||||
<default_enable/>
|
||||
<version>0.3.0</version>
|
||||
<version>1.0.0</version>
|
||||
<dependencies>
|
||||
<owncloud min-version="9.1" max-version="9.1" />
|
||||
</dependencies>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<description>This app is only for testing! It is dangerous to have it enabled in a live instance</description>
|
||||
<licence>AGPL</licence>
|
||||
<author>Joas Schilling</author>
|
||||
<version>0.1.0</version>
|
||||
<version>1.0.0</version>
|
||||
<dependencies>
|
||||
<owncloud min-version="9.1" max-version="9.1" />
|
||||
</dependencies>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<description>Adjust the Nextcloud theme</description>
|
||||
<licence>AGPL</licence>
|
||||
<author>Nextcloud</author>
|
||||
<version>0.2.0</version>
|
||||
<version>1.0.0</version>
|
||||
<namespace>Theming</namespace>
|
||||
<category>other</category>
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<description>Displays update notifications for ownCloud and provides the SSO for the updater.</description>
|
||||
<licence>AGPL</licence>
|
||||
<author>Lukas Reschke</author>
|
||||
<version>0.2.1</version>
|
||||
<version>1.0.0</version>
|
||||
<namespace>UpdateNotification</namespace>
|
||||
<default_enable/>
|
||||
<dependencies>
|
||||
|
|
|
@ -9,7 +9,7 @@ A user logs into ownCloud with their LDAP or AD credentials, and is granted acce
|
|||
</description>
|
||||
<licence>AGPL</licence>
|
||||
<author>Dominik Schmidt and Arthur Schiwon</author>
|
||||
<version>0.9.0</version>
|
||||
<version>1.0.0</version>
|
||||
<types>
|
||||
<authentication/>
|
||||
</types>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0"?>
|
||||
<info>
|
||||
<id>workflowengine</id>
|
||||
<name>Files Workflow Engine</name>
|
||||
<name>Files workflow engine</name>
|
||||
<description></description>
|
||||
<licence>AGPL</licence>
|
||||
<author>Morris Jobke</author>
|
||||
|
|
|
@ -282,7 +282,6 @@ Feature: provisioning
|
|||
Then the OCS status code should be "100"
|
||||
And the HTTP status code should be "200"
|
||||
And apps returned are
|
||||
| admin_audit |
|
||||
| comments |
|
||||
| dav |
|
||||
| federatedfilesharing |
|
||||
|
|
Loading…
Reference in New Issue