Browse Source

Update username

pull/116/head
jld3103 2 years ago
parent
commit
11b6e4222c
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 2
      LICENSE
  2. 4
      README.md
  3. 2
      packages/neon/assets/LEGALESE.txt
  4. 2
      packages/neon/lib/src/apps/files/widgets/browser_view.dart
  5. 2
      packages/neon/lib/src/utils/save_file.dart
  6. 4
      packages/nextcloud/README.md
  7. 4
      skaffold.yaml

2
LICENSE

@ -1,4 +1,4 @@
Copyright (c) 2022, jld3103 Copyright (c) 2022, provokateurin
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

4
README.md

@ -5,7 +5,7 @@ A beautiful convergent cross-platform client for Nextcloud written in Flutter.
See [here](packages/neon/README.md) for screenshots and other material regarding the app. See [here](packages/neon/README.md) for screenshots and other material regarding the app.
This repository not only contains the Neon app, but also a Nextcloud client written in Dart. This repository not only contains the Neon app, but also a Nextcloud client written in Dart.
The client will replace https://github.com/jld3103/dart-nextcloud which is an older unmaintained client I wrote some time ago. The client will replace https://github.com/provokateurin/dart-nextcloud which is an older unmaintained client I wrote some time ago.
The development of this app and client just started, there will be a lot of changes and new features coming soon. The development of this app and client just started, there will be a lot of changes and new features coming soon.
@ -19,7 +19,7 @@ There are separate rooms for the client and the app. If you don't know which cha
## Features ## Features
There are a lot of planned features that still need help. Go [here](https://github.com/jld3103/nextcloud-neon/issues?q=is%3Aopen+is%3Aissue+label%3Afeature) and grab an issue to work on. There are a lot of planned features that still need help. Go [here](https://github.com/provokateurin/nextcloud-neon/issues?q=is%3Aopen+is%3Aissue+label%3Afeature) and grab an issue to work on.
Even if a new feature is not listed yet, please open an issue. Even if a new feature is not listed yet, please open an issue.
- :heavy_check_mark: Supported - :heavy_check_mark: Supported

2
packages/neon/assets/LEGALESE.txt

@ -1,2 +1,2 @@
Copyright © 2022, jld3103 Copyright © 2022, provokateurin
Under GPLv3 license Under GPLv3 license

2
packages/neon/lib/src/apps/files/widgets/browser_view.dart

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

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

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

4
packages/nextcloud/README.md

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

4
skaffold.yaml

@ -2,7 +2,7 @@ kind: Config
apiVersion: skaffold/v2beta27 apiVersion: skaffold/v2beta27
build: build:
artifacts: artifacts:
- image: jld3103/nextcloud-push-proxy - image: provokateurin/nextcloud-push-proxy
context: packages/nextcloud_push_proxy context: packages/nextcloud_push_proxy
local: local:
useBuildkit: true useBuildkit: true
@ -19,5 +19,5 @@ deploy:
valuesFiles: valuesFiles:
- helm/nextcloud-neon/values.yaml - helm/nextcloud-neon/values.yaml
artifactOverrides: artifactOverrides:
imageNextcloudPushProxy: jld3103/nextcloud-push-proxy imageNextcloudPushProxy: provokateurin/nextcloud-push-proxy
statusCheckDeadlineSeconds: 300 statusCheckDeadlineSeconds: 300

Loading…
Cancel
Save