Updated README

This commit is contained in:
thomashii 2022-04-24 08:55:17 +08:00
parent 38073e5b61
commit ab2c8d0ad2
42 changed files with 41 additions and 80 deletions
packages

View file

@ -1,4 +0,0 @@
language: dart
dart:
- dev
- stable

View file

@ -1,3 +0,0 @@
language: dart
dart:
- stable

View file

@ -1 +0,0 @@
language: dart

View file

@ -18,8 +18,8 @@ In your `pubspec.yaml`:
```yaml ```yaml
dependencies: dependencies:
angel3_framework: ^4.2.0 angel3_framework: ^6.0.0
angel3_hot: ^4.3.0 angel3_hot: ^6.0.0
``` ```
## Usage ## Usage

View file

@ -14,15 +14,13 @@ Though its syntax is but a superset of HTML, it supports features such as:
* `switch` syntax * `switch` syntax
* Interpolation of any Dart expression * Interpolation of any Dart expression
Jael is a good choice for applications of any scale, especially when the development team is small, or the time invested in building an SPA would be too much. Jael3 is a good choice for applications of any scale, especially when the development team is small, or the time invested in building an SPA would be too much.
## Documentation ## Documentation
Each of the [packages within this repository](#this-repository) contains some sort of documentation. Each of the [packages within this repository](#this-repository) contains some sort of documentation.
Documentation for Jael syntax and directives has been Documentation for Jael syntax and directives has been **moved** to the [Angel3 framework wiki](https://angel3-docs.dukefirehawk.com/packages/front-end/jael).
**moved** to the
[Angel3 framework wiki](https://angel3-docs.dukefirehawk.com/packages/front-end/jael).
## This Repository ## This Repository
@ -31,4 +29,3 @@ Within this repository are three packages:
* `package:jael3` - Contains the Jael parser, AST, and HTML renderer. * `package:jael3` - Contains the Jael parser, AST, and HTML renderer.
* `package:jael3_preprocessor` - Handles template inheritance, and facilitates the use of "compile-time" constructs. * `package:jael3_preprocessor` - Handles template inheritance, and facilitates the use of "compile-time" constructs.
* `package:angel3_jael` - [Angel3](https://angel3-framework.web.app/) support for Jael. * `package:angel3_jael` - [Angel3](https://angel3-framework.web.app/) support for Jael.
facilities to speed up application development, so something like Jael is right at home.

View file

@ -13,7 +13,7 @@ In your `pubspec.yaml`:
```yaml ```yaml
dependencies: dependencies:
angel3_jael: ^4.2.0 angel3_jael: ^6.0.0
``` ```
## Usage ## Usage

View file

@ -1,8 +1,12 @@
# Change Log # Change Log
## 6.0.0
* Updated to SDK 2.16.x
## 5.0.0 ## 5.0.0
* Updated to SDK 2.16.x * Skipped release
## 4.2.0 ## 4.2.0

View file

@ -15,7 +15,7 @@ In your `pubspec.yaml`:
```yaml ```yaml
dependencies: dependencies:
jael3: ^4.2.0 jael3: ^6.0.0
``` ```
## API ## API

View file

@ -1,8 +1,12 @@
# Change Log # Change Log
## 6.0.0
* Updated to SDK 2.16.x
## 5.0.0 ## 5.0.0
* Updated to SDK 2.16.x * Skipped release
## 4.2.0 ## 4.2.0

View file

@ -13,7 +13,7 @@ In your `pubspec.yaml`:
```yaml ```yaml
dependencies: dependencies:
jael3_prepreprocessor: ^4.2.0 jael3_prepreprocessor: ^6.0.0
``` ```
## Usage ## Usage

View file

@ -1,7 +0,0 @@
#!/usr/bin/env bash
# Fast-fail on errors
set -e
cd jael && pub get && pub run test
cd ../jael_preprocessor/ && pub get && pub run test
cd ../angel_jael/ && pub get && pub run test

View file

@ -1 +0,0 @@
language: dart

View file

@ -15,8 +15,8 @@ In your `pubspec.yaml`:
```yaml ```yaml
dependencies: dependencies:
angel3_framework: ^4.2.0 angel3_framework: ^6.0.0
angel3_markdown: ^3.0.0 angel3_markdown: ^6.0.0
``` ```
## Usage ## Usage

View file

@ -1 +0,0 @@
language: dart

View file

@ -1 +0,0 @@
language: dart

View file

@ -15,7 +15,7 @@ In `pubspec.yaml`:
```yaml ```yaml
dependencies: dependencies:
angel3_mustache: ^3.1.0 angel3_mustache: ^6.0.0
``` ```
## Usage ## Usage

View file

@ -1,4 +0,0 @@
language: dart
dart:
- dev
- stable

View file

@ -20,8 +20,8 @@ In your `pubspec.yaml`:
```yaml ```yaml
dependencies: dependencies:
angel3_framework: ^4.2.0 angel3_framework: ^6.0.0
angel3_oauth2: ^4.1.0 angel3_oauth2: ^6.0.0
``` ```
## Usage ## Usage

View file

@ -10,5 +10,5 @@ A database migration framework built for Angel3 ORM.
## Supported database ## Supported database
* PostgreSQL version 10 or later * PostgreSQL version 10 or later
* MySQL 8.0.x
* MariaDB 10.2.x * MariaDB 10.2.x
* MySQL 8.x

View file

@ -10,5 +10,5 @@ Command-line based database migration runner for Angel3 ORM.
Supported database: Supported database:
* PostgreSQL version 10 or later * PostgreSQL version 10 or later
* MySQL 8.0.x
* MariaDB 10.2.x * MariaDB 10.2.x
* MySQL 8.x

View file

@ -9,8 +9,8 @@ Runtime support for Angel3 ORM. Includes a clean, database-agnostic query builde
## Supported database ## Supported database
* PostgreSQL version 10, 11, 12, 13 and 14 * PostgreSQL version 10 or later
* MariaDB 10.2.x * MariaDB 10.2.x
* MySQL 8.0.x * MySQL 8.x
For documentation about the ORM, see [Developer Guide](https://angel3-docs.dukefirehawk.com/guides/orm) For documentation about the ORM, see [Developer Guide](https://angel3-docs.dukefirehawk.com/guides/orm)

View file

@ -23,3 +23,5 @@ Run the following command to generate the required `.g.dart` files for Angel3 OR
## Supported database ## Supported database
* PostgreSQL version 10 or later * PostgreSQL version 10 or later
* MariaDB 10.2.x
* MySQL 8.x

View file

@ -1,6 +1,6 @@
# Change Log # Change Log
## 6.0.0-bata.1 ## 6.0.0-beta.1
* Updated to SDK 2.16.x * Updated to SDK 2.16.x
* Added support for MariaDB 10.2.x with `mysql1` driver * Added support for MariaDB 10.2.x with `mysql1` driver

View file

@ -12,12 +12,12 @@ This package contains the SQL Executor required by Angel3 ORM to work with MySQL
## Supported database version ## Supported database version
* MySQL 8.x
* MariaDb 10.2.x * MariaDb 10.2.x
* MySQL 8.x
**Note** MySQL below version 8.0 and MariaDB below version 10.2 are not supported as Angel3 ORM requires common table expressions (CTE). **Note** MySQL below version 8.0 and MariaDB below version 10.2 are not supported as Angel3 ORM requires common table expressions (CTE).
## Connecting to MySQL database 8.x.x ## Connecting to MySQL database 8.x
```dart ```dart
import 'package:mysql_client/mysql_client.dart'; import 'package:mysql_client/mysql_client.dart';

View file

@ -1,14 +1,14 @@
# Angel3 ORM for Postgresql # Angel3 ORM for PostgreSQL
![Pub Version (including pre-releases)](https://img.shields.io/pub/v/angel3_orm_postgres?include_prereleases) ![Pub Version (including pre-releases)](https://img.shields.io/pub/v/angel3_orm_postgres?include_prereleases)
[![Null Safety](https://img.shields.io/badge/null-safety-brightgreen)](https://dart.dev/null-safety) [![Null Safety](https://img.shields.io/badge/null-safety-brightgreen)](https://dart.dev/null-safety)
[![Gitter](https://img.shields.io/gitter/room/angel_dart/discussion)](https://gitter.im/angel_dart/discussion) [![Gitter](https://img.shields.io/gitter/room/angel_dart/discussion)](https://gitter.im/angel_dart/discussion)
[![License](https://img.shields.io/github/license/dukefirehawk/angel)](https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_orm_postgres/LICENSE) [![License](https://img.shields.io/github/license/dukefirehawk/angel)](https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_orm_postgres/LICENSE)
Postgresql support for Angel3 ORM. PostgreSQL support for Angel3 ORM.
## Supported PosgtreSQL ## Supported database
* version 10 or later * PostgreSQL version 10 or later
For documentation about the ORM, see [Developer Guide](https://angel3-docs.dukefirehawk.com/guides/orm) For documentation about the ORM, see [Developer Guide](https://angel3-docs.dukefirehawk.com/guides/orm)

View file

@ -13,7 +13,7 @@ In your `pubspec.yaml`:
```yaml ```yaml
dependencies: dependencies:
angel3_orm_service: ^2.0.0 angel3_orm_service: ^6.0.0
``` ```
## Usage ## Usage

View file

@ -13,7 +13,7 @@ In your `pubspec.yaml` file:
```yaml ```yaml
dependencies: dependencies:
angel3_paginate: ^3.1.0 angel3_paginate: ^6.0.0
``` ```
## Usage ## Usage

View file

@ -1,3 +0,0 @@
language: dart
services:
- redis-server

View file

@ -17,8 +17,8 @@ In your `pubspec.yaml`:
```yaml ```yaml
dependencies: dependencies:
angel3_framework: ^4.2.0 angel3_framework: ^6.0.0
angel3_redis: ^2.0.0 angel3_redis: ^6.0.0
``` ```
## Usage ## Usage

View file

@ -1,3 +0,0 @@
language: dart
dart:
- stable

View file

@ -1 +0,0 @@
libinjection/* linguist-vendored

View file

@ -1 +0,0 @@
language: dart

View file

@ -1 +0,0 @@
language: dart

View file

@ -13,7 +13,7 @@ Add the following to your `pubspec.yaml`:
```yaml ```yaml
dependencies: dependencies:
angel3_sembast: ^3.0.0 angel3_sembast: ^6.0.0
``` ```
## Usage ## Usage

View file

@ -1 +0,0 @@
language: dart

View file

@ -1,4 +0,0 @@
language: dart
dart:
- dev
- stable

View file

@ -13,7 +13,7 @@ In `pubspec.yaml`:
```yaml ```yaml
dependencies: dependencies:
angel3_static: ^4.0.0 angel3_static: ^6.0.0
``` ```
## Usage ## Usage

View file

@ -1 +0,0 @@
language: dart

View file

@ -1,4 +0,0 @@
language: dart
dart:
- dev
- stable

View file

@ -1 +0,0 @@
language: dart

View file

@ -1,4 +0,0 @@
language: dart
dart:
- dev
- stable