Skip to content

Commit 3e924ce

Browse files
authored
Merge branch 'nextcloud:master' into occ-token-login-name
2 parents a2cf01d + f501b44 commit 3e924ce

1,170 files changed

Lines changed: 29349 additions & 21099 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/block-unconventional-commits.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ jobs:
3131
with:
3232
persist-credentials: false
3333

34-
- uses: webiny/action-conventional-commits@faccb24fc2550dd15c0390d944379d2d8ed9690e # v1.3.1
34+
- uses: webiny/action-conventional-commits@7f91b1595ca1951cdb671ddc9f07a49081ec5b69 # v1.4.2
3535
with:
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/cypress.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ jobs:
165165
run: ./node_modules/cypress/bin/cypress install
166166

167167
- name: Run ${{ matrix.containers == 'component' && 'component' || 'E2E' }} cypress tests
168-
uses: cypress-io/github-action@783cb3f07983868532cabaedaa1e6c00ff4786a8 # v7.1.9
168+
uses: cypress-io/github-action@c495c3ddffba403ba11be95fffb67e25203b3799 # v7.1.10
169169
with:
170170
# We already installed the dependencies in the init job
171171
install: false

.gitignore

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,17 @@ node_modules/
1717

1818
# ignore all apps except core ones
1919
/apps*/*
20+
!/apps/admin_audit
21+
!/apps/appstore
2022
!/apps/cloud_federation_api
2123
!/apps/comments
2224
!/apps/contactsinteraction
2325
!/apps/dashboard
2426
!/apps/dav
25-
!/apps/files
27+
!/apps/encryption
2628
!/apps/federation
2729
!/apps/federatedfilesharing
28-
!/apps/sharebymail
29-
!/apps/encryption
30+
!/apps/files
3031
!/apps/files_external
3132
!/apps/files_reminders
3233
!/apps/files_sharing
@@ -38,9 +39,9 @@ node_modules/
3839
!/apps/profile
3940
!/apps/provisioning_api
4041
!/apps/settings
42+
!/apps/sharebymail
4143
!/apps/systemtags
4244
!/apps/testing
43-
!/apps/admin_audit
4445
!/apps/updatenotification
4546
!/apps/theming
4647
!/apps/twofactor_backupcodes

.nextcloudignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ window.d.ts
5555
/.devcontainer
5656
/__mocks__
5757
/__tests__
58+
/apps/testing
5859
/autotest*.sh
5960
/build
6061
/config/config.php

.tx/config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ source_file = translationfiles/templates/admin_audit.pot
88
source_lang = en
99
type = PO
1010

11+
[o:nextcloud:p:nextcloud:r:appstore]
12+
file_filter = translationfiles/<lang>/appstore.po
13+
source_file = translationfiles/templates/appstore.pot
14+
source_lang = en
15+
type = PO
16+
1117
[o:nextcloud:p:nextcloud:r:cloud_federation_api]
1218
file_filter = translationfiles/<lang>/cloud_federation_api.po
1319
source_file = translationfiles/templates/cloud_federation_api.pot

apps/appstore/REUSE.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version = 1
2+
SPDX-PackageName = "nextcloud"
3+
SPDX-PackageSupplier = "Nextcloud <info@nextcloud.com>"
4+
SPDX-PackageDownloadLocation = "https://github.com/nextcloud/server"
5+
6+
[[annotations]]
7+
path = ["tests/fixtures/categories.json", "tests/fixtures/categories-api-response.json"]
8+
precedence = "aggregate"
9+
SPDX-FileCopyrightText = "2026 Nextcloud GmbH and Nextcloud contributors"
10+
SPDX-License-Identifier = "CC-BY-SA-4.0"
11+
12+
[[annotations]]
13+
path = ["img/app.svg"]
14+
precedence = "aggregate"
15+
SPDX-FileCopyrightText = "2018-2024 Google LLC"
16+
SPDX-License-Identifier = "Apache-2.0"
17+
18+
[[annotations]]
19+
path = ["l10n/**.js", "l10n/**.json"]
20+
precedence = "aggregate"
21+
SPDX-FileCopyrightText = "2026 Nextcloud translators"
22+
SPDX-License-Identifier = "AGPL-3.0-or-later"

apps/appstore/appinfo/info.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0"?>
2+
<!--
3+
- SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
4+
- SPDX-License-Identifier: AGPL-3.0-or-later
5+
-->
6+
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
7+
xsi:noNamespaceSchemaLocation="../../../resources/app-info-shipped.xsd">
8+
<id>appstore</id>
9+
<name>Nextcloud Appstore</name>
10+
<summary>Nextcloud Appstore</summary>
11+
<description>Nextcloud Appstore</description>
12+
<version>1.0.0</version>
13+
<licence>agpl</licence>
14+
<author>Nextcloud</author>
15+
<namespace>Appstore</namespace>
16+
17+
<category>customization</category>
18+
<bugs>https://github.com/nextcloud/server/issues</bugs>
19+
<dependencies>
20+
<nextcloud min-version="34" max-version="34"/>
21+
</dependencies>
22+
</info>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
3+
// autoload.php @generated by Composer
4+
5+
if (PHP_VERSION_ID < 50600) {
6+
if (!headers_sent()) {
7+
header('HTTP/1.1 500 Internal Server Error');
8+
}
9+
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
10+
if (!ini_get('display_errors')) {
11+
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
12+
fwrite(STDERR, $err);
13+
} elseif (!headers_sent()) {
14+
echo $err;
15+
}
16+
}
17+
throw new RuntimeException($err);
18+
}
19+
20+
require_once __DIR__ . '/composer/autoload_real.php';
21+
22+
return ComposerAutoloaderInitAppstore::getLoader();
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"config" : {
3+
"vendor-dir": ".",
4+
"optimize-autoloader": true,
5+
"classmap-authoritative": true,
6+
"autoloader-suffix": "Appstore"
7+
},
8+
"autoload" : {
9+
"psr-4": {
10+
"OCA\\Appstore\\": "../lib/"
11+
}
12+
}
13+
}

apps/appstore/composer/composer.lock

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)