Devhelp is a quite old piece of software (created in 2001), and as every software, the code evolves during its lifetime. So there are sometimes API breaks. We try to not break applications depending on the Devhelp API. But if we see that a certain API is used nowhere else than the Devhelp application itself (or is dead code), we don't hesitate to break the API to improve the code.
Currently we try to not break Anjuta and gnome-builder. If your application is not listed and depends on the Devhelp API and is Free Software, please speak up.
3.24 -> 3.25.1
All deprecated APIs have been removed.
dh-error.h is now private.
The
DhApp,DhAssistantandDhWindowclasses are now private.DhAppis a subclass ofGtkApplication, and an application can have only oneGtkApplicationinstance, so as-isDhAppdidn't make sense in the library (what if two different libraries have both a subclass ofGtkApplication?). SinceDhAssistantandDhWindowdepend onDhApp, they are now also private.The
DhLanguageclass is now private, it's currently used only internally by DhBookManager.-
Due to DhBookManager being now a singleton, there has been the following API changes:
dh_assistant_view_set_book_manager()has been removed.dh_keyword_model_set_words()has been removed.The
DhBookTree:book-managerproperty has been removed.API break for dh_book_tree_new().
The
DhSidebar:book-managerproperty has been removed.The
book_managerparameter of dh_sidebar_new() is now deprecated.
3.25.1 -> 3.25.2
The
pageparameter of dh_link_new() has been removed because it was broken indh-parser.c. Thebookparameter has also been moved, to group related parameters together.The
dh_link_get_page_name()function has been removed because it was broken and used nowhere.The
dh_link_get_type_as_string()function (which took a DhLink parameter) has been removed, it has been replaced by dh_link_type_to_string() which takes a DhLinkType parameter.
