Skip to content

Commit

Permalink
feat(neon_spreed): Init
Browse files Browse the repository at this point in the history
  • Loading branch information
provokateurin committed Aug 9, 2023
1 parent 222d475 commit f43ea40
Show file tree
Hide file tree
Showing 38 changed files with 3,128 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ See [here](packages/app/README.md) for screenshots.
| News | :heavy_check_mark: |
| Notes | :heavy_check_mark: |
| Notifications | :heavy_check_mark: |
| Talk | :heavy_check_mark: |
| Activity | :rocket: |
| Calendar | :rocket: |
| Contacts | :rocket: |
| Cookbook | :rocket: |
| Dashboard | :rocket: |
| Photos | :rocket: |
| Talk | :rocket: |
| Tasks | :rocket: |

## Problems with other clients and how this project tries to solve them
Expand Down
1 change: 1 addition & 0 deletions commitlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ rules:
- neon_news
- neon_notes
- neon_notifications
- neon_spreed
- nextcloud
- sort_box
5 changes: 4 additions & 1 deletion docs/architecture.puml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ package "App implementations" {
component neon_news
component neon_notes
component neon_notifications
component neon_spreed
}

package "OpenAPI" {
Expand All @@ -26,11 +27,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 All @@ -41,4 +44,4 @@ neon --> file_icons
dynamite --> nextcloud
specs --> nextcloud

@enduml
@enduml
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} files{Files} news{News} notes{Notes} notifications{Notifications} other{}}",
"appImplementationName": "{app, select, nextcloud{Nextcloud} core{Server} 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 AppLocalizations {
/// No description provided for @appImplementationName.
///
/// In en, this message translates to:
/// **'{app, select, nextcloud{Nextcloud} core{Server} files{Files} news{News} notes{Notes} notifications{Notifications} other{}}'**
/// **'{app, select, nextcloud{Nextcloud} core{Server} 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 @@ -23,6 +23,7 @@ class AppLocalizationsEn extends AppLocalizations {
'news': 'News',
'notes': 'Notes',
'notifications': 'Notifications',
'spreed': 'Talk',
'other': '',
},
);
Expand Down
48 changes: 48 additions & 0 deletions packages/neon/neon_spreed/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/

# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/

# Flutter/Dart/Pub related
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
/pubspec.lock
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
.pub-cache/
.pub/
/build/

# Web related
lib/generated_plugin_registrant.dart

# Symbolication related
app.*.symbols

# Obfuscation related
app.*.map.json

# Android Studio will place build artifacts here
/android/app/debug
/android/app/profile
/android/app/release
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: 62bd79521d8d007524e351747471ba66696fc2d4
channel: stable

project_type: package
Loading

0 comments on commit f43ea40

Please sign in to comment.