super-productivity/app-src/scripts/settings/misc-settings/misc-settings-d.html
2018-03-30 18:09:55 +02:00

85 lines
3.5 KiB
HTML

<help-section>
<div class="md-caption">Auto-start next task on done</div>
<p>Decide if you want to automatically start the next task, once you mark a task as done.</p>
<div class="md-caption">Use short syntax</div>
<p>The short syntax can be enabled to quickly create tasks with an estimation already set. If you enter 'TaskTitleBla t30m' a task with the name 'TaskTitleBla' will be created with the estimation set to 30 minutes.</p>
<div ng-if="vm.IS_ELECTRON">
<div class="md-caption">Enable idle time handling</div>
<p>Open a dialog after a specified amount of time to check if and on which task you want to track your time, when you have been idle.</p>
<div class="md-caption">Enable take a break reminder</div>
<p>Allows you to configure a reoccurring reminder when you have worked for a specified amount of time without taking a break.</p>
<p>You can modify the message displayed. ${duration} will be replaced with the time spent without a break.</p>
</div>
</help-section>
<md-switch ng-model="vm.settings.isAutoStartNextTask"
aria-label="Auto-start next task on done">
Auto-start next task on done
</md-switch>
<md-switch ng-model="vm.settings.isShortSyntaxEnabled"
aria-label="Use short syntax (e.g. 'TaskTitleBla e:30m')">
Use short syntax (e.g. 'TaskTitleBla t30m') for task creation
</md-switch>
<md-switch ng-model="vm.settings.isBlockFinishDayUntilTimeTimeTracked"
aria-label="Disable finish day button until time sheet was exported">
Disable finish day button until time sheet was exported
</md-switch>
<md-switch ng-if="!vm.IS_ELECTRON"
ng-model="vm.settings.isConfirmBeforeExit"
aria-label="Show confirm before exiting the app">
Show confirm before exiting the app
</md-switch>
<section ng-if="vm.isIdleTimeAvailable">
<md-switch ng-model="vm.settings.isEnableIdleTimeTracking"
aria-label="Enable idle time tracking">
Enable idle time handling (when idle, open dialog on what to track)
</md-switch>
<md-input-container class="md-block md-icon-float"
ng-if="vm.settings.isEnableIdleTimeTracking">
<label>Idle time minimum idle time</label>
<ng-md-icon icon="timer"
aria-label="timer"></ng-md-icon>
<input type="text"
input-duration
ng-model="vm.settings.minIdleTime">
</md-input-container>
<md-switch ng-model="vm.settings.isShowTimeWorkedWithoutBreak"
aria-label="Show time worked without break in work view">
Show time worked without break in work view
</md-switch>
<md-switch ng-model="vm.settings.isNotifyWhenTimeEstimateExceeded"
aria-label="Notify when time estimate was exceeded for current task">
Notify when time estimate was exceeded for current task
</md-switch>
<md-switch ng-model="vm.settings.isTakeABreakEnabled"
aria-label="Enable take a break reminder">
Enable take a break reminder
</md-switch>
<md-input-container class="md-block md-icon-float"
ng-hide="!vm.settings.isTakeABreakEnabled">
<label>Remind when I worked longer than X without a break</label>
<ng-md-icon icon="timer"
aria-label="timer"></ng-md-icon>
<input type="text"
input-duration
ng-model="vm.settings.takeABreakMinWorkingTime">
</md-input-container>
<md-input-container class="md-block">
<label>Take a break message</label>
<textarea ng-model="vm.settings.takeABreakMessage"
rows="3"></textarea>
</md-input-container>
</section>