Welcome to mirror list, hosted at ThFree Co, Russian Federation.

info.xml « appinfo - github.com/nextcloud/apporder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 952fd9d13cc4fc7338ed2f8565c8d440b867e86c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0"?>
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
      xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
    <id>apporder</id>
    <name>AppOrder</name>
    <summary>Sort apps in the menu with drag and drop</summary>
    <description>
Enable sorting the app icons from the personal settings. The order will be saved for each
user individually. Administrators can define a custom default order.

## Set a default order for all new users

Go to the Admin settings > Additional settings and drag the icons under App order.

## Use first app as default app

You can easily let Nextcloud redirect your user to the first app in their
personal order by changing the following parameter in your config/config.php:

    'defaultapp' => 'apporder',

Users will now get redirected to the first app of the default order or to the
first app of the user order.
    </description>
    <version>0.8.0</version>
    <licence>agpl</licence>
    <author mail="jus@bitgrid.net">Julius Härtl</author>
    <namespace>AppOrder</namespace>
    <category>customization</category>
    <bugs>https://github.com/juliushaertl/apporder/issues</bugs>
    <repository type="git">https://github.com/juliushaertl/apporder.git</repository>
    <screenshot>https://download.bitgrid.net/nextcloud/apporder/apporder.png</screenshot>
    <dependencies>
        <nextcloud min-version="16" max-version="17" />
    </dependencies>
    <settings>
        <admin>OCA\AppOrder\Settings\AdminSettings</admin>
        <admin-section>OCA\AppOrder\Settings\Section</admin-section>
        <personal>OCA\AppOrder\Settings\PersonalSettings</personal>
        <personal-section>OCA\AppOrder\Settings\Section</personal-section>
    </settings>
</info>