Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Added
- new icon styles preference for tray (showing time to break or visual progress to break)

### Fixed
- snap package not starting on Wayland
- break windows not closing correctly on all platforms
Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ Here are the preferences editable via the app. If values in the app does not sui
- `language` - language
- `useMonochromeTrayIcon` - use monochrome icon
- `useMonochromeInvertedTrayIcon` - use inverted monochrome icon
- `trayIconStyle` - icon style for menubar: default, time to break, or progress to break
- `silentNotifications` - enable sounds
- `monitorDnd` - monitor DND mode
- `checkNewVersion` - check for new versions
Expand Down Expand Up @@ -406,10 +407,6 @@ In case you have disabled showing of breaks on all monitors, you can specify whi
- `"cursor"` - monitor where there is cursor
- `"0"` (or `0`), `"1"`, `"2"` etc, where `"0"` is the first monitor returned by OS and so forth

#### Show time to the next break in menubar icon [![Contributor Preferences](https://img.shields.io/badge/Contributor_Preferences-✔-success)](#contributor-preferences) ![Not Reliable](https://img.shields.io/badge/Not_Reliable-β-yellow)

If you want Stretchly to show time to the next break in menubar icon set `timeToBreakInTray` to `true`.

#### Show current time in breaks [![Contributor Preferences](https://img.shields.io/badge/Contributor_Preferences-✔-success)](#contributor-preferences)
To show current time in breaks, set the value of `currentTimeInBreaks` from `false` to `true`.

Expand Down
29 changes: 29 additions & 0 deletions app/breaksPlanner.js
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,7 @@ class BreaksPlanner extends EventEmitter {
}

get timeToNextBreak () {
if (!this.scheduler) return null
if (this.scheduler.reference === 'startMicrobreak' || this.scheduler.reference === 'startBreak') {
return this.scheduler.timeLeft
}
Expand All @@ -287,6 +288,34 @@ class BreaksPlanner extends EventEmitter {
}
return null
}

get _progressInterval () {
if (!this.scheduler) return null
const { reference, delay } = this.scheduler

if (reference === 'startMicrobreak' || reference === 'startBreak') {
return delay
}

if (reference === 'startBreakNotification') {
return delay + this.settings.get('breakNotificationInterval')
}

if (reference === 'startMicrobreakNotification') {
return delay + this.settings.get('microbreakNotificationInterval')
}

return null
}

get progressPercentage () {
const total = this._progressInterval
const remaining = this.timeToNextBreak
if (total === null || total <= 0 || remaining === null) return 0

const progress = 1 - (remaining / total)
return Math.max(0, Math.min(100, Math.round(progress * 100)))
}
}

export default BreaksPlanner
11 changes: 4 additions & 7 deletions app/contributor-preferences.html
Original file line number Diff line number Diff line change
Expand Up @@ -483,23 +483,20 @@
</select>
</div>
</div>

<div>
<hr>
</div>
<div>
<span data-i18next="contributorPreferences.timeToBreakInTray"></span>
</div>
<div>
<input type="checkbox" value="timeToBreakInTray" id="showTimeToBreakInTray">
<label data-i18next="contributorPreferences.showTimeToBreakInTray" for="showTimeToBreakInTray"></label>
</div>
<div>
<span data-i18next="contributorPreferences.showTrayIcon"></span>
</div>
<div>
<input type="checkbox" value="showTrayIcon" id="toShowTrayIcon">
<label data-i18next="contributorPreferences.toShowTrayIcon" for="toShowTrayIcon"></label>
</div>
<div>
<hr>
</div>
<div>
<span data-i18next="contributorPreferences.currentTimeInBreaks"></span>
</div>
Expand Down
23 changes: 7 additions & 16 deletions app/css/contributor.css
Original file line number Diff line number Diff line change
Expand Up @@ -174,24 +174,15 @@ body[dir=rtl] .contributor-preferences > :nth-child(61) {
text-align: left;
}

.contributor-preferences > :nth-child(63) {
grid-column: 1/2;
grid-row: 49/50;
padding: 0 16px;
text-align: right;
}

