Skip to content

Commit a9a4791

Browse files
authored
Merge pull request #7 from hatemragab/onesignal
add one signal
2 parents 36f2aac + 2855102 commit a9a4791

File tree

170 files changed

+14016
-13822
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

170 files changed

+14016
-13822
lines changed

.github/workflows/dart.yml

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
1-
2-
#The name of your workflow.
3-
name: coverage
4-
# Trigger the workflow on push or pull request
5-
on:
6-
push:
7-
branches:
8-
- master
9-
- dev
10-
pull_request:
11-
branches: [master, dev]
12-
#A workflow run is made up of one or more jobs. Jobs run in parallel by default.
13-
jobs:
14-
test:
15-
#The type of machine to run the job on. [windows,macos, ubuntu , self-hosted]
16-
defaults:
17-
run:
18-
working-directory: ./
19-
runs-on: ubuntu-latest
20-
#sequence of tasks called
21-
steps:
22-
# The branch or tag ref that triggered the workflow will be checked out.
23-
# https://github.com/actions/checkout
24-
- uses: actions/checkout@v1
25-
# Setup a flutter environment.
26-
# https://github.com/marketplace/actions/flutter-action
27-
- uses: subosito/flutter-action@v1
28-
with:
29-
channel: "stable"
30-
- run: flutter pub get
31-
#- run: flutter analyze
32-
# run flutter widgets tests and unit tests
33-
- run: flutter test --coverage
34-
- uses: codecov/codecov-action@v1.0.7
1+
2+
#The name of your workflow.
3+
name: coverage
4+
# Trigger the workflow on push or pull request
5+
on:
6+
push:
7+
branches:
8+
- master
9+
- dev
10+
pull_request:
11+
branches: [master, dev]
12+
#A workflow run is made up of one or more jobs. Jobs run in parallel by default.
13+
jobs:
14+
test:
15+
#The type of machine to run the job on. [windows,macos, ubuntu , self-hosted]
16+
defaults:
17+
run:
18+
working-directory: ./
19+
runs-on: ubuntu-latest
20+
#sequence of tasks called
21+
steps:
22+
# The branch or tag ref that triggered the workflow will be checked out.
23+
# https://github.com/actions/checkout
24+
- uses: actions/checkout@v1
25+
# Setup a flutter environment.
26+
# https://github.com/marketplace/actions/flutter-action
27+
- uses: subosito/flutter-action@v1
28+
with:
29+
channel: "stable"
30+
- run: flutter pub get
31+
#- run: flutter analyze
32+
# run flutter widgets tests and unit tests
33+
- run: flutter test --coverage
34+
- uses: codecov/codecov-action@v1.0.7

.gitignore

Lines changed: 75 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,75 +1,75 @@
1-
# Miscellaneous
2-
*.class
3-
*.log
4-
*.pyc
5-
*.swp
6-
.DS_Store
7-
.atom/
8-
.buildlog/
9-
.history
10-
.svn/
11-
12-
# IntelliJ related
13-
*.iml
14-
*.ipr
15-
*.iws
16-
.idea/
17-
18-
# The .vscode folder contains launch configuration and tasks you configure in
19-
# VS Code which you may wish to be included in version control, so this line
20-
# is commented out by default.
21-
#.vscode/
22-
23-
# Flutter/Dart/Pub related
24-
**/doc/api/
25-
.dart_tool/
26-
.flutter-plugins
27-
.flutter-plugins-dependencies
28-
.packages
29-
.pub-cache/
30-
.pub/
31-
build/
32-
33-
# Android related
34-
**/android/**/gradle-wrapper.jar
35-
**/android/.gradle
36-
**/android/captures/
37-
**/android/gradlew
38-
**/android/gradlew.bat
39-
**/android/local.properties
40-
**/android/**/GeneratedPluginRegistrant.java
41-
42-
# iOS/XCode related
43-
**/ios/**/*.mode1v3
44-
**/ios/**/*.mode2v3
45-
**/ios/**/*.moved-aside
46-
**/ios/**/*.pbxuser
47-
**/ios/**/*.perspectivev3
48-
**/ios/**/*sync/
49-
**/ios/**/.sconsign.dblite
50-
**/ios/**/.tags*
51-
**/ios/**/.vagrant/
52-
**/ios/**/DerivedData/
53-
**/ios/**/Icon?
54-
**/ios/**/Pods/
55-
**/ios/**/.symlinks/
56-
**/ios/**/profile
57-
**/ios/**/xcuserdata
58-
**/ios/.generated/
59-
**/ios/Flutter/App.framework
60-
**/ios/Flutter/Flutter.framework
61-
**/ios/Flutter/Flutter.podspec
62-
**/ios/Flutter/Generated.xcconfig
63-
**/ios/Flutter/ephemeral
64-
**/ios/Flutter/app.flx
65-
**/ios/Flutter/app.zip
66-
**/ios/Flutter/flutter_assets/
67-
**/ios/Flutter/flutter_export_environment.sh
68-
**/ios/ServiceDefinitions.json
69-
**/ios/Runner/GeneratedPluginRegistrant.*
70-
71-
# Exceptions to above rules.
72-
!**/ios/**/default.mode1v3
73-
!**/ios/**/default.mode2v3
74-
!**/ios/**/default.pbxuser
75-
!**/ios/**/default.perspectivev3
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
12+
# IntelliJ related
13+
*.iml
14+
*.ipr
15+
*.iws
16+
.idea/
17+
18+
# The .vscode folder contains launch configuration and tasks you configure in
19+
# VS Code which you may wish to be included in version control, so this line
20+
# is commented out by default.
21+
#.vscode/
22+
23+
# Flutter/Dart/Pub related
24+
**/doc/api/
25+
.dart_tool/
26+
.flutter-plugins
27+
.flutter-plugins-dependencies
28+
.packages
29+
.pub-cache/
30+
.pub/
31+
build/
32+
33+
# Android related
34+
**/android/**/gradle-wrapper.jar
35+
**/android/.gradle
36+
**/android/captures/
37+
**/android/gradlew
38+
**/android/gradlew.bat
39+
**/android/local.properties
40+
**/android/**/GeneratedPluginRegistrant.java
41+
42+
# iOS/XCode related
43+
**/ios/**/*.mode1v3
44+
**/ios/**/*.mode2v3
45+
**/ios/**/*.moved-aside
46+
**/ios/**/*.pbxuser
47+
**/ios/**/*.perspectivev3
48+
**/ios/**/*sync/
49+
**/ios/**/.sconsign.dblite
50+
**/ios/**/.tags*
51+
**/ios/**/.vagrant/
52+
**/ios/**/DerivedData/
53+
**/ios/**/Icon?
54+
**/ios/**/Pods/
55+
**/ios/**/.symlinks/
56+
**/ios/**/profile
57+
**/ios/**/xcuserdata
58+
**/ios/.generated/
59+
**/ios/Flutter/App.framework
60+
**/ios/Flutter/Flutter.framework
61+
**/ios/Flutter/Flutter.podspec
62+
**/ios/Flutter/Generated.xcconfig
63+
**/ios/Flutter/ephemeral
64+
**/ios/Flutter/app.flx
65+
**/ios/Flutter/app.zip
66+
**/ios/Flutter/flutter_assets/
67+
**/ios/Flutter/flutter_export_environment.sh
68+
**/ios/ServiceDefinitions.json
69+
**/ios/Runner/GeneratedPluginRegistrant.*
70+
71+
# Exceptions to above rules.
72+
!**/ios/**/default.mode1v3
73+
!**/ios/**/default.mode2v3
74+
!**/ios/**/default.pbxuser
75+
!**/ios/**/default.perspectivev3

.metadata

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# This file tracks properties of this Flutter project.
2-
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3-
#
4-
# This file should be version controlled and should not be manually edited.
5-
6-
version:
7-
revision: ffb2ecea5223acdd139a5039be2f9c796962833d
8-
channel: stable
9-
10-
project_type: package
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: ffb2ecea5223acdd139a5039be2f9c796962833d
8+
channel: stable
9+
10+
project_type: package

CHANGELOG.md

Lines changed: 75 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,75 @@
1-
## 0.0.1
2-
3-
* initial release.
4-
5-
## 0.0.2
6-
7-
* support multiple language and remove un necessary files
8-
9-
## 0.0.3
10-
11-
* fix logout
12-
13-
## 0.0.4
14-
15-
* update all packages
16-
17-
## 0.0.5
18-
19-
* format the code
20-
21-
## 0.0.6
22-
23-
* delete unused packages
24-
25-
## 0.0.7
26-
27-
* update .readme
28-
29-
## 0.1.0
30-
31-
* beta release
32-
33-
## 0.2.0
34-
35-
* fix ios recording and enable notification clicks to open the chat page
36-
37-
## 0.2.1
38-
39-
* encrypt user access token
40-
41-
## 0.2.5
42-
43-
* support android 12
44-
45-
## 0.4.0
46-
47-
* change from getx to bloc state management new design and more ...
48-
49-
## 0.5.0
50-
51-
* hug update on backend service v 1.0.1 must use with vchat v 0.5.0
52-
53-
## 0.6.0
54-
55-
* start implement group chat v1 still need more improvements
56-
57-
## 0.9.0
58-
* unread message count for group chat and single chat
59-
* leave group chat
60-
* group chat page which can update group name and upgrade users to admin if i the group creator and update group image
61-
* kick users from group
62-
* admin downgrade and upgrade system if iam admin
63-
* admins can add users only
64-
65-
## 0.9.1
66-
* full localization support
67-
68-
## 1.0.0
69-
* first stable version
70-
71-
## 1.0.1
72-
* hot fixes
1+
## 0.0.1
2+
3+
* initial release.
4+
5+
## 0.0.2
6+
7+
* support multiple language and remove un necessary files
8+
9+
## 0.0.3
10+
11+
* fix logout
12+
13+
## 0.0.4
14+
15+
* update all packages
16+
17+
## 0.0.5
18+
19+
* format the code
20+
21+
## 0.0.6
22+
23+
* delete unused packages
24+
25+
## 0.0.7
26+
27+
* update .readme
28+
29+
## 0.1.0
30+
31+
* beta release
32+
33+
## 0.2.0
34+
35+
* fix ios recording and enable notification clicks to open the chat page
36+
37+
## 0.2.1
38+
39+
* encrypt user access token
40+
41+
## 0.2.5
42+
43+
* support android 12
44+
45+
## 0.4.0
46+
47+
* change from getx to bloc state management new design and more ...
48+
49+
## 0.5.0
50+
51+
* hug update on backend service v 1.0.1 must use with vchat v 0.5.0
52+
53+
## 0.6.0
54+
55+
* start implement group chat v1 still need more improvements
56+
57+
## 0.9.0
58+
* unread message count for group chat and single chat
59+
* leave group chat
60+
* group chat page which can update group name and upgrade users to admin if i the group creator and update group image
61+
* kick users from group
62+
* admin downgrade and upgrade system if iam admin
63+
* admins can add users only
64+
65+
## 0.9.1
66+
* full localization support
67+
68+
## 1.0.0
69+
* first stable version
70+
71+
## 1.0.1
72+
* hot fixes
73+
74+
## 1.0.2
75+
* update packages and support multiple device open same account

0 commit comments

Comments
 (0)