Upgrading GTK based Python applications
A hot topic in the GNOME world is upgrading applications from GTK+ 3 to GTK 4 and libadwaita. For Gaphor, we completed this task around a year ago, but I never took time to write how we did it.
Одна картинка заміняє тисячу слів. Опишіть і задокументуйте свої програми та системи за допомогою Gaphor, щоб покращити обмін знаннями.
Gaphor — це програма для моделювання UML, SysML, RAAML і C4. Вона розроблена таким чином, щоб бути простим у використанні, але при цьому залишатися потужною. Gaphor реалізує повністю сумісну модель даних UML 2, тому це набагато більше, ніж інструмент малювання зображень. Ви можете використовувати Gaphor для швидкого візуалізації різних аспектів системи, а також для створення повних, дуже складних моделей.
No vendor lock-in: Gaphor is written in Python and is 100% Open Source, available under a friendly Apache 2 license.
Whether you’re a casual modeler documenting a project or a Model Driven Development expert, Gaphor has got you covered.
UML is a graphical modeling language, so all information you put in the model is visible in the diagrams. For example, stereotypes are modeled in diagrams. No hidden panels and property pages. Just diagrams!
Gaphor is extensible. Plug-in a code generator or export your diagrams for documentation. Create your own extensions and access them through the GUI or CLI.
Gaphor implements the UML, SysML, and RAAML OMG standards. It also includes support for the C4 model for visualizing software architectures.
Створюйте діаграми Класів, Взаємодії та Скінченних Автоматів для програмного забезпечення або діаграми Визначення Блоку та Вимог до систем. Змоделюйте потрібні елементи. Якщо ви хочете комбінувати та поєднувати, ви навіть можете додати різні елементи діаграми до однієї діаграми, щоб отримати потрібний вигляд.
Налаштуйте діаграми, які ви створюєте, за допомогою нашого вбудованого механізму стилів.
Легко знайдіть усі елементи вашої моделі в перегляді дерева.
Любите темний режим? Ми теж можемо це зробити.
Є багато способів встановити Gaphor. Найпростіший — завантажити офіційний інсталятор для Windows або macOS. Для Linux ви можете встановити Gaphor за допомогою FlatHub. Ви також можете використовувати вбудований інструмент Python pip
, якщо у вас встановлені всі необхідні залежності.
Ви хочете знати, що відбувається з Гафором? Читайте наш блог!
Зв’яжіться з командою, якщо ви хочете поділитися вмістом, пов’язаним із Gaphor.
A hot topic in the GNOME world is upgrading applications from GTK+ 3 to GTK 4 and libadwaita. For Gaphor, we completed this task around a year ago, but I never took time to write how we did it.
In this post I’ll outline a workflow for developing native extensions for Python. The build tool of choice is Meson, and we’ll use PDM to ensure a frictionless developer experience.
For a long time, C extensions for Python can be built with
setuptools. Although this works fine for simple
extension, it gets tedious if your extension needs to link to other libraries. In those cases it’s often necessary to
write custom code in setup.py
to find and link to those libraries.
On February 16, 2024, we released Gaphor 2.24.
It’s been quite a while since I produced a proper updates post.
Since the 2.17 release about a year before, a lot has changed.