Skip to content
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

Include the changeset in the Insert/Copy Build ID menuitem. Fixes #65. #73

Merged
merged 1 commit into from May 25, 2012
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions extension/chrome/content/nightly.js
Expand Up @@ -57,6 +57,7 @@ variables: {
get platformversion() this.appInfo.platformVersion,
get geckobuildid() this.appInfo.platformBuildID,
get geckoversion() this.appInfo.platformVersion,
get changeset() { return nightly.getChangeset(); },
brandname: null,
get useragent() navigator.userAgent,
get locale() {
Expand Down
1 change: 1 addition & 0 deletions extension/chrome/content/titlebar/customize.js
Expand Up @@ -64,6 +64,7 @@ init: function()
paneTitle.addVariable("Name");
paneTitle.addVariable("Version");
paneTitle.addVariable("AppBuildID");
paneTitle.addVariable("Changeset");
paneTitle.addVariable("PlatformBuildID");
paneTitle.addVariable("PlatformVersion");
paneTitle.addVariable("GeckoVersion");
Expand Down
1 change: 1 addition & 0 deletions extension/chrome/locale/en-US/variables.properties
Expand Up @@ -40,6 +40,7 @@ variable.Vendor.description=Application Vendor
variable.Name.description=Application Name
variable.Version.description=Application Version
variable.AppBuildID.description=Application Build Identifier
variable.Changeset.description=Built from that changeset
variable.PlatformBuildID.description=XUL Platform Build Identifier
variable.PlatformVersion.description=XUL Platform Version
variable.GeckoBuildID.description=Gecko Build Identifier
Expand Down
2 changes: 1 addition & 1 deletion extension/defaults/preferences/variables.js
Expand Up @@ -35,5 +35,5 @@
#
# ***** END LICENSE BLOCK *****
#
pref("nightly.templates.buildid", "${UserAgent} ID:${AppBuildID}${Flags}");
pref("nightly.templates.buildid", "${UserAgent} ID:${AppBuildID}${Flags} CSet: ${Changeset}");
pref("nightly.templates.title", "${DefaultTitle} (Build ${AppBuildID})");