Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
[submodule "external/nextcloud-notes"]
path = external/nextcloud-notes
url = https://github.com/nextcloud/notes
branch = v5.0.0
branch = v6.0.1
[submodule "external/emoji-metadata"]
path = external/emoji-metadata
url = https://github.com/googlefonts/emoji-metadata
2 changes: 1 addition & 1 deletion external/nextcloud-notes
Submodule nextcloud-notes updated 93 files
+3 −3 .github/workflows/appstore-build-publish.yml
+1 −1 .github/workflows/block-unconventional-commits.yml
+1 −1 .github/workflows/dependabot-approve-merge.yml
+1 −1 .github/workflows/lint-eslint.yml
+1 −1 .github/workflows/lint-info-xml.yml
+2 −2 .github/workflows/lint-php-cs.yml
+3 −3 .github/workflows/lint-php.yml
+1 −1 .github/workflows/lint-stylelint.yml
+1 −1 .github/workflows/node.yml
+1 −1 .github/workflows/npm-audit-fix.yml
+1 −1 .github/workflows/playwright.yml
+3 −3 .github/workflows/psalm-matrix.yml
+1 −1 .github/workflows/reuse.yml
+2 −2 .github/workflows/test.yml
+3 −3 .github/workflows/update-nextcloud-ocp-matrix.yml
+51 −0 CHANGELOG.md
+3 −3 appinfo/info.xml
+0 −3 appinfo/routes.php
+4 −4 composer.json
+746 −336 composer.lock
+3 −0 l10n/de.js
+3 −0 l10n/de.json
+3 −0 l10n/de_DE.js
+3 −0 l10n/de_DE.json
+3 −0 l10n/en_GB.js
+3 −0 l10n/en_GB.json
+13 −3 l10n/et_EE.js
+13 −3 l10n/et_EE.json
+120 −93 l10n/fa.js
+120 −93 l10n/fa.json
+11 −1 l10n/fr.js
+11 −1 l10n/fr.json
+3 −0 l10n/ga.js
+3 −0 l10n/ga.json
+1 −0 l10n/ja.js
+1 −0 l10n/ja.json
+3 −0 l10n/kab.js
+3 −0 l10n/kab.json
+11 −1 l10n/lt_LT.js
+11 −1 l10n/lt_LT.json
+10 −0 l10n/nl.js
+10 −0 l10n/nl.json
+3 −0 l10n/pl.js
+3 −0 l10n/pl.json
+3 −0 l10n/pt_BR.js
+3 −0 l10n/pt_BR.json
+14 −0 l10n/ru.js
+14 −0 l10n/ru.json
+3 −0 l10n/sv.js
+3 −0 l10n/sv.json
+0 −12 l10n/tk.js
+0 −10 l10n/tk.json
+13 −3 l10n/tr.js
+13 −3 l10n/tr.json
+11 −0 l10n/uk.js
+11 −0 l10n/uk.json
+3 −0 l10n/zh_CN.js
+3 −0 l10n/zh_CN.json
+3 −0 l10n/zh_HK.js
+3 −0 l10n/zh_HK.json
+3 −0 l10n/zh_TW.js
+3 −0 l10n/zh_TW.json
+13 −12 lib/AppInfo/Application.php
+0 −85 lib/AppInfo/NotesHooks.php
+0 −2 lib/AppInfo/SearchProvider.php
+3 −5 lib/Controller/ETagDoesNotMatchException.php
+4 −15 lib/Controller/Helper.php
+5 −24 lib/Controller/NotesApiController.php
+7 −32 lib/Controller/NotesController.php
+7 −24 lib/Controller/PageController.php
+2 −8 lib/Controller/SettingsController.php
+49 −0 lib/Listener/NoteFileEventsListener.php
+3 −5 lib/Migration/Cleanup.php
+4 −6 lib/Migration/EditorHint.php
+8 −8 lib/Service/MetaService.php
+0 −3 lib/Service/Note.php
+5 −12 lib/Service/NotesService.php
+1 −1 lib/Service/SettingsService.php
+2 −8 lib/Service/Util.php
+404 −360 package-lock.json
+6 −6 package.json
+16 −4 playwright/e2e/category-actions.spec.ts
+1 −1 psalm.xml
+7 −3 src/App.vue
+9 −13 src/components/CategoriesList.vue
+10 −2 src/components/EditorEasyMDE.vue
+1 −1 src/components/EditorMarkdownIt.vue
+1 −1 src/components/Note.vue
+15 −1 src/components/NoteItem.vue
+6 −1 src/components/NotesList.vue
+2 −0 src/components/NotesView.vue
+0 −3 tests/nextcloud-version.php
+0 −9 tests/psalm-baseline.xml
Loading