Commit da93890 1 parent 6feaadb commit da93890 Copy full SHA for da93890
File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -112,9 +112,11 @@ private string CreateTimerText(string timerTime)
112
112
if ( ! string . IsNullOrEmpty ( _settings . TitleFormat ) )
113
113
{
114
114
return _settings . TitleFormat
115
- . Replace ( "{projectname}" , _settings . ProjectName )
116
- . Replace ( "{taskname}" , _settings . TaskName )
117
- . Replace ( "{timername}" , _settings . TimerName )
115
+ . Replace ( "{workspaceName}" , _settings . WorkspaceName )
116
+ . Replace ( "{projectName}" , _settings . ProjectName )
117
+ . Replace ( "{taskName}" , _settings . TaskName )
118
+ . Replace ( "{timerName}" , _settings . TimerName )
119
+ . Replace ( "{clientName}" , _settings . ClientName )
118
120
. Replace ( "{timer}" , timerTime ) ;
119
121
}
120
122
Original file line number Diff line number Diff line change @@ -21,9 +21,11 @@ Until the plugin is available in the [Stream Deck Store](https://apps.elgato.com
21
21
- ** Client Name:** * (optional)* Set the client name assigned to the specified project
22
22
- ** Title Format:** * (optional)* Specify the format for the title to be displayed on the button.
23
23
- This can include any of:
24
+ - ` {workspaceName} ` : The workspace name
24
25
- ` {projectName} ` : The project name
25
26
- ` {taskName} ` : The task name
26
- - ` {timerName} ` : The timer name
27
+ - ` {timerName} ` : The timer name
28
+ - ` {clientName} ` : The client name
27
29
- ` {timer} ` : The current timer value when running. Blank when not running
28
30
- ** Server Url:** * (required)* Change from the * default* URL to the API URL of your own/company instance
29
31
You can’t perform that action at this time.
0 commit comments