summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2016-11-15 20:56:41 +0100
committerGitHub <noreply@github.com>2016-11-15 20:56:41 +0100
commit51688986df4a4d3d99ede3576c1639917a3da738 (patch)
treea70c805530cfdebd9ea895d1287b3c5953eefb6c /core
parentd7665292a26ccef2971a51d8271307844cfaefae (diff)
parentf07d75a4dda0b6c6de126561d74da6e5a449fb99 (diff)
downloadnextcloud-server-51688986df4a4d3d99ede3576c1639917a3da738.tar.gz
nextcloud-server-51688986df4a4d3d99ede3576c1639917a3da738.zip
Merge pull request #2139 from nextcloud/increase-version-to-ELF
Use 11.0 instead 9.2
Diffstat (limited to 'core')
-rw-r--r--core/js/files/client.js8
-rw-r--r--core/js/public/appconfig.js12
2 files changed, 10 insertions, 10 deletions
diff --git a/core/js/files/client.js b/core/js/files/client.js
index fdc51c4a197..87559b2084c 100644
--- a/core/js/files/client.js
+++ b/core/js/files/client.js
@@ -734,7 +734,7 @@
/**
* Returns the dav.Client instance used internally
*
- * @since 9.2
+ * @since 11.0.0
* @return {dav.Client}
*/
getClient: function() {
@@ -744,7 +744,7 @@
/**
* Returns the user name
*
- * @since 9.2
+ * @since 11.0.0
* @return {String} userName
*/
getUserName: function() {
@@ -754,7 +754,7 @@
/**
* Returns the password
*
- * @since 9.2
+ * @since 11.0.0
* @return {String} password
*/
getPassword: function() {
@@ -764,7 +764,7 @@
/**
* Returns the base URL
*
- * @since 9.2
+ * @since 11.0.0
* @return {String} base URL
*/
getBaseUrl: function() {
diff --git a/core/js/public/appconfig.js b/core/js/public/appconfig.js
index cde2700c86c..de04f334ca8 100644
--- a/core/js/public/appconfig.js
+++ b/core/js/public/appconfig.js
@@ -20,7 +20,7 @@
/**
* @namespace
- * @since 9.2.0
+ * @since 11.0.0
*/
OCP.AppConfig = {
/**
@@ -46,7 +46,7 @@ OCP.AppConfig = {
/**
* @param {Object} [options]
* @param {function} [options.success]
- * @since 9.2.0
+ * @since 11.0.0
*/
getApps: function(options) {
this._call('get', '', options);
@@ -57,7 +57,7 @@ OCP.AppConfig = {
* @param {Object} [options]
* @param {function} [options.success]
* @param {function} [options.error]
- * @since 9.2.0
+ * @since 11.0.0
*/
getKeys: function(app, options) {
this._call('get', '/' + app, options);
@@ -70,7 +70,7 @@ OCP.AppConfig = {
* @param {Object} [options]
* @param {function} [options.success]
* @param {function} [options.error]
- * @since 9.2.0
+ * @since 11.0.0
*/
getValue: function(app, key, defaultValue, options) {
options = options || {};
@@ -88,7 +88,7 @@ OCP.AppConfig = {
* @param {Object} [options]
* @param {function} [options.success]
* @param {function} [options.error]
- * @since 9.2.0
+ * @since 11.0.0
*/
setValue: function(app, key, value, options) {
options = options || {};
@@ -105,7 +105,7 @@ OCP.AppConfig = {
* @param {Object} [options]
* @param {function} [options.success]
* @param {function} [options.error]
- * @since 9.2.0
+ * @since 11.0.0
*/
deleteKey: function(app, key, options) {
this._call('delete', '/' + app + '/' + key, options);