Browse Source

Merge pull request #539 from nextcloud/refactor/repo-move

Refactor/repo move
pull/541/head
Kate 1 year ago committed by GitHub
parent
commit
1396cfc57f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/conventional_commits.yaml
  2. 2
      .github/workflows/dart.yml
  3. 2
      .github/workflows/publish.yaml
  4. 2
      README.md
  5. 4
      melos.yaml
  6. 2
      packages/app/README.md
  7. 10
      packages/app/pubspec.yaml
  8. 2
      packages/neon/neon/lib/src/utils/save_file.dart
  9. 4
      packages/neon/neon/pubspec.yaml
  10. 2
      packages/neon/neon_files/lib/widgets/browser_view.dart
  11. 4
      packages/neon/neon_files/pubspec.yaml
  12. 2
      packages/neon/neon_news/pubspec.yaml
  13. 2
      packages/neon/neon_notes/pubspec.yaml
  14. 2
      packages/neon/neon_notifications/pubspec.yaml
  15. 6
      packages/nextcloud/README.md
  16. 4
      packages/nextcloud/pubspec.yaml

2
.github/workflows/conventional_commits.yaml

@ -5,7 +5,7 @@ on:
jobs:
conventional-commits:
name: Conventional commits
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3

2
.github/workflows/dart.yml

@ -14,7 +14,7 @@ permissions: read-all
jobs:
dart-ci:
name: Dart CI
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Cache dependencies
uses: actions/cache@v3

2
.github/workflows/publish.yaml

@ -103,7 +103,7 @@ jobs:
sudo apt-get purge fdroidserver
pip3 install https://gitlab.com/fdroid/fdroidserver/-/archive/master/fdroidserver.tar.gz
export DEBUG_KEYSTORE=${{ secrets.DEBUG_KEYSTORE }}
fdroid nightly -v --archive-older 10
GITHUB_REPOSITORY=provokateurin/nextcloud-neon fdroid nightly -v --archive-older 10
linux_x86_64:
name: Linux x86_64

2
README.md

@ -1,4 +1,4 @@
# nextcloud-neon
# neon
<img src="assets/logo.svg" alt="Neon logo" width="200"/>

4
melos.yaml

@ -1,5 +1,5 @@
name: nextcloud-neon
repository: https://github.com/provokateurin/nextcloud-neon
name: neon
repository: https://github.com/nextcloud/neon
sdkPath: .fvm/flutter_sdk

2
packages/app/README.md

@ -4,7 +4,7 @@ A beautiful convergent cross-platform client for Nextcloud written in Flutter.
## Install
You can build it yourself from source or download it from the automatic build pipelines.
The app will be published on F-Droid, the Google Playstore and Flathub later on. See https://github.com/provokateurin/nextcloud-neon/issues/106 for the to-do list.
The app will be published on F-Droid, the Google Playstore and Flathub later on. See https://github.com/nextcloud/neon/issues/106 for the to-do list.
## Screenshots

10
packages/app/pubspec.yaml

@ -13,23 +13,23 @@ dependencies:
flutter_svg: ^2.0.6
neon:
git:
url: https://github.com/provokateurin/nextcloud-neon
url: https://github.com/nextcloud/neon
path: packages/neon/neon
neon_files:
git:
url: https://github.com/provokateurin/nextcloud-neon
url: https://github.com/nextcloud/neon
path: packages/neon/neon_files
neon_news:
git:
url: https://github.com/provokateurin/nextcloud-neon
url: https://github.com/nextcloud/neon
path: packages/neon/neon_news
neon_notes:
git:
url: https://github.com/provokateurin/nextcloud-neon
url: https://github.com/nextcloud/neon
path: packages/neon/neon_notes
neon_notifications:
git:
url: https://github.com/provokateurin/nextcloud-neon
url: https://github.com/nextcloud/neon
path: packages/neon/neon_notifications
shared_preferences: ^2.1.1

2
packages/neon/neon/lib/src/utils/save_file.dart

