WakaTime is a productivity & time tracking tool for programmers. Once the WakaTime plugin is installed, you get a dashboard with reports about your programming by time, language, project, and branch.
Downloads from the gallery:
The latests stable versions of WakaTime addin are available via GitHub Releases
Heads Up! WakaTime depends on Python being installed to work correctly. On macOS and Linux Python is usually pre-installed, while on Windows WakaTime tries to install automatically a portable version of Python.
-
Inside MonoDevelop/Xamarin Studio/Visual Studio for Mac, navigate to
Tools
->Add-in Manager
-
Click the
Install from file...
button and browse to/path/to/monodevelop-wakatime/bin/Debug
orDebugWin32
folder, depending on your OS and install MonoDevelop.WakaTime_x.x.mpack -
Click the
Install
button and then when add-in installation dialog popups clickInstall
. -
On MonoDevelop/Xamarin Studio/Visual Studio for Mac versions prior to 5.10 you might get an error message, just ignore it, it's a Mono.Addin bug, it has been already solved in latest releases.
-
Enter your api key from https://wakatime.com/settings#apikey, then click
Apply
button. -
You might have to restart your MonoDevelop/Xamarin Studio/Visual Studio for Mac
-
Use MonoDevelop/Xamarin Studio/Visual Studio for Mac like you normally do and your time will be tracked for you automatically.
-
Visit Wakatime Dashboard to see your logged time.
-
Inside MonoDevelop/Xamarin Studio/Visual Studio for Mac, navigate to
Tools
->Add-in Manager
-
Click the
Gallery
tab, then search forwakatime
. -
Click the
Install
button and follow the installation guide above starting from step #4.
You can build and install this addin manually. On Linux you can skip the first step.
-
Make make
mdtool
globally accessible.- On macOS open the Terminal and run the following command:
sudo ln -sv /Applications/Xamarin Studio.app/Contents/MacOS/mdtool /usr/bin/
- On Windows just add
%ProgramFiles%"\Xamarin Studio\bin
or%ProgramFiles(x86)%"\Xamarin Studio\bin
append to PATH environment variable - On Linux
mdtool
is usually globally accessible, otherwise locate it and symlink it to/usr/local/bin/
or similar
-
Just open the solution in MonoDevelop/Xamarin Studio/Visual Studio for Mac and build it using the appropriate configuration (
Debug
for Linux and macOS andDebugWin32
for Windows). Or use NuGet + XBuild / MSBuild in order to build it from the command-line:
nuget restore ./src
msbuild /p:Configuration=<Debug or DebugWin32 here> /t:Build ./src
-
Inside MonoDevelop/Xamarin Studio/Visual Studio for Mac, navigate to
Tools
->Add-in Manager
-
Click the
Install from file...
button and browse to/path/to/monodevelop-wakatime/bin/Debug
orDebugWin32
folder, depending on your OS and install MonoDevelop.WakaTime_x.x.mpack -
Click the
Install
button and follow the installation guide above starting from step #4.
Some code has been taken from Visual Studio WakaTime extension originally developed by WakaTime team. Hovewer that code has been heavily refactored, made cross-platform etc.
Try to port WakaTime to C# to avoid relying on Python