Skip to content

Commit

Permalink
Prepare to end iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
Goncalerta committed May 25, 2022
1 parent 8f555ff commit bbfc984
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
28 changes: 27 additions & 1 deletion docs/project_management.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
- Release management:
- [v0.1](https://github.com/LEIC-ES-2021-22/3LEIC04T2/releases/tag/v0.1)
- [v0.2](https://github.com/LEIC-ES-2021-22/3LEIC04T2/releases/tag/v0.2)
- [v0.3]
- [v0.3](https://github.com/LEIC-ES-2021-22/3LEIC04T2/releases/tag/v0.3)
- [v0.4]

## Iteration 1
Expand Down Expand Up @@ -55,3 +55,29 @@ Backlog at the start of the iteration:
<p align="center" justify="center">
<img src="https://github.com/LEIC-ES-2021-22/3LEIC04T2/blob/main/images/backlog2_start.png"/>
</p>

TODO: Backlog at the end of the iteration

### Retrospectives

#### What went well

- TODO

#### What went poorly

- TODO

#### Obstacles along the way

- TODO

## Iteration 3

### Release

[v0.3](https://github.com/LEIC-ES-2021-22/3LEIC04T2/releases/tag/v0.3)

### Plans

TODO: Backlog at the start of the iteration
2 changes: 1 addition & 1 deletion project-schrodinger
Submodule project-schrodinger updated 87 files
+5 −0 app_feup/lib/controller/class_fetcher/class_fetcher.dart
+1,041 −0 app_feup/lib/controller/class_fetcher/class_fetcher_mock.dart
+3 −3 app_feup/lib/controller/exam.dart
+3 −2 app_feup/lib/controller/load_static/terms_and_conditions.dart
+7 −6 app_feup/lib/controller/local_storage/app_bus_stop_database.dart
+3 −3 app_feup/lib/controller/local_storage/app_courses_database.dart
+5 −1 app_feup/lib/controller/local_storage/app_database.dart
+2 −2 app_feup/lib/controller/local_storage/app_exams_database.dart
+1 −1 app_feup/lib/controller/local_storage/app_last_user_info_update_database.dart
+3 −3 app_feup/lib/controller/local_storage/app_lectures_database.dart
+213 −0 app_feup/lib/controller/local_storage/app_planned_schedules_database.dart
+4 −4 app_feup/lib/controller/local_storage/app_refresh_times_database.dart
+19 −25 app_feup/lib/controller/local_storage/app_restaurant_database.dart
+2 −2 app_feup/lib/controller/local_storage/app_user_database.dart
+6 −5 app_feup/lib/controller/local_storage/image_offline_storage.dart
+3 −2 app_feup/lib/controller/logout.dart
+2 −2 app_feup/lib/controller/networking/network_router.dart
+3 −3 app_feup/lib/controller/on_start_up.dart
+1 −1 app_feup/lib/controller/parsers/parser_courses.dart
+1 −1 app_feup/lib/controller/parsers/parser_fees.dart
+18 −22 app_feup/lib/controller/parsers/parser_restaurants.dart
+1 −1 app_feup/lib/controller/parsers/parser_schedule.dart
+1 −1 app_feup/lib/controller/parsers/parser_schedule_html.dart
+7 −0 app_feup/lib/controller/registerables_fetcher/registerables_fetcher.dart
+88 −0 app_feup/lib/controller/registerables_fetcher/registerables_fetcher_mock.dart
+2 −1 app_feup/lib/controller/restaurant_fetcher/restaurant_fetcher.dart
+6 −7 app_feup/lib/controller/restaurant_fetcher/restaurant_fetcher_html.dart
+1 −1 app_feup/lib/main.dart
+58 −0 app_feup/lib/model/class_registration_model.dart
+1 −0 app_feup/lib/model/class_registration_schedule_editor_model.dart
+9 −6 app_feup/lib/model/entities/bus.dart
+2 −2 app_feup/lib/model/entities/bus_stop.dart
+1 −1 app_feup/lib/model/entities/course.dart
+32 −32 app_feup/lib/model/entities/course_unit.dart
+39 −2 app_feup/lib/model/entities/course_units_for_class_registration.dart
+26 −0 app_feup/lib/model/entities/lecture.dart
+8 −7 app_feup/lib/model/entities/meal.dart
+8 −11 app_feup/lib/model/entities/profile.dart
+8 −13 app_feup/lib/model/entities/restaurant.dart
+35 −34 app_feup/lib/model/entities/schedule_option.dart
+12 −1 app_feup/lib/model/entities/schedule_preference_list.dart
+1 −1 app_feup/lib/model/entities/time_utilities.dart
+3 −4 app_feup/lib/model/entities/trip.dart
+1 −1 app_feup/lib/model/home_page_model.dart
+2 −2 app_feup/lib/model/stops_page_model.dart
+11 −11 app_feup/lib/model/utils/day_of_week.dart
+6 −8 app_feup/lib/redux/action_creators.dart
+0 −1 app_feup/lib/redux/actions.dart
+1 −1 app_feup/lib/redux/reducers.dart
+16 −3 app_feup/lib/utils/constants.dart
+4 −6 app_feup/lib/view/Pages/bug_report_page_view.dart
+101 −208 app_feup/lib/view/Pages/class_registration_schedule_editor_view.dart
+408 −24 app_feup/lib/view/Pages/class_registration_view.dart
+1 −1 app_feup/lib/view/Pages/exams_page_view.dart
+2 −2 app_feup/lib/view/Pages/general_page_view.dart
+0 −1 app_feup/lib/view/Pages/home_page_view.dart
+6 −12 app_feup/lib/view/Pages/secondary_page_view.dart
+55 −0 app_feup/lib/view/Pages/selected_course_units_page_view.dart
+2 −1 app_feup/lib/view/Widgets/bus_stop_card.dart
+3 −7 app_feup/lib/view/Widgets/date_rectangle.dart
+26 −26 app_feup/lib/view/Widgets/generic_card.dart
+4 −7 app_feup/lib/view/Widgets/page_title.dart
+1 −1 app_feup/lib/view/Widgets/print_info_card.dart
+10 −10 app_feup/lib/view/Widgets/request_dependent_widget_builder.dart
+23 −31 app_feup/lib/view/Widgets/restaurant_card.dart
+43 −49 app_feup/lib/view/Widgets/restaurant_row.dart
+2 −2 app_feup/lib/view/Widgets/schedule_card.dart
+142 −44 app_feup/lib/view/Widgets/schedule_planner_card.dart
+2 −2 app_feup/lib/view/Widgets/schedule_slot.dart
+1 −1 app_feup/lib/view/Widgets/schedule_time_interval.dart
+1 −1 app_feup/lib/view/Widgets/secondary_page_back_button.dart
+85 −0 app_feup/lib/view/Widgets/section_card.dart
+90 −0 app_feup/lib/view/Widgets/selected_courses_card.dart
+2 −2 app_feup/lib/view/Widgets/title_card.dart
+4 −3 app_feup/lib/view/navigation_service.dart
+61 −63 app_feup/lib/view/theme.dart
+3 −5 app_feup/test/testable_redux_widget.dart
+31 −0 app_feup/test/unit/model/class_registration_model.dart
+68 −0 app_feup/test/unit/model/entities/course_units_for_class_registration.dart
+121 −0 app_feup/test/unit/model/entities/lecture.dart
+394 −0 app_feup/test/unit/model/entities/schedule_option.dart
+137 −0 app_feup/test/unit/model/entities/schedule_preference_list.dart
+1 −2 app_feup/test/unit/redux/action_creators.dart
+5 −0 app_feup/test/unit/redux/exam_action_creators_test.dart
+4 −4 app_feup/test/unit/redux/schedule_action_creators_test.dart
+31 −89 app_feup/test/unit/view/Pages/exams_page_view_test.dart
+12 −12 app_feup/test/unit/view/Pages/schedule_page_view_test.dart

0 comments on commit bbfc984

Please sign in to comment.