No Description

fiffty-50 2c5f723738 changed data type of setting_id to int in all functions 4 years ago
dbpopulation ca32396f5c Updated Airports 4 years ago
screenshots 740c11936c screenshots added 4 years ago
themes 1c4a7f06f3 added background for home widget 4 years ago
.gitignore 7ebdd32bcf edited gitignore 4 years ago
LICENSE e73e32fb70 Create LICENSE 4 years ago
README.md cf2e4416d1 Edited README 4 years ago
calc.cpp 833e1aeb4a Formatting edited 4 years ago
calc.h 05596a87ed added dbFlights class 4 years ago
dbflight.cpp 2f74749a20 formatting 4 years ago
dbflight.h 2f74749a20 formatting 4 years ago
dbman.cpp 925d600be9 created dbPilots class and migrated functions 4 years ago
dbpilots.cpp 925d600be9 created dbPilots class and migrated functions 4 years ago
dbpilots.h 1330a293c5 formatting and renaming of tableView Slot 4 years ago
dbsettings.cpp 2c5f723738 changed data type of setting_id to int in all functions 4 years ago
dbsettings.h 2c5f723738 changed data type of setting_id to int in all functions 4 years ago
dbstat.cpp 2c5f723738 changed data type of setting_id to int in all functions 4 years ago
dbstat.h 1330a293c5 formatting and renaming of tableView Slot 4 years ago
easaview.cpp 5524ea06c5 uploaded 4 years ago
easaview.h 5524ea06c5 uploaded 4 years ago
easaview.ui 5524ea06c5 uploaded 4 years ago
editflight.cpp 925d600be9 created dbPilots class and migrated functions 4 years ago
editflight.h 5524ea06c5 uploaded 4 years ago
editflight.ui 5524ea06c5 uploaded 4 years ago
homewidget.cpp b74d13670c added statistics class 4 years ago
homewidget.h d24070ee02 added statistics functionality to HomeWidget 4 years ago
homewidget.ui d24070ee02 added statistics functionality to HomeWidget 4 years ago
logbook.db e5c438d5f9 added new setting 4 years ago
logbook_empty.db a78e5b9424 An empty database without sample flights. 4 years ago
logbookwidget.cpp 1330a293c5 formatting and renaming of tableView Slot 4 years ago
logbookwidget.h 1330a293c5 formatting and renaming of tableView Slot 4 years ago
logbookwidget.ui 925d600be9 created dbPilots class and migrated functions 4 years ago
main.cpp 2c5f723738 changed data type of setting_id to int in all functions 4 years ago
mainwindow.cpp d287a524c7 fixed bug in delete flight function 4 years ago
mainwindow.h aa4aba2782 QScrollBar::handle:vertical 4 years ago
mainwindow.ui 0a62dbbcc5 menubar removed 4 years ago
newacft.cpp dd6e789785 Add files via upload 4 years ago
newacft.h dd6e789785 Add files via upload 4 years ago
newacft.ui dd6e789785 Add files via upload 4 years ago
newflight.cpp 2c5f723738 changed data type of setting_id to int in all functions 4 years ago
newflight.h 6d9e0799be added slots, QCompleter and QValidator for Flight Number Prefix 4 years ago
newflight.ui 2cb7c8274b UI changes 4 years ago
openLog.pro 925d600be9 created dbPilots class and migrated functions 4 years ago
settingswidget.cpp 2c5f723738 changed data type of setting_id to int in all functions 4 years ago
settingswidget.h 6d9e0799be added slots, QCompleter and QValidator for Flight Number Prefix 4 years ago
settingswidget.ui 6d9e0799be added slots, QCompleter and QValidator for Flight Number Prefix 4 years ago
showaircraftlist.cpp dd6e789785 Add files via upload 4 years ago
showaircraftlist.h dd6e789785 Add files via upload 4 years ago
showaircraftlist.ui dd6e789785 Add files via upload 4 years ago

README.md

openPilotLog

Airline pilots are required to maintain a logbook containing details of their flights. These logbooks were historically written by hand on paper, but of course nowadays more and more people are doing it electronically, be it in their own excel sheet or using a professional logbook software.

I have used professional solutions for many years, and have seen more and of them move from being a one-time purchase to becoming a "Logbook as a Service" type subscription. After the one I have been using for the last couple of years, and had bought a "lifetime license" for ended up announcing they also moved to a subscription based service, I decided that I've had enough of it.

As a long-time FOSS enthusiast, I wondered why there wasn't a good open and free alternative available, so I decided to create my own. Since I have used and benefited from free and open source software for a long time, I decided to also create this project as FOSS.

All that being said, while I know how to fly an aircraft, I never properly learned how to code, so if you are a professional programmer and your eyes are bleeding from what you're seeing or I am doing something immensely stupid, please do let me know! This project is my way of learning how to code, so I am more than open to feedback.

What are the design principles of this program?

Code: C++ (Qt5)

Database: sqlite3

This program is suppposed to replace a paper logbook with an electronic version. As a first step, I want to focus on the basics, and then add 'nice-to-haves' later. These are the guidelines for this project:

  • Speed: openPilotLog is supposed to be fast, lean and efficient. I have settled on using the Qt framework for the gui and code, as well as sqlite for the database.
  • Cross-Platform Support: I am primarily using Linux, but Windows and Mac (and maybe down the road iOS/Android) should also be supported. Qt provides this cross-platform compatibility.
  • Local: At the moment, I am not planning on implementing a cloud-sync solution. The database is local, on your machine, and moving it around should be as easy as copying it onto a USB stick. While I am not opposed to cloud syncing functionality, I want the application to be independent of external services.

The state of the project - Should I use this?

Clear answer for the time being - Don't use it. This is an early development stage and functionality, layout of the GUI etc. might change drastically. For this reason, I am not providing a release for now.

'x' is a terrible idea, don't do that!

As mentioned before, feedback is welcome and invited! If you know of a better way of doing something, this is an open project so feel free to contribute!

How does it look like?

Here are some early screenshots:

Alt Screenshot 1

Alt Screenshot 2

But I want to try it!

Well, you have been warned... The most straight forward way is to get a copy of Qt https://www.qt.io/download and compile the project using QtCreator and qmake, the PRO file is included in this repository. After building, make sure to place a copy of the sample database in the application folder (not the source folder). If you want to start a fresh logbook, delete the default database file and rename the empty sample database and place it in the application folder. Without a valid database, the application will not start.