@ -6,7 +6,7 @@ import 'package:flutter_file_dialog/flutter_file_dialog.dart';
Future<String?> saveFileWithPickDialog(final String fileName, final Uint8List data) async {
if (Platform.isAndroid || Platform.isIOS) {
// TODO: https://github.com/provokateurin/nextcloud-neon/issues/8
// TODO: https://github.com/nextcloud/neon/issues/8
return FlutterFileDialog.saveFile(
params: SaveFileDialogParams(
data: data,

4
packages/neon/neon/pubspec.yaml

@ -31,7 +31,7 @@ dependencies:
meta: ^1.9.1
nextcloud:
git:
url: https://github.com/provokateurin/nextcloud-neon
url: https://github.com/nextcloud/neon
path: packages/nextcloud
package_info_plus: ^4.0.0
path: ^1.8.3
@ -44,7 +44,7 @@ dependencies:
shared_preferences: ^2.1.1
sort_box:
git:
url: https://github.com/provokateurin/nextcloud-neon
url: https://github.com/nextcloud/neon
path: packages/sort_box
sqflite: ^2.2.8+2
sqflite_common_ffi: ^2.2.5

2
packages/neon/neon_files/lib/widgets/browser_view.dart

@ -319,7 +319,7 @@ class _FilesBrowserViewState extends State<FilesBrowserView> {
value: FilesFileAction.copy,
child: Text(AppLocalizations.of(context).actionCopy),
),
// TODO: https://github.com/provokateurin/nextcloud-neon/issues/4
// TODO: https://github.com/nextcloud/neon/issues/4
if (!details.isDirectory) ...[
PopupMenuItem(
value: FilesFileAction.sync,

4
packages/neon/neon_files/pubspec.yaml

@ -10,7 +10,7 @@ dependencies:
collection: ^1.17.0
file_icons:
git:
url: https://github.com/provokateurin/nextcloud-neon
url: https://github.com/nextcloud/neon
path: packages/file_icons
file_picker: ^5.3.0
filesize: ^2.0.1
@ -22,7 +22,7 @@ dependencies:
material_design_icons_flutter: ^7.0.7296
neon:
git:
url: https://github.com/provokateurin/nextcloud-neon
url: https://github.com/nextcloud/neon
path: packages/neon/neon
open_file: ^3.3.1
path: ^1.8.3

2
packages/neon/neon_news/pubspec.yaml

@ -15,7 +15,7 @@ dependencies:
material_design_icons_flutter: ^7.0.7296
neon:
git:
url: https://github.com/provokateurin/nextcloud-neon
url: https://github.com/nextcloud/neon
path: packages/neon/neon
provider: ^6.0.5
rxdart: ^0.27.7

2
packages/neon/neon_notes/pubspec.yaml

@ -16,7 +16,7 @@ dependencies:
material_design_icons_flutter: ^7.0.7296
neon:
git:
url: https://github.com/provokateurin/nextcloud-neon
url: https://github.com/nextcloud/neon
path: packages/neon/neon
provider: ^6.0.5
queue: ^3.1.0+2

2
packages/neon/neon_notifications/pubspec.yaml

@ -13,7 +13,7 @@ dependencies:
material_design_icons_flutter: ^7.0.7296
neon:
git:
url: https://github.com/provokateurin/nextcloud-neon
url: https://github.com/nextcloud/neon
path: packages/neon/neon
provider: ^6.0.5
rxdart: ^0.27.7

6
packages/nextcloud/README.md

@ -2,7 +2,7 @@
A Nextcloud client written in Dart.
This client will become the replacement for https://github.com/provokateurin/dart-nextcloud at some point ([See](https://github.com/provokateurin/nextcloud-neon/issues/1)).
This client will become the replacement for https://github.com/provokateurin/dart-nextcloud at some point ([See](https://github.com/nextcloud/neon/issues/1)).
## Installing
@ -12,14 +12,14 @@ In the future this code will be available at https://pub.dev/packages/nextcloud,
dependencies:
nextcloud:
git:
url: https://github.com/provokateurin/nextcloud-neon
url: https://github.com/nextcloud/neon
path: packages/nextcloud
ref: $COMMIT
dependency_overrides:
dynamite_runtime:
git:
url: https://github.com/provokateurin/nextcloud-neon
url: https://github.com/nextcloud/neon
path: packages/dynamite/dynamite_runtime
ref: $COMMIT
```

4
packages/nextcloud/pubspec.yaml

@ -12,7 +12,7 @@ dependencies:
crypton: ^2.0.5
dynamite_runtime:
git:
url: https://github.com/provokateurin/nextcloud-neon
url: https://github.com/nextcloud/neon
path: packages/dynamite/dynamite_runtime
intl: ^0.18.0
json_annotation: ^4.8.1
@ -27,7 +27,7 @@ dev_dependencies:
coverage: ^1.6.3
dynamite:
git:
url: https://github.com/provokateurin/nextcloud-neon
url: https://github.com/nextcloud/neon
path: packages/dynamite/dynamite
json_serializable: ^6.6.2
nit_picking:

Loading…
Cancel
Save