Skip to content

Commit d4c1a7c

Browse files
committed
Finalized READMEs for publishes
1 parent d823ab4 commit d4c1a7c

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

NETCoreSyncServer/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,8 @@
22

33
[![build](https://github.com/aldycool/NETCoreSync/actions/workflows/netcoresync_moor_build.yml/badge.svg?event=push)](https://github.com/aldycool/NETCoreSync/actions/workflows/netcoresync_moor_build.yml?query=event%3Apush) [![codecov](https://codecov.io/gh/aldycool/NETCoreSync/branch/master/graph/badge.svg?token=S2GTBOB7XB)](https://codecov.io/gh/aldycool/NETCoreSync)
44

5+
| Client | Client Generator | Server |
6+
| :---: | :---: | :---: |
7+
| [![netcoresync_moor version](https://img.shields.io/pub/v/netcoresync_moor.svg)](https://pub.dev/packages/netcoresync_moor) | [![netcoresync_moor_generator version](https://img.shields.io/pub/v/netcoresync_moor_generator.svg)](https://pub.dev/packages/netcoresync_moor_generator) | [![Nuget](https://img.shields.io/nuget/v/NETCoreSyncServer)](https://www.nuget.org/packages/NETCoreSyncServer) |
8+
59
The server-side .NET Core framework that hosts the synchronization data middleware for Flutter clients that uses the `netcoresync_moor` package. This project is implemented in .NET 5.0 Middleware and uses WebSockets for its data communication. Visit the [netcore_sync_moor repository](https://github.com/aldycool/NETCoreSync/blob/master/netcoresync_moor) for more details.

netcoresync_moor/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
[![build](https://github.com/aldycool/NETCoreSync/actions/workflows/netcoresync_moor_build.yml/badge.svg?event=push)](https://github.com/aldycool/NETCoreSync/actions/workflows/netcoresync_moor_build.yml?query=event%3Apush) [![codecov](https://codecov.io/gh/aldycool/NETCoreSync/branch/master/graph/badge.svg?token=S2GTBOB7XB)](https://codecov.io/gh/aldycool/NETCoreSync)
44

5+
| Client | Client Generator | Server |
6+
| :---: | :---: | :---: |
7+
| [![netcoresync_moor version](https://img.shields.io/pub/v/netcoresync_moor.svg)](https://pub.dev/packages/netcoresync_moor) | [![netcoresync_moor_generator version](https://img.shields.io/pub/v/netcoresync_moor_generator.svg)](https://pub.dev/packages/netcoresync_moor_generator) | [![Nuget](https://img.shields.io/nuget/v/NETCoreSyncServer)](https://www.nuget.org/packages/NETCoreSyncServer) |
8+
59
A database synchronization framework where each client's local offline database (on each client's multiple devices) can be synchronized on-demand via network into a single centralized database hosted on a server. Data which are stored locally within each device of a single client can all be synchronized after each device have successfully performed the synchronization operation. This is the Flutter version of the original [NETCoreSync](https://github.com/aldycool/NETCoreSync) framework.
610

711
## Features

netcoresync_moor_generator/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,8 @@
22

33
[![build](https://github.com/aldycool/NETCoreSync/actions/workflows/netcoresync_moor_build.yml/badge.svg?event=push)](https://github.com/aldycool/NETCoreSync/actions/workflows/netcoresync_moor_build.yml?query=event%3Apush) [![codecov](https://codecov.io/gh/aldycool/NETCoreSync/branch/master/graph/badge.svg?token=S2GTBOB7XB)](https://codecov.io/gh/aldycool/NETCoreSync)
44

5+
| Client | Client Generator | Server |
6+
| :---: | :---: | :---: |
7+
| [![netcoresync_moor version](https://img.shields.io/pub/v/netcoresync_moor.svg)](https://pub.dev/packages/netcoresync_moor) | [![netcoresync_moor_generator version](https://img.shields.io/pub/v/netcoresync_moor_generator.svg)](https://pub.dev/packages/netcoresync_moor_generator) | [![Nuget](https://img.shields.io/nuget/v/NETCoreSyncServer)](https://www.nuget.org/packages/NETCoreSyncServer) |
8+
59
The code generation tool (as `dev_dependencies`) for the `netcoresync_moor` package. Visit the [netcore_sync_moor repository](https://github.com/aldycool/NETCoreSync/blob/master/netcoresync_moor) for more details.

netcoresync_moor_generator/pubspec.yaml

+1-5
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,9 @@ dependencies:
1717
collection: ^1.15.0 # https://pub.dev/packages/collection
1818
glob: ^2.0.1 # https://pub.dev/packages/glob
1919
recase: ^4.0.0 # https://pub.dev/packages/recase
20-
netcoresync_moor: ^1.0.0
20+
netcoresync_moor: ^1.0.0 # https://pub.dev/packages/netcoresync_moor
2121

2222
dev_dependencies:
2323
lints: ^1.0.1 # https://pub.dev/packages/lints
2424
test: ^1.17.11 # https://pub.dev/packages/test
2525
build_runner: ^2.1.1 # https://pub.dev/packages/build_runner
26-
27-
dependency_overrides:
28-
netcoresync_moor:
29-
path: ../netcoresync_moor

0 commit comments

Comments
 (0)