Skip to content

Latest commit

 

History

History
166 lines (118 loc) · 5.84 KB

CONTRIBUTING.md

File metadata and controls

166 lines (118 loc) · 5.84 KB

Contributing to GNOME Builder

We would love for you to contribute to GNOME Builder!

GNOME Builder is a new IDE focusing on the GNOME desktop environment. It is primarily written in C, but allows for plugins in C, C++, Python or Vala. Additional compiled languages can also be supported with some work.

Remember that the GNOME community is largely made up of part-time contributors that do this for fun. Be respectful and assume the best of each other.

Here you can find documentation for libide.

Filing a bug

Please file issues for bugs on our our issue tracker after you have tested a Nightly release to verify the bug has not already been fixed.

You can install Nightly from Flatpak using flatpak --user install gnome-nightly org.gnome.Builder.Devel.

Please do not file issues for feature requests. Features must go through the design process first. File an issue at Teams/Design/Whiteboards to begin that process. In the end you should have a mockup, implementation specification, and breakdown of how that will change the existing code-base.

Create a Merge Request and we'd be happy to review your patch and help you get it merged.

Asking for Help

You can often find Builder contributors on our IRC channel at irc://irc.libera.chat/#gnome-builder or the Matrix channel at #gnome-builder:gnome.org. If you have any questions, we'd be happy to help you.

If you'd like to start on a new plugin or feature, stop by our IRC/Matrix channel and we'd be happy get you oriented. The IRC and Matrix channels are bridged so you will be part of the same conversation regardless of which you join.

Portability

Builder is primarily focused on GNU/Linux with the GNOME desktop.

However, we do often accept patches for various BSD-based operating systems and alternate desktops. It is important that you help us by keep things working for your platform as the Builder team cannot test all possible configurations.

Testing

We use meson for our build system. It provides support for running unit tests with the ninja test command. We run these tests often so it is important that you check nothing was broken by your changes.

Licensing

Contributions should be licensed under the LGPL-2.1+ or GPL-3. Permissively licensed contributions will also be accepted, but we prefer that original contributions are either LGPL-2.1+ or GPL-3 licensed.

Coding Style

Our coding style matches that of GTK. We consider the GTK project an upstream, and often push features into GTK. This might feel unfamiliar at first, but it works well for us. Builder's default C mode matches our style guide relatively close.

We use the recent GNU GCC '18 mode, such as -std=gnu18.

static GtkWidget *
example_object_get_widget (ExampleObject  *object,
                           GError        **error)
{
  g_return_val_if_fail (EXAMPLE_IS_OBJECT (object), NULL);

  if (object->widget == NULL)
    {
      object->widget = g_object_new (GTK_TYPE_LABEL,
                                     "visible", TRUE,
                                     NULL);
    }

  return object->widget;
}

You may omit curly-braces for single-line conditionals.

Please use new-style Object declarations such as G_DECLARE_FINAL_TYPE() or G_DECLARE_DERIVABLE_TYPE(). Unless you intend to subclass the object, make the object final.

#define EXAMPLE_TYPE_OBJECT (example_object_get_type())

G_DECLARE_FINAL_TYPE (ExampleObject, example_object, EXAMPLE, OBJECT, GObject)

Includes

The top of your source files should have defines and includes grouped well. Generally, they should be in the style of the following, but please omit the comments.

/* G_LOG_DOMAIN always first */
#define G_LOG_DOMAIN "file-name-without-suffix"

/* include "config.h" always second */
#include "config.h"

/* Includes that are system related, sorted if possible */
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

/* GLib/GTK and other dependency includes, sorted if possible */
#include <adwaita.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>

/* Includes from Builder's platform libraries */
#include <libide-core.h>
#include <libide-gui.h>

/* Includes from the module directory within builder */
#include "my-widget.h"
#include "my-widget-settings.h"
#include "my-widget-private.h"

Be explicit about ownership transfers

Since GLib 2.44, we've had helpful macros and functions to be explicit about ownership transfers. Please use them as it drastically saves time when tracking down memory leaks.

These include:

  • g_autoptr(), g_auto(), and g_autofree.
  • g_steal_pointer()
  • g_clear_object() and g_clear_pointer()

We prefer that you zero fields in structures when freeing the contents.

Documentation

Most functions should be obvious what they do from the object type, name, and parameters. Add additional documentation when it makes sense.

If you find you come across something particularly tricky, or are being clever, please add a comment denoting such.

Making a Release

  • Update NEWS for release notes
  • Update meson.build for the new version number
  • Update doc/conf.py to reflect the updated version number
  • Update any necessary tags in org.gnome.Builder.Devel.json for Flatpak
  • Make sure documentation builds, tests pass
  • Make sure flatpak bundle builds
  • Commit release changes, add a signed tag (git tag -s -u $keyid)
  • Configure meson as normal, ensure docs are built
  • From the build directory, run ninja dist to generate the tarball
  • Push changes to master (or branch), push tag
  • scp the tarball to master.gnome.org
  • Run ftpadmin install gnome-builder-*.tar.xz.