All Projects → projecthamster → Hamster Gtk

projecthamster / Hamster Gtk

Licence: gpl-3.0
A GTK3 time tracker. Powered by 'hamster-lib'

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Hamster Gtk

Gifcurry
😎 The open-source, Haskell-built video editor for GIF makers.
Stars: ✭ 830 (+683.02%)
Mutual labels:  gui, gtk
Gtk Rust By Example
Gtk-Rust by Example (GRBE) - неофициальная книга по разработке GTK GUI, на языке программирования Rust. Практическое использование библиотеки GTK на различных примерах.
Stars: ✭ 30 (-71.7%)
Mutual labels:  gui, gtk
Os X Yosemite
GTK theme based on the flat appearance of OS X 10.10 Yosemite
Stars: ✭ 17 (-83.96%)
Mutual labels:  gnome, gtk
Terminator
multiple GNOME terminals in one window
Stars: ✭ 649 (+512.26%)
Mutual labels:  gnome, gtk
Fragments
Moved to GNOME GitLab -> https://gitlab.gnome.org/haecker-felix/Fragments
Stars: ✭ 80 (-24.53%)
Mutual labels:  gnome, gtk
Spot
Native Spotify client for the GNOME desktop
Stars: ✭ 762 (+618.87%)
Mutual labels:  gnome, gtk
Manjarin Gtk Theme
GTK2 and GTK3 theme developed for the Manjaro-Gnome Edition
Stars: ✭ 30 (-71.7%)
Mutual labels:  gnome, gtk
Sauron Native
Truly cross platform, truly native. multiple backend GUI for rust
Stars: ✭ 587 (+453.77%)
Mutual labels:  gui, gtk
Clapper
A GNOME media player built using GJS with GTK4 toolkit and powered by GStreamer with OpenGL rendering.
Stars: ✭ 103 (-2.83%)
Mutual labels:  gnome, gtk
Sharexin
ShareX for Linux and BSD
Stars: ✭ 79 (-25.47%)
Mutual labels:  gnome, gtk
Marker
🖊 A gtk3 markdown editor
Stars: ✭ 644 (+507.55%)
Mutual labels:  gnome, gtk
Vimix Gtk Themes
Vimix is a flat Material Design theme for GTK 3, GTK 2 and Gnome-Shell etc.
Stars: ✭ 1,384 (+1205.66%)
Mutual labels:  gnome, gtk
Macos
macOS theme for Gnome and GTK-based desktops
Stars: ✭ 641 (+504.72%)
Mutual labels:  gnome, gtk
Plotinus
A searchable command palette in every modern GTK+ application
Stars: ✭ 805 (+659.43%)
Mutual labels:  gnome, gtk
Flat Remix Gtk
Flat Remix is a GTK application theme inspired by material design. It is mostly flat using a colorful palette with some shadows, highlights, and gradients for some depth.
Stars: ✭ 634 (+498.11%)
Mutual labels:  gnome, gtk
Qogir Theme
Qogir is a flat Design theme for GTK
Stars: ✭ 874 (+724.53%)
Mutual labels:  gnome, gtk
Gaphor
Gaphor is the simple modeling tool
Stars: ✭ 386 (+264.15%)
Mutual labels:  gnome, gtk
Nigui
Cross-platform desktop GUI toolkit written in Nim
Stars: ✭ 430 (+305.66%)
Mutual labels:  gui, gtk
Nix Query Tree Viewer
GTK viewer for the output of `nix-store --query --tree`
Stars: ✭ 36 (-66.04%)
Mutual labels:  gui, gtk
Gnvim
GUI for neovim, without any web bloat
Stars: ✭ 1,271 (+1099.06%)
Mutual labels:  gui, gtk

=============================== hamster-gtk

.. image:: https://img.shields.io/pypi/v/hamster-gtk.svg :target: https://pypi.python.org/pypi/hamster-gtk

.. image:: https://img.shields.io/travis/projecthamster/hamster-gtk/master.svg :target: https://travis-ci.org/projecthamster/hamster-gtk

.. .. image:: https://readthedocs.org/projects/hamster-gtk/badge/?version=latest :target: https://readthedocs.org/projects/hamster-gtk/?badge=latest :alt: Documentation Status

