Skip to content

Commit

Permalink
updated submodules with merged stuff for 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Jan 22, 2018
1 parent f93c403 commit b2784e8
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 15 deletions.
35 changes: 25 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,24 @@
<a href="https://github.com/ActivityWatch/activitywatch/releases">
<img title="Total downloads (GitHub Releases)" src="https://img.shields.io/github/downloads/ActivityWatch/activitywatch/total.svg" />
</a>

<br>

<a href="https://activitywatch.net/donate/">
<img title="Donated" src="https://img.shields.io/badge/donations-%241%2Fmo-yellow.svg" />
</a>
<a href="https://www.patreon.com/erikbjare">
<img title="Donate on Patreon" src="https://img.shields.io/badge/patreon-donate-yellow.svg" />
</a>
<a href="https://opencollective.com/activitywatch">
<img title="Donate on Open Collective" src="https://img.shields.io/badge/bountysource-donate-yellow.svg" />
</a>
<a href="https://salt.bountysource.com/teams/activitywatch">
<img title="Donate on Bountysource" src="https://img.shields.io/badge/bountysource-donate-yellow.svg" />
</a>
<a href="https://activitywatch.net/donate/">
<img title="Donate with another method" src="https://img.shields.io/badge/others-donate-yellow.svg" />
</a>

<br>

Expand Down Expand Up @@ -95,10 +110,6 @@ We've worked towards this goal by creating a application for safe storage of the

It is up to you as user to collect as much as you want, or as little as you want (and we hope some of you will help write watchers so we can collect more).

**Note:** ActivityWatch is under development. There is still work to be done so we provide it with no guarantees with the hope that others may wish to help and give their feedback!

You can read more on our [website](https://activitywatch.github.io/about/).

### Screenshots

<!-- TODO: We could probably stylize these (nice borders, scaled down) -->
Expand All @@ -112,7 +123,16 @@ You can read more on our [website](https://activitywatch.github.io/about/).
<img src="http://activitywatch.net/screenshot.png" width="22%">
-->

### Is this yet another time tracker?

## Installation & Usage

Downloads are available on our [releases page](https://github.com/ActivityWatch/activitywatch/releases).

For instructions on how to get started, please see [our guide in the documentation](https://activitywatch.readthedocs.io/en/latest/getting-started.html).

Interested in building from source? [There's a guide for that too](https://activitywatch.readthedocs.io/en/latest/installing-from-source.html).

## Is this yet another time tracker?

Yes, but we found that most time trackers lack in one or more important features.

Expand Down Expand Up @@ -170,11 +190,6 @@ We have a plan to address all of these and we're well on our way. See the table
| WakaTime | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | Only for text editors |


### Installation & Usage

Please see the [Getting started guide in the documentation](https://activitywatch.readthedocs.io/en/latest/getting-started.html).


## About this repository

This repo is a bundle of the core components and official modules of ActivityWatch (managed with `git submodule`). It's primary use is as a meta-package providing all the components in one repo; enabling easier packaging and installation. It is also where releases of the full suite are published (see [releases](https://github.com/ActivityWatch/activitywatch/releases)).
Expand Down
2 changes: 1 addition & 1 deletion aw-client
2 changes: 1 addition & 1 deletion aw-qt
2 changes: 1 addition & 1 deletion aw-server
2 changes: 1 addition & 1 deletion aw-watcher-afk
12 changes: 12 additions & 0 deletions scripts/submodule-branch.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

# Get current branch
# git rev-parse --abbrev-ref HEAD
# Get branch for each submodule
# git submodule foreach "git rev-parse --abbrev-ref HEAD"

SUBMODULES=$(git submodule | sed -r -e 's/^[ \+][a-z0-9]+ //g' -e 's/ \(.*\)//g')
for module in $SUBMODULES; do
branch=$(git --git-dir=$module/.git rev-parse --abbrev-ref HEAD)
printf "%-20s %-30s\n" "$module" "$branch"
done

0 comments on commit b2784e8

Please sign in to comment.