Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
d927395
feat: add markdown and math view support in ChatScreen
lminervino18 Jun 5, 2025
411b410
feat: implement mock API for assessments with CRUD operations
lminervino18 Jun 5, 2025
aa7b9cb
feat(assessments): enable creation of exams, tasks and exercises with…
lminervino18 Jun 6, 2025
3cfe5cc
Merge remote-tracking branch 'origin/main' into feature/assessments
lminervino18 Jun 12, 2025
ec0c2ed
feat: enhance assessment forms with edit functionality and feedback i…
lminervino18 Jun 13, 2025
c2c8a29
feat (WIP): add pagination and filtering functionality to assessments…
lminervino18 Jun 16, 2025
5baaa39
refactor: update assessment type and filter interfaces for consistency
lminervino18 Jun 16, 2025
530a518
fix: standardize assessment type casing and improve filter logic for …
lminervino18 Jun 16, 2025
020ce78
feat: implement assessment detail screen with retrieval and delete fu…
lminervino18 Jun 16, 2025
df9bd4c
feat: add ExercisesScreen and integrate assessment exercise functiona…
lminervino18 Jun 17, 2025
abf29f9
refactor: migrate from mock API to real API for assessments and exerc…
lminervino18 Jun 18, 2025
83ea153
feat: enhance assessment screens with submission handling and filter …
lminervino18 Jun 20, 2025
8eb95aa
feat: add HTML generation and PDF sharing utilities for assessments
lminervino18 Jun 20, 2025
fea878a
feat: enhance ExerciseForm validation and styling, and add submission…
lminervino18 Jun 21, 2025
f932527
feat: enhance AssessmentForm validation
lminervino18 Jun 21, 2025
8eafa43
feat: add validation for required exercises in AssessmentForm and enh…
lminervino18 Jun 21, 2025
fcef8b4
feat: implement correction submission and display for assessments, in…
lminervino18 Jun 22, 2025
1406a59
feat: add slider component for final grade input and enhance correcti…
lminervino18 Jun 23, 2025
7bdc641
feat: enhance correction submission flow and add readonly mode for st…
lminervino18 Jun 23, 2025
d4e40a9
feat: add student submission handling and display final grade in Asse…
lminervino18 Jun 23, 2025
68bdd69
feat: disable edit option for non-upcoming assessments in AssessmentD…
lminervino18 Jun 23, 2025
43440c3
feat: add logging for assessment updates and create actions; implemen…
lminervino18 Jun 23, 2025
bb1fdc5
feat: improve error handling and assessment fetching in AssessmentDet…
lminervino18 Jun 23, 2025
06ab0ac
feat: add response saving and retrieval in ExercisesScreen
lminervino18 Jun 23, 2025
4116154
feat(WIP): add CourseStatsScreen and related API services
lminervino18 Jun 23, 2025
a62d7be
feat: implement date selection modals in CourseStatsScreen
lminervino18 Jun 23, 2025
c987df0
feat: enhance CourseStatsScreen with student selection and performanc…
lminervino18 Jun 23, 2025
a566b31
feat: add assessment selection and performance visualization in Cours…
lminervino18 Jun 23, 2025
20c7bb0
feat: implement PDF export functionality in CourseStatsScreen; add HT…
lminervino18 Jun 23, 2025
cd5237e
feat: add comprehensive user guide for mobile app; include detailed s…
lminervino18 Jun 24, 2025
6faf523
fix: improve wording and clarity in user guide registration and login…
lminervino18 Jun 24, 2025
080d553
feat: add images for user guide
lminervino18 Jun 24, 2025
bbd033c
fix: improve wording in course creation instructions for clarity
lminervino18 Jun 24, 2025
ef79252
fix: add missing images
lminervino18 Jun 24, 2025
a524dc1
fix: adjust image width in user guide for better display
lminervino18 Jun 24, 2025
4ceab45
fix: adjust image width and centering in user guide for better display
lminervino18 Jun 24, 2025
f64b116
fix: message received -> student feedback
mbianchif Jun 24, 2025
7a936c3
fix: comment out error logging in various components for cleaner output
lminervino18 Jun 25, 2025
ae1c12a
fix: handle empty feedback input and restore error logging
lminervino18 Jun 25, 2025
b6e4109
fix: update comment label and refactor course action buttons for clarity
lminervino18 Jun 25, 2025
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
Empty file added (auth)/login.tsx
Empty file.
Empty file added (users)/search-users.tsx
Empty file.
1 change: 1 addition & 0 deletions app/(courses)/assessment-detail.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from '../../screens/AssessmentDetailScreen';
1 change: 1 addition & 0 deletions app/(courses)/assessments.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from '../../screens/AssessmentScreen';
1 change: 1 addition & 0 deletions app/(courses)/course-stats.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from '../../screens/CourseStatsScreen';
1 change: 1 addition & 0 deletions app/(courses)/exercises-correction.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from '../../screens/CorrectionExerciseScreen';
1 change: 1 addition & 0 deletions app/(courses)/exercises.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from '../../screens/ExercisesScreen';
Loading