A GTK interface to the hamster time tracker.

IMPORTANT At this early stage hamster-gtk is pre-alpha software. As such you are very welcome to take it our for a spin and submit feedback, however you should not rely on it to work properly and most certainly you should not use it in a production environment! You have been warned.

Dependencies

If you want to use the make register-gnome target desktop-file-install is required. On debian derivates this is provided by desktop-file-utils.

To Run the Testsuite

- make
- xvfb

First Steps
------------
* Install dependencies (on debian if using virtualenvwrapper):
  install ``virtualenvwrapper python-gi gir1.2-gtk-3.0 libglib2.0-dev
  libgtk-3-dev``.
  If you use python 3, you will need ``python3-gi`` instead.
* Create new virtual env: ``mkvirtualenv hamster-gtk``
* Activate env: ``workon hamster-gtk``
* Activate system site dirs: ``toggleglobalsitepackages``. Otherwise you will
  have no access to Gtk.
* Install ``hamster-gtk``: ``pip install hamster-gtk``.
* Run the little furball: ``hamster-gtk``

Some notes:

* Preference changes will only be applied at the next start right now.
* Exported data is tab separated.
* This is pre-alpha software!

How to run the testsuite
-------------------------
- Create a virtual environment ``mkvirtualenv hamster-gtk`` (python 2) or
  ``mkvirtualenv -p python3 hamster-gtk`` (python 3). Whilst those instructions
  do not reflect best practices (which would make use of python 3's built in
  venv) it does provide a better handling of ``system-site-packages``.
  `This issue <http://bugs.python.org/issue24875>`_ provides some context for
  the problems one may run into using ``system-site-packages`` with python3
  venvs. It is our hope that python 3.7 will fix this.
- enable access to system-site-packages for our virtual environment:
  ``$ toggleglobalsitepackages``. This is needed to access our global GTK
  related packages.
- Install development environment: ``make develop``.
- To run the actual testsuite: ``make test``.
- To run tests and some auxiliary style checks (flake8, pep257, etc):
  ``make test-all``.

Right now, our actual code testing does not utilize ``tox`` as we keep running
into segfaults (which does not happen without ``tox``).
For  this same reason we are currently unable to run our code tests on Travis
as well (we still run the 'style checks' at least).
We hope to get to the bottom of this at some point and would be most grateful
if you have any hint or pointer that may help tracking down this issue.

Migrating from 'legacy hamster'
---------------------------------
In case you are wondering “Will I be able to continue using my ‘legacy
hamster’ database with this rewrite?” the answer is “yes and no.” This new
version of hamster significantly raises the standard in terms of data
consistency. Unlike before, it will not be possible to have “Facts” without
an end time specified, nor to have multiple facts overlapping.

There will be a way to import data that still constitute valid “facts” (having
both a start and an end time). We have, however, not decided on how this will
be implemented, nor what to do with the legacy “facts” that do not have
an end time.

The general timeline for addressing the actual implementation is: once we are
feature freezing in preparation of release 1.0.0 as part of a more general
pre-release cleanup effort.

Whilst possible, it is unlikely we will have the resources to provide a fancy
looking GUI to resolve migration conflicts (unless someone new pitches in of
course) so the result will most likely be a migration script of some sort.

If you are interested in this general issue, please feel free to watch the
`epic issue for
"hamster-lib" <https://projecthamster.atlassian.net/browse/LIB-12>`_ that
covers all things relevant.

News: Version 0.11.0
----------------------
This release introduces refines various aspects of your *Hamster-GTK*
experience. Whilst we introduce no new major dialogs (just a simple
about-dialog). We catch up with the lastest version of ``hamster-lib``,
``0.12.0``. The most noteworthy change for user is probably the ability to use
whitespaces with your ``Activity.name``. Besides that we fixed some rather
anoying bugs as well as continued to refine the codebase. All in all, while
still not big on features, this release should feel much more stable and
reliable. This is not the least due to multiple contributions by ``jtojnar``,
thanks for that! As ususal, for more changes and details, please refer to the
changelog. Happy tracking; Eric.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].