body[dir=rtl] .contributor-preferences > :nth-child(63) {
text-align: left;
.contributor-preferences > :nth-child(64) {
grid-column: 1/2;
grid-row: 50/51;
padding: 0 16px;
text-align: right;
}

.contributor-preferences > :nth-child(65) {
grid-column: 1/2;
grid-row: 50/51;
padding: 0 16px;
text-align: right;
body[dir=rtl] .contributor-preferences > :nth-child(64) {
text-align: left;
}

body[dir=rtl] .contributor-preferences > :nth-child(65) {
text-align: left;
}
2 changes: 1 addition & 1 deletion app/css/preferences.css
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ body[dir=rtl] .theme > :nth-child(10) {

.theme > :nth-child(17) {
grid-column: 1/2;
grid-row: 14/17;
grid-row: 15/18;
padding: 0 16px;
text-align: right;
}
Expand Down
Binary file modified app/images/app-icons/trayDarkNumber0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber12.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber13.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber14.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber15.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber17.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber18.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber19.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber20.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber21.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber22.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber23.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber25.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber26.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber27.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber28.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber29.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber30.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/images/app-icons/trayDarkNumber31.png
Binary file modified app/images/app-icons/trayDarkNumber32.png
Binary file modified app/images/app-icons/trayDarkNumber33.png
Binary file modified app/images/app-icons/trayDarkNumber34.png
Binary file modified app/images/app-icons/trayDarkNumber35.png
Binary file modified app/images/app-icons/trayDarkNumber36.png
Binary file modified app/images/app-icons/trayDarkNumber37.png
Binary file modified app/images/app-icons/trayDarkNumber38.png
Binary file modified app/images/app-icons/trayDarkNumber39.png
Binary file modified app/images/app-icons/trayDarkNumber4.png
Binary file modified app/images/app-icons/trayDarkNumber40.png
Binary file modified app/images/app-icons/trayDarkNumber41.png
Binary file modified app/images/app-icons/trayDarkNumber42.png
Binary file modified app/images/app-icons/trayDarkNumber43.png
Binary file modified app/images/app-icons/trayDarkNumber44.png
Binary file modified app/images/app-icons/trayDarkNumber45.png
Binary file modified app/images/app-icons/trayDarkNumber46.png
Binary file modified app/images/app-icons/trayDarkNumber47.png
Binary file modified app/images/app-icons/trayDarkNumber48.png
Binary file modified app/images/app-icons/trayDarkNumber49.png
Binary file modified app/images/app-icons/trayDarkNumber5.png
Binary file modified app/images/app-icons/trayDarkNumber50.png
Binary file modified app/images/app-icons/trayDarkNumber51.png
Binary file modified app/images/app-icons/trayDarkNumber52.png
Binary file modified app/images/app-icons/trayDarkNumber53.png
Binary file modified app/images/app-icons/trayDarkNumber54.png
Binary file modified app/images/app-icons/trayDarkNumber55.png
Binary file modified app/images/app-icons/trayDarkNumber56.png
Binary file modified app/images/app-icons/trayDarkNumber57.png
Binary file modified app/images/app-icons/trayDarkNumber58.png
Binary file modified app/images/app-icons/trayDarkNumber59.png
Binary file modified app/images/app-icons/trayDarkNumber6.png
Binary file modified app/images/app-icons/trayDarkNumber60.png
Binary file modified app/images/app-icons/trayDarkNumber61.png
Binary file modified app/images/app-icons/trayDarkNumber62.png
Binary file modified app/images/app-icons/trayDarkNumber63.png
Binary file modified app/images/app-icons/trayDarkNumber64.png
Binary file modified app/images/app-icons/trayDarkNumber65.png
Binary file modified app/images/app-icons/trayDarkNumber66.png
Binary file modified app/images/app-icons/trayDarkNumber67.png
Binary file modified app/images/app-icons/trayDarkNumber68.png
Binary file modified app/images/app-icons/trayDarkNumber69.png
Binary file modified app/images/app-icons/trayDarkNumber7.png
Binary file modified app/images/app-icons/trayDarkNumber70.png
Binary file modified app/images/app-icons/trayDarkNumber71.png
Binary file modified app/images/app-icons/trayDarkNumber72.png
Binary file modified app/images/app-icons/trayDarkNumber73.png
Binary file modified app/images/app-icons/trayDarkNumber74.png
Binary file modified app/images/app-icons/trayDarkNumber75.png
Binary file modified app/images/app-icons/trayDarkNumber76.png
Binary file modified app/images/app-icons/trayDarkNumber77.png
Binary file modified app/images/app-icons/trayDarkNumber78.png
Binary file modified app/images/app-icons/trayDarkNumber79.png
Binary file modified app/images/app-icons/trayDarkNumber8.png
Binary file modified app/images/app-icons/trayDarkNumber80.png
Binary file modified app/images/app-icons/trayDarkNumber81.png
Binary file modified app/images/app-icons/trayDarkNumber82.png
Binary file modified app/images/app-icons/trayDarkNumber83.png
Binary file modified app/images/app-icons/trayDarkNumber84.png
Binary file modified app/images/app-icons/trayDarkNumber85.png
Binary file modified app/images/app-icons/trayDarkNumber86.png
Binary file modified app/images/app-icons/trayDarkNumber87.png
Binary file modified app/images/app-icons/trayDarkNumber88.png
Binary file modified app/images/app-icons/trayDarkNumber89.png
Binary file modified app/images/app-icons/trayDarkNumber9.png
Binary file modified app/images/app-icons/trayDarkNumber90.png
Binary file modified app/images/app-icons/trayDarkNumber91.png
Binary file modified app/images/app-icons/trayDarkNumber92.png
Binary file modified app/images/app-icons/trayDarkNumber93.png
Binary file modified app/images/app-icons/trayDarkNumber94.png
Binary file modified app/images/app-icons/trayDarkNumber95.png
Binary file modified app/images/app-icons/trayDarkNumber96.png
Binary file modified app/images/app-icons/trayDarkNumber97.png
Binary file modified app/images/app-icons/trayDarkNumber98.png
Binary file modified app/images/app-icons/trayDarkNumber99.png
Binary file added app/images/app-icons/trayDarkProgress0.png
Binary file added app/images/app-icons/trayDarkProgress1.png
Binary file added app/images/app-icons/trayDarkProgress10.png
Binary file added app/images/app-icons/trayDarkProgress100.png
Binary file added app/images/app-icons/trayDarkProgress11.png
Binary file added app/images/app-icons/trayDarkProgress12.png
Binary file added app/images/app-icons/trayDarkProgress13.png
Binary file added app/images/app-icons/trayDarkProgress14.png
Binary file added app/images/app-icons/trayDarkProgress15.png
Binary file added app/images/app-icons/trayDarkProgress16.png
Binary file added app/images/app-icons/trayDarkProgress17.png
Binary file added app/images/app-icons/trayDarkProgress18.png
Binary file added app/images/app-icons/trayDarkProgress19.png
Binary file added app/images/app-icons/trayDarkProgress2.png
Binary file added app/images/app-icons/trayDarkProgress20.png
Binary file added app/images/app-icons/trayDarkProgress21.png
Binary file added app/images/app-icons/trayDarkProgress22.png
Binary file added app/images/app-icons/trayDarkProgress23.png
Binary file added app/images/app-icons/trayDarkProgress24.png
Binary file added app/images/app-icons/trayDarkProgress25.png
Binary file added app/images/app-icons/trayDarkProgress26.png
Binary file added app/images/app-icons/trayDarkProgress27.png
Binary file added app/images/app-icons/trayDarkProgress28.png
Binary file added app/images/app-icons/trayDarkProgress29.png
Binary file added app/images/app-icons/trayDarkProgress3.png
Binary file added app/images/app-icons/trayDarkProgress30.png
Binary file added app/images/app-icons/trayDarkProgress31.png
Binary file added app/images/app-icons/trayDarkProgress32.png
Binary file added app/images/app-icons/trayDarkProgress33.png
Binary file added app/images/app-icons/trayDarkProgress34.png
Binary file added app/images/app-icons/trayDarkProgress35.png
Binary file added app/images/app-icons/trayDarkProgress36.png
Binary file added app/images/app-icons/trayDarkProgress37.png
Binary file added app/images/app-icons/trayDarkProgress38.png
Binary file added app/images/app-icons/trayDarkProgress39.png
Binary file added app/images/app-icons/trayDarkProgress4.png
Binary file added app/images/app-icons/trayDarkProgress40.png
Binary file added app/images/app-icons/trayDarkProgress41.png
Binary file added app/images/app-icons/trayDarkProgress42.png
Binary file added app/images/app-icons/trayDarkProgress43.png
Binary file added app/images/app-icons/trayDarkProgress44.png
Binary file added app/images/app-icons/trayDarkProgress45.png
Binary file added app/images/app-icons/trayDarkProgress46.png
Binary file added app/images/app-icons/trayDarkProgress47.png
Binary file added app/images/app-icons/trayDarkProgress48.png
Binary file added app/images/app-icons/trayDarkProgress49.png
Binary file added app/images/app-icons/trayDarkProgress5.png
Binary file added app/images/app-icons/trayDarkProgress50.png
Binary file added app/images/app-icons/trayDarkProgress51.png
Binary file added app/images/app-icons/trayDarkProgress52.png
Binary file added app/images/app-icons/trayDarkProgress53.png
Binary file added app/images/app-icons/trayDarkProgress54.png
Binary file added app/images/app-icons/trayDarkProgress55.png
Binary file added app/images/app-icons/trayDarkProgress56.png
Binary file added app/images/app-icons/trayDarkProgress57.png
Binary file added app/images/app-icons/trayDarkProgress58.png
Binary file added app/images/app-icons/trayDarkProgress59.png
Binary file added app/images/app-icons/trayDarkProgress6.png
Binary file added app/images/app-icons/trayDarkProgress60.png
Binary file added app/images/app-icons/trayDarkProgress61.png
Binary file added app/images/app-icons/trayDarkProgress62.png
Binary file added app/images/app-icons/trayDarkProgress63.png
Binary file added app/images/app-icons/trayDarkProgress64.png
Binary file added app/images/app-icons/trayDarkProgress65.png
Binary file added app/images/app-icons/trayDarkProgress66.png
Binary file added app/images/app-icons/trayDarkProgress67.png
Binary file added app/images/app-icons/trayDarkProgress68.png
Binary file added app/images/app-icons/trayDarkProgress69.png
Binary file added app/images/app-icons/trayDarkProgress7.png
Binary file added app/images/app-icons/trayDarkProgress70.png
Binary file added app/images/app-icons/trayDarkProgress71.png
Binary file added app/images/app-icons/trayDarkProgress72.png
Binary file added app/images/app-icons/trayDarkProgress73.png
Binary file added app/images/app-icons/trayDarkProgress74.png
Binary file added app/images/app-icons/trayDarkProgress75.png
Binary file added app/images/app-icons/trayDarkProgress76.png
Binary file added app/images/app-icons/trayDarkProgress77.png
Binary file added app/images/app-icons/trayDarkProgress78.png
Binary file added app/images/app-icons/trayDarkProgress79.png
Binary file added app/images/app-icons/trayDarkProgress8.png
Binary file added app/images/app-icons/trayDarkProgress80.png
Binary file added app/images/app-icons/trayDarkProgress81.png
Binary file added app/images/app-icons/trayDarkProgress82.png
Binary file added app/images/app-icons/trayDarkProgress83.png
Binary file added app/images/app-icons/trayDarkProgress84.png
Binary file added app/images/app-icons/trayDarkProgress85.png
Binary file added app/images/app-icons/trayDarkProgress86.png
Binary file added app/images/app-icons/trayDarkProgress87.png
Binary file added app/images/app-icons/trayDarkProgress88.png
Binary file added app/images/app-icons/trayDarkProgress89.png
Binary file added app/images/app-icons/trayDarkProgress9.png
Binary file added app/images/app-icons/trayDarkProgress90.png
Binary file added app/images/app-icons/trayDarkProgress91.png
Binary file added app/images/app-icons/trayDarkProgress92.png
Binary file added app/images/app-icons/trayDarkProgress93.png
Binary file added app/images/app-icons/trayDarkProgress94.png
Binary file added app/images/app-icons/trayDarkProgress95.png
Binary file added app/images/app-icons/trayDarkProgress96.png
Binary file added app/images/app-icons/trayDarkProgress97.png
Binary file added app/images/app-icons/trayDarkProgress98.png
Binary file added app/images/app-icons/trayDarkProgress99.png
Binary file modified app/images/app-icons/trayMacDarkNumber0.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber1.png
Binary file modified app/images/app-icons/trayMacDarkNumber10.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber11.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber12.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber13.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber14.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber15.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber16.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber17.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber18.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber19.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber2.png
Binary file modified app/images/app-icons/trayMacDarkNumber20.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber21.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber22.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber23.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber24.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber25.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber26.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber27.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber28.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber29.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber3.png
Binary file modified app/images/app-icons/trayMacDarkNumber30.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber31.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber32.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber33.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber34.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber35.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber36.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber37.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber38.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber39.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber4.png
Binary file modified app/images/app-icons/trayMacDarkNumber40.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber41.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber42.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber43.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber44.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber45.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber46.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber47.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber48.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber49.png
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/[email protected]
Binary file modified app/images/app-icons/trayMacDarkNumber5.png
Binary file modified app/images/app-icons/trayMacDarkNumber50.png
Binary file modified app/images/app-icons/[email protected]
Loading
Loading