Skip to content

Commit

Permalink
feat: change "work" display to "focus"
Browse files Browse the repository at this point in the history
  • Loading branch information
Splode committed Mar 21, 2020
1 parent 483d246 commit b6a7159
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/renderer/components/drawer/Drawer-timer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="Container">
<p class="Drawer-heading">Timer</p>
<div class="Setting-wrapper">
<p class="Setting-title">Work</p>
<p class="Setting-title">Focus</p>
<p class="Setting-value">{{ localTimeWork + ':00' }}</p>
<div class="Slider-wrapper">
<input
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/components/notification/Notification-win.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default {
notifier.notify(
{
appName: 'com.splode.pomotroid',
title: opts.title || 'Work Round Complete',
title: opts.title || 'Focus Round Complete',
message: opts.message,
icon: opts.icon || path.join(__static, 'icon.png'),
sound: false
Expand Down Expand Up @@ -58,7 +58,7 @@ export default {
notifyWork() {
this.callNotification({
title: 'Break Finished',
message: `Begin working for ${this.timeWork} minutes.`
message: `Begin focusing for ${this.timeWork} minutes.`
})
}
},
Expand Down
6 changes: 3 additions & 3 deletions src/renderer/components/notification/Notification.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ export default {
notifyLongBreak() {
this.callNotification({
title: 'Work Round Complete',
title: 'Focus Round Complete',
body: `Begin a ${this.timeLongBreak} minute long break.`,
icon: path.join('static', 'icon--blue.png')
})
},
notifyShortBreak() {
this.callNotification({
title: 'Work Round Complete',
title: 'Focus Round Complete',
body: `Begin a ${this.timeShortBreak} minute short break.`,
icon: path.join('static', 'icon--green.png')
})
Expand All @@ -55,7 +55,7 @@ export default {
notifyWork() {
this.callNotification({
title: 'Break Finished',
body: `Begin working for ${this.timeWork} minutes.`
body: `Begin focusing for ${this.timeWork} minutes.`
})
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/timer/Timer-dial.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default {
currentRoundDisplay() {
if (this.currentRound === 'work') {
return 'Work'
return 'Focus'
} else if (this.currentRound === 'short-break') {
return 'Short Break'
} else if (this.currentRound === 'long-break') {
Expand Down

0 comments on commit b6a7159

Please sign in to comment.