Skip to content

Commit

Permalink
Update Readme to reflect current project status (projecthamster#330)
Browse files Browse the repository at this point in the history
* Make service definitions more readable

* Update readme to reflect current project status
  • Loading branch information
elbenfreund authored Jul 16, 2016
1 parent bc638a4 commit c3e5fb7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
Hamster is time tracking for individuals. It helps you to keep track of how
much time you have spent during the day on activities you choose to track.

**IMPORTANT**
Project Hamster is undergoing a period of major transition. Unless someone
steps up to the task, this repository will remain unmaintained as the
majority of our resources are directed to a rewrite (repositories:
``hamster-lib/dbus/cli/gtk``). Whilst you may leave bug reports and feature
request with the issue tracker, please be warned that fixes at the current
codebase will most likely stay unfixed and PR unmerged. Feature request will
be reevaluated once the new codebase takes though.

## Installation

You can use the usually stable `master` or [download stable releases](https://github.com/projecthamster/hamster/releases).
Expand Down
12 changes: 8 additions & 4 deletions src/hamster-windows-service
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,20 @@ class WindowServer(dbus.service.Object):


@dbus.service.method("org.gnome.Hamster.WindowServer")
def edit(self, id=None): dialogs.edit.show(self.app, fact_id = id)
def edit(self, id=None):
dialogs.edit.show(self.app, fact_id = id)

@dbus.service.method("org.gnome.Hamster.WindowServer")
def overview(self): dialogs.overview.show(self.app)
def overview(self):
dialogs.overview.show(self.app)

@dbus.service.method("org.gnome.Hamster.WindowServer")
def about(self): dialogs.about.show(self.app)
def about(self):
dialogs.about.show(self.app)

@dbus.service.method("org.gnome.Hamster.WindowServer")
def preferences(self): dialogs.prefs.show(self.app)
def preferences(self):
dialogs.prefs.show(self.app)



Expand Down

0 comments on commit c3e5fb7

Please sign in to comment.