Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
03a40df
added latex
AhmadKhateeb-quizplus Dec 20, 2023
4236b0a
Merge pull request #1 from AhmadKhateebq/latex2
AhmadKhateebq Dec 20, 2023
e184caa
Revert "added latex"
AhmadKhateebq Dec 20, 2023
54dafa3
Merge pull request #2 from AhmadKhateebq/revert-1-latex2
AhmadKhateebq Dec 20, 2023
234a2a9
Revert "Revert "added latex""
AhmadKhateebq Dec 20, 2023
08e2bf5
Merge pull request #3 from AhmadKhateebq/revert-2-revert-1-latex2
AhmadKhateebq Dec 20, 2023
56023a6
added latex
AhmadKhateeb-quizplus Dec 20, 2023
16d2a26
added latex
AhmadKhateeb-quizplus Dec 20, 2023
7bfa428
bug fixes
AhmadKhateeb-quizplus Dec 20, 2023
d17a43e
Merge pull request #4 from AhmadKhateebq/version2.0
AhmadKhateebq Dec 20, 2023
a154ca1
Create dart.yml
AhmadKhateebq Dec 20, 2023
2372872
Create flutter.yml
AhmadKhateebq Dec 20, 2023
26aa252
changed from 'html_editor_enhanced' to 'html_editor_enhanced_fork_latex'
AhmadKhateeb-quizplus Dec 20, 2023
409cff8
changed from 'html_editor_enhanced' to 'html_editor_enhanced_fork_latex'
AhmadKhateeb-quizplus Dec 20, 2023
25d2d03
Merge pull request #5 from AhmadKhateebq/pub.dev
AhmadKhateebq Dec 20, 2023
1fa09ae
fixed bugs in math keyboard and did dart format
AhmadKhateeb-quizplus Dec 20, 2023
6811f48
changed version number
AhmadKhateeb-quizplus Dec 20, 2023
bcb297e
Merge pull request #6 from AhmadKhateebq/pub.dev
AhmadKhateebq Dec 20, 2023
0e38855
changed version number
AhmadKhateeb-quizplus Dec 20, 2023
20d8ac9
Merge pull request #7 from AhmadKhateebq/pub.dev
AhmadKhateebq Dec 20, 2023
23ae824
changed version number
AhmadKhateeb-quizplus Dec 20, 2023
2d3f53a
changed version number
AhmadKhateeb-quizplus Dec 20, 2023
d31e8fc
updated performance
AhmadKhateeb-quizplus Dec 24, 2023
bf190ec
math keyboard is now customizable
AhmadKhateeb-quizplus Dec 27, 2023
3895f1e
math keyboard is now customizable
AhmadKhateeb-quizplus Dec 28, 2023
86fda78
math keyboard is now customizable
AhmadKhateeb-quizplus Dec 31, 2023
5222177
math dialog is enhanced
AhmadKhateeb-quizplus Jan 2, 2024
cd7b0d3
math dialog is enhanced
AhmadKhateeb-quizplus Jan 2, 2024
1c4d2c9
math dialog is enhanced
AhmadKhateeb-quizplus Jan 2, 2024
01bd735
compatibility
AhmadKhateeb-quizplus Jan 4, 2024
ed7f17a
compatibility
AhmadKhateeb-quizplus Jan 8, 2024
2d7302f
implemented mathMl to Latex without a map
AhmadKhateeb-quizplus Jan 11, 2024
d837eb7
CHANGELOG.md and pubspec.yaml
AhmadKhateeb-quizplus Jan 11, 2024
cc5e37a
CHANGELOG.md
AhmadKhateeb-quizplus Jan 11, 2024
61da49f
update dependencies
AhmadKhateeb-quizplus Oct 22, 2024
6ab2828
update dependencies
AhmadKhateeb-quizplus Oct 22, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Dart

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

# Note: This workflow uses the latest stable version of the Dart SDK.
# You can specify other versions if desired, see documentation here:
# https://github.com/dart-lang/setup-dart/blob/main/README.md
# - uses: dart-lang/setup-dart@v1
- uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603

- name: Install dependencies
run: dart pub get

# Uncomment this step to verify the use of 'dart format' on each commit.
# - name: Verify formatting
# run: dart format --output=none --set-exit-if-changed .

# Consider passing '--fatal-infos' for slightly stricter analysis.
- name: Analyze project source
run: dart analyze

# Your project will need to have tests in test/ and a dependency on
# package:test for this step to succeed. Note that Flutter projects will
# want to change this to 'flutter test'.
- name: Run tests
run: dart test
42 changes: 42 additions & 0 deletions .github/workflows/flutter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Dart

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

# Note: This workflow uses the latest stable version of the Dart SDK.
# You can specify other versions if desired, see documentation here:
# https://github.com/dart-lang/setup-dart/blob/main/README.md
# - uses: dart-lang/setup-dart@v1
- uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603

- name: Install dependencies
run: flutter pub get

# Uncomment this step to verify the use of 'dart format' on each commit.
# - name: Verify formatting
# run: dart format --output=none --set-exit-if-changed .

# Consider passing '--fatal-infos' for slightly stricter analysis.
- name: Analyze project source
run: flutter analyze

# Your project will need to have tests in test/ and a dependency on
# package:test for this step to succeed. Note that Flutter projects will
# want to change this to 'flutter test'.
- name: Run tests
run: flutter test
Loading