You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: Add link of version compare to the release notes
This shall improve the transparency of the changes.
Signed-off-by: 林博仁(Buo-ren Lin) <Buo.Ren.Lin@gmail.com>
refactor: Use specific functions for outputting messages
Currently, we use generic printf\* functions to output application messages, however, it creates some problems:
1. Ununified output formats (#58, #56, #54, #52).
1. Unnecessary manually adding color codes to give color to messages, which is often forgotten (#56).
1. Unnecessary manually adding message class and function tags, which are often forgotten, case ununified, or misplaced. (#54, #58).
1. Unnecessary manually setting redirection for warning and error messages, which is often forgotten (#51).
By implementing specific functions for each INFO/WARNING/ERROR message we can fix these issues altogether.
Fixes#51, #52, #54, #56, #58, #60.
Incidentally fixes#55 in the process.
Signed-off-by: 林博仁(Buo-ren Lin) <Buo.Ren.Lin@gmail.com>