├── .gitignore ├── AUTHORS.md ├── CMakeLists.txt ├── Doxyfile ├── Doxyfile.bak ├── LICENSE.md ├── README.md ├── assets ├── database │ ├── README.md │ ├── database_schema.sql │ ├── logbook.db │ ├── templates.qrc │ └── templates │ │ ├── aircraft.json │ │ ├── aircraft.md5 │ │ ├── airports.json │ │ ├── airports.md5 │ │ ├── changelog.json │ │ ├── changelog.md5 │ │ └── currencies.md5 ├── icons.qrc ├── ionicon-icons │ ├── airplane-outline.png │ ├── airplane-outline.svg │ ├── airplane.png │ ├── airplane.svg │ ├── alarm-outline.png │ ├── alarm-outline.svg │ ├── alarm.png │ ├── alarm.svg │ ├── book-outline.png │ ├── book-outline.svg │ ├── book.png │ ├── book.svg │ ├── home-outline.png │ ├── home-outline.svg │ ├── home.png │ ├── home.svg │ ├── power-outline.png │ ├── power-outline.svg │ ├── power.png │ ├── power.svg │ ├── settings-outline.png │ ├── settings-outline.svg │ ├── settings.png │ └── settings.svg ├── opl-icons │ ├── app │ │ ├── icon_ios.icns │ │ ├── icon_ios.svg │ │ ├── icon_linux.svg │ │ ├── icon_main.png │ │ ├── icon_main.svg │ │ ├── icon_windows.ico │ │ └── icon_windows.svg │ ├── logos │ │ ├── logo_text.png │ │ └── logo_text.svg │ └── toolbar │ │ ├── thick │ │ ├── dark │ │ │ ├── icon_airplane_dm.svg │ │ │ ├── icon_backup_dm.svg │ │ │ ├── icon_exit_dm.svg │ │ │ ├── icon_home_dm.svg │ │ │ ├── icon_logbook_dm.svg │ │ │ ├── icon_new_flight_dm.svg │ │ │ ├── icon_pilot_dm.svg │ │ │ └── icon_settings_dm.svg │ │ └── light │ │ │ ├── icon_airplane.svg │ │ │ ├── icon_backup.png │ │ │ ├── icon_backup.svg │ │ │ ├── icon_exit.svg │ │ │ ├── icon_home.svg │ │ │ ├── icon_logbook.svg │ │ │ ├── icon_new_flight.svg │ │ │ ├── icon_pilot.svg │ │ │ └── icon_settings.svg │ │ └── thin │ │ ├── Overview.png │ │ ├── dark │ │ ├── airplane_dm.svg │ │ ├── backup_dm.svg │ │ ├── exit_dm.svg │ │ ├── home_dm.svg │ │ ├── logbook_dm.svg │ │ ├── new flight_dm.svg │ │ ├── new_flight_dm.svg │ │ ├── pilot_dm.svg │ │ └── settings_dm.svg │ │ └── light │ │ ├── airplane.svg │ │ ├── backup.svg │ │ ├── exit.svg │ │ ├── home.svg │ │ ├── logbook.svg │ │ ├── new flight.svg │ │ ├── new_flight.svg │ │ ├── pilot.svg │ │ └── settings.svg ├── screenshots │ ├── aircraftwidget_dark.png │ ├── default_view_system_theme.png │ ├── easaView_dark_theme.png │ ├── logbookwidget_dark.png │ ├── logbookwidget_light.png │ ├── newflight_1_dark.png │ ├── newflight_2_light.png │ ├── pilots_table.png │ ├── pilotsdialog_dark.png │ ├── screenshot1.png │ └── screenshot3.png └── themes │ ├── doxygen │ └── custom_dark_theme.css │ └── stylesheets │ ├── breeze │ ├── LICENSE.md │ ├── breeze.qrc │ ├── breeze_dark.qss │ ├── breeze_light.qss │ ├── dark │ │ ├── branch_closed-on.svg │ │ ├── branch_closed.svg │ │ ├── branch_open-on.svg │ │ ├── branch_open.svg │ │ ├── checkbox_checked.svg │ │ ├── checkbox_checked_disabled.svg │ │ ├── checkbox_indeterminate.svg │ │ ├── checkbox_indeterminate_disabled.svg │ │ ├── checkbox_unchecked.svg │ │ ├── checkbox_unchecked_disabled.svg │ │ ├── close-hover.svg │ │ ├── close-pressed.svg │ │ ├── close.svg │ │ ├── down_arrow-hover.svg │ │ ├── down_arrow.svg │ │ ├── down_arrow_disabled.svg │ │ ├── hmovetoolbar.svg │ │ ├── hsepartoolbar.svg │ │ ├── left_arrow.svg │ │ ├── left_arrow_disabled.svg │ │ ├── radio_checked.svg │ │ ├── radio_checked_disabled.svg │ │ ├── radio_unchecked.svg │ │ ├── radio_unchecked_disabled.svg │ │ ├── right_arrow.svg │ │ ├── right_arrow_disabled.svg │ │ ├── sizegrip.svg │ │ ├── spinup_disabled.svg │ │ ├── stylesheet-branch-end-closed.svg │ │ ├── stylesheet-branch-end-open.svg │ │ ├── stylesheet-branch-end.svg │ │ ├── stylesheet-branch-more.svg │ │ ├── stylesheet-vline.svg │ │ ├── transparent.svg │ │ ├── undock-hover.svg │ │ ├── undock.svg │ │ ├── up_arrow-hover.svg │ │ ├── up_arrow.svg │ │ ├── up_arrow_disabled.svg │ │ ├── vmovetoolbar.svg │ │ └── vsepartoolbars.svg │ ├── dark_original.qss │ ├── light │ │ ├── branch_closed-on.svg │ │ ├── branch_closed.svg │ │ ├── branch_open-on.svg │ │ ├── branch_open.svg │ │ ├── checkbox_checked-hover.svg │ │ ├── checkbox_checked.svg │ │ ├── checkbox_checked_disabled.svg │ │ ├── checkbox_indeterminate-hover.svg │ │ ├── checkbox_indeterminate.svg │ │ ├── checkbox_indeterminate_disabled.svg │ │ ├── checkbox_unchecked-hover.svg │ │ ├── checkbox_unchecked_disabled.svg │ │ ├── close-hover.svg │ │ ├── close-pressed.svg │ │ ├── close.svg │ │ ├── down_arrow-hover.svg │ │ ├── down_arrow.svg │ │ ├── down_arrow_disabled.svg │ │ ├── hmovetoolbar.svg │ │ ├── hsepartoolbar.svg │ │ ├── left_arrow.svg │ │ ├── left_arrow_disabled.svg │ │ ├── radio_checked-hover.svg │ │ ├── radio_checked.svg │ │ ├── radio_checked_disabled.svg │ │ ├── radio_unchecked-hover.svg │ │ ├── radio_unchecked_disabled.svg │ │ ├── right_arrow.svg │ │ ├── right_arrow_disabled.svg │ │ ├── sizegrip.svg │ │ ├── spinup_disabled.svg │ │ ├── stylesheet-branch-end-closed.svg │ │ ├── stylesheet-branch-end-open.svg │ │ ├── stylesheet-branch-end.svg │ │ ├── stylesheet-branch-more.svg │ │ ├── stylesheet-vline.svg │ │ ├── transparent.svg │ │ ├── undock-hover.svg │ │ ├── undock.svg │ │ ├── up_arrow-hover.svg │ │ ├── up_arrow.svg │ │ ├── up_arrow_disabled.svg │ │ ├── vmovetoolbar.svg │ │ └── vsepartoolbars.svg │ └── light_original.qss │ └── qdarkstyle │ ├── LICENSE.md │ ├── qdarkstyle.qrc │ ├── qdarkstyle.qss │ └── rc │ ├── arrow_down.png │ ├── arrow_down@2x.png │ ├── arrow_down_disabled.png │ ├── arrow_down_disabled@2x.png │ ├── arrow_down_focus.png │ ├── arrow_down_focus@2x.png │ ├── arrow_down_pressed.png │ ├── arrow_down_pressed@2x.png │ ├── arrow_left.png │ ├── arrow_left@2x.png │ ├── arrow_left_disabled.png │ ├── arrow_left_disabled@2x.png │ ├── arrow_left_focus.png │ ├── arrow_left_focus@2x.png │ ├── arrow_left_pressed.png │ ├── arrow_left_pressed@2x.png │ ├── arrow_right.png │ ├── arrow_right@2x.png │ ├── arrow_right_disabled.png │ ├── arrow_right_disabled@2x.png │ ├── arrow_right_focus.png │ ├── arrow_right_focus@2x.png │ ├── arrow_right_pressed.png │ ├── arrow_right_pressed@2x.png │ ├── arrow_up.png │ ├── arrow_up@2x.png │ ├── arrow_up_disabled.png │ ├── arrow_up_disabled@2x.png │ ├── arrow_up_focus.png │ ├── arrow_up_focus@2x.png │ ├── arrow_up_pressed.png │ ├── arrow_up_pressed@2x.png │ ├── base_icon.png │ ├── base_icon@2x.png │ ├── base_icon_disabled.png │ ├── base_icon_disabled@2x.png │ ├── base_icon_focus.png │ ├── base_icon_focus@2x.png │ ├── base_icon_pressed.png │ ├── base_icon_pressed@2x.png │ ├── branch_closed.png │ ├── branch_closed@2x.png │ ├── branch_closed_disabled.png │ ├── branch_closed_disabled@2x.png │ ├── branch_closed_focus.png │ ├── branch_closed_focus@2x.png │ ├── branch_closed_pressed.png │ ├── branch_closed_pressed@2x.png │ ├── branch_end.png │ ├── branch_end@2x.png │ ├── branch_end_disabled.png │ ├── branch_end_disabled@2x.png │ ├── branch_end_focus.png │ ├── branch_end_focus@2x.png │ ├── branch_end_pressed.png │ ├── branch_end_pressed@2x.png │ ├── branch_line.png │ ├── branch_line@2x.png │ ├── branch_line_disabled.png │ ├── branch_line_disabled@2x.png │ ├── branch_line_focus.png │ ├── branch_line_focus@2x.png │ ├── branch_line_pressed.png │ ├── branch_line_pressed@2x.png │ ├── branch_more.png │ ├── branch_more@2x.png │ ├── branch_more_disabled.png │ ├── branch_more_disabled@2x.png │ ├── branch_more_focus.png │ ├── branch_more_focus@2x.png │ ├── branch_more_pressed.png │ ├── branch_more_pressed@2x.png │ ├── branch_open.png │ ├── branch_open@2x.png │ ├── branch_open_disabled.png │ ├── branch_open_disabled@2x.png │ ├── branch_open_focus.png │ ├── branch_open_focus@2x.png │ ├── branch_open_pressed.png │ ├── branch_open_pressed@2x.png │ ├── checkbox_checked.png │ ├── checkbox_checked@2x.png │ ├── checkbox_checked_disabled.png │ ├── checkbox_checked_disabled@2x.png │ ├── checkbox_checked_focus.png │ ├── checkbox_checked_focus@2x.png │ ├── checkbox_checked_pressed.png │ ├── checkbox_checked_pressed@2x.png │ ├── checkbox_indeterminate.png │ ├── checkbox_indeterminate@2x.png │ ├── checkbox_indeterminate_disabled.png │ ├── checkbox_indeterminate_disabled@2x.png │ ├── checkbox_indeterminate_focus.png │ ├── checkbox_indeterminate_focus@2x.png │ ├── checkbox_indeterminate_pressed.png │ ├── checkbox_indeterminate_pressed@2x.png │ ├── checkbox_unchecked.png │ ├── checkbox_unchecked@2x.png │ ├── checkbox_unchecked_disabled.png │ ├── checkbox_unchecked_disabled@2x.png │ ├── checkbox_unchecked_focus.png │ ├── checkbox_unchecked_focus@2x.png │ ├── checkbox_unchecked_pressed.png │ ├── checkbox_unchecked_pressed@2x.png │ ├── line_horizontal.png │ ├── line_horizontal@2x.png │ ├── line_horizontal_disabled.png │ ├── line_horizontal_disabled@2x.png │ ├── line_horizontal_focus.png │ ├── line_horizontal_focus@2x.png │ ├── line_horizontal_pressed.png │ ├── line_horizontal_pressed@2x.png │ ├── line_vertical.png │ ├── line_vertical@2x.png │ ├── line_vertical_disabled.png │ ├── line_vertical_disabled@2x.png │ ├── line_vertical_focus.png │ ├── line_vertical_focus@2x.png │ ├── line_vertical_pressed.png │ ├── line_vertical_pressed@2x.png │ ├── radio_checked.png │ ├── radio_checked@2x.png │ ├── radio_checked_disabled.png │ ├── radio_checked_disabled@2x.png │ ├── radio_checked_focus.png │ ├── radio_checked_focus@2x.png │ ├── radio_checked_pressed.png │ ├── radio_checked_pressed@2x.png │ ├── radio_unchecked.png │ ├── radio_unchecked@2x.png │ ├── radio_unchecked_disabled.png │ ├── radio_unchecked_disabled@2x.png │ ├── radio_unchecked_focus.png │ ├── radio_unchecked_focus@2x.png │ ├── radio_unchecked_pressed.png │ ├── radio_unchecked_pressed@2x.png │ ├── toolbar_move_horizontal.png │ ├── toolbar_move_horizontal@2x.png │ ├── toolbar_move_horizontal_disabled.png │ ├── toolbar_move_horizontal_disabled@2x.png │ ├── toolbar_move_horizontal_focus.png │ ├── toolbar_move_horizontal_focus@2x.png │ ├── toolbar_move_horizontal_pressed.png │ ├── toolbar_move_horizontal_pressed@2x.png │ ├── toolbar_move_vertical.png │ ├── toolbar_move_vertical@2x.png │ ├── toolbar_move_vertical_disabled.png │ ├── toolbar_move_vertical_disabled@2x.png │ ├── toolbar_move_vertical_focus.png │ ├── toolbar_move_vertical_focus@2x.png │ ├── toolbar_move_vertical_pressed.png │ ├── toolbar_move_vertical_pressed@2x.png │ ├── toolbar_separator_horizontal.png │ ├── toolbar_separator_horizontal@2x.png │ ├── toolbar_separator_horizontal_disabled.png │ ├── toolbar_separator_horizontal_disabled@2x.png │ ├── toolbar_separator_horizontal_focus.png │ ├── toolbar_separator_horizontal_focus@2x.png │ ├── toolbar_separator_horizontal_pressed.png │ ├── toolbar_separator_horizontal_pressed@2x.png │ ├── toolbar_separator_vertical.png │ ├── toolbar_separator_vertical@2x.png │ ├── toolbar_separator_vertical_disabled.png │ ├── toolbar_separator_vertical_disabled@2x.png │ ├── toolbar_separator_vertical_focus.png │ ├── toolbar_separator_vertical_focus@2x.png │ ├── toolbar_separator_vertical_pressed.png │ ├── toolbar_separator_vertical_pressed@2x.png │ ├── transparent.png │ ├── transparent@2x.png │ ├── transparent_disabled.png │ ├── transparent_disabled@2x.png │ ├── transparent_focus.png │ ├── transparent_focus@2x.png │ ├── transparent_pressed.png │ ├── transparent_pressed@2x.png │ ├── window_close.png │ ├── window_close@2x.png │ ├── window_close_disabled.png │ ├── window_close_disabled@2x.png │ ├── window_close_focus.png │ ├── window_close_focus@2x.png │ ├── window_close_pressed.png │ ├── window_close_pressed@2x.png │ ├── window_grip.png │ ├── window_grip@2x.png │ ├── window_grip_disabled.png │ ├── window_grip_disabled@2x.png │ ├── window_grip_focus.png │ ├── window_grip_focus@2x.png │ ├── window_grip_pressed.png │ ├── window_grip_pressed@2x.png │ ├── window_minimize.png │ ├── window_minimize@2x.png │ ├── window_minimize_disabled.png │ ├── window_minimize_disabled@2x.png │ ├── window_minimize_focus.png │ ├── window_minimize_focus@2x.png │ ├── window_minimize_pressed.png │ ├── window_minimize_pressed@2x.png │ ├── window_undock.png │ ├── window_undock@2x.png │ ├── window_undock_disabled.png │ ├── window_undock_disabled@2x.png │ ├── window_undock_focus.png │ ├── window_undock_focus@2x.png │ ├── window_undock_pressed.png │ └── window_undock_pressed@2x.png ├── deprecated ├── aaircraftentry.cpp ├── aaircraftentry.h ├── acompletiondata.cpp ├── acompletiondata.h ├── acurrencyentry.cpp ├── acurrencyentry.h ├── adatabasesetup.cpp ├── adatabasesetup.h ├── adatabasetypes.h ├── adatetime.h ├── aentry.cpp ├── aentry.h ├── aflightentry.cpp ├── aflightentry.h ├── aircraft.csv ├── aircraftwidget.ui ├── airports.csv ├── airportwidget.cpp ├── airportwidget.h ├── airportwidget.ui ├── apilotentry.cpp ├── apilotentry.h ├── asimulatorentry.cpp ├── asimulatorentry.h ├── astandardpaths.cpp ├── astandardpaths.h ├── atailentry.cpp ├── atailentry.h ├── changelog.csv ├── currencies.csv ├── dbcompletiondata.cpp ├── dbcompletiondata.h ├── oldlogbook.db ├── oldnewflight.ui ├── oldnewflightdialog.cpp ├── oldnewflightdialog.h ├── openPilotLog.pro ├── pilotswidget.cpp ├── pilotswidget.h ├── pilotswidget.ui ├── sample_flights.csv ├── sample_pilots.csv ├── sample_tails.csv ├── tailswidget.cpp └── tailswidget.h ├── docs ├── .nojekyll ├── deployment │ ├── linux-appimage │ │ ├── AppDir │ │ │ └── usr │ │ │ │ ├── bin │ │ │ │ └── executable_goes_here.md │ │ │ │ └── share │ │ │ │ ├── applications │ │ │ │ └── openPilotLog.desktop │ │ │ │ └── icons │ │ │ │ └── hicolor │ │ │ │ ├── 256x256 │ │ │ │ └── openPilotLog.png │ │ │ │ └── 64x64 │ │ │ │ └── openPilotLog.png │ │ └── create_linux_appimage.md │ ├── linux-flatpak │ │ ├── flatpak_creation.md │ │ └── org.opl.openPilotLog.yaml │ └── windows-installer │ │ ├── config │ │ └── config.xml │ │ ├── create_windows_installer.md │ │ └── packages │ │ └── com.opl.openPilotLog │ │ ├── data │ │ └── files_to_be_extracted_go_here_as_7zip.txt │ │ └── meta │ │ ├── license.txt │ │ ├── package.xml │ │ └── page.ui ├── doc_mainpage.md ├── html │ ├── aircraftwidget_8h_source.html │ ├── airportwidget_8h_source.html │ ├── annotated.html │ ├── annotated_dup.js │ ├── atimer_8h_source.html │ ├── backupwidget_8h_source.html │ ├── bc_s.png │ ├── bdwn.png │ ├── calc_8h_source.html │ ├── class_a_timer-members.html │ ├── class_a_timer.html │ ├── class_a_timer.js │ ├── class_a_timer.png │ ├── class_aircraft_widget-members.html │ ├── class_aircraft_widget.html │ ├── class_aircraft_widget.js │ ├── class_aircraft_widget.png │ ├── class_airport_widget-members.html │ ├── class_airport_widget.html │ ├── class_airport_widget.js │ ├── class_airport_widget.png │ ├── class_backup_widget-members.html │ ├── class_backup_widget.html │ ├── class_backup_widget.js │ ├── class_backup_widget.png │ ├── class_debug_widget-members.html │ ├── class_debug_widget.html │ ├── class_debug_widget.js │ ├── class_debug_widget.png │ ├── class_download_helper-members.html │ ├── class_download_helper.html │ ├── class_download_helper.js │ ├── class_download_helper.png │ ├── class_first_run_dialog-members.html │ ├── class_first_run_dialog.html │ ├── class_first_run_dialog.js │ ├── class_first_run_dialog.png │ ├── class_home_widget-members.html │ ├── class_home_widget.html │ ├── class_home_widget.js │ ├── class_home_widget.png │ ├── class_json_helper-members.html │ ├── class_json_helper.html │ ├── class_json_helper.js │ ├── class_logbook_widget-members.html │ ├── class_logbook_widget.html │ ├── class_logbook_widget.js │ ├── class_logbook_widget.png │ ├── class_md5_sum-members.html │ ├── class_md5_sum.html │ ├── class_md5_sum.js │ ├── class_new_airport_dialog-members.html │ ├── class_new_airport_dialog.html │ ├── class_new_airport_dialog.js │ ├── class_new_airport_dialog.png │ ├── class_new_flight_dialog-members.html │ ├── class_new_flight_dialog.html │ ├── class_new_flight_dialog.js │ ├── class_new_flight_dialog.png │ ├── class_new_pilot_dialog-members.html │ ├── class_new_pilot_dialog.html │ ├── class_new_pilot_dialog.js │ ├── class_new_pilot_dialog.png │ ├── class_new_sim_dialog-members.html │ ├── class_new_sim_dialog.html │ ├── class_new_sim_dialog.js │ ├── class_new_sim_dialog.png │ ├── class_new_tail_dialog-members.html │ ├── class_new_tail_dialog.html │ ├── class_new_tail_dialog.js │ ├── class_new_tail_dialog.png │ ├── class_o_p_l_1_1_a_notification_handler-members.html │ ├── class_o_p_l_1_1_a_notification_handler.html │ ├── class_o_p_l_1_1_aircraft_entry-members.html │ ├── class_o_p_l_1_1_aircraft_entry.html │ ├── class_o_p_l_1_1_aircraft_entry.js │ ├── class_o_p_l_1_1_aircraft_entry.png │ ├── class_o_p_l_1_1_airport_entry-members.html │ ├── class_o_p_l_1_1_airport_entry.html │ ├── class_o_p_l_1_1_airport_entry.js │ ├── class_o_p_l_1_1_airport_entry.png │ ├── class_o_p_l_1_1_currency_entry-members.html │ ├── class_o_p_l_1_1_currency_entry.html │ ├── class_o_p_l_1_1_currency_entry.js │ ├── class_o_p_l_1_1_currency_entry.png │ ├── class_o_p_l_1_1_database-members.html │ ├── class_o_p_l_1_1_database.html │ ├── class_o_p_l_1_1_database.js │ ├── class_o_p_l_1_1_database.png │ ├── class_o_p_l_1_1_date_time-members.html │ ├── class_o_p_l_1_1_date_time.html │ ├── class_o_p_l_1_1_db_completion_data-members.html │ ├── class_o_p_l_1_1_db_completion_data.html │ ├── class_o_p_l_1_1_db_completion_data.js │ ├── class_o_p_l_1_1_db_summary-members.html │ ├── class_o_p_l_1_1_db_summary.html │ ├── class_o_p_l_1_1_db_summary.js │ ├── class_o_p_l_1_1_db_summary.png │ ├── class_o_p_l_1_1_flight_entry-members.html │ ├── class_o_p_l_1_1_flight_entry.html │ ├── class_o_p_l_1_1_flight_entry.js │ ├── class_o_p_l_1_1_flight_entry.png │ ├── class_o_p_l_1_1_opl_globals-members.html │ ├── class_o_p_l_1_1_opl_globals.html │ ├── class_o_p_l_1_1_opl_globals.js │ ├── class_o_p_l_1_1_opl_globals.png │ ├── class_o_p_l_1_1_paths-members.html │ ├── class_o_p_l_1_1_paths.html │ ├── class_o_p_l_1_1_paths.js │ ├── class_o_p_l_1_1_pilot_entry-members.html │ ├── class_o_p_l_1_1_pilot_entry.html │ ├── class_o_p_l_1_1_pilot_entry.js │ ├── class_o_p_l_1_1_pilot_entry.png │ ├── class_o_p_l_1_1_row-members.html │ ├── class_o_p_l_1_1_row.html │ ├── class_o_p_l_1_1_row.js │ ├── class_o_p_l_1_1_row.png │ ├── class_o_p_l_1_1_simulator_entry-members.html │ ├── class_o_p_l_1_1_simulator_entry.html │ ├── class_o_p_l_1_1_simulator_entry.js │ ├── class_o_p_l_1_1_simulator_entry.png │ ├── class_o_p_l_1_1_style-members.html │ ├── class_o_p_l_1_1_style.html │ ├── class_o_p_l_1_1_style.js │ ├── class_o_p_l_1_1_tail_entry-members.html │ ├── class_o_p_l_1_1_tail_entry.html │ ├── class_o_p_l_1_1_tail_entry.js │ ├── class_o_p_l_1_1_tail_entry.png │ ├── class_pilots_widget-members.html │ ├── class_pilots_widget.html │ ├── class_pilots_widget.js │ ├── class_pilots_widget.png │ ├── class_process_aircraft-members.html │ ├── class_process_aircraft.html │ ├── class_process_aircraft.js │ ├── class_process_flights-members.html │ ├── class_process_flights.html │ ├── class_process_flights.js │ ├── class_process_pilots-members.html │ ├── class_process_pilots.html │ ├── class_process_pilots.js │ ├── class_run_guard-members.html │ ├── class_run_guard.html │ ├── class_run_guard.js │ ├── class_settings-members.html │ ├── class_settings.html │ ├── class_settings.js │ ├── class_settings_widget-members.html │ ├── class_settings_widget.html │ ├── class_settings_widget.js │ ├── class_settings_widget.png │ ├── class_translator-members.html │ ├── class_translator.html │ ├── class_translator.png │ ├── class_validation_state-members.html │ ├── class_validation_state.html │ ├── class_validation_state.js │ ├── classes.html │ ├── closed.png │ ├── custom_dark_theme.css │ ├── database_8h_source.html │ ├── datetime_8h_source.html │ ├── dbcompletiondata_8h_source.html │ ├── dbsummary_8h_source.html │ ├── debugwidget_8h_source.html │ ├── dir_018e9aafb459e6e1a4953404cb0c0b1d.html │ ├── dir_018e9aafb459e6e1a4953404cb0c0b1d.js │ ├── dir_22d8b8621769acf8e49801a1050c5c94.html │ ├── dir_22d8b8621769acf8e49801a1050c5c94.js │ ├── dir_3513c77e68d0de165c8b48f945306dcb.html │ ├── dir_3513c77e68d0de165c8b48f945306dcb.js │ ├── dir_49e56c817e5e54854c35e136979f97ca.html │ ├── dir_68267d1309a1af8e8297ef4c3efbcdba.html │ ├── dir_68267d1309a1af8e8297ef4c3efbcdba.js │ ├── dir_803ee67260c130b45d29089798491ab2.html │ ├── dir_803ee67260c130b45d29089798491ab2.js │ ├── dir_99d0482cf009f9d97a0877749b817f19.html │ ├── dir_99d0482cf009f9d97a0877749b817f19.js │ ├── dir_bccd969f85dcdef3bbd296fb8abb2685.html │ ├── dir_bccd969f85dcdef3bbd296fb8abb2685.js │ ├── dir_cc657b4ce13702a9d007a200bde234e1.html │ ├── dir_cc657b4ce13702a9d007a200bde234e1.js │ ├── dir_e823141bb13a34caac0c96ccd0d33fcf.html │ ├── dir_e823141bb13a34caac0c96ccd0d33fcf.js │ ├── doc.png │ ├── downloadhelper_8h_source.html │ ├── doxygen.css │ ├── doxygen.svg │ ├── dynsections.js │ ├── files.html │ ├── files_dup.js │ ├── firstrundialog_8h_source.html │ ├── folderclosed.png │ ├── folderopen.png │ ├── functions.html │ ├── functions_enum.html │ ├── functions_func.html │ ├── functions_vars.html │ ├── hierarchy.html │ ├── hierarchy.js │ ├── homewidget_8h_source.html │ ├── icon_main.png │ ├── importcrewlounge_8h_source.html │ ├── index.html │ ├── jquery.js │ ├── jsonhelper_8h_source.html │ ├── log_8h_source.html │ ├── logbookwidget_8h_source.html │ ├── md5sum_8h_source.html │ ├── menu.js │ ├── menudata.js │ ├── namespace_o_p_l.html │ ├── namespace_o_p_l.js │ ├── namespace_o_p_l_1_1_calc.html │ ├── namespace_o_p_l_1_1_calc.js │ ├── namespace_o_p_l_1_1_db.html │ ├── namespace_o_p_l_1_1_log.html │ ├── namespacemembers.html │ ├── namespacemembers_enum.html │ ├── namespacemembers_func.html │ ├── namespaces.html │ ├── namespaces_dup.js │ ├── nav_f.png │ ├── nav_g.png │ ├── nav_h.png │ ├── navtree.css │ ├── navtree.js │ ├── navtreedata.js │ ├── navtreeindex0.js │ ├── navtreeindex1.js │ ├── navtreeindex2.js │ ├── newairportdialog_8h_source.html │ ├── newflightdialog_8h_source.html │ ├── newpilotdialog_8h_source.html │ ├── newsimdialog_8h_source.html │ ├── newtaildialog_8h_source.html │ ├── open.png │ ├── opl_8h_source.html │ ├── pages.html │ ├── paths_8h_source.html │ ├── pilotswidget_8h_source.html │ ├── processaircraft_8h_source.html │ ├── processflights_8h_source.html │ ├── processpilots_8h_source.html │ ├── readcsv_8h_source.html │ ├── resize.js │ ├── row_8h_source.html │ ├── runguard_8h_source.html │ ├── search │ │ ├── all_0.html │ │ ├── all_0.js │ │ ├── all_1.html │ │ ├── all_1.js │ │ ├── all_10.html │ │ ├── all_10.js │ │ ├── all_11.html │ │ ├── all_11.js │ │ ├── all_12.html │ │ ├── all_12.js │ │ ├── all_13.html │ │ ├── all_13.js │ │ ├── all_14.html │ │ ├── all_14.js │ │ ├── all_15.html │ │ ├── all_15.js │ │ ├── all_2.html │ │ ├── all_2.js │ │ ├── all_3.html │ │ ├── all_3.js │ │ ├── all_4.html │ │ ├── all_4.js │ │ ├── all_5.html │ │ ├── all_5.js │ │ ├── all_6.html │ │ ├── all_6.js │ │ ├── all_7.html │ │ ├── all_7.js │ │ ├── all_8.html │ │ ├── all_8.js │ │ ├── all_9.html │ │ ├── all_9.js │ │ ├── all_a.html │ │ ├── all_a.js │ │ ├── all_b.html │ │ ├── all_b.js │ │ ├── all_c.html │ │ ├── all_c.js │ │ ├── all_d.html │ │ ├── all_d.js │ │ ├── all_e.html │ │ ├── all_e.js │ │ ├── all_f.html │ │ ├── all_f.js │ │ ├── classes_0.html │ │ ├── classes_0.js │ │ ├── classes_1.html │ │ ├── classes_1.js │ │ ├── classes_2.html │ │ ├── classes_2.js │ │ ├── classes_3.html │ │ ├── classes_3.js │ │ ├── classes_4.html │ │ ├── classes_4.js │ │ ├── classes_5.html │ │ ├── classes_5.js │ │ ├── classes_6.html │ │ ├── classes_6.js │ │ ├── classes_7.html │ │ ├── classes_7.js │ │ ├── classes_8.html │ │ ├── classes_8.js │ │ ├── classes_9.html │ │ ├── classes_9.js │ │ ├── classes_a.html │ │ ├── classes_a.js │ │ ├── classes_b.html │ │ ├── classes_b.js │ │ ├── classes_c.html │ │ ├── classes_c.js │ │ ├── classes_d.html │ │ ├── classes_d.js │ │ ├── classes_e.html │ │ ├── classes_e.js │ │ ├── classes_f.html │ │ ├── classes_f.js │ │ ├── close.svg │ │ ├── enums_0.html │ │ ├── enums_0.js │ │ ├── enums_1.html │ │ ├── enums_1.js │ │ ├── enums_2.html │ │ ├── enums_2.js │ │ ├── enums_3.html │ │ ├── enums_3.js │ │ ├── enums_4.html │ │ ├── enums_4.js │ │ ├── enums_5.html │ │ ├── enums_5.js │ │ ├── functions_0.html │ │ ├── functions_0.js │ │ ├── functions_1.html │ │ ├── functions_1.js │ │ ├── functions_10.html │ │ ├── functions_10.js │ │ ├── functions_11.html │ │ ├── functions_11.js │ │ ├── functions_12.html │ │ ├── functions_12.js │ │ ├── functions_13.html │ │ ├── functions_13.js │ │ ├── functions_2.html │ │ ├── functions_2.js │ │ ├── functions_3.html │ │ ├── functions_3.js │ │ ├── functions_4.html │ │ ├── functions_4.js │ │ ├── functions_5.html │ │ ├── functions_5.js │ │ ├── functions_6.html │ │ ├── functions_6.js │ │ ├── functions_7.html │ │ ├── functions_7.js │ │ ├── functions_8.html │ │ ├── functions_8.js │ │ ├── functions_9.html │ │ ├── functions_9.js │ │ ├── functions_a.html │ │ ├── functions_a.js │ │ ├── functions_b.html │ │ ├── functions_b.js │ │ ├── functions_c.html │ │ ├── functions_c.js │ │ ├── functions_d.html │ │ ├── functions_d.js │ │ ├── functions_e.html │ │ ├── functions_e.js │ │ ├── functions_f.html │ │ ├── functions_f.js │ │ ├── mag_sel.svg │ │ ├── namespaces_0.html │ │ ├── namespaces_0.js │ │ ├── nomatches.html │ │ ├── pages_0.html │ │ ├── pages_0.js │ │ ├── pages_1.html │ │ ├── pages_1.js │ │ ├── search.css │ │ ├── search.js │ │ ├── search_l.png │ │ ├── search_m.png │ │ ├── search_r.png │ │ ├── searchdata.js │ │ ├── variables_0.html │ │ └── variables_0.js │ ├── settings_8h_source.html │ ├── settingswidget_8h_source.html │ ├── splitbar.png │ ├── statistics_8h_source.html │ ├── struct_o_p_l_1_1_calc_1_1_night_time_values-members.html │ ├── struct_o_p_l_1_1_calc_1_1_night_time_values.html │ ├── struct_o_p_l_1_1_calc_1_1_night_time_values.js │ ├── struct_o_p_l_1_1_style_sheet-members.html │ ├── struct_o_p_l_1_1_style_sheet.html │ ├── struct_o_p_l_1_1_style_sheet.js │ ├── style_8h_source.html │ ├── sync_off.png │ ├── sync_on.png │ ├── tab_a.png │ ├── tab_b.png │ ├── tab_h.png │ ├── tab_s.png │ ├── tabs.css │ ├── time_8h_source.html │ ├── todo.html │ └── translator_8h_source.html ├── man │ └── man3 │ │ ├── AAircraftEntry.3 │ │ ├── ABenchmark.3 │ │ ├── ACalc.3 │ │ ├── ACalc_NightTimeValues.3 │ │ ├── ACompletionData.3 │ │ ├── ACurrencyEntry.3 │ │ ├── ADataBaseSetup.3 │ │ ├── ADatabase.3 │ │ ├── ADatabaseError.3 │ │ ├── ADate.3 │ │ ├── ADownload.3 │ │ ├── AEntry.3 │ │ ├── AFileStandardItem.3 │ │ ├── AFlightEntry.3 │ │ ├── AHash.3 │ │ ├── AJson.3 │ │ ├── ALog.3 │ │ ├── APilotEntry.3 │ │ ├── ARunGuard.3 │ │ ├── ASettings.3 │ │ ├── AStandardPaths.3 │ │ ├── AStrictRxValidator.3 │ │ ├── AStyle.3 │ │ ├── ATailEntry.3 │ │ ├── ATimer.3 │ │ ├── ATranslator.3 │ │ ├── Aircraft.3 │ │ ├── AircraftWidget.3 │ │ ├── AirportWidget.3 │ │ ├── BackupWidget.3 │ │ ├── DataPosition.3 │ │ ├── Db.3 │ │ ├── DbInfo.3 │ │ ├── DebugWidget.3 │ │ ├── DownloadHelper.3 │ │ ├── Entry_deprecated.3 │ │ ├── FirstRunDialog.3 │ │ ├── Flight.3 │ │ ├── HomeWidget.3 │ │ ├── JsonHelper.3 │ │ ├── LogbookWidget.3 │ │ ├── Md5Sum.3 │ │ ├── NewAirportDialog.3 │ │ ├── NewFlightDialog.3 │ │ ├── NewPilotDialog.3 │ │ ├── NewSimDialog.3 │ │ ├── NewTailDialog.3 │ │ ├── OPL.3 │ │ ├── OPL_ANotificationHandler.3 │ │ ├── OPL_AircraftEntry.3 │ │ ├── OPL_AirportEntry.3 │ │ ├── OPL_Calc.3 │ │ ├── OPL_Calc_NightTimeValues.3 │ │ ├── OPL_CurrencyEntry.3 │ │ ├── OPL_Database.3 │ │ ├── OPL_DateTime.3 │ │ ├── OPL_Db.3 │ │ ├── OPL_DbCompletionData.3 │ │ ├── OPL_DbSummary.3 │ │ ├── OPL_FlightEntry.3 │ │ ├── OPL_Log.3 │ │ ├── OPL_OplGlobals.3 │ │ ├── OPL_Paths.3 │ │ ├── OPL_PilotEntry.3 │ │ ├── OPL_Row.3 │ │ ├── OPL_SimulatorEntry.3 │ │ ├── OPL_Style.3 │ │ ├── OPL_StyleSheet.3 │ │ ├── OPL_TailEntry.3 │ │ ├── OPL_UserDataState.3 │ │ ├── Pilot.3 │ │ ├── PilotsWidget.3 │ │ ├── ProcessAircraft.3 │ │ ├── ProcessFlights.3 │ │ ├── ProcessPilots.3 │ │ ├── RunGuard.3 │ │ ├── Settings.3 │ │ ├── SettingsWidget.3 │ │ ├── StyleSheet.3 │ │ ├── TotalsWidget.3 │ │ ├── Translator.3 │ │ ├── UserDataState.3 │ │ ├── ValidationState.3 │ │ ├── aDbSetup.3 │ │ ├── experimental.3 │ │ ├── experimental_AAircraftEntry.3 │ │ ├── experimental_ADatabase.3 │ │ ├── experimental_ADatabaseError.3 │ │ ├── experimental_AEntry.3 │ │ ├── experimental_AFlightEntry.3 │ │ ├── experimental_APilotEntry.3 │ │ ├── experimental_ATailEntry.3 │ │ ├── experimental_DataPosition.3 │ │ ├── experimental_UserInput.3 │ │ ├── md__r_e_a_d_m_e.3 │ │ └── todo.3 └── wiki │ ├── application_doc.md │ ├── main_README.md │ ├── misc_creating_appimage.md │ ├── snippets.md │ ├── test_changelog.md │ ├── wiki_coding_style.md │ ├── wiki_database.md │ ├── wiki_home.md │ └── wiki_translations.md ├── l10n ├── openpilotlog_de.ts ├── openpilotlog_en.ts └── openpilotlog_es.ts ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui └── src ├── classes ├── date.cpp ├── date.h ├── downloadhelper.cpp ├── downloadhelper.h ├── easaftl.cpp ├── easaftl.h ├── jsonhelper.cpp ├── jsonhelper.h ├── md5sum.cpp ├── md5sum.h ├── paths.cpp ├── paths.h ├── runguard.cpp ├── runguard.h ├── settings.cpp ├── settings.h ├── style.cpp ├── style.h ├── styleddatedelegate.cpp ├── styleddatedelegate.h ├── styledpilotdelegate.cpp ├── styledpilotdelegate.h ├── styledregistrationdelegate.cpp ├── styledregistrationdelegate.h ├── styledtimedelegate.cpp ├── styledtimedelegate.h ├── styledtypedelegate.cpp ├── styledtypedelegate.h ├── time.cpp ├── time.h ├── translator.cpp └── translator.h ├── database ├── aircraftentry.cpp ├── aircraftentry.h ├── airportentry.cpp ├── airportentry.h ├── currencyentry.cpp ├── currencyentry.h ├── database.cpp ├── database.h ├── databasecache.cpp ├── databasecache.h ├── dbsummary.cpp ├── dbsummary.h ├── flightentry.cpp ├── flightentry.h ├── pilotentry.cpp ├── pilotentry.h ├── previousexperienceentry.cpp ├── previousexperienceentry.h ├── row.cpp ├── row.h ├── simulatorentry.cpp ├── simulatorentry.h ├── tailentry.cpp ├── tailentry.h └── views │ └── logbookviewinfo.h ├── functions ├── calc.cpp ├── calc.h ├── datetime.cpp ├── datetime.h ├── log.cpp ├── log.h ├── readcsv.h ├── statistics.cpp └── statistics.h ├── gui ├── dialogues │ ├── entryeditdialog.cpp │ ├── entryeditdialog.h │ ├── exporttocsvdialog.cpp │ ├── exporttocsvdialog.h │ ├── exporttocsvdialog.ui │ ├── firstrundialog.cpp │ ├── firstrundialog.h │ ├── firstrundialog.ui │ ├── newairportdialog.cpp │ ├── newairportdialog.h │ ├── newairportdialog.ui │ ├── newflightdialog.cpp │ ├── newflightdialog.h │ ├── newflightdialog.ui │ ├── newpilot.ui │ ├── newpilotdialog.cpp │ ├── newpilotdialog.h │ ├── newsimdialog.cpp │ ├── newsimdialog.h │ ├── newsimdialog.ui │ ├── newtail.ui │ ├── newtaildialog.cpp │ └── newtaildialog.h ├── verification │ ├── airportinput.cpp │ ├── airportinput.h │ ├── completerprovider.cpp │ ├── completerprovider.h │ ├── pilotinput.cpp │ ├── pilotinput.h │ ├── tailinput.cpp │ ├── tailinput.h │ ├── timeinput.cpp │ ├── timeinput.h │ ├── userinput.cpp │ ├── userinput.h │ └── validationstate.h └── widgets │ ├── airporttableeditwidget.cpp │ ├── airporttableeditwidget.h │ ├── backupwidget.cpp │ ├── backupwidget.h │ ├── backupwidget.ui │ ├── currencywidget.cpp │ ├── currencywidget.h │ ├── debugwidget.cpp │ ├── debugwidget.h │ ├── debugwidget.ui │ ├── homewidget.cpp │ ├── homewidget.h │ ├── homewidget.ui │ ├── logbooktableeditwidget.cpp │ ├── logbooktableeditwidget.h │ ├── pilottableeditwidget.cpp │ ├── pilottableeditwidget.h │ ├── settingswidget.cpp │ ├── settingswidget.h │ ├── settingswidget.ui │ ├── tableeditwidget.cpp │ ├── tableeditwidget.h │ ├── tailtableeditwidget.cpp │ ├── tailtableeditwidget.h │ ├── totalswidget.cpp │ ├── totalswidget.h │ └── totalswidget.ui ├── opl.cpp ├── opl.h └── testing ├── atimer.cpp ├── atimer.h ├── importCrewlounge ├── importcrewlounge.cpp ├── importcrewlounge.h ├── processaircraft.cpp ├── processaircraft.h ├── processflights.cpp ├── processflights.h ├── processpilots.cpp └── processpilots.h ├── randomgenerator.cpp └── randomgenerator.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/Doxyfile -------------------------------------------------------------------------------- /Doxyfile.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/Doxyfile.bak -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/README.md -------------------------------------------------------------------------------- /assets/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/database/README.md -------------------------------------------------------------------------------- /assets/database/database_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/database/database_schema.sql -------------------------------------------------------------------------------- /assets/database/logbook.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/database/logbook.db -------------------------------------------------------------------------------- /assets/database/templates.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/database/templates.qrc -------------------------------------------------------------------------------- /assets/database/templates/aircraft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/database/templates/aircraft.json -------------------------------------------------------------------------------- /assets/database/templates/aircraft.md5: -------------------------------------------------------------------------------- 1 | 0771d44c9e242bc524bc4d13ad645f59 aircraft.json 2 | -------------------------------------------------------------------------------- /assets/database/templates/airports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/database/templates/airports.json -------------------------------------------------------------------------------- /assets/database/templates/airports.md5: -------------------------------------------------------------------------------- 1 | ed7a853e0a9b68c119d6fe9fe20df030 airports.json 2 | -------------------------------------------------------------------------------- /assets/database/templates/changelog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/database/templates/changelog.json -------------------------------------------------------------------------------- /assets/database/templates/changelog.md5: -------------------------------------------------------------------------------- 1 | 0d31231993099ea01b5f50b528702c50 changelog.json 2 | -------------------------------------------------------------------------------- /assets/database/templates/currencies.md5: -------------------------------------------------------------------------------- 1 | f89063deb0b19c09b567abdbe74d3e46 currencies.json 2 | -------------------------------------------------------------------------------- /assets/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/icons.qrc -------------------------------------------------------------------------------- /assets/ionicon-icons/airplane-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/airplane-outline.png -------------------------------------------------------------------------------- /assets/ionicon-icons/airplane-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/airplane-outline.svg -------------------------------------------------------------------------------- /assets/ionicon-icons/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/airplane.png -------------------------------------------------------------------------------- /assets/ionicon-icons/airplane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/airplane.svg -------------------------------------------------------------------------------- /assets/ionicon-icons/alarm-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/alarm-outline.png -------------------------------------------------------------------------------- /assets/ionicon-icons/alarm-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/alarm-outline.svg -------------------------------------------------------------------------------- /assets/ionicon-icons/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/alarm.png -------------------------------------------------------------------------------- /assets/ionicon-icons/alarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/alarm.svg -------------------------------------------------------------------------------- /assets/ionicon-icons/book-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/book-outline.png -------------------------------------------------------------------------------- /assets/ionicon-icons/book-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/book-outline.svg -------------------------------------------------------------------------------- /assets/ionicon-icons/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/book.png -------------------------------------------------------------------------------- /assets/ionicon-icons/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/book.svg -------------------------------------------------------------------------------- /assets/ionicon-icons/home-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/home-outline.png -------------------------------------------------------------------------------- /assets/ionicon-icons/home-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/home-outline.svg -------------------------------------------------------------------------------- /assets/ionicon-icons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/home.png -------------------------------------------------------------------------------- /assets/ionicon-icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/home.svg -------------------------------------------------------------------------------- /assets/ionicon-icons/power-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/power-outline.png -------------------------------------------------------------------------------- /assets/ionicon-icons/power-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/power-outline.svg -------------------------------------------------------------------------------- /assets/ionicon-icons/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/power.png -------------------------------------------------------------------------------- /assets/ionicon-icons/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/power.svg -------------------------------------------------------------------------------- /assets/ionicon-icons/settings-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/settings-outline.png -------------------------------------------------------------------------------- /assets/ionicon-icons/settings-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/settings-outline.svg -------------------------------------------------------------------------------- /assets/ionicon-icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/settings.png -------------------------------------------------------------------------------- /assets/ionicon-icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/ionicon-icons/settings.svg -------------------------------------------------------------------------------- /assets/opl-icons/app/icon_ios.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/app/icon_ios.icns -------------------------------------------------------------------------------- /assets/opl-icons/app/icon_ios.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/app/icon_ios.svg -------------------------------------------------------------------------------- /assets/opl-icons/app/icon_linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/app/icon_linux.svg -------------------------------------------------------------------------------- /assets/opl-icons/app/icon_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/app/icon_main.png -------------------------------------------------------------------------------- /assets/opl-icons/app/icon_main.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/app/icon_main.svg -------------------------------------------------------------------------------- /assets/opl-icons/app/icon_windows.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/app/icon_windows.ico -------------------------------------------------------------------------------- /assets/opl-icons/app/icon_windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/app/icon_windows.svg -------------------------------------------------------------------------------- /assets/opl-icons/logos/logo_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/logos/logo_text.png -------------------------------------------------------------------------------- /assets/opl-icons/logos/logo_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/logos/logo_text.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thick/dark/icon_backup_dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thick/dark/icon_backup_dm.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thick/dark/icon_exit_dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thick/dark/icon_exit_dm.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thick/dark/icon_home_dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thick/dark/icon_home_dm.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thick/dark/icon_logbook_dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thick/dark/icon_logbook_dm.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thick/dark/icon_pilot_dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thick/dark/icon_pilot_dm.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thick/light/icon_airplane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thick/light/icon_airplane.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thick/light/icon_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thick/light/icon_backup.png -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thick/light/icon_backup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thick/light/icon_backup.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thick/light/icon_exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thick/light/icon_exit.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thick/light/icon_home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thick/light/icon_home.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thick/light/icon_logbook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thick/light/icon_logbook.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thick/light/icon_pilot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thick/light/icon_pilot.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thick/light/icon_settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thick/light/icon_settings.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/Overview.png -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/dark/airplane_dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/dark/airplane_dm.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/dark/backup_dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/dark/backup_dm.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/dark/exit_dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/dark/exit_dm.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/dark/home_dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/dark/home_dm.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/dark/logbook_dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/dark/logbook_dm.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/dark/new flight_dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/dark/new flight_dm.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/dark/new_flight_dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/dark/new_flight_dm.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/dark/pilot_dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/dark/pilot_dm.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/dark/settings_dm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/dark/settings_dm.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/light/airplane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/light/airplane.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/light/backup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/light/backup.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/light/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/light/exit.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/light/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/light/home.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/light/logbook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/light/logbook.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/light/new flight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/light/new flight.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/light/new_flight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/light/new_flight.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/light/pilot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/light/pilot.svg -------------------------------------------------------------------------------- /assets/opl-icons/toolbar/thin/light/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/opl-icons/toolbar/thin/light/settings.svg -------------------------------------------------------------------------------- /assets/screenshots/aircraftwidget_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/screenshots/aircraftwidget_dark.png -------------------------------------------------------------------------------- /assets/screenshots/default_view_system_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/screenshots/default_view_system_theme.png -------------------------------------------------------------------------------- /assets/screenshots/easaView_dark_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/screenshots/easaView_dark_theme.png -------------------------------------------------------------------------------- /assets/screenshots/logbookwidget_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/screenshots/logbookwidget_dark.png -------------------------------------------------------------------------------- /assets/screenshots/logbookwidget_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/screenshots/logbookwidget_light.png -------------------------------------------------------------------------------- /assets/screenshots/newflight_1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/screenshots/newflight_1_dark.png -------------------------------------------------------------------------------- /assets/screenshots/newflight_2_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/screenshots/newflight_2_light.png -------------------------------------------------------------------------------- /assets/screenshots/pilots_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/screenshots/pilots_table.png -------------------------------------------------------------------------------- /assets/screenshots/pilotsdialog_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/screenshots/pilotsdialog_dark.png -------------------------------------------------------------------------------- /assets/screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/screenshots/screenshot1.png -------------------------------------------------------------------------------- /assets/screenshots/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/screenshots/screenshot3.png -------------------------------------------------------------------------------- /assets/themes/doxygen/custom_dark_theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/doxygen/custom_dark_theme.css -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/LICENSE.md -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/breeze.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/breeze.qrc -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/breeze_dark.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/breeze_dark.qss -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/breeze_light.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/breeze_light.qss -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark/branch_closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/dark/branch_closed.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark/branch_open-on.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark/branch_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/dark/branch_open.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/dark/close-hover.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark/close-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/dark/close-pressed.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/dark/close.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark/down_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/dark/down_arrow.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark/hmovetoolbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/dark/hmovetoolbar.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark/hsepartoolbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/dark/hsepartoolbar.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark/left_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/dark/left_arrow.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark/radio_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/dark/radio_checked.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark/right_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/dark/right_arrow.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark/sizegrip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/dark/sizegrip.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark/transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/dark/transparent.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark/undock-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/dark/undock-hover.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark/undock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/dark/undock.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark/up_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/dark/up_arrow.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/dark_original.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/dark_original.qss -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/light/branch_open-on.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/light/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/light/close.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/light/sizegrip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/light/sizegrip.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/light/undock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/light/undock.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/light/up_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/light/up_arrow.svg -------------------------------------------------------------------------------- /assets/themes/stylesheets/breeze/light_original.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/breeze/light_original.qss -------------------------------------------------------------------------------- /assets/themes/stylesheets/qdarkstyle/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/qdarkstyle/LICENSE.md -------------------------------------------------------------------------------- /assets/themes/stylesheets/qdarkstyle/qdarkstyle.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/qdarkstyle/qdarkstyle.qrc -------------------------------------------------------------------------------- /assets/themes/stylesheets/qdarkstyle/qdarkstyle.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/qdarkstyle/qdarkstyle.qss -------------------------------------------------------------------------------- /assets/themes/stylesheets/qdarkstyle/rc/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/assets/themes/stylesheets/qdarkstyle/rc/arrow_up.png -------------------------------------------------------------------------------- /deprecated/aaircraftentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/aaircraftentry.cpp -------------------------------------------------------------------------------- /deprecated/aaircraftentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/aaircraftentry.h -------------------------------------------------------------------------------- /deprecated/acompletiondata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/acompletiondata.cpp -------------------------------------------------------------------------------- /deprecated/acompletiondata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/acompletiondata.h -------------------------------------------------------------------------------- /deprecated/acurrencyentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/acurrencyentry.cpp -------------------------------------------------------------------------------- /deprecated/acurrencyentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/acurrencyentry.h -------------------------------------------------------------------------------- /deprecated/adatabasesetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/adatabasesetup.cpp -------------------------------------------------------------------------------- /deprecated/adatabasesetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/adatabasesetup.h -------------------------------------------------------------------------------- /deprecated/adatabasetypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/adatabasetypes.h -------------------------------------------------------------------------------- /deprecated/adatetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/adatetime.h -------------------------------------------------------------------------------- /deprecated/aentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/aentry.cpp -------------------------------------------------------------------------------- /deprecated/aentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/aentry.h -------------------------------------------------------------------------------- /deprecated/aflightentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/aflightentry.cpp -------------------------------------------------------------------------------- /deprecated/aflightentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/aflightentry.h -------------------------------------------------------------------------------- /deprecated/aircraft.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/aircraft.csv -------------------------------------------------------------------------------- /deprecated/aircraftwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/aircraftwidget.ui -------------------------------------------------------------------------------- /deprecated/airports.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/airports.csv -------------------------------------------------------------------------------- /deprecated/airportwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/airportwidget.cpp -------------------------------------------------------------------------------- /deprecated/airportwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/airportwidget.h -------------------------------------------------------------------------------- /deprecated/airportwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/airportwidget.ui -------------------------------------------------------------------------------- /deprecated/apilotentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/apilotentry.cpp -------------------------------------------------------------------------------- /deprecated/apilotentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/apilotentry.h -------------------------------------------------------------------------------- /deprecated/asimulatorentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/asimulatorentry.cpp -------------------------------------------------------------------------------- /deprecated/asimulatorentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/asimulatorentry.h -------------------------------------------------------------------------------- /deprecated/astandardpaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/astandardpaths.cpp -------------------------------------------------------------------------------- /deprecated/astandardpaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/astandardpaths.h -------------------------------------------------------------------------------- /deprecated/atailentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/atailentry.cpp -------------------------------------------------------------------------------- /deprecated/atailentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/atailentry.h -------------------------------------------------------------------------------- /deprecated/changelog.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/changelog.csv -------------------------------------------------------------------------------- /deprecated/currencies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/currencies.csv -------------------------------------------------------------------------------- /deprecated/dbcompletiondata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/dbcompletiondata.cpp -------------------------------------------------------------------------------- /deprecated/dbcompletiondata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/dbcompletiondata.h -------------------------------------------------------------------------------- /deprecated/oldlogbook.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/oldlogbook.db -------------------------------------------------------------------------------- /deprecated/oldnewflight.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/oldnewflight.ui -------------------------------------------------------------------------------- /deprecated/oldnewflightdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/oldnewflightdialog.cpp -------------------------------------------------------------------------------- /deprecated/oldnewflightdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/oldnewflightdialog.h -------------------------------------------------------------------------------- /deprecated/openPilotLog.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/openPilotLog.pro -------------------------------------------------------------------------------- /deprecated/pilotswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/pilotswidget.cpp -------------------------------------------------------------------------------- /deprecated/pilotswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/pilotswidget.h -------------------------------------------------------------------------------- /deprecated/pilotswidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/pilotswidget.ui -------------------------------------------------------------------------------- /deprecated/sample_flights.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/sample_flights.csv -------------------------------------------------------------------------------- /deprecated/sample_pilots.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/sample_pilots.csv -------------------------------------------------------------------------------- /deprecated/sample_tails.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/sample_tails.csv -------------------------------------------------------------------------------- /deprecated/tailswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/tailswidget.cpp -------------------------------------------------------------------------------- /deprecated/tailswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/deprecated/tailswidget.h -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/deployment/linux-appimage/AppDir/usr/bin/executable_goes_here.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/deployment/linux-flatpak/flatpak_creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/deployment/linux-flatpak/flatpak_creation.md -------------------------------------------------------------------------------- /docs/deployment/windows-installer/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/deployment/windows-installer/config/config.xml -------------------------------------------------------------------------------- /docs/deployment/windows-installer/packages/com.opl.openPilotLog/data/files_to_be_extracted_go_here_as_7zip.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/doc_mainpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/doc_mainpage.md -------------------------------------------------------------------------------- /docs/html/aircraftwidget_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/aircraftwidget_8h_source.html -------------------------------------------------------------------------------- /docs/html/airportwidget_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/airportwidget_8h_source.html -------------------------------------------------------------------------------- /docs/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/annotated.html -------------------------------------------------------------------------------- /docs/html/annotated_dup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/annotated_dup.js -------------------------------------------------------------------------------- /docs/html/atimer_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/atimer_8h_source.html -------------------------------------------------------------------------------- /docs/html/backupwidget_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/backupwidget_8h_source.html -------------------------------------------------------------------------------- /docs/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/bc_s.png -------------------------------------------------------------------------------- /docs/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/bdwn.png -------------------------------------------------------------------------------- /docs/html/calc_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/calc_8h_source.html -------------------------------------------------------------------------------- /docs/html/class_a_timer-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_a_timer-members.html -------------------------------------------------------------------------------- /docs/html/class_a_timer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_a_timer.html -------------------------------------------------------------------------------- /docs/html/class_a_timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_a_timer.js -------------------------------------------------------------------------------- /docs/html/class_a_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_a_timer.png -------------------------------------------------------------------------------- /docs/html/class_aircraft_widget-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_aircraft_widget-members.html -------------------------------------------------------------------------------- /docs/html/class_aircraft_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_aircraft_widget.html -------------------------------------------------------------------------------- /docs/html/class_aircraft_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_aircraft_widget.js -------------------------------------------------------------------------------- /docs/html/class_aircraft_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_aircraft_widget.png -------------------------------------------------------------------------------- /docs/html/class_airport_widget-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_airport_widget-members.html -------------------------------------------------------------------------------- /docs/html/class_airport_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_airport_widget.html -------------------------------------------------------------------------------- /docs/html/class_airport_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_airport_widget.js -------------------------------------------------------------------------------- /docs/html/class_airport_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_airport_widget.png -------------------------------------------------------------------------------- /docs/html/class_backup_widget-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_backup_widget-members.html -------------------------------------------------------------------------------- /docs/html/class_backup_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_backup_widget.html -------------------------------------------------------------------------------- /docs/html/class_backup_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_backup_widget.js -------------------------------------------------------------------------------- /docs/html/class_backup_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_backup_widget.png -------------------------------------------------------------------------------- /docs/html/class_debug_widget-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_debug_widget-members.html -------------------------------------------------------------------------------- /docs/html/class_debug_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_debug_widget.html -------------------------------------------------------------------------------- /docs/html/class_debug_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_debug_widget.js -------------------------------------------------------------------------------- /docs/html/class_debug_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_debug_widget.png -------------------------------------------------------------------------------- /docs/html/class_download_helper-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_download_helper-members.html -------------------------------------------------------------------------------- /docs/html/class_download_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_download_helper.html -------------------------------------------------------------------------------- /docs/html/class_download_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_download_helper.js -------------------------------------------------------------------------------- /docs/html/class_download_helper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_download_helper.png -------------------------------------------------------------------------------- /docs/html/class_first_run_dialog-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_first_run_dialog-members.html -------------------------------------------------------------------------------- /docs/html/class_first_run_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_first_run_dialog.html -------------------------------------------------------------------------------- /docs/html/class_first_run_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_first_run_dialog.js -------------------------------------------------------------------------------- /docs/html/class_first_run_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_first_run_dialog.png -------------------------------------------------------------------------------- /docs/html/class_home_widget-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_home_widget-members.html -------------------------------------------------------------------------------- /docs/html/class_home_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_home_widget.html -------------------------------------------------------------------------------- /docs/html/class_home_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_home_widget.js -------------------------------------------------------------------------------- /docs/html/class_home_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_home_widget.png -------------------------------------------------------------------------------- /docs/html/class_json_helper-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_json_helper-members.html -------------------------------------------------------------------------------- /docs/html/class_json_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_json_helper.html -------------------------------------------------------------------------------- /docs/html/class_json_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_json_helper.js -------------------------------------------------------------------------------- /docs/html/class_logbook_widget-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_logbook_widget-members.html -------------------------------------------------------------------------------- /docs/html/class_logbook_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_logbook_widget.html -------------------------------------------------------------------------------- /docs/html/class_logbook_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_logbook_widget.js -------------------------------------------------------------------------------- /docs/html/class_logbook_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_logbook_widget.png -------------------------------------------------------------------------------- /docs/html/class_md5_sum-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_md5_sum-members.html -------------------------------------------------------------------------------- /docs/html/class_md5_sum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_md5_sum.html -------------------------------------------------------------------------------- /docs/html/class_md5_sum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_md5_sum.js -------------------------------------------------------------------------------- /docs/html/class_new_airport_dialog-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_airport_dialog-members.html -------------------------------------------------------------------------------- /docs/html/class_new_airport_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_airport_dialog.html -------------------------------------------------------------------------------- /docs/html/class_new_airport_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_airport_dialog.js -------------------------------------------------------------------------------- /docs/html/class_new_airport_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_airport_dialog.png -------------------------------------------------------------------------------- /docs/html/class_new_flight_dialog-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_flight_dialog-members.html -------------------------------------------------------------------------------- /docs/html/class_new_flight_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_flight_dialog.html -------------------------------------------------------------------------------- /docs/html/class_new_flight_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_flight_dialog.js -------------------------------------------------------------------------------- /docs/html/class_new_flight_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_flight_dialog.png -------------------------------------------------------------------------------- /docs/html/class_new_pilot_dialog-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_pilot_dialog-members.html -------------------------------------------------------------------------------- /docs/html/class_new_pilot_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_pilot_dialog.html -------------------------------------------------------------------------------- /docs/html/class_new_pilot_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_pilot_dialog.js -------------------------------------------------------------------------------- /docs/html/class_new_pilot_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_pilot_dialog.png -------------------------------------------------------------------------------- /docs/html/class_new_sim_dialog-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_sim_dialog-members.html -------------------------------------------------------------------------------- /docs/html/class_new_sim_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_sim_dialog.html -------------------------------------------------------------------------------- /docs/html/class_new_sim_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_sim_dialog.js -------------------------------------------------------------------------------- /docs/html/class_new_sim_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_sim_dialog.png -------------------------------------------------------------------------------- /docs/html/class_new_tail_dialog-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_tail_dialog-members.html -------------------------------------------------------------------------------- /docs/html/class_new_tail_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_tail_dialog.html -------------------------------------------------------------------------------- /docs/html/class_new_tail_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_tail_dialog.js -------------------------------------------------------------------------------- /docs/html/class_new_tail_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_new_tail_dialog.png -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_aircraft_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_aircraft_entry.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_aircraft_entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_aircraft_entry.js -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_aircraft_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_aircraft_entry.png -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_airport_entry-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_airport_entry-members.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_airport_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_airport_entry.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_airport_entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_airport_entry.js -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_airport_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_airport_entry.png -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_currency_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_currency_entry.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_currency_entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_currency_entry.js -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_currency_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_currency_entry.png -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_database-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_database-members.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_database.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_database.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_database.js -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_database.png -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_date_time-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_date_time-members.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_date_time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_date_time.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_db_completion_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_db_completion_data.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_db_completion_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_db_completion_data.js -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_db_summary-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_db_summary-members.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_db_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_db_summary.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_db_summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_db_summary.js -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_db_summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_db_summary.png -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_flight_entry-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_flight_entry-members.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_flight_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_flight_entry.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_flight_entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_flight_entry.js -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_flight_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_flight_entry.png -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_opl_globals-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_opl_globals-members.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_opl_globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_opl_globals.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_opl_globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_opl_globals.js -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_opl_globals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_opl_globals.png -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_paths-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_paths-members.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_paths.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_paths.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_paths.js -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_pilot_entry-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_pilot_entry-members.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_pilot_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_pilot_entry.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_pilot_entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_pilot_entry.js -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_pilot_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_pilot_entry.png -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_row-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_row-members.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_row.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_row.js -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_row.png -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_simulator_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_simulator_entry.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_simulator_entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_simulator_entry.js -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_simulator_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_simulator_entry.png -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_style-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_style-members.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_style.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_style.js -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_tail_entry-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_tail_entry-members.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_tail_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_tail_entry.html -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_tail_entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_tail_entry.js -------------------------------------------------------------------------------- /docs/html/class_o_p_l_1_1_tail_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_o_p_l_1_1_tail_entry.png -------------------------------------------------------------------------------- /docs/html/class_pilots_widget-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_pilots_widget-members.html -------------------------------------------------------------------------------- /docs/html/class_pilots_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_pilots_widget.html -------------------------------------------------------------------------------- /docs/html/class_pilots_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_pilots_widget.js -------------------------------------------------------------------------------- /docs/html/class_pilots_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_pilots_widget.png -------------------------------------------------------------------------------- /docs/html/class_process_aircraft-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_process_aircraft-members.html -------------------------------------------------------------------------------- /docs/html/class_process_aircraft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_process_aircraft.html -------------------------------------------------------------------------------- /docs/html/class_process_aircraft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_process_aircraft.js -------------------------------------------------------------------------------- /docs/html/class_process_flights-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_process_flights-members.html -------------------------------------------------------------------------------- /docs/html/class_process_flights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_process_flights.html -------------------------------------------------------------------------------- /docs/html/class_process_flights.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_process_flights.js -------------------------------------------------------------------------------- /docs/html/class_process_pilots-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_process_pilots-members.html -------------------------------------------------------------------------------- /docs/html/class_process_pilots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_process_pilots.html -------------------------------------------------------------------------------- /docs/html/class_process_pilots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_process_pilots.js -------------------------------------------------------------------------------- /docs/html/class_run_guard-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_run_guard-members.html -------------------------------------------------------------------------------- /docs/html/class_run_guard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_run_guard.html -------------------------------------------------------------------------------- /docs/html/class_run_guard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_run_guard.js -------------------------------------------------------------------------------- /docs/html/class_settings-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_settings-members.html -------------------------------------------------------------------------------- /docs/html/class_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_settings.html -------------------------------------------------------------------------------- /docs/html/class_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_settings.js -------------------------------------------------------------------------------- /docs/html/class_settings_widget-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_settings_widget-members.html -------------------------------------------------------------------------------- /docs/html/class_settings_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_settings_widget.html -------------------------------------------------------------------------------- /docs/html/class_settings_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_settings_widget.js -------------------------------------------------------------------------------- /docs/html/class_settings_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_settings_widget.png -------------------------------------------------------------------------------- /docs/html/class_translator-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_translator-members.html -------------------------------------------------------------------------------- /docs/html/class_translator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_translator.html -------------------------------------------------------------------------------- /docs/html/class_translator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_translator.png -------------------------------------------------------------------------------- /docs/html/class_validation_state-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_validation_state-members.html -------------------------------------------------------------------------------- /docs/html/class_validation_state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_validation_state.html -------------------------------------------------------------------------------- /docs/html/class_validation_state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/class_validation_state.js -------------------------------------------------------------------------------- /docs/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/classes.html -------------------------------------------------------------------------------- /docs/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/closed.png -------------------------------------------------------------------------------- /docs/html/custom_dark_theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/custom_dark_theme.css -------------------------------------------------------------------------------- /docs/html/database_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/database_8h_source.html -------------------------------------------------------------------------------- /docs/html/datetime_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/datetime_8h_source.html -------------------------------------------------------------------------------- /docs/html/dbcompletiondata_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dbcompletiondata_8h_source.html -------------------------------------------------------------------------------- /docs/html/dbsummary_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dbsummary_8h_source.html -------------------------------------------------------------------------------- /docs/html/debugwidget_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/debugwidget_8h_source.html -------------------------------------------------------------------------------- /docs/html/dir_018e9aafb459e6e1a4953404cb0c0b1d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_018e9aafb459e6e1a4953404cb0c0b1d.html -------------------------------------------------------------------------------- /docs/html/dir_018e9aafb459e6e1a4953404cb0c0b1d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_018e9aafb459e6e1a4953404cb0c0b1d.js -------------------------------------------------------------------------------- /docs/html/dir_22d8b8621769acf8e49801a1050c5c94.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_22d8b8621769acf8e49801a1050c5c94.html -------------------------------------------------------------------------------- /docs/html/dir_22d8b8621769acf8e49801a1050c5c94.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_22d8b8621769acf8e49801a1050c5c94.js -------------------------------------------------------------------------------- /docs/html/dir_3513c77e68d0de165c8b48f945306dcb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_3513c77e68d0de165c8b48f945306dcb.html -------------------------------------------------------------------------------- /docs/html/dir_3513c77e68d0de165c8b48f945306dcb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_3513c77e68d0de165c8b48f945306dcb.js -------------------------------------------------------------------------------- /docs/html/dir_49e56c817e5e54854c35e136979f97ca.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_49e56c817e5e54854c35e136979f97ca.html -------------------------------------------------------------------------------- /docs/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html -------------------------------------------------------------------------------- /docs/html/dir_68267d1309a1af8e8297ef4c3efbcdba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_68267d1309a1af8e8297ef4c3efbcdba.js -------------------------------------------------------------------------------- /docs/html/dir_803ee67260c130b45d29089798491ab2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_803ee67260c130b45d29089798491ab2.html -------------------------------------------------------------------------------- /docs/html/dir_803ee67260c130b45d29089798491ab2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_803ee67260c130b45d29089798491ab2.js -------------------------------------------------------------------------------- /docs/html/dir_99d0482cf009f9d97a0877749b817f19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_99d0482cf009f9d97a0877749b817f19.html -------------------------------------------------------------------------------- /docs/html/dir_99d0482cf009f9d97a0877749b817f19.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_99d0482cf009f9d97a0877749b817f19.js -------------------------------------------------------------------------------- /docs/html/dir_bccd969f85dcdef3bbd296fb8abb2685.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_bccd969f85dcdef3bbd296fb8abb2685.html -------------------------------------------------------------------------------- /docs/html/dir_bccd969f85dcdef3bbd296fb8abb2685.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_bccd969f85dcdef3bbd296fb8abb2685.js -------------------------------------------------------------------------------- /docs/html/dir_cc657b4ce13702a9d007a200bde234e1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_cc657b4ce13702a9d007a200bde234e1.html -------------------------------------------------------------------------------- /docs/html/dir_cc657b4ce13702a9d007a200bde234e1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_cc657b4ce13702a9d007a200bde234e1.js -------------------------------------------------------------------------------- /docs/html/dir_e823141bb13a34caac0c96ccd0d33fcf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_e823141bb13a34caac0c96ccd0d33fcf.html -------------------------------------------------------------------------------- /docs/html/dir_e823141bb13a34caac0c96ccd0d33fcf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dir_e823141bb13a34caac0c96ccd0d33fcf.js -------------------------------------------------------------------------------- /docs/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/doc.png -------------------------------------------------------------------------------- /docs/html/downloadhelper_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/downloadhelper_8h_source.html -------------------------------------------------------------------------------- /docs/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/doxygen.css -------------------------------------------------------------------------------- /docs/html/doxygen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/doxygen.svg -------------------------------------------------------------------------------- /docs/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/dynsections.js -------------------------------------------------------------------------------- /docs/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/files.html -------------------------------------------------------------------------------- /docs/html/files_dup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/files_dup.js -------------------------------------------------------------------------------- /docs/html/firstrundialog_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/firstrundialog_8h_source.html -------------------------------------------------------------------------------- /docs/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/folderclosed.png -------------------------------------------------------------------------------- /docs/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/folderopen.png -------------------------------------------------------------------------------- /docs/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/functions.html -------------------------------------------------------------------------------- /docs/html/functions_enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/functions_enum.html -------------------------------------------------------------------------------- /docs/html/functions_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/functions_func.html -------------------------------------------------------------------------------- /docs/html/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/functions_vars.html -------------------------------------------------------------------------------- /docs/html/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/hierarchy.html -------------------------------------------------------------------------------- /docs/html/hierarchy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/hierarchy.js -------------------------------------------------------------------------------- /docs/html/homewidget_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/homewidget_8h_source.html -------------------------------------------------------------------------------- /docs/html/icon_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/icon_main.png -------------------------------------------------------------------------------- /docs/html/importcrewlounge_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/importcrewlounge_8h_source.html -------------------------------------------------------------------------------- /docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/index.html -------------------------------------------------------------------------------- /docs/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/jquery.js -------------------------------------------------------------------------------- /docs/html/jsonhelper_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/jsonhelper_8h_source.html -------------------------------------------------------------------------------- /docs/html/log_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/log_8h_source.html -------------------------------------------------------------------------------- /docs/html/logbookwidget_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/logbookwidget_8h_source.html -------------------------------------------------------------------------------- /docs/html/md5sum_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/md5sum_8h_source.html -------------------------------------------------------------------------------- /docs/html/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/menu.js -------------------------------------------------------------------------------- /docs/html/menudata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/menudata.js -------------------------------------------------------------------------------- /docs/html/namespace_o_p_l.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/namespace_o_p_l.html -------------------------------------------------------------------------------- /docs/html/namespace_o_p_l.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/namespace_o_p_l.js -------------------------------------------------------------------------------- /docs/html/namespace_o_p_l_1_1_calc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/namespace_o_p_l_1_1_calc.html -------------------------------------------------------------------------------- /docs/html/namespace_o_p_l_1_1_calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/namespace_o_p_l_1_1_calc.js -------------------------------------------------------------------------------- /docs/html/namespace_o_p_l_1_1_db.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/namespace_o_p_l_1_1_db.html -------------------------------------------------------------------------------- /docs/html/namespace_o_p_l_1_1_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/namespace_o_p_l_1_1_log.html -------------------------------------------------------------------------------- /docs/html/namespacemembers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/namespacemembers.html -------------------------------------------------------------------------------- /docs/html/namespacemembers_enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/namespacemembers_enum.html -------------------------------------------------------------------------------- /docs/html/namespacemembers_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/namespacemembers_func.html -------------------------------------------------------------------------------- /docs/html/namespaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/namespaces.html -------------------------------------------------------------------------------- /docs/html/namespaces_dup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/namespaces_dup.js -------------------------------------------------------------------------------- /docs/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/nav_f.png -------------------------------------------------------------------------------- /docs/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/nav_g.png -------------------------------------------------------------------------------- /docs/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/nav_h.png -------------------------------------------------------------------------------- /docs/html/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/navtree.css -------------------------------------------------------------------------------- /docs/html/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/navtree.js -------------------------------------------------------------------------------- /docs/html/navtreedata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/navtreedata.js -------------------------------------------------------------------------------- /docs/html/navtreeindex0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/navtreeindex0.js -------------------------------------------------------------------------------- /docs/html/navtreeindex1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/navtreeindex1.js -------------------------------------------------------------------------------- /docs/html/navtreeindex2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/navtreeindex2.js -------------------------------------------------------------------------------- /docs/html/newairportdialog_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/newairportdialog_8h_source.html -------------------------------------------------------------------------------- /docs/html/newflightdialog_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/newflightdialog_8h_source.html -------------------------------------------------------------------------------- /docs/html/newpilotdialog_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/newpilotdialog_8h_source.html -------------------------------------------------------------------------------- /docs/html/newsimdialog_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/newsimdialog_8h_source.html -------------------------------------------------------------------------------- /docs/html/newtaildialog_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/newtaildialog_8h_source.html -------------------------------------------------------------------------------- /docs/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/open.png -------------------------------------------------------------------------------- /docs/html/opl_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/opl_8h_source.html -------------------------------------------------------------------------------- /docs/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/pages.html -------------------------------------------------------------------------------- /docs/html/paths_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/paths_8h_source.html -------------------------------------------------------------------------------- /docs/html/pilotswidget_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/pilotswidget_8h_source.html -------------------------------------------------------------------------------- /docs/html/processaircraft_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/processaircraft_8h_source.html -------------------------------------------------------------------------------- /docs/html/processflights_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/processflights_8h_source.html -------------------------------------------------------------------------------- /docs/html/processpilots_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/processpilots_8h_source.html -------------------------------------------------------------------------------- /docs/html/readcsv_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/readcsv_8h_source.html -------------------------------------------------------------------------------- /docs/html/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/resize.js -------------------------------------------------------------------------------- /docs/html/row_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/row_8h_source.html -------------------------------------------------------------------------------- /docs/html/runguard_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/runguard_8h_source.html -------------------------------------------------------------------------------- /docs/html/search/all_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_0.html -------------------------------------------------------------------------------- /docs/html/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_0.js -------------------------------------------------------------------------------- /docs/html/search/all_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_1.html -------------------------------------------------------------------------------- /docs/html/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_1.js -------------------------------------------------------------------------------- /docs/html/search/all_10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_10.html -------------------------------------------------------------------------------- /docs/html/search/all_10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_10.js -------------------------------------------------------------------------------- /docs/html/search/all_11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_11.html -------------------------------------------------------------------------------- /docs/html/search/all_11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_11.js -------------------------------------------------------------------------------- /docs/html/search/all_12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_12.html -------------------------------------------------------------------------------- /docs/html/search/all_12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_12.js -------------------------------------------------------------------------------- /docs/html/search/all_13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_13.html -------------------------------------------------------------------------------- /docs/html/search/all_13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_13.js -------------------------------------------------------------------------------- /docs/html/search/all_14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_14.html -------------------------------------------------------------------------------- /docs/html/search/all_14.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_14.js -------------------------------------------------------------------------------- /docs/html/search/all_15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_15.html -------------------------------------------------------------------------------- /docs/html/search/all_15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_15.js -------------------------------------------------------------------------------- /docs/html/search/all_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_2.html -------------------------------------------------------------------------------- /docs/html/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_2.js -------------------------------------------------------------------------------- /docs/html/search/all_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_3.html -------------------------------------------------------------------------------- /docs/html/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_3.js -------------------------------------------------------------------------------- /docs/html/search/all_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_4.html -------------------------------------------------------------------------------- /docs/html/search/all_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_4.js -------------------------------------------------------------------------------- /docs/html/search/all_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_5.html -------------------------------------------------------------------------------- /docs/html/search/all_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_5.js -------------------------------------------------------------------------------- /docs/html/search/all_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_6.html -------------------------------------------------------------------------------- /docs/html/search/all_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_6.js -------------------------------------------------------------------------------- /docs/html/search/all_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_7.html -------------------------------------------------------------------------------- /docs/html/search/all_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_7.js -------------------------------------------------------------------------------- /docs/html/search/all_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_8.html -------------------------------------------------------------------------------- /docs/html/search/all_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_8.js -------------------------------------------------------------------------------- /docs/html/search/all_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_9.html -------------------------------------------------------------------------------- /docs/html/search/all_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_9.js -------------------------------------------------------------------------------- /docs/html/search/all_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_a.html -------------------------------------------------------------------------------- /docs/html/search/all_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_a.js -------------------------------------------------------------------------------- /docs/html/search/all_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_b.html -------------------------------------------------------------------------------- /docs/html/search/all_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_b.js -------------------------------------------------------------------------------- /docs/html/search/all_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_c.html -------------------------------------------------------------------------------- /docs/html/search/all_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_c.js -------------------------------------------------------------------------------- /docs/html/search/all_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_d.html -------------------------------------------------------------------------------- /docs/html/search/all_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_d.js -------------------------------------------------------------------------------- /docs/html/search/all_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_e.html -------------------------------------------------------------------------------- /docs/html/search/all_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_e.js -------------------------------------------------------------------------------- /docs/html/search/all_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_f.html -------------------------------------------------------------------------------- /docs/html/search/all_f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/all_f.js -------------------------------------------------------------------------------- /docs/html/search/classes_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_0.html -------------------------------------------------------------------------------- /docs/html/search/classes_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_0.js -------------------------------------------------------------------------------- /docs/html/search/classes_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_1.html -------------------------------------------------------------------------------- /docs/html/search/classes_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_1.js -------------------------------------------------------------------------------- /docs/html/search/classes_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_2.html -------------------------------------------------------------------------------- /docs/html/search/classes_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_2.js -------------------------------------------------------------------------------- /docs/html/search/classes_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_3.html -------------------------------------------------------------------------------- /docs/html/search/classes_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_3.js -------------------------------------------------------------------------------- /docs/html/search/classes_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_4.html -------------------------------------------------------------------------------- /docs/html/search/classes_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_4.js -------------------------------------------------------------------------------- /docs/html/search/classes_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_5.html -------------------------------------------------------------------------------- /docs/html/search/classes_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_5.js -------------------------------------------------------------------------------- /docs/html/search/classes_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_6.html -------------------------------------------------------------------------------- /docs/html/search/classes_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_6.js -------------------------------------------------------------------------------- /docs/html/search/classes_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_7.html -------------------------------------------------------------------------------- /docs/html/search/classes_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_7.js -------------------------------------------------------------------------------- /docs/html/search/classes_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_8.html -------------------------------------------------------------------------------- /docs/html/search/classes_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_8.js -------------------------------------------------------------------------------- /docs/html/search/classes_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_9.html -------------------------------------------------------------------------------- /docs/html/search/classes_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_9.js -------------------------------------------------------------------------------- /docs/html/search/classes_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_a.html -------------------------------------------------------------------------------- /docs/html/search/classes_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_a.js -------------------------------------------------------------------------------- /docs/html/search/classes_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_b.html -------------------------------------------------------------------------------- /docs/html/search/classes_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_b.js -------------------------------------------------------------------------------- /docs/html/search/classes_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_c.html -------------------------------------------------------------------------------- /docs/html/search/classes_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_c.js -------------------------------------------------------------------------------- /docs/html/search/classes_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_d.html -------------------------------------------------------------------------------- /docs/html/search/classes_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_d.js -------------------------------------------------------------------------------- /docs/html/search/classes_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_e.html -------------------------------------------------------------------------------- /docs/html/search/classes_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_e.js -------------------------------------------------------------------------------- /docs/html/search/classes_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_f.html -------------------------------------------------------------------------------- /docs/html/search/classes_f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/classes_f.js -------------------------------------------------------------------------------- /docs/html/search/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/close.svg -------------------------------------------------------------------------------- /docs/html/search/enums_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/enums_0.html -------------------------------------------------------------------------------- /docs/html/search/enums_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/enums_0.js -------------------------------------------------------------------------------- /docs/html/search/enums_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/enums_1.html -------------------------------------------------------------------------------- /docs/html/search/enums_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/enums_1.js -------------------------------------------------------------------------------- /docs/html/search/enums_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/enums_2.html -------------------------------------------------------------------------------- /docs/html/search/enums_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/enums_2.js -------------------------------------------------------------------------------- /docs/html/search/enums_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/enums_3.html -------------------------------------------------------------------------------- /docs/html/search/enums_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/enums_3.js -------------------------------------------------------------------------------- /docs/html/search/enums_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/enums_4.html -------------------------------------------------------------------------------- /docs/html/search/enums_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/enums_4.js -------------------------------------------------------------------------------- /docs/html/search/enums_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/enums_5.html -------------------------------------------------------------------------------- /docs/html/search/enums_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/enums_5.js -------------------------------------------------------------------------------- /docs/html/search/functions_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_0.html -------------------------------------------------------------------------------- /docs/html/search/functions_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_0.js -------------------------------------------------------------------------------- /docs/html/search/functions_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_1.html -------------------------------------------------------------------------------- /docs/html/search/functions_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_1.js -------------------------------------------------------------------------------- /docs/html/search/functions_10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_10.html -------------------------------------------------------------------------------- /docs/html/search/functions_10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_10.js -------------------------------------------------------------------------------- /docs/html/search/functions_11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_11.html -------------------------------------------------------------------------------- /docs/html/search/functions_11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_11.js -------------------------------------------------------------------------------- /docs/html/search/functions_12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_12.html -------------------------------------------------------------------------------- /docs/html/search/functions_12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_12.js -------------------------------------------------------------------------------- /docs/html/search/functions_13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_13.html -------------------------------------------------------------------------------- /docs/html/search/functions_13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_13.js -------------------------------------------------------------------------------- /docs/html/search/functions_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_2.html -------------------------------------------------------------------------------- /docs/html/search/functions_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_2.js -------------------------------------------------------------------------------- /docs/html/search/functions_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_3.html -------------------------------------------------------------------------------- /docs/html/search/functions_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_3.js -------------------------------------------------------------------------------- /docs/html/search/functions_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_4.html -------------------------------------------------------------------------------- /docs/html/search/functions_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_4.js -------------------------------------------------------------------------------- /docs/html/search/functions_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_5.html -------------------------------------------------------------------------------- /docs/html/search/functions_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_5.js -------------------------------------------------------------------------------- /docs/html/search/functions_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_6.html -------------------------------------------------------------------------------- /docs/html/search/functions_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_6.js -------------------------------------------------------------------------------- /docs/html/search/functions_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_7.html -------------------------------------------------------------------------------- /docs/html/search/functions_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_7.js -------------------------------------------------------------------------------- /docs/html/search/functions_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_8.html -------------------------------------------------------------------------------- /docs/html/search/functions_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_8.js -------------------------------------------------------------------------------- /docs/html/search/functions_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_9.html -------------------------------------------------------------------------------- /docs/html/search/functions_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_9.js -------------------------------------------------------------------------------- /docs/html/search/functions_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_a.html -------------------------------------------------------------------------------- /docs/html/search/functions_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_a.js -------------------------------------------------------------------------------- /docs/html/search/functions_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_b.html -------------------------------------------------------------------------------- /docs/html/search/functions_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_b.js -------------------------------------------------------------------------------- /docs/html/search/functions_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_c.html -------------------------------------------------------------------------------- /docs/html/search/functions_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_c.js -------------------------------------------------------------------------------- /docs/html/search/functions_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_d.html -------------------------------------------------------------------------------- /docs/html/search/functions_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_d.js -------------------------------------------------------------------------------- /docs/html/search/functions_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_e.html -------------------------------------------------------------------------------- /docs/html/search/functions_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_e.js -------------------------------------------------------------------------------- /docs/html/search/functions_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_f.html -------------------------------------------------------------------------------- /docs/html/search/functions_f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/functions_f.js -------------------------------------------------------------------------------- /docs/html/search/mag_sel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/mag_sel.svg -------------------------------------------------------------------------------- /docs/html/search/namespaces_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/namespaces_0.html -------------------------------------------------------------------------------- /docs/html/search/namespaces_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/namespaces_0.js -------------------------------------------------------------------------------- /docs/html/search/nomatches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/nomatches.html -------------------------------------------------------------------------------- /docs/html/search/pages_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/pages_0.html -------------------------------------------------------------------------------- /docs/html/search/pages_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/pages_0.js -------------------------------------------------------------------------------- /docs/html/search/pages_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/pages_1.html -------------------------------------------------------------------------------- /docs/html/search/pages_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/pages_1.js -------------------------------------------------------------------------------- /docs/html/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/search.css -------------------------------------------------------------------------------- /docs/html/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/search.js -------------------------------------------------------------------------------- /docs/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/search_l.png -------------------------------------------------------------------------------- /docs/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/search_m.png -------------------------------------------------------------------------------- /docs/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/search_r.png -------------------------------------------------------------------------------- /docs/html/search/searchdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/searchdata.js -------------------------------------------------------------------------------- /docs/html/search/variables_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/variables_0.html -------------------------------------------------------------------------------- /docs/html/search/variables_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/search/variables_0.js -------------------------------------------------------------------------------- /docs/html/settings_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/settings_8h_source.html -------------------------------------------------------------------------------- /docs/html/settingswidget_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/settingswidget_8h_source.html -------------------------------------------------------------------------------- /docs/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/splitbar.png -------------------------------------------------------------------------------- /docs/html/statistics_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/statistics_8h_source.html -------------------------------------------------------------------------------- /docs/html/struct_o_p_l_1_1_style_sheet-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/struct_o_p_l_1_1_style_sheet-members.html -------------------------------------------------------------------------------- /docs/html/struct_o_p_l_1_1_style_sheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/struct_o_p_l_1_1_style_sheet.html -------------------------------------------------------------------------------- /docs/html/struct_o_p_l_1_1_style_sheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/struct_o_p_l_1_1_style_sheet.js -------------------------------------------------------------------------------- /docs/html/style_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/style_8h_source.html -------------------------------------------------------------------------------- /docs/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/sync_off.png -------------------------------------------------------------------------------- /docs/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/sync_on.png -------------------------------------------------------------------------------- /docs/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/tab_a.png -------------------------------------------------------------------------------- /docs/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/tab_b.png -------------------------------------------------------------------------------- /docs/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/tab_h.png -------------------------------------------------------------------------------- /docs/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/tab_s.png -------------------------------------------------------------------------------- /docs/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/tabs.css -------------------------------------------------------------------------------- /docs/html/time_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/time_8h_source.html -------------------------------------------------------------------------------- /docs/html/todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/todo.html -------------------------------------------------------------------------------- /docs/html/translator_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/html/translator_8h_source.html -------------------------------------------------------------------------------- /docs/man/man3/AAircraftEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/AAircraftEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/ABenchmark.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ABenchmark.3 -------------------------------------------------------------------------------- /docs/man/man3/ACalc.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ACalc.3 -------------------------------------------------------------------------------- /docs/man/man3/ACalc_NightTimeValues.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ACalc_NightTimeValues.3 -------------------------------------------------------------------------------- /docs/man/man3/ACompletionData.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ACompletionData.3 -------------------------------------------------------------------------------- /docs/man/man3/ACurrencyEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ACurrencyEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/ADataBaseSetup.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ADataBaseSetup.3 -------------------------------------------------------------------------------- /docs/man/man3/ADatabase.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ADatabase.3 -------------------------------------------------------------------------------- /docs/man/man3/ADatabaseError.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ADatabaseError.3 -------------------------------------------------------------------------------- /docs/man/man3/ADate.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ADate.3 -------------------------------------------------------------------------------- /docs/man/man3/ADownload.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ADownload.3 -------------------------------------------------------------------------------- /docs/man/man3/AEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/AEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/AFileStandardItem.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/AFileStandardItem.3 -------------------------------------------------------------------------------- /docs/man/man3/AFlightEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/AFlightEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/AHash.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/AHash.3 -------------------------------------------------------------------------------- /docs/man/man3/AJson.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/AJson.3 -------------------------------------------------------------------------------- /docs/man/man3/ALog.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ALog.3 -------------------------------------------------------------------------------- /docs/man/man3/APilotEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/APilotEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/ARunGuard.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ARunGuard.3 -------------------------------------------------------------------------------- /docs/man/man3/ASettings.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ASettings.3 -------------------------------------------------------------------------------- /docs/man/man3/AStandardPaths.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/AStandardPaths.3 -------------------------------------------------------------------------------- /docs/man/man3/AStrictRxValidator.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/AStrictRxValidator.3 -------------------------------------------------------------------------------- /docs/man/man3/AStyle.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/AStyle.3 -------------------------------------------------------------------------------- /docs/man/man3/ATailEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ATailEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/ATimer.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ATimer.3 -------------------------------------------------------------------------------- /docs/man/man3/ATranslator.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ATranslator.3 -------------------------------------------------------------------------------- /docs/man/man3/Aircraft.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/Aircraft.3 -------------------------------------------------------------------------------- /docs/man/man3/AircraftWidget.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/AircraftWidget.3 -------------------------------------------------------------------------------- /docs/man/man3/AirportWidget.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/AirportWidget.3 -------------------------------------------------------------------------------- /docs/man/man3/BackupWidget.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/BackupWidget.3 -------------------------------------------------------------------------------- /docs/man/man3/DataPosition.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/DataPosition.3 -------------------------------------------------------------------------------- /docs/man/man3/Db.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/Db.3 -------------------------------------------------------------------------------- /docs/man/man3/DbInfo.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/DbInfo.3 -------------------------------------------------------------------------------- /docs/man/man3/DebugWidget.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/DebugWidget.3 -------------------------------------------------------------------------------- /docs/man/man3/DownloadHelper.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/DownloadHelper.3 -------------------------------------------------------------------------------- /docs/man/man3/Entry_deprecated.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/Entry_deprecated.3 -------------------------------------------------------------------------------- /docs/man/man3/FirstRunDialog.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/FirstRunDialog.3 -------------------------------------------------------------------------------- /docs/man/man3/Flight.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/Flight.3 -------------------------------------------------------------------------------- /docs/man/man3/HomeWidget.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/HomeWidget.3 -------------------------------------------------------------------------------- /docs/man/man3/JsonHelper.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/JsonHelper.3 -------------------------------------------------------------------------------- /docs/man/man3/LogbookWidget.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/LogbookWidget.3 -------------------------------------------------------------------------------- /docs/man/man3/Md5Sum.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/Md5Sum.3 -------------------------------------------------------------------------------- /docs/man/man3/NewAirportDialog.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/NewAirportDialog.3 -------------------------------------------------------------------------------- /docs/man/man3/NewFlightDialog.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/NewFlightDialog.3 -------------------------------------------------------------------------------- /docs/man/man3/NewPilotDialog.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/NewPilotDialog.3 -------------------------------------------------------------------------------- /docs/man/man3/NewSimDialog.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/NewSimDialog.3 -------------------------------------------------------------------------------- /docs/man/man3/NewTailDialog.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/NewTailDialog.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_ANotificationHandler.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_ANotificationHandler.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_AircraftEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_AircraftEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_AirportEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_AirportEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_Calc.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_Calc.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_Calc_NightTimeValues.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_Calc_NightTimeValues.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_CurrencyEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_CurrencyEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_Database.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_Database.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_DateTime.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_DateTime.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_Db.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_Db.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_DbCompletionData.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_DbCompletionData.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_DbSummary.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_DbSummary.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_FlightEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_FlightEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_Log.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_Log.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_OplGlobals.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_OplGlobals.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_Paths.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_Paths.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_PilotEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_PilotEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_Row.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_Row.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_SimulatorEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_SimulatorEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_Style.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_Style.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_StyleSheet.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_StyleSheet.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_TailEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_TailEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/OPL_UserDataState.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/OPL_UserDataState.3 -------------------------------------------------------------------------------- /docs/man/man3/Pilot.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/Pilot.3 -------------------------------------------------------------------------------- /docs/man/man3/PilotsWidget.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/PilotsWidget.3 -------------------------------------------------------------------------------- /docs/man/man3/ProcessAircraft.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ProcessAircraft.3 -------------------------------------------------------------------------------- /docs/man/man3/ProcessFlights.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ProcessFlights.3 -------------------------------------------------------------------------------- /docs/man/man3/ProcessPilots.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ProcessPilots.3 -------------------------------------------------------------------------------- /docs/man/man3/RunGuard.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/RunGuard.3 -------------------------------------------------------------------------------- /docs/man/man3/Settings.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/Settings.3 -------------------------------------------------------------------------------- /docs/man/man3/SettingsWidget.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/SettingsWidget.3 -------------------------------------------------------------------------------- /docs/man/man3/StyleSheet.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/StyleSheet.3 -------------------------------------------------------------------------------- /docs/man/man3/TotalsWidget.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/TotalsWidget.3 -------------------------------------------------------------------------------- /docs/man/man3/Translator.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/Translator.3 -------------------------------------------------------------------------------- /docs/man/man3/UserDataState.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/UserDataState.3 -------------------------------------------------------------------------------- /docs/man/man3/ValidationState.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/ValidationState.3 -------------------------------------------------------------------------------- /docs/man/man3/aDbSetup.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/aDbSetup.3 -------------------------------------------------------------------------------- /docs/man/man3/experimental.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/experimental.3 -------------------------------------------------------------------------------- /docs/man/man3/experimental_AAircraftEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/experimental_AAircraftEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/experimental_ADatabase.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/experimental_ADatabase.3 -------------------------------------------------------------------------------- /docs/man/man3/experimental_ADatabaseError.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/experimental_ADatabaseError.3 -------------------------------------------------------------------------------- /docs/man/man3/experimental_AEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/experimental_AEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/experimental_AFlightEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/experimental_AFlightEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/experimental_APilotEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/experimental_APilotEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/experimental_ATailEntry.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/experimental_ATailEntry.3 -------------------------------------------------------------------------------- /docs/man/man3/experimental_DataPosition.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/experimental_DataPosition.3 -------------------------------------------------------------------------------- /docs/man/man3/experimental_UserInput.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/experimental_UserInput.3 -------------------------------------------------------------------------------- /docs/man/man3/md__r_e_a_d_m_e.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/md__r_e_a_d_m_e.3 -------------------------------------------------------------------------------- /docs/man/man3/todo.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/man/man3/todo.3 -------------------------------------------------------------------------------- /docs/wiki/application_doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/wiki/application_doc.md -------------------------------------------------------------------------------- /docs/wiki/main_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/wiki/main_README.md -------------------------------------------------------------------------------- /docs/wiki/misc_creating_appimage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/wiki/misc_creating_appimage.md -------------------------------------------------------------------------------- /docs/wiki/snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/wiki/snippets.md -------------------------------------------------------------------------------- /docs/wiki/test_changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/wiki/test_changelog.md -------------------------------------------------------------------------------- /docs/wiki/wiki_coding_style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/wiki/wiki_coding_style.md -------------------------------------------------------------------------------- /docs/wiki/wiki_database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/wiki/wiki_database.md -------------------------------------------------------------------------------- /docs/wiki/wiki_home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/wiki/wiki_home.md -------------------------------------------------------------------------------- /docs/wiki/wiki_translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/docs/wiki/wiki_translations.md -------------------------------------------------------------------------------- /l10n/openpilotlog_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/l10n/openpilotlog_de.ts -------------------------------------------------------------------------------- /l10n/openpilotlog_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/l10n/openpilotlog_en.ts -------------------------------------------------------------------------------- /l10n/openpilotlog_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/l10n/openpilotlog_es.ts -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /src/classes/date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/date.cpp -------------------------------------------------------------------------------- /src/classes/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/date.h -------------------------------------------------------------------------------- /src/classes/downloadhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/downloadhelper.cpp -------------------------------------------------------------------------------- /src/classes/downloadhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/downloadhelper.h -------------------------------------------------------------------------------- /src/classes/easaftl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/easaftl.cpp -------------------------------------------------------------------------------- /src/classes/easaftl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/easaftl.h -------------------------------------------------------------------------------- /src/classes/jsonhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/jsonhelper.cpp -------------------------------------------------------------------------------- /src/classes/jsonhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/jsonhelper.h -------------------------------------------------------------------------------- /src/classes/md5sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/md5sum.cpp -------------------------------------------------------------------------------- /src/classes/md5sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/md5sum.h -------------------------------------------------------------------------------- /src/classes/paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/paths.cpp -------------------------------------------------------------------------------- /src/classes/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/paths.h -------------------------------------------------------------------------------- /src/classes/runguard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/runguard.cpp -------------------------------------------------------------------------------- /src/classes/runguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/runguard.h -------------------------------------------------------------------------------- /src/classes/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/settings.cpp -------------------------------------------------------------------------------- /src/classes/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/settings.h -------------------------------------------------------------------------------- /src/classes/style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/style.cpp -------------------------------------------------------------------------------- /src/classes/style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/style.h -------------------------------------------------------------------------------- /src/classes/styleddatedelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/styleddatedelegate.cpp -------------------------------------------------------------------------------- /src/classes/styleddatedelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/styleddatedelegate.h -------------------------------------------------------------------------------- /src/classes/styledpilotdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/styledpilotdelegate.cpp -------------------------------------------------------------------------------- /src/classes/styledpilotdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/styledpilotdelegate.h -------------------------------------------------------------------------------- /src/classes/styledregistrationdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/styledregistrationdelegate.cpp -------------------------------------------------------------------------------- /src/classes/styledregistrationdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/styledregistrationdelegate.h -------------------------------------------------------------------------------- /src/classes/styledtimedelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/styledtimedelegate.cpp -------------------------------------------------------------------------------- /src/classes/styledtimedelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/styledtimedelegate.h -------------------------------------------------------------------------------- /src/classes/styledtypedelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/styledtypedelegate.cpp -------------------------------------------------------------------------------- /src/classes/styledtypedelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/styledtypedelegate.h -------------------------------------------------------------------------------- /src/classes/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/time.cpp -------------------------------------------------------------------------------- /src/classes/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/time.h -------------------------------------------------------------------------------- /src/classes/translator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/translator.cpp -------------------------------------------------------------------------------- /src/classes/translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/classes/translator.h -------------------------------------------------------------------------------- /src/database/aircraftentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/aircraftentry.cpp -------------------------------------------------------------------------------- /src/database/aircraftentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/aircraftentry.h -------------------------------------------------------------------------------- /src/database/airportentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/airportentry.cpp -------------------------------------------------------------------------------- /src/database/airportentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/airportentry.h -------------------------------------------------------------------------------- /src/database/currencyentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/currencyentry.cpp -------------------------------------------------------------------------------- /src/database/currencyentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/currencyentry.h -------------------------------------------------------------------------------- /src/database/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/database.cpp -------------------------------------------------------------------------------- /src/database/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/database.h -------------------------------------------------------------------------------- /src/database/databasecache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/databasecache.cpp -------------------------------------------------------------------------------- /src/database/databasecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/databasecache.h -------------------------------------------------------------------------------- /src/database/dbsummary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/dbsummary.cpp -------------------------------------------------------------------------------- /src/database/dbsummary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/dbsummary.h -------------------------------------------------------------------------------- /src/database/flightentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/flightentry.cpp -------------------------------------------------------------------------------- /src/database/flightentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/flightentry.h -------------------------------------------------------------------------------- /src/database/pilotentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/pilotentry.cpp -------------------------------------------------------------------------------- /src/database/pilotentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/pilotentry.h -------------------------------------------------------------------------------- /src/database/previousexperienceentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/previousexperienceentry.cpp -------------------------------------------------------------------------------- /src/database/previousexperienceentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/previousexperienceentry.h -------------------------------------------------------------------------------- /src/database/row.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/row.cpp -------------------------------------------------------------------------------- /src/database/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/row.h -------------------------------------------------------------------------------- /src/database/simulatorentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/simulatorentry.cpp -------------------------------------------------------------------------------- /src/database/simulatorentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/simulatorentry.h -------------------------------------------------------------------------------- /src/database/tailentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/tailentry.cpp -------------------------------------------------------------------------------- /src/database/tailentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/tailentry.h -------------------------------------------------------------------------------- /src/database/views/logbookviewinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/database/views/logbookviewinfo.h -------------------------------------------------------------------------------- /src/functions/calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/functions/calc.cpp -------------------------------------------------------------------------------- /src/functions/calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/functions/calc.h -------------------------------------------------------------------------------- /src/functions/datetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/functions/datetime.cpp -------------------------------------------------------------------------------- /src/functions/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/functions/datetime.h -------------------------------------------------------------------------------- /src/functions/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/functions/log.cpp -------------------------------------------------------------------------------- /src/functions/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/functions/log.h -------------------------------------------------------------------------------- /src/functions/readcsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/functions/readcsv.h -------------------------------------------------------------------------------- /src/functions/statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/functions/statistics.cpp -------------------------------------------------------------------------------- /src/functions/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/functions/statistics.h -------------------------------------------------------------------------------- /src/gui/dialogues/entryeditdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/entryeditdialog.cpp -------------------------------------------------------------------------------- /src/gui/dialogues/entryeditdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/entryeditdialog.h -------------------------------------------------------------------------------- /src/gui/dialogues/exporttocsvdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/exporttocsvdialog.cpp -------------------------------------------------------------------------------- /src/gui/dialogues/exporttocsvdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/exporttocsvdialog.h -------------------------------------------------------------------------------- /src/gui/dialogues/exporttocsvdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/exporttocsvdialog.ui -------------------------------------------------------------------------------- /src/gui/dialogues/firstrundialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/firstrundialog.cpp -------------------------------------------------------------------------------- /src/gui/dialogues/firstrundialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/firstrundialog.h -------------------------------------------------------------------------------- /src/gui/dialogues/firstrundialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/firstrundialog.ui -------------------------------------------------------------------------------- /src/gui/dialogues/newairportdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/newairportdialog.cpp -------------------------------------------------------------------------------- /src/gui/dialogues/newairportdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/newairportdialog.h -------------------------------------------------------------------------------- /src/gui/dialogues/newairportdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/newairportdialog.ui -------------------------------------------------------------------------------- /src/gui/dialogues/newflightdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/newflightdialog.cpp -------------------------------------------------------------------------------- /src/gui/dialogues/newflightdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/newflightdialog.h -------------------------------------------------------------------------------- /src/gui/dialogues/newflightdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/newflightdialog.ui -------------------------------------------------------------------------------- /src/gui/dialogues/newpilot.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/newpilot.ui -------------------------------------------------------------------------------- /src/gui/dialogues/newpilotdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/newpilotdialog.cpp -------------------------------------------------------------------------------- /src/gui/dialogues/newpilotdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/newpilotdialog.h -------------------------------------------------------------------------------- /src/gui/dialogues/newsimdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/newsimdialog.cpp -------------------------------------------------------------------------------- /src/gui/dialogues/newsimdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/newsimdialog.h -------------------------------------------------------------------------------- /src/gui/dialogues/newsimdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/newsimdialog.ui -------------------------------------------------------------------------------- /src/gui/dialogues/newtail.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/newtail.ui -------------------------------------------------------------------------------- /src/gui/dialogues/newtaildialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/newtaildialog.cpp -------------------------------------------------------------------------------- /src/gui/dialogues/newtaildialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/dialogues/newtaildialog.h -------------------------------------------------------------------------------- /src/gui/verification/airportinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/verification/airportinput.cpp -------------------------------------------------------------------------------- /src/gui/verification/airportinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/verification/airportinput.h -------------------------------------------------------------------------------- /src/gui/verification/completerprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/verification/completerprovider.cpp -------------------------------------------------------------------------------- /src/gui/verification/completerprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/verification/completerprovider.h -------------------------------------------------------------------------------- /src/gui/verification/pilotinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/verification/pilotinput.cpp -------------------------------------------------------------------------------- /src/gui/verification/pilotinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/verification/pilotinput.h -------------------------------------------------------------------------------- /src/gui/verification/tailinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/verification/tailinput.cpp -------------------------------------------------------------------------------- /src/gui/verification/tailinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/verification/tailinput.h -------------------------------------------------------------------------------- /src/gui/verification/timeinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/verification/timeinput.cpp -------------------------------------------------------------------------------- /src/gui/verification/timeinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/verification/timeinput.h -------------------------------------------------------------------------------- /src/gui/verification/userinput.cpp: -------------------------------------------------------------------------------- 1 | #include "userinput.h" 2 | -------------------------------------------------------------------------------- /src/gui/verification/userinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/verification/userinput.h -------------------------------------------------------------------------------- /src/gui/verification/validationstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/verification/validationstate.h -------------------------------------------------------------------------------- /src/gui/widgets/airporttableeditwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/airporttableeditwidget.cpp -------------------------------------------------------------------------------- /src/gui/widgets/airporttableeditwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/airporttableeditwidget.h -------------------------------------------------------------------------------- /src/gui/widgets/backupwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/backupwidget.cpp -------------------------------------------------------------------------------- /src/gui/widgets/backupwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/backupwidget.h -------------------------------------------------------------------------------- /src/gui/widgets/backupwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/backupwidget.ui -------------------------------------------------------------------------------- /src/gui/widgets/currencywidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/currencywidget.cpp -------------------------------------------------------------------------------- /src/gui/widgets/currencywidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/currencywidget.h -------------------------------------------------------------------------------- /src/gui/widgets/debugwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/debugwidget.cpp -------------------------------------------------------------------------------- /src/gui/widgets/debugwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/debugwidget.h -------------------------------------------------------------------------------- /src/gui/widgets/debugwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/debugwidget.ui -------------------------------------------------------------------------------- /src/gui/widgets/homewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/homewidget.cpp -------------------------------------------------------------------------------- /src/gui/widgets/homewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/homewidget.h -------------------------------------------------------------------------------- /src/gui/widgets/homewidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/homewidget.ui -------------------------------------------------------------------------------- /src/gui/widgets/logbooktableeditwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/logbooktableeditwidget.cpp -------------------------------------------------------------------------------- /src/gui/widgets/logbooktableeditwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/logbooktableeditwidget.h -------------------------------------------------------------------------------- /src/gui/widgets/pilottableeditwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/pilottableeditwidget.cpp -------------------------------------------------------------------------------- /src/gui/widgets/pilottableeditwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/pilottableeditwidget.h -------------------------------------------------------------------------------- /src/gui/widgets/settingswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/settingswidget.cpp -------------------------------------------------------------------------------- /src/gui/widgets/settingswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/settingswidget.h -------------------------------------------------------------------------------- /src/gui/widgets/settingswidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/settingswidget.ui -------------------------------------------------------------------------------- /src/gui/widgets/tableeditwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/tableeditwidget.cpp -------------------------------------------------------------------------------- /src/gui/widgets/tableeditwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/tableeditwidget.h -------------------------------------------------------------------------------- /src/gui/widgets/tailtableeditwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/tailtableeditwidget.cpp -------------------------------------------------------------------------------- /src/gui/widgets/tailtableeditwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/tailtableeditwidget.h -------------------------------------------------------------------------------- /src/gui/widgets/totalswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/totalswidget.cpp -------------------------------------------------------------------------------- /src/gui/widgets/totalswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/totalswidget.h -------------------------------------------------------------------------------- /src/gui/widgets/totalswidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/gui/widgets/totalswidget.ui -------------------------------------------------------------------------------- /src/opl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/opl.cpp -------------------------------------------------------------------------------- /src/opl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/opl.h -------------------------------------------------------------------------------- /src/testing/atimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/testing/atimer.cpp -------------------------------------------------------------------------------- /src/testing/atimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/testing/atimer.h -------------------------------------------------------------------------------- /src/testing/importCrewlounge/importcrewlounge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/testing/importCrewlounge/importcrewlounge.cpp -------------------------------------------------------------------------------- /src/testing/importCrewlounge/importcrewlounge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/testing/importCrewlounge/importcrewlounge.h -------------------------------------------------------------------------------- /src/testing/importCrewlounge/processaircraft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/testing/importCrewlounge/processaircraft.cpp -------------------------------------------------------------------------------- /src/testing/importCrewlounge/processaircraft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/testing/importCrewlounge/processaircraft.h -------------------------------------------------------------------------------- /src/testing/importCrewlounge/processflights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/testing/importCrewlounge/processflights.cpp -------------------------------------------------------------------------------- /src/testing/importCrewlounge/processflights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/testing/importCrewlounge/processflights.h -------------------------------------------------------------------------------- /src/testing/importCrewlounge/processpilots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/testing/importCrewlounge/processpilots.cpp -------------------------------------------------------------------------------- /src/testing/importCrewlounge/processpilots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/testing/importCrewlounge/processpilots.h -------------------------------------------------------------------------------- /src/testing/randomgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/testing/randomgenerator.cpp -------------------------------------------------------------------------------- /src/testing/randomgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiffty-50/openPilotLog/HEAD/src/testing/randomgenerator.h --------------------------------------------------------------------------------