forked from ActivityWatch/activitywatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated submodules with merged stuff for 0.8
- Loading branch information
Showing
7 changed files
with
42 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule aw-core
updated
30 files
+3 −3 | Makefile | |
+1 −0 | aw_analysis/__init__.py | |
+324 −0 | aw_analysis/query2.py | |
+99 −0 | aw_analysis/query2_functions.py | |
+0 −5 | aw_core/__init__.py | |
+0 −44 | aw_core/cached_views.py | |
+0 −6 | aw_core/dirs.py | |
+0 −176 | aw_core/query.py | |
+0 −269 | aw_core/transforms.py | |
+0 −110 | aw_core/views.py | |
+6 −0 | aw_datastore/datastore.py | |
+8 −0 | aw_datastore/storages/abstract.py | |
+11 −0 | aw_datastore/storages/memory.py | |
+17 −1 | aw_datastore/storages/mongodb.py | |
+19 −0 | aw_datastore/storages/peewee.py | |
+7 −0 | aw_transform/__init__.py | |
+19 −0 | aw_transform/filter_keyvals.py | |
+69 −0 | aw_transform/filter_period_intersect.py | |
+39 −0 | aw_transform/heartbeats.py | |
+9 −0 | aw_transform/limit_events.py | |
+34 −0 | aw_transform/merge_events_by_keys.py | |
+17 −0 | aw_transform/sort_by.py | |
+31 −0 | aw_transform/split_url_events.py | |
+1 −1 | setup.py | |
+33 −0 | tests/test_datastore.py | |
+6 −6 | tests/test_heartbeat.py | |
+0 −246 | tests/test_query.py | |
+302 −0 | tests/test_query2.py | |
+59 −69 | tests/test_transforms.py | |
+0 −112 | tests/test_view.py |
Submodule aw-qt
updated
4 files
+1 −1 | Makefile | |
+2 −2 | aw-qt.spec | |
+1 −1 | aw_qt/manager.py | |
+1 −5 | aw_qt/trayicon.py |
Submodule aw-server
updated
5 files
+1 −1 | aw-webui | |
+22 −37 | aw_server/api.py | |
+47 −38 | aw_server/rest.py | |
+3 −0 | aw_server/server.py | |
+1 −0 | tests/test_client.py |
Submodule aw-watcher-afk
updated
3 files
+6 −6 | aw_watcher_afk/afk.py | |
+4 −0 | aw_watcher_afk/unix.py | |
+1 −1 | requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |