Welcome to TimeSnapper Forums Sign in | Join | Faq

Suggestions

Started by tridgeon at 09-02-2009 22:32. Topic has 3 replies.

Print Search
Sort Posts:    
   09-02-2009, 22:32
tridgeon is not online. Last active: 9/3/2009 1:27:08 PM tridgeon

Top 50 Posts
Joined on 09-03-2009
Posts 2
API for adding Flags
Reply Quote
I would really love to be able to create a plugin that automatically adds flags depending on the users current context. The context could be numerous things like, Current application, time of day, Window text , idle time etc etc...

Is there any plans to enhance the API in this way. I cant wait to start developing.. :D
   Report 
   09-03-2009, 11:43
AtliB is not online. Last active: 12/2/2009 3:28:03 AM AtliB

Top 10 Posts
Joined on 05-30-2006
Reykjavik / Iceland
Posts 382
Re: API for adding Flags
Reply Quote
Yes, there actually is one upcoming...


  1. /// <summary>
  2. /// Gives access to the Flags subsystem: create, read, update and delete
  3. /// </summary>
  4. /// <remarks></remarks>
  5. public interface IFlagServices
  6. {
  7.     /// <summary>
  8.     /// Returns the flag with the specified flagId
  9.     /// </summary>
  10.     /// <param name="flagId">The unique ID of the flag</param>
  11.     /// <returns>The flag</returns>
  12.     Flag GetFlag(int flagId);
  13.     Flag GetFlag(DateTime flagDate);
  14.    
  15.     /// <summary>
  16.     /// Returns all the flags within the specified daterange ([dateFrom..dateTo[)
  17.     /// </summary>
  18.     /// <returns>The flag</returns>
  19.     DataTable GetFlags(System.DateTime dateFrom, System.DateTime dateTo);
  20.     void SaveFlag(Flag flag);
  21.     void DeleteFlag(int flagId);
  22. }

The context you could get from one of the events TimeSnapper raises...

But it's not ready yet!

Cheers
Atli



Check out TimeSnapper, the automatic screenshot journal at www.timesnapper.com

It runs in the background of your computer, taking screenshots of your desktop every few seconds all week long.

TimeSnapper lets you play back your week just like a movie. Use it to improve your work habits and become more productive.
   Report 
   09-03-2009, 15:26
tridgeon is not online. Last active: 9/3/2009 1:27:08 PM tridgeon

Top 50 Posts
Joined on 09-03-2009
Posts 2
Re: API for adding Flags
Reply Quote
WOW, that look excellent I cant wait !!!!

Thanks
Tony

   Report 
   09-27-2009, 1:45
AtliB is not online. Last active: 12/2/2009 3:28:03 AM AtliB

Top 10 Posts
Joined on 05-30-2006
Reykjavik / Iceland
Posts 382
Re: API for adding Flags
Reply Quote
It's out - so give it a try! :)



Check out TimeSnapper, the automatic screenshot journal at www.timesnapper.com

It runs in the background of your computer, taking screenshots of your desktop every few seconds all week long.

TimeSnapper lets you play back your week just like a movie. Use it to improve your work habits and become more productive.
   Report 
TimeSnapper For... » TimeSnapper » Suggestions » API for adding Flags

Powered by Community Server, by Telligent Systems