Skip to content

Commit

Permalink
v: 2.3.0+4
Browse files Browse the repository at this point in the history
  • Loading branch information
hhtokpinar committed Sep 29, 2022
1 parent d68f6cc commit b982904
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 11 deletions.
1 change: 0 additions & 1 deletion example/lib/model/chinook.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import 'dart:convert';

import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'package:intl/intl.dart' as intl;
import 'package:sqfentity/sqfentity.dart';
import 'package:sqfentity_gen/sqfentity_gen.dart';

Expand Down
1 change: 0 additions & 1 deletion example/lib/model/model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import 'dart:convert';

import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'package:intl/intl.dart' as intl;
import 'package:sqfentity/sqfentity.dart';
import 'package:sqfentity_gen/sqfentity_gen.dart';

Expand Down
2 changes: 1 addition & 1 deletion sqfentity/.flutter-plugins-dependencies
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"sqflite_sqlcipher","path":"/Users/huseyintokpinar/Dev/flutter/.pub-cache/hosted/pub.dartlang.org/sqflite_sqlcipher-2.1.1/","native_build":true,"dependencies":[]}],"android":[{"name":"sqflite_sqlcipher","path":"/Users/huseyintokpinar/Dev/flutter/.pub-cache/hosted/pub.dartlang.org/sqflite_sqlcipher-2.1.1/","native_build":true,"dependencies":[]}],"macos":[{"name":"sqflite_sqlcipher","path":"/Users/huseyintokpinar/Dev/flutter/.pub-cache/hosted/pub.dartlang.org/sqflite_sqlcipher-2.1.1/","native_build":true,"dependencies":[]}],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"sqflite_sqlcipher","dependencies":[]}],"date_created":"2022-08-16 14:32:15.043373","version":"3.0.5"}
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"sqflite_sqlcipher","path":"/Users/huseyintokpinar/Dev/flutter/.pub-cache/hosted/pub.dartlang.org/sqflite_sqlcipher-2.1.1/","native_build":true,"dependencies":[]}],"android":[{"name":"sqflite_sqlcipher","path":"/Users/huseyintokpinar/Dev/flutter/.pub-cache/hosted/pub.dartlang.org/sqflite_sqlcipher-2.1.1/","native_build":true,"dependencies":[]}],"macos":[{"name":"sqflite_sqlcipher","path":"/Users/huseyintokpinar/Dev/flutter/.pub-cache/hosted/pub.dartlang.org/sqflite_sqlcipher-2.1.1/","native_build":true,"dependencies":[]}],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"sqflite_sqlcipher","dependencies":[]}],"date_created":"2022-09-29 09:17:32.991578","version":"3.0.5"}
8 changes: 8 additions & 0 deletions sqfentity/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 2.3.0+4
- fixed issue [281](https://github.com/hhtokpinar/sqfEntity/issues/281)
and removed customizing datetime formats.
If you want to use DefaultDateTime format. Specify the sqfentity_gen version in pubspec.yaml

sqfentity_gen: 2.3.0+3


## 2.3.0
- New global default Date/Time Formats
- Making the viewAdd takes optional object
Expand Down
4 changes: 2 additions & 2 deletions sqfentity/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -479,14 +479,14 @@ packages:
path: ".."
relative: true
source: path
version: "2.3.0"
version: "2.3.0+4"
sqfentity_gen:
dependency: "direct main"
description:
path: "../../sqfentity_gen"
relative: true
source: path
version: "2.3.0"
version: "2.3.0+4"
sqflite_common:
dependency: transitive
description:
Expand Down
3 changes: 0 additions & 3 deletions sqfentity/lib/sqfentity.dart
Original file line number Diff line number Diff line change
Expand Up @@ -902,9 +902,6 @@ Future<SqfEntityModelBase> convertDatabaseToModelBase(
..modelName = toModelName(model.databaseName!.replaceAll('.', ''), '')
..databaseTables = tables
..password = model.password
..defaultDateFormat = model.defaultDateFormat
..defaultTimeFormat = model.defaultTimeFormat
..defaultDateTimeFormat = model.defaultDateTimeFormat
..bundledDatabasePath = bundledDatabasePath
..databasePath = databasePath;
}
Expand Down
2 changes: 1 addition & 1 deletion sqfentity/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ packages:
path: "../sqfentity_gen"
relative: true
source: path
version: "2.3.0"
version: "2.3.0+4"
sqflite_common:
dependency: "direct main"
description:
Expand Down
4 changes: 2 additions & 2 deletions sqfentity/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: sqfentity
homepage: https://github.com/hhtokpinar/sqfEntity
description: SqfEntity ORM for Flutter/Dart lets you build and execute SQL commands easily and quickly with the help of fluent methods similar to .Net Entity Framework.

version: 2.3.0
version: 2.3.0+4

environment:
sdk: ">=2.12.0 <3.0.0"
Expand All @@ -13,7 +13,7 @@ dependencies:
sqflite_sqlcipher: ^2.1.1
synchronized: ^3.0.0+2
path: ^1.8.2
sqfentity_gen: '>=2.3.0 <3.0.0'
sqfentity_gen: '>=2.3.0+4 <3.0.0'
sqflite_common: ^2.2.1+1
sqflite_common_ffi: ^2.1.1+1
meta: ^1.7.0
Expand Down

0 comments on commit b982904

Please sign in to comment.