<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[aTimeLogger & TimeTrack Blog]]></title><description><![CDATA[aTimeLogger & TimeTrack Blog]]></description><link>http://blog.timetrack.io/</link><image><url>http://blog.timetrack.io/favicon.png</url><title>aTimeLogger &amp; TimeTrack Blog</title><link>http://blog.timetrack.io/</link></image><generator>Ghost 2.11</generator><lastBuildDate>Sun, 12 Apr 2026 13:39:25 GMT</lastBuildDate><atom:link href="http://blog.timetrack.io/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[Android Wear]]></title><description><![CDATA[<p>Android Wear is supported but installation it is a bit complex. Some time later I hope it will be easy installed from Play Store but due to some complexity it's not possible now. </p><p>First of all, it's supported only in <a href="https://atimelogger.pro">aTimeLogger Pro</a></p><p>To install it you need to know what</p>]]></description><link>http://blog.timetrack.io/android-wear/</link><guid isPermaLink="false">652934d075213906d12e497a</guid><dc:creator><![CDATA[Sergei Zaplitny]]></dc:creator><pubDate>Fri, 13 Oct 2023 16:47:31 GMT</pubDate><content:encoded><![CDATA[<p>Android Wear is supported but installation it is a bit complex. Some time later I hope it will be easy installed from Play Store but due to some complexity it's not possible now. </p><p>First of all, it's supported only in <a href="https://atimelogger.pro">aTimeLogger Pro</a></p><p>To install it you need to know what is <strong>adb </strong>. </p><ol><li>Download Android Wear apk <a href="https://atimelogger.pro/release/wear-production.apk">here</a></li><li>Connect watch to your laptop / desktop, find IP of your watch (you can find it in watch connection settings) and execute <code>adb connect YOUR_IP:5555</code>, for example <code>adb connect 192.168.1.122:5555</code></li><li>Now <code>adb install /path/to/file/wear-production.apk</code></li><li>If you have a warning that you have multiple devices connected you need 1) execute <code>adb devices</code><strong> </strong>2) add <code>-s YOUR_DEVICE_ID</code>, for example <code>adb -s 12345abcd install /path/to/file/app-production-release.apk</code></li></ol><p>After installation complete you can use watch app. It's very simple - it allows start/stop/pause/resume activities only. It has a limitation - it cannot be used independently from your phone. It means your phone should always be available (same network or bluetooth)</p>]]></content:encoded></item><item><title><![CDATA[Today Widget]]></title><description><![CDATA[<p><strong>Important! </strong>If widget does not work after application update - restart your device</p><p>One way to quickly record activities is to use an application widget. This allows you to record time without even unlocking your phone, saving you a lot of time and effort. Not having to spend a lot</p>]]></description><link>http://blog.timetrack.io/today-widget/</link><guid isPermaLink="false">61363d75c0753256fb814e32</guid><dc:creator><![CDATA[Sergei Zaplitny]]></dc:creator><pubDate>Mon, 06 Sep 2021 20:08:44 GMT</pubDate><content:encoded><![CDATA[<p><strong>Important! </strong>If widget does not work after application update - restart your device</p><p>One way to quickly record activities is to use an application widget. This allows you to record time without even unlocking your phone, saving you a lot of time and effort. Not having to spend a lot of time logging activities can also prevent you from abandoning the process altogether. Using an application widget can be a convenient and efficient way to keep track of your time and activities.</p><figure class="kg-card kg-image-card"><img src="http://blog.timetrack.io/content/images/2021/09/widget.jpg" class="kg-image"><figcaption>Today widget</figcaption></figure><p>This is old widget (so called Today extension) that was available before iOS 14. In iOS 14 new widgets were introduced and it's not obvious how to add old ones. To add it swipe to Today screen and press on "Edit" - this is usual place for adding widgets</p><figure class="kg-card kg-image-card"><img src="http://blog.timetrack.io/content/images/2021/09/widget-step1.jpg" class="kg-image"></figure><p>But instead of pressing "+" button in the top left corner press on "Customize" in the bottom</p><figure class="kg-card kg-image-card"><img src="http://blog.timetrack.io/content/images/2021/09/widget-step2.jpg" class="kg-image"></figure><p>You will see list of widgets that were available before iOS 14</p><figure class="kg-card kg-image-card"><img src="http://blog.timetrack.io/content/images/2021/09/widget-step3.png" class="kg-image"></figure><p>Just add it and then press "Done" button in the top right corner</p><p>Old widgets  have the advantage of being interactive. When you press on an area of the widget, it performs a specific action within the widget itself rather than opening the main app. </p><p>In contrast, iOS 14 widgets can only be opened by pressing on them, which will launch the main app. However, iOS 14 widgets have the advantage of being able to be placed on the desktop and being resizable to any size.</p>]]></content:encoded></item><item><title><![CDATA[REST API]]></title><description><![CDATA[<h2 id="model">Model</h2><p>It's important to understand object model that aTimeLogger (and TimeTrack in future) operates. </p><p><strong>Type</strong> is type of activity. It can be Work, Study, Sleep, etc. Type has the following fields: name, color, image, order. Types can be grouped. </p><p><strong>Group</strong> has the same fields as Type but it can contain</p>]]></description><link>http://blog.timetrack.io/rest-api/</link><guid isPermaLink="false">5c65b965c8c11b413f0f2fa9</guid><dc:creator><![CDATA[Sergei Zaplitny]]></dc:creator><pubDate>Thu, 14 Feb 2019 19:04:03 GMT</pubDate><content:encoded><![CDATA[<h2 id="model">Model</h2><p>It's important to understand object model that aTimeLogger (and TimeTrack in future) operates. </p><p><strong>Type</strong> is type of activity. It can be Work, Study, Sleep, etc. Type has the following fields: name, color, image, order. Types can be grouped. </p><p><strong>Group</strong> has the same fields as Type but it can contain other types or groups and it cannot be logged.</p><p><strong>Activity</strong> is something you are doing (or did). Activity has the following fields: type, state, start_date, intervals, comment. Tracked time is stored in intervals field. </p><p><strong>Interval</strong> has the following fields: activity, from, to.</p><p>Activities tab displays activities (that are in paused or running state) and types. History tab displays intervals. Types tab display Groups and Types.</p><p>When user presses on type on Activity tab activity is created with state=running and start_date=current date. If you press pause activity state is changed to paused and interval added. </p><h2 id="endpoint">Endpoint</h2><p>Authentication endpoint is https://app.atimelogger.com</p><p>API endpoint is https://app.atimelogger.com/api/v2</p><h2 id="authentication">Authentication</h2><p>Everything is simple here - just pass your username/password with every request. Base64 of username:password should be put into Authorization header with 'Basic ' used as prefix, e.g 'Basic dXNlcm5hbWU6cGFzc3dvcmQ='</p><h2 id="methods">Methods</h2><p><strong>GET /types</strong></p><p>Optional parameters: offset, limit. </p><p>Returns list of types</p><p><strong>GET /types/{type_guid}</strong></p><p>Returns type by guid.</p><p><strong>GET /activities</strong></p><p>Returns list of current activities. </p><p><strong>GET /intervals</strong></p><p>Optional parameters: offset, limit, from (time in seconds since 1970), to (time in seconds since 1970), types (type guids separated by comma)</p><p>Returns list of time intervals for selected period and types. </p><blockquote>Please note that groups are not supported in types param. If you pass them they will be simply ignored.</blockquote>]]></content:encoded></item><item><title><![CDATA[Android Notification Channels]]></title><description><![CDATA[<p>One of the biggest changes in Android 8 (Oreo) is a Notification Channels system. Notifications can be split into multiple channels and each channel can be set up by a user. Let's see how it works in aTimeLogger and TimeTrack</p><p>There are 3 notification channels: 1. running activity, 2. remind</p>]]></description><link>http://blog.timetrack.io/android-8-notifications/</link><guid isPermaLink="false">5c430216681ce4687ab7f538</guid><category><![CDATA[android]]></category><category><![CDATA[notifications]]></category><dc:creator><![CDATA[Sergei Zaplitny]]></dc:creator><pubDate>Sat, 19 Jan 2019 10:55:25 GMT</pubDate><media:content url="http://blog.timetrack.io/content/images/2019/01/notifications_list.png" medium="image"/><content:encoded><![CDATA[<img src="http://blog.timetrack.io/content/images/2019/01/notifications_list.png" alt="Android Notification Channels"><p>One of the biggest changes in Android 8 (Oreo) is a Notification Channels system. Notifications can be split into multiple channels and each channel can be set up by a user. Let's see how it works in aTimeLogger and TimeTrack</p><p>There are 3 notification channels: 1. running activity, 2. remind me and 3. goals.</p><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/notifications/notifications_list.png" class="kg-image" alt="Android Notification Channels"></figure><h6 id="running-activity">Running activity</h6><p>Running activity is a notification with timer that is shown when activities are running.</p><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/notifications/notifications_running.png" class="kg-image" alt="Android Notification Channels"></figure><p>Be careful with notification priority; if you set it to the highest value, then popover will be shown for 3 seconds each time you start the activity.</p><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/notifications/notifications_running_high_priority.png" class="kg-image" alt="Android Notification Channels"></figure><h6 id="remind-me">Remind Me</h6><p>It's self-explanatory. Utilize notification settings for remind functionality.</p><h6 id="goals">Goals</h6><p>This is the most interesting notification channels.<br>Goal notification is a notification that is shown when a goal is reached. In the screenshot below there is a separate group for goal notifications. You can create a separate notification for each goal (Note: this is a premium feature).</p><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/notifications/notifications_edit_goal_popup.png" class="kg-image" alt="Android Notification Channels"></figure><p><strong>2.</strong> To add a new channel, press on "Edit" and you will see a list of goal notification channels.</p><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/notifications/notifications_channels_1.png" class="kg-image" alt="Android Notification Channels"></figure><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/notifications/notificatinos_goal_setup.png" class="kg-image" alt="Android Notification Channels"></figure><p><strong>4.</strong> After the channel setup, go back to the Edit Goal screen and set the channel for goal.</p><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/notifications/notifications_edit_goal2.png" class="kg-image" alt="Android Notification Channels"></figure><p>If you want to remove channels in the future - navigate to the channels list from "Edit goal" screen, press on channel you want to delete and then press on "Remove" in the popup.</p>]]></content:encoded></item><item><title><![CDATA[Siri 捷径]]></title><description><![CDATA[IOS 12 出现了一个新的特征——“Siri捷径”，它允许任意APP使用Siri。自从Siri出现以来，我就一直在期待这一类的特征。而现在，我很高兴终于在aTimelogger和TimeTrack两款App中引入了Siri捷径。现在可以实现以下的操作：
开始活动
停止活动
暂停活动
继续活动
以下的使用规则在aTimeLogger和TimeTrack中通用]]></description><link>http://blog.timetrack.io/siri-jie-jing/</link><guid isPermaLink="false">5c430200681ce4687ab7f535</guid><category><![CDATA[siri]]></category><category><![CDATA[ios]]></category><dc:creator><![CDATA[Sergei Zaplitny]]></dc:creator><pubDate>Sat, 19 Jan 2019 10:55:04 GMT</pubDate><media:content url="http://blog.timetrack.io/content/images/2019/01/siri_success_compressed_cn.png" medium="image"/><content:encoded><![CDATA[<img src="http://blog.timetrack.io/content/images/2019/01/siri_success_compressed_cn.png" alt="Siri 捷径"><p>IOS 12 出现了一个新的特征——“Siri捷径”，它允许任意APP使用Siri。自从Siri出现以来，我就一直在期待这一类的特征。而现在，我很高兴终于在aTimelogger和TimeTrack两款App中引入了Siri捷径。<br>现在可以实现以下的操作：</p><ul><li>开始活动</li><li>停止活动</li><li>暂停活动</li><li>继续活动</li></ul><p>以下的使用规则在aTimeLogger和TimeTrack中通用</p><h6 id="-">第一步</h6><ol><li>打开App并开始活动（如发展）</li><li>暂停活动</li><li>停止活动</li></ol><h6 id="--1">第二步</h6><p>在上面第一步的操作后，以下的捷径就会出现在设置/Siri与搜索里：</p><ul><li>开始发展</li><li>停止活动</li><li>暂停活动</li><li>继续发展</li></ul><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/siri/siri_list_compressed_cn.png" class="kg-image" alt="Siri 捷径"></figure><h6 id="--2">第三步</h6><p>到这步还没结束，我们还需要为每一个Siri捷径设定一个短语，短语可以与捷径的名称不相同。例如，你可以设置“我要去睡觉了”作为“开始睡觉”的自定义短语。这样，当你说出“我要去睡觉了”时，Siri就会开始睡觉这一活动的计时。</p><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/siri/siri_setup_compressed_cn.png" class="kg-image" alt="Siri 捷径"></figure><h6 id="--3">第四步</h6><p>完成上面的设置，Siri捷径现在就可以使用了。一旦Siri识别出你的自定义短语，Siri就会运行相应的指令并且显示运行结果。</p><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/siri/siri_success_compressed_cn.png" class="kg-image" alt="Siri 捷径"></figure><h6 id="--4">限制</h6><p>Siri不能将未经设定的信息传递给app，这也是为什么：</p><ul><li>不能保存评论</li><li>要开始或继续某个类别的活动，你必须为每个活动单独创建“开始”和“继续”的捷径</li></ul>]]></content:encoded></item><item><title><![CDATA[Siri Shortcuts]]></title><description><![CDATA[<p>iOS 12 presented a new feature called Siri Shortcuts. It allows using Siri in any application. I've been waiting for this kind of feature since Siri first appeared and now I am pleased to introduce Siri Shortcuts in the apps (both aTimeLogger and TimeTrack)</p><p>The following operations are possible now</p>]]></description><link>http://blog.timetrack.io/siri-shortcuts/</link><guid isPermaLink="false">5c4301ea681ce4687ab7f532</guid><dc:creator><![CDATA[Sergei Zaplitny]]></dc:creator><pubDate>Sat, 19 Jan 2019 10:54:41 GMT</pubDate><media:content url="http://blog.timetrack.io/content/images/2019/01/siri_success_compressed.png" medium="image"/><content:encoded><![CDATA[<img src="http://blog.timetrack.io/content/images/2019/01/siri_success_compressed.png" alt="Siri Shortcuts"><p>iOS 12 presented a new feature called Siri Shortcuts. It allows using Siri in any application. I've been waiting for this kind of feature since Siri first appeared and now I am pleased to introduce Siri Shortcuts in the apps (both aTimeLogger and TimeTrack)</p><p>The following operations are possible now</p><ul><li>start activity</li><li>stop running activity</li><li>pause running activity</li><li>resume activity</li></ul><p>The rules below apply both to aTimeLogger and TimeTrack</p><h6 id="step-1">Step 1</h6><ol><li>Open the app and start activity (e.g Development)</li><li>Pause the activity</li><li>Resume the activity</li><li>Stop the activity</li></ol><h6 id="step-2">Step 2</h6><p>After performing the actions specified above in Step 1, the following shortcuts will appear in Settings / Siri &amp; Search:</p><ul><li>Start Development</li><li>Stop activity</li><li>Pause activity</li><li>Resume Development</li></ul><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/siri/siri_list_compressed.png" class="kg-image" alt="Siri Shortcuts"></figure><h6 id="step-3">Step 3</h6><p>We’re not done yet. We need to assign a phrase for each Siri shortcut. It is unnecessary to use the same phrase as the name of the shortcut. For example, you can say "I'm going to bed" for the "Start Sleep" shortcut and Siri will start Sleep activity when you say this phrase.</p><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/siri/siri_setup_compressed.png" class="kg-image" alt="Siri Shortcuts"></figure><h6 id="step-4">Step 4</h6><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/siri/siri_success_compressed.png" class="kg-image" alt="Siri Shortcuts"></figure><h6 id="limitations">Limitations</h6><p>Siri does not pass dynamic information to an app. That's why:</p><ul><li>comments cannot be saved</li><li>you have to create a separate "Start" or "Resume" shortcut for each activity type you are going to start or resume</li></ul>]]></content:encoded></item><item><title><![CDATA[User defined fields]]></title><description><![CDATA[<p>In TimeTrack 1.6, a new feature has been introduced - "Custom fields" (or just "Fields").</p><p>Logged activities contain start and finish times, tags/comment (optionally). Sometimes your records may need to include other important information. Examples are 'Money spent' on Shopping or 'Hourly rate' for Freelance/Consulting. The new</p>]]></description><link>http://blog.timetrack.io/user-defined-fields/</link><guid isPermaLink="false">5c4301cd681ce4687ab7f52f</guid><dc:creator><![CDATA[Sergei Zaplitny]]></dc:creator><pubDate>Sat, 19 Jan 2019 10:54:12 GMT</pubDate><media:content url="http://blog.timetrack.io/content/images/2019/01/field_details.png" medium="image"/><content:encoded><![CDATA[<img src="http://blog.timetrack.io/content/images/2019/01/field_details.png" alt="User defined fields"><p>In TimeTrack 1.6, a new feature has been introduced - "Custom fields" (or just "Fields").</p><p>Logged activities contain start and finish times, tags/comment (optionally). Sometimes your records may need to include other important information. Examples are 'Money spent' on Shopping or 'Hourly rate' for Freelance/Consulting. The new 'Custom Fields' feature allows the user to record additional information and then build reports utilizing this additional information.</p><p>To use the feature, the user needs to create actual custom fields. Go to the Fields screen on More tab and press on "+" in the top right to see the "Edit Field" screen.</p><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/fields/fields.png" class="kg-image" alt="User defined fields"></figure><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/fields/edit_field.png" class="kg-image" alt="User defined fields"></figure><p>There are 2 types of fields: per duration and per record.</p><p>Example of "per duration" field is "Hourly rate". If you are a freelancer and your hourly rate is $20/hour for your services, then you can calculate your earnings and send a report to a customer. Another example is productivity score - you can calculate how productive you are.</p><p>An example of the "per record" field is "Money spent". Say, you went shopping and spent $30, then you went home by taxi and paid $10. In total, you spent $40. Other examples: amount of water you drunk, gym achievements such as your pull-up count.</p><p>Fields are usually valid for the limited amount of types. After selecting the types you can enter the default values for each of them. If, for example, you usually pay $8 on Transport, enter 8 for Transport type</p><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/fields/edit_field.png" class="kg-image" alt="User defined fields"></figure><p>Now, touch 'Save' in the top right. A new row now appears on "Edit activity" screen</p><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/fields/edit_activity.png" class="kg-image" alt="User defined fields"></figure><p>You can enter the value for 'Money spent' in the screen above or the default value is used</p><h6 id="reports">Reports</h6><p>To build a report for a custom field, go to Reports, switch to Field, then select field, date range and types.</p><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/fields/field_report.png" class="kg-image" alt="User defined fields"></figure><p>After pressing on "Create", you can see Total, Pie and Daily statistics.</p><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/fields/field_report_pie.png" class="kg-image" alt="User defined fields"></figure><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/fields/field_report_daily.png" class="kg-image" alt="User defined fields"></figure><p>The report can also be exported to a CSV file.</p><p>You can also view field statistics quickly on the "Field details" screen that is shown if you press on field in the Fields screen</p><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/fields/field_details.png" class="kg-image" alt="User defined fields"></figure>]]></content:encoded></item><item><title><![CDATA[TimeTrack and Pomodoro]]></title><description><![CDATA[<p>Super productive people strive to make the most out of every single minute. However, concentrating all day is not always possible. Numerous tips on how to stay productive aren’t always helpful. Still there are ways to trick the brain with special techniques that help in training concentration. Pomodoro is</p>]]></description><link>http://blog.timetrack.io/timetrack-and-pomodoro/</link><guid isPermaLink="false">5c4301b2681ce4687ab7f52c</guid><dc:creator><![CDATA[Sergei Zaplitny]]></dc:creator><pubDate>Sat, 19 Jan 2019 10:53:49 GMT</pubDate><media:content url="http://blog.timetrack.io/content/images/2019/01/break_alert.png" medium="image"/><content:encoded><![CDATA[<img src="http://blog.timetrack.io/content/images/2019/01/break_alert.png" alt="TimeTrack and Pomodoro"><p>Super productive people strive to make the most out of every single minute. However, concentrating all day is not always possible. Numerous tips on how to stay productive aren’t always helpful. Still there are ways to trick the brain with special techniques that help in training concentration. Pomodoro is one of them. We’ve already told you about its technique <a href="https://medium.com/@timetrackio/how-to-hack-the-brain-with-pomodoro-5a7ac34bbdca">here</a>. Now it’s time to learn how to use it on TimeTrack app.</p><h4 id="a-quick-setup">A Quick Setup</h4><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/pomodoro/pomodoro_main_settings.png" class="kg-image" alt="TimeTrack and Pomodoro"></figure><h4 id="pomodoro-in-action">Pomodoro in Action</h4><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/pomodoro/alert1.png" class="kg-image" alt="TimeTrack and Pomodoro"></figure><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/pomodoro/pomodoro_main.png" class="kg-image" alt="TimeTrack and Pomodoro"></figure><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/pomodoro/break_alert.png" class="kg-image" alt="TimeTrack and Pomodoro"></figure><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/pomodoro/pomodoro_alert.png" class="kg-image" alt="TimeTrack and Pomodoro"></figure><p><br>After 4 Pomodoro cycles (set by default) start a long break (20 minutes by default). Configure the number of breaks and their duration according to your preferences in Settings.</p><p>The Reset Button stops the current Pomodoro and starts a new timer from scratch. Use it if you were suddenly interrupted (e.g. by a colleague or phone call).</p><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/pomodoro/quit_alert.png" class="kg-image" alt="TimeTrack and Pomodoro"></figure><p>Note that quitting Pomodoro mode doesn’t stop current Pomodoro or Break activity. Stop it by yourself if needed.</p><p>Adjust any of the Pomodoro parameters to your preference in Settings: enable/disable Pomodoro, short and long break duration, number of cycles before a long break, select preferable notification and tick sounds.</p><h4 id="statistics">Statistics</h4><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/pomodoro/statistics.png" class="kg-image" alt="TimeTrack and Pomodoro"></figure><p><br>Select the period (a day, week or month) to display Completed, Uncompleted and Total number of Pomodoros within the selected time. Check also</p><ul><li>Average completed a day - the average number of completed Pomodoros within the selected period when Pomodoro was used at least once;</li><li>Average completed duration indicating the average duration of the completed Pomodoros;</li><li>Average break duration.</li></ul><p>Daily chart stats display a green number for the completed Pomodoros and a grey number for uncompleted Pomodoros.<br>The plain green line is your daily Pomodoros goal. Green bars reaching the line indicate how close you are toward reaching your daily Pomodoro goals.</p><p>The secret to retaining the highest level of productivity over the span of a work day is not working longer, but working smarter with frequent breaks. Use Pomodoro in TimeTrack app and stay efficient!</p>]]></content:encoded></item><item><title><![CDATA[Version 1.4 Features and Improvements]]></title><description><![CDATA[<p>We are pleased to introduce our newest version of the best time tracking app in the App Store.<br>There are a lot of new features which we believe you will really like.</p><h3 id="features">Features</h3><h6 id="tag-on-start-premium-">Tag on start (premium)</h6><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14/tag_on_start_setting.png" class="kg-image" alt="settings"></figure><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14/tag_on_start_activities.png" class="kg-image" alt="activities tab"></figure><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14/tag_on_start_today.png" class="kg-image" alt="today extension"></figure><h6 id="type-tags-premium-">Type tags (premium)</h6><p>Now types can also be tagged. A tagged type means</p>]]></description><link>http://blog.timetrack.io/version-1-4-features-and-improvements/</link><guid isPermaLink="false">5c43019b681ce4687ab7f529</guid><dc:creator><![CDATA[Sergei Zaplitny]]></dc:creator><pubDate>Sat, 19 Jan 2019 10:53:23 GMT</pubDate><media:content url="http://blog.timetrack.io/content/images/2019/01/tag_on_start_activities.png" medium="image"/><content:encoded><![CDATA[<img src="http://blog.timetrack.io/content/images/2019/01/tag_on_start_activities.png" alt="Version 1.4 Features and Improvements"><p>We are pleased to introduce our newest version of the best time tracking app in the App Store.<br>There are a lot of new features which we believe you will really like.</p><h3 id="features">Features</h3><h6 id="tag-on-start-premium-">Tag on start (premium)</h6><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14/tag_on_start_setting.png" class="kg-image" alt="Version 1.4 Features and Improvements"></figure><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14/tag_on_start_activities.png" class="kg-image" alt="Version 1.4 Features and Improvements"></figure><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14/tag_on_start_today.png" class="kg-image" alt="Version 1.4 Features and Improvements"></figure><h6 id="type-tags-premium-">Type tags (premium)</h6><p>Now types can also be tagged. A tagged type means that all logs for this type will have type tags. For example, you can tag "useful" and "useless" activities and then see stats for them.</p><h6 id="weekdays-for-daily-goals">Weekdays for daily goals</h6><p>You can now select weekdays for daily goals. An example is "daily work" goal - you can now exclude "Saturday" and "Sunday".</p><h6 id="day-start">Day start</h6><p>If you finish work or study after midnight, this feature is for you. Statistics will count for <strong>your</strong> day. Go to Settings, scroll down and change the "Day start" value.</p><h6 id="colored-icons-premium-">Colored icons (premium)</h6><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14/coloured_icons.png" class="kg-image" alt="Version 1.4 Features and Improvements"></figure><h6 id="year-goals">Year goals</h6><p>Want to set a goal for the whole year? Now you can!</p><h3 id="improvements">Improvements</h3><h6 id="default-type-and-duration">Default type and duration</h6><p>If you often enter the same time log manually, this small improvement will save your time. You can now set Default type and duration in Settings.</p><h6 id="activity-comments-can-be-imported-to-calendar">Activity comments can be imported to calendar</h6><p>When a logged activity is automatically saved to calendar, it is saved with a title equal to the name of the activity type. Now it is possible to save a comment instead. Check "Save comment to calendar" in calendar settings.</p><h6 id="enable-disable-groups-on-activities">Enable/disable groups on activities</h6><p>In some cases, users need groups only for structured statistics. In the activities tab or in the widget, these users want to see a plain list of types without groups. That is the purpose of this setting.</p><h6 id="set-icons-per-row-on-activities-tab-and-on-widget-premium-">Set icons per row on activities tab and on widget (premium)</h6><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14/icons_per_row3.png" class="kg-image" alt="Version 1.4 Features and Improvements"></figure><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14/icons_per_row6.png" class="kg-image" alt="Version 1.4 Features and Improvements"></figure><h6 id="include-groups-as-separate-column-in-csv-reports">Include groups as separate column in CSV reports</h6><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14/group_type_same_column.png" class="kg-image" alt="Version 1.4 Features and Improvements"></figure><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14/group_type_separate_column.png" class="kg-image" alt="Version 1.4 Features and Improvements"></figure>]]></content:encoded></item><item><title><![CDATA[版本1.4的功能和改进]]></title><description><![CDATA[<p>我们很高兴在App Store中推出最新版本的“最佳时间跟踪应用——Timetrack.io”。<br>这次将有很多新功能，我们相信你会很喜欢。</p><h3 id="-">特征</h3><h6 id="--1">快速选择标签（会员功能）</h6><p>如果您需要经常输入标签，这个新功能很适合您。不用每次打开“编辑活动”页面，您可以在活动开始后快速选择标签。</p><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14_cn/tag_on_start_setting.png" class="kg-image" alt="settings"></figure><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14_cn/tag_on_start_activities.png" class="kg-image" alt="activities tab"></figure><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14_cn/tag_on_start_today.png" class="kg-image" alt="today extension"></figure><h6 id="--2">标签类型（会员功能）</h6><p>现在标签类型也可以被标记。标记的类型意味着此类型的所有日志都将具有类型标签。例如，您可以标记“有用”和“无用”活动，然后查看他们的统计信息。</p><h6 id="--3">工作日每日目标</h6><p>您现在可以选择工作日每日目标。一个例子是“日常工作”的目标 - 你现在可以排除“星期六”和“星期日”。</p><h6 id="--4">一天的开始时间</h6><p>如果你经常午夜完成工作或学习，这个功能就是为你而设。设置好每日开始的时间，你的一天将从那里开始。打开设置，滑动到最底部，就可以设置“每天开始时间”了。</p><h6 id="--5">彩色图标（会员功能）</h6><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14_cn/coloured_icons.png" class="kg-image" alt="new icons"></figure><h6 id="--6">年度目标</h6>]]></description><link>http://blog.timetrack.io/ban-ben-1-4de-gong-neng-he-gai-jin/</link><guid isPermaLink="false">5c430186681ce4687ab7f526</guid><dc:creator><![CDATA[Sergei Zaplitny]]></dc:creator><pubDate>Sat, 19 Jan 2019 10:53:03 GMT</pubDate><media:content url="http://blog.timetrack.io/content/images/2019/01/tag_on_start_activities-1.png" medium="image"/><content:encoded><![CDATA[<img src="http://blog.timetrack.io/content/images/2019/01/tag_on_start_activities-1.png" alt="版本1.4的功能和改进"><p>我们很高兴在App Store中推出最新版本的“最佳时间跟踪应用——Timetrack.io”。<br>这次将有很多新功能，我们相信你会很喜欢。</p><h3 id="-">特征</h3><h6 id="--1">快速选择标签（会员功能）</h6><p>如果您需要经常输入标签，这个新功能很适合您。不用每次打开“编辑活动”页面，您可以在活动开始后快速选择标签。</p><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14_cn/tag_on_start_setting.png" class="kg-image" alt="版本1.4的功能和改进"></figure><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14_cn/tag_on_start_activities.png" class="kg-image" alt="版本1.4的功能和改进"></figure><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14_cn/tag_on_start_today.png" class="kg-image" alt="版本1.4的功能和改进"></figure><h6 id="--2">标签类型（会员功能）</h6><p>现在标签类型也可以被标记。标记的类型意味着此类型的所有日志都将具有类型标签。例如，您可以标记“有用”和“无用”活动，然后查看他们的统计信息。</p><h6 id="--3">工作日每日目标</h6><p>您现在可以选择工作日每日目标。一个例子是“日常工作”的目标 - 你现在可以排除“星期六”和“星期日”。</p><h6 id="--4">一天的开始时间</h6><p>如果你经常午夜完成工作或学习，这个功能就是为你而设。设置好每日开始的时间，你的一天将从那里开始。打开设置，滑动到最底部，就可以设置“每天开始时间”了。</p><h6 id="--5">彩色图标（会员功能）</h6><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14_cn/coloured_icons.png" class="kg-image" alt="版本1.4的功能和改进"></figure><h6 id="--6">年度目标</h6><p>想要全年设定一个目标？现在就可以！</p><h3 id="--7">改进</h3><h6 id="--8">默认类型和持续时间</h6><p>如果您经常手动输入相同的日志，这种小小的改进将节省您的时间。您现在可以在设置中设置默认类型和持续时间。</p><h6 id="--9">活动注释可以导入日历</h6><p>当记录的活动被自动保存到日历时，活动类型将成为日历标题。现在还可以保存一个注释。在日历设置中，选择日历，开启“将活动同步到日历”后，就可以用看到“在日历中保存备注”</p><h6 id="--10">启用/禁用活动组</h6><p>在某些情况下，活动类型分组只是为了看到统计信息，而在活动选项卡或窗口小部件中，这些用户希望看到没有组的简单列表。这就是这个设置的目的。</p><h6 id="--11">在活动标签和小部件（会员功能）上设置每行图标</h6><p>你可以自由的选择屏幕每行显示的活动数量，看看下面两个设置：</p><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14_cn/icons_per_row3.png" class="kg-image" alt="版本1.4的功能和改进"></figure><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14_cn/icons_per_row6.png" class="kg-image" alt="版本1.4的功能和改进"></figure><h6 id="-csv-">在CSV报告中将组作为单独的列</h6><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14/group_type_same_column.png" class="kg-image" alt="版本1.4的功能和改进"></figure><figure class="kg-card kg-image-card"><img src="https://s3.amazonaws.com/www.atimelogger.com/img/release14/group_type_separate_column.png" class="kg-image" alt="版本1.4的功能和改进"></figure>]]></content:encoded></item><item><title><![CDATA[Calendar integration]]></title><description><![CDATA[<p>Please note that this is the first version of calendar integration. If you have some ideas or if you find bugs, please share them in Comments or send by email to <a>support@timetrack.io</a></p><p>Finally, calendar integration features are available since version 1.3.</p><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/calendar/calendar_settings.png" class="kg-image" alt="Calendar Settings"></figure><p>It's useful for the following use</p>]]></description><link>http://blog.timetrack.io/calendar-integration/</link><guid isPermaLink="false">5c43013d681ce4687ab7f523</guid><dc:creator><![CDATA[Sergei Zaplitny]]></dc:creator><pubDate>Sat, 19 Jan 2019 10:51:49 GMT</pubDate><media:content url="http://blog.timetrack.io/content/images/2019/01/calendar_notification.png" medium="image"/><content:encoded><![CDATA[<img src="http://blog.timetrack.io/content/images/2019/01/calendar_notification.png" alt="Calendar integration"><p>Please note that this is the first version of calendar integration. If you have some ideas or if you find bugs, please share them in Comments or send by email to <a>support@timetrack.io</a></p><p>Finally, calendar integration features are available since version 1.3.</p><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/calendar/calendar_settings.png" class="kg-image" alt="Calendar integration"></figure><p>It's useful for the following use cases</p><h6 id="save-logged-time-to-calendar">Save logged time to calendar</h6><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/calendar/calendar_export.png" class="kg-image" alt="Calendar integration"></figure><p><br>These are the Types that will be posted to Calendar automatically. For example; if you add "Sport", then, after pausing or stopping "Sport", will automatically post the logged time record(s) to "My day" calendar.</p><h6 id="schedule-time-with-timetrack-io">Schedule time with timetrack.io</h6><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/calendar/calendar_events.png" class="kg-image" alt="Calendar integration"></figure><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/calendar/calendar_event.png" class="kg-image" alt="Calendar integration"></figure><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/calendar/calendar_notification.png" class="kg-image" alt="Calendar integration"></figure>]]></content:encoded></item><item><title><![CDATA[日历功能]]></title><description><![CDATA[最后，日历集成功能从1.3版本开始启用。]]></description><link>http://blog.timetrack.io/ri-li-gong-neng/</link><guid isPermaLink="false">5c430126681ce4687ab7f520</guid><category><![CDATA[calendar]]></category><category><![CDATA[ios]]></category><category><![CDATA[android]]></category><dc:creator><![CDATA[Sergei Zaplitny]]></dc:creator><pubDate>Sat, 19 Jan 2019 10:51:25 GMT</pubDate><media:content url="http://blog.timetrack.io/content/images/2019/01/calendar_event.png" medium="image"/><content:encoded><![CDATA[<img src="http://blog.timetrack.io/content/images/2019/01/calendar_event.png" alt="日历功能"><p>This is Chinese version of the article. Thanks a lot to Han for translation</p><p>请注意，这是日历集成功能发布的第一个版本。如果你有某些想法，或者发现了一些Bugs，请在评论中告诉我，或者发邮件至support@timetrack.io</p><p>最后，日历集成功能从1.3版本开始启用。</p><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/calendar/calendar_settings.png" class="kg-image" alt="日历功能"></figure><p>日历集成功能对以下情况非常有用：</p><h6 id="-">想将记录的时间保存在日历中</h6><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/calendar/calendar_export.png" class="kg-image" alt="日历功能"></figure><p><br>你选择的这些活动将自动发布到日历中。例如：你添加了“运动”，在暂停或停止“运动”后，这项记录将自动发布到“我的每一天”的日历中去。</p><h6 id="-timetrack-io-">使用timetrack.io安排日程</h6><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/calendar/calendar_events.png" class="kg-image" alt="日历功能"></figure><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/calendar/calendar_event.png" class="kg-image" alt="日历功能"></figure><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/calendar/calendar_notification.png" class="kg-image" alt="日历功能"></figure>]]></content:encoded></item><item><title><![CDATA[1.3版本的功能及改进介绍]]></title><description><![CDATA[自上一个版本发布之后，已有一段时间了。这次我们带来了最新的1.3版本，在1.3版本中，我们加入了新的功能，下面我将简单的介绍，希望你们喜欢这些新功能。]]></description><link>http://blog.timetrack.io/1-3ban-ben-de-gong-neng-ji-gai-jin-jie-shao/</link><guid isPermaLink="false">5c4300fd681ce4687ab7f51d</guid><dc:creator><![CDATA[Sergei Zaplitny]]></dc:creator><pubDate>Sat, 19 Jan 2019 10:50:47 GMT</pubDate><media:content url="http://blog.timetrack.io/content/images/2019/01/tag_report.png" medium="image"/><content:encoded><![CDATA[<img src="http://blog.timetrack.io/content/images/2019/01/tag_report.png" alt="1.3版本的功能及改进介绍"><p>English version of the article is available at <a href="http://blog.timetrack.io/version-1-3-features-and-improvements/">http://blog.timetrack.io/version-1-3-features-and-improvements/</a></p><p>自上一个版本发布之后，已有一段时间了。这次我们带来了最新的1.3版本，在1.3版本中，我们加入了新的功能，下面我将简单的介绍，希望你们喜欢这些新功能。</p><h6 id="-">日历功能</h6><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/calendar/calendar_events.png" class="kg-image" alt="1.3版本的功能及改进介绍"></figure><h6 id="--1">标签统计功能（付费用户功能）</h6><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/v13/tag_report.png" class="kg-image" alt="1.3版本的功能及改进介绍"></figure><h6 id="--2">标签选择的优化</h6><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/v13/tag_select.png" class="kg-image" alt="1.3版本的功能及改进介绍"></figure><h6 id="-url-">调用URl方案（付费用户功能）</h6><p>随着苹果的开放，越来越多的应用开始支持调用“URL方案”。使用URL，你可以启动另一个应该程序，并将参数传递给该应该程序。该程序也会根据参数执行一些操作。例如你调用了 twitter://post?message = timetrack.io，则会显示推特的发推界面（当然，前提是你安装了推特）。timetrack.io现在可以在开始／停止／暂停活动时调用这些URL。要使用这项功能，你需要在“设置”中启用该功能（目前，它在设置的最下面）。</p><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/v13/url_settings.png" class="kg-image" alt="1.3版本的功能及改进介绍"></figure><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/v13/url_edit.png" class="kg-image" alt="1.3版本的功能及改进介绍"></figure><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/v13/twitter.png" class="kg-image" alt="1.3版本的功能及改进介绍"></figure><h6 id="--3">饼状图的优化</h6><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/v13/pie.png" class="kg-image" alt="1.3版本的功能及改进介绍"></figure><h6 id="--4">新增语言</h6><p>现在已经有5种语言了：英语，俄语，简体中文，繁体中文和西班牙语。在此之前，Timetrack.io 只能使用系统默认语言。但是在1.3版本中，你可以根据你的需要设置Timetrack.io的语言了，它可以和系统语言一样，也可以和系统语言不一样，完全根据你的需求。</p><h6 id="--5">手表应用性能提升和错误修复</h6><p>现在，Apple Watch应用程序更稳定，更高效，也更快速。</p>]]></content:encoded></item><item><title><![CDATA[Version 1.3 features and improvements]]></title><description><![CDATA[It’s been a while since the last major release version. We hope you'll like the new features introduced in this latest version 1.3.
It includes calendar integration, tag statistics and selection improvements, URL schemes for start/stop/pause and some others
]]></description><link>http://blog.timetrack.io/version-1-3-features-and-improvements/</link><guid isPermaLink="false">5c4300e2681ce4687ab7f51a</guid><category><![CDATA[calendar]]></category><category><![CDATA[tag]]></category><dc:creator><![CDATA[Sergei Zaplitny]]></dc:creator><pubDate>Sat, 19 Jan 2019 10:50:20 GMT</pubDate><media:content url="http://blog.timetrack.io/content/images/2019/01/pie.png" medium="image"/><content:encoded><![CDATA[<img src="http://blog.timetrack.io/content/images/2019/01/pie.png" alt="Version 1.3 features and improvements"><p>Chinese version of the article is available <a href="http://blog.timetrack.io/1-3ban-ben-de-gong-neng-ji-gai-jin-jie-shao/">here</a></p><p>It’s been a while since the last major release version. We hope you'll like the new features introduced in this latest version 1.3.</p><h6 id="calendar-integration">Calendar integration</h6><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/calendar/calendar_events.png" class="kg-image" alt="Version 1.3 features and improvements"></figure><h6 id="tag-statistics-">Tag statistics*</h6><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/v13/tag_report.png" class="kg-image" alt="Version 1.3 features and improvements"></figure><h6 id="tag-select-improvements">Tag select improvements</h6><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/v13/tag_select.png" class="kg-image" alt="Version 1.3 features and improvements"></figure><h6 id="url-scheme-calls-on-start-stop-pause-">URL scheme calls on start/stop/pause*</h6><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/v13/url_settings.png" class="kg-image" alt="Version 1.3 features and improvements"></figure><p>After this option is enabled, you can add URL calls for any Activity Type.</p><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/v13/url_edit.png" class="kg-image" alt="Version 1.3 features and improvements"></figure><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/v13/twitter.png" class="kg-image" alt="Version 1.3 features and improvements"></figure><h6 id="pie-chart-improvements">Pie chart improvements</h6><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/v13/pie.png" class="kg-image" alt="Version 1.3 features and improvements"></figure><h6 id="language-select">Language select</h6><p>There are 5 localizations: English, Russian, Simplified Chinese, Traditional Chinese and Spanish. Prior to version 1.3, timetrack.io utilized the language selected in your device’s Settings. Now, with version 1.3, your device’s language selected in Settings and the timetrack.io language of operation within the app can be different.</p><h6 id="watch-performance-and-bug-fixes">Watch performance and bug fixes</h6><p>The watch app is now more stable, more efficient and faster.</p>]]></content:encoded></item><item><title><![CDATA[TimeTrack.io 的7个小技巧]]></title><description><![CDATA[如果你经常忘记停止活动，这个小技巧将会很有用。通常，“编辑时间默认区域”是“开始时间”。这样在编辑的时候，你需要选择“结束时间”，然后更改时间，再点“保存”。如果将默认编辑改为“结束时间”，那么，你只需要更改时间，点击“保持”。这样会更快捷。]]></description><link>http://blog.timetrack.io/timetrack-io-de-7ge-xiao-ji-qiao/</link><guid isPermaLink="false">5c4300c9681ce4687ab7f517</guid><category><![CDATA[ios]]></category><dc:creator><![CDATA[Sergei Zaplitny]]></dc:creator><pubDate>Sat, 19 Jan 2019 10:49:55 GMT</pubDate><media:content url="http://blog.timetrack.io/content/images/2019/01/show_intersections_cn.png" medium="image"/><content:encoded><![CDATA[<img src="http://blog.timetrack.io/content/images/2019/01/show_intersections_cn.png" alt="TimeTrack.io 的7个小技巧"><p>This is Chinese version of <a href="http://blog.timetrack.io/7-useful-timetrack-io-tips/">the article</a>. Thanks a lot to Han for translation</p><h5 id="1-">1. 设置默认编辑字段</h5><p>如果你经常忘记停止活动，这个小技巧将会很有用。通常，“编辑时间默认区域”是“开始时间”。这样在编辑的时候，你需要选择“结束时间”，然后更改时间，再点“保存”。<br>如果将默认编辑改为“结束时间”，那么，你只需要更改时间，点击“保持”。这样会更快捷。</p><h5 id="2-">2. 最小活动持续时间</h5><p>有时候，我们会点错活动（例如，手误误点了一个活动）。如果不想将误点的活动记入“活动列表”，可以通过设置“最小活动持续时间”。在未达到“最小活动时间”的情况下，活动则不会记录。</p><h5 id="3-">3. 新活动的“开始时间”默认为上一个活动的“结束时间”</h5><p>如果新活动的“开始时间”为上一个活动的“结束时间”，无需按新活动图标，只需要点击“活动”页右上角“+”按钮，就会出现一个编辑页面。其“开始时间”默认为上一个活动“结束时间”。<br>在历史记录页面中也有一个类似的操作。如果按右上角“+”也会出现一个编辑页面。该时间的“开始时间”为选定范围内前一个活动的“结束时间”。接着，你只需要“选择类别”来确定新活动，调整结束时间，然后保存就可以了。<br>例如：今天是2016年12月10日。你查看2016年11月的时间记录：最后一条记录为“工作”：11月20日，上午10点-下午7点。如果你点击右上角的“+”，新活动将会有一个新的时间间隔，这个活动的“开始时间”和“结束时间”都是11月20日下午7点。</p><h5 id="4-2-">4. 在2个活动中间插入新活动（付费用户功能）</h5><p>假设你有两个活动：步行（上午10:00 - 上午10:15），步行（上午10:30 - 上午10:50）。你想在中间插入一个新活动：购物（上午10:15至上午10:30）。有快捷方式可以帮助你。在历史记录页面中选择“步行（上午10:30 - 10:50）”活动，向左滑动，会出现3个按钮，第一个按钮便是“插入”。点击，则会出现“新活动”页面。“新活动”的“开始时间”默认为“上午10:15”，结束时间默认为“下午10:30”。你只需要选择活动类型为“购物”，然后保存即可完成记录。</p><h5 id="5-">5. 快速编辑活动</h5><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/tricks7/quick_edit.png" class="kg-image" alt="TimeTrack.io 的7个小技巧"></figure><h5 id="6-">6. 时间交叉问题（付费用户功能）</h5><figure class="kg-card kg-image-card"><img src="http://atimelogger.com/img/tricks7/show_intersections_cn.png" class="kg-image" alt="TimeTrack.io 的7个小技巧"></figure><h5 id="7-">7. 快速返回当前日／周／月</h5><p>如果您喜欢经常查看历史，有一个隐藏，但是非常有用的小技巧。再次点击范围类型（日／周／月），能快速返回当前日／周／月。</p>]]></content:encoded></item></channel></rss>