-
Notifications
You must be signed in to change notification settings - Fork 250
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Port to GSettings #470
Merged
Merged
Port to GSettings #470
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
fd536fd
Move to GSettings
bgamari 13bb86f
Use waf's GSettings support
bgamari 804eddf
Fix last-report-folder
bgamari 69bea3d
Fix idle-delay
bgamari 1e08ebe
Merge master into bgamari-gsettings and tweak schema path and id
GeraldJansen 9ce4e5b
Merge remote-tracking branch 'upstream/master' into 470
ederag 0c90f82
remove gnome.hamster.gschema.xml localization
ederag af9f656
remove unused enable-timeout key
ederag d7c95ad
remove unused stop-on-shutdown key
ederag 724ac82
remove unused notify-interval key
ederag 61708a3
remove unused notify-on-idle key
ederag d197ab6
remove unused activities-source key
ederag 1bbe680
remove unused workspace-tracking key
ederag 887fb49
remove unused workspace-mapping key
ederag 0dadc04
remove unused active-hamster-window key
ederag a886a5f
remove unused action key
ederag 1f8351f
remove unused name key
ederag c08aa98
update day-start description
ederag 5a1f780
rename "Hamster Time Tracker" => "Hamster"
ederag 8643726
add gettext domain
ederag 406b68f
add schema to POTFILES.in
ederag File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
<schemalist> | ||
<schema path="/apps/hamster-time-tracker/" id="apps.HamsterTimeTracker"> | ||
<key type="b" name="enable-timeout"> | ||
<default>true</default> | ||
<summary>Stop tracking on idle</summary> | ||
<description> | ||
Stop tracking current activity when computer becomes idle | ||
</description> | ||
</key> | ||
|
||
<key type="b" name="stop-on-shutdown"> | ||
<default>false</default> | ||
<summary>Stop tracking on shutdown</summary> | ||
<description> | ||
Stop tracking current activity on shutdown | ||
</description> | ||
</key> | ||
|
||
<key type="u" name="notify-interval"> | ||
<default>27</default> | ||
<summary>Remind of current task every x minutes</summary> | ||
<description> | ||
Remind of current task every specified amount of minutes. | ||
Set to 0 or greater than 120 to disable reminder. | ||
</description> | ||
</key> | ||
|
||
<key type="b" name="notify-on-idle"> | ||
<default>false</default> | ||
<summary>Also remind when no activity is set</summary> | ||
<description> | ||
Also remind every notify_interval minutes if no activity | ||
has been started. | ||
</description> | ||
</key> | ||
|
||
<key type="s" name="activities-source"> | ||
<default>""</default> | ||
<summary>Source for external activity information</summary> | ||
<description> | ||
Which external program activity information should be taken from. | ||
</description> | ||
</key> | ||
|
||
<key type="u" name="day-start-minutes"> | ||
<default>330</default> | ||
<summary>At what time does the day start (defaults to 5:30AM)</summary> | ||
<description> | ||
Activities will be counted as to bedescription to yesterday if | ||
the current time is less than the specified day start; and | ||
today, if it is over the time. | ||
Activities that span two days, will tip over to the side | ||
where the largest part of the activity is. | ||
</description> | ||
</key> | ||
|
||
<key type="as" name="workspace-tracking"> | ||
<default>[]</default> | ||
<summary>Should workspace switch trigger activity switch</summary> | ||
<description> | ||
List of enabled tracking methods. "name" will enable | ||
switching activities by name defined in workspace_mapping. | ||
"memory" will enable switching to the last activity when | ||
returning to a previous workspace. | ||
</description> | ||
</key> | ||
|
||
<key type="as" name="workspace-mapping"> | ||
<default>[]</default> | ||
<summary>Switch activity on workspace change</summary> | ||
<description> | ||
If switching by name is enabled, this list sets the activity | ||
names that should be switched to, workspaces represented by | ||
the index of item. | ||
</description> | ||
</key> | ||
|
||
<key type="s" name="active-hamster-window"> | ||
<default>""</default> | ||
<summary>Show / hide Time Tracker Window</summary> | ||
<description>Keyboard summarycut for showing / hiding the Time Tracker window.</description> | ||
</key> | ||
|
||
<key type="s" name="action"> | ||
<default>"hamster-time-tracker toggle"</default> | ||
<summary>Toggle hamster application window action</summary> | ||
<description>Command for toggling visibility of the hamster application window.</description> | ||
</key> | ||
|
||
<key type="s" name="name"> | ||
<default>"Toggle hamster application window"</default> | ||
<summary>Toggle hamster application window</summary> | ||
<description>Toggle visibility of the hamster application window.</description> | ||
</key> | ||
</schema> | ||
</schemalist> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A guess