Skip to content

Commit

Permalink
feat(neon_spreed): Init
Browse files Browse the repository at this point in the history
Signed-off-by: jld3103 <jld3103yt@gmail.com>
  • Loading branch information
provokateurin committed Nov 16, 2023
1 parent bb7239d commit 37fd4a3
Show file tree
Hide file tree
Showing 40 changed files with 3,101 additions and 4 deletions.
1 change: 1 addition & 0 deletions .cspell/dart_flutter.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ sublist
todos
unawaited
unfocus
videocam
writeln
1 change: 1 addition & 0 deletions .cspell/nextcloud.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ trashbin
turnservers
undelete
unifiedpush
unmute
unsharing
unstar
updatenotification
Expand Down
1 change: 1 addition & 0 deletions .cspell/tools.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ strfreev
subprojects
sysroot
tsvg
webrtc
werror
workdir
xxxh
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ See [here](packages/app/README.md) for screenshots.
| [News](packages/neon/neon_news) | :heavy_check_mark: |
| [Notes](packages/neon/neon_notes) | :heavy_check_mark: |
| [Notifications](packages/neon/neon_notifications) | :heavy_check_mark: |
| [Talk](packages/neon/neon_spreed) | :heavy_check_mark: |
| Activity | :rocket: |
| Calendar | :rocket: |
| Contacts | :rocket: |
| Cookbook | :rocket: |
| Photos | :rocket: |
| Talk | :rocket: |
| Tasks | :rocket: |

## Platform support
Expand Down
1 change: 1 addition & 0 deletions commitlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ rules:
- neon_news
- neon_notes
- neon_notifications
- neon_spreed
- neon_lints
- nextcloud
- sort_box
3 changes: 3 additions & 0 deletions docs/architecture.puml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ package "Clients" {
component neon_news
component neon_notes
component neon_notifications
component neon_spreed
}

package "OpenAPI" {
Expand All @@ -27,11 +28,13 @@ app ..> neon_files
app ..> neon_news
app ..> neon_notes
app ..> neon_notifications
app ..> neon_spreed

neon_files --> neon
neon_news --> neon
neon_notes --> neon
neon_notifications --> neon
neon_spreed --> neon


neon --> nextcloud
Expand Down
2 changes: 1 addition & 1 deletion docs/architecture.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/neon/neon/lib/l10n/en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"@@locale": "en",
"nextcloud": "Nextcloud",
"nextcloudLogo": "Nextcloud logo",
"appImplementationName": "{app, select, nextcloud{Nextcloud} core{Server} dashboard{Dashboard} files{Files} news{News} notes{Notes} notifications{Notifications} other{}}",
"appImplementationName": "{app, select, nextcloud{Nextcloud} core{Server} dashboard{Dashboard} files{Files} news{News} notes{Notes} notifications{Notifications} spreed{Talk} other{}}",
"@appImplementationName": {
"placeholders": {
"app": {}
Expand Down
2 changes: 1 addition & 1 deletion packages/neon/neon/lib/l10n/localizations.dart
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ abstract class NeonLocalizations {
/// No description provided for @appImplementationName.
///
/// In en, this message translates to:
/// **'{app, select, nextcloud{Nextcloud} core{Server} dashboard{Dashboard} files{Files} news{News} notes{Notes} notifications{Notifications} other{}}'**
/// **'{app, select, nextcloud{Nextcloud} core{Server} dashboard{Dashboard} files{Files} news{News} notes{Notes} notifications{Notifications} spreed{Talk} other{}}'**
String appImplementationName(String app);

/// No description provided for @loginAgain.
Expand Down
1 change: 1 addition & 0 deletions packages/neon/neon/lib/l10n/localizations_en.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ class NeonLocalizationsEn extends NeonLocalizations {
'news': 'News',
'notes': 'Notes',
'notifications': 'Notifications',
'spreed': 'Talk',
'other': '',
},
);
Expand Down
10 changes: 10 additions & 0 deletions packages/neon/neon_spreed/.metadata
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.

version:
revision: "ead455963c12b453cdb2358cad34969c76daf180"
channel: "stable"

project_type: package
Loading

0 comments on commit 37fd4a3

Please sign in to comment.