This site has been retired. For up to date information, see handbook.gnome.org or gitlab.gnome.org.


[Home] [TitleIndex] [WordIndex

../planner-logo.png

Planner

1. Project management


Development Resources




1. Build instructions

There is a Planner Installation Guide describing how to build Planner on GNU/Linux that should also be helpful for building Planner on other UNIX-like systems. Instructions for building Planner on Windows are also available.

2. Getting involved

We are looking for more people to join the development team (so much to do and so little time ;-)). The first thing to do when you want to get involved is to subscribe to the mailing lists and preferably join the IRC channel. Feel free to ask any questions that pop up while browsing through the code.

3. Submitting patches

Here are some tips on creating and submitting good patches:

4. Other ways to help out

If you'd rather not start hacking right away, there are other ways to help out. One is to find bugs that have been solved, but have not been marked as FIXED in bugzilla. To identify those you must first find a reliable way to reproduce them with an old version (the version the reporter used) and then go through the same steps with the latest version from git to show that the problem doesn't occur there.

4.1. Getting your copy of the source code

  1. cd ~

  2. git clone git@gitlab.gnome.org:World/planner.git

  3. cd planner

You only need to do this once. The following steps may then be repeated for each report you want to work on.

4.2. Reproducing the problem

Try to reproduce the problem with the same version as the reporter:

  1. Find out the name of TAG for the old version you need by looking in https://gitlab.gnome.org/World/planner/-/tags

  2. git checkout TAG

  3. ./autogen.sh --prefix=${HOME}/local

  4. make install   # will install to the 'local' directory in your home directory

  5. export PATH=${PATH}:${HOME}/local/bin

  6. planner

4.3. Checking if the problem has been solved

Once you figured out how to reproduce the problem reliably, try to do the same in the latest planner version:

  1. git checkout master

  2. meson --prefix=${HOME}/local build

  3. ninja -C build install   # will overwrite the currently installed version in the 'local' directory in your ${HOME}

  4. planner

If you see that the latest version does not exhibit the problem even though you followed the steps that triggered the problem 100% of the time before, then you should add a note to the bug saying that it can be marked FIXED. Also describe the steps you took to reliably reproduce the problem if they are not clearly mentioned in bug report already. In fact, adding them to a bug report that lacks this information is always useful, regardless of whether the bug is still present in the latest version.

4.4. Getting the latest updates to the source code

Once in a while, when developers have pushed new commits to the central repository, you can do git pull in your clone directory to get these commits.


2024-10-23 10:58