- Saved EQ presets don't change name when the locale of the application changes
- Current eq preset name incorrect after locale change
This file contains hidden or 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
| // The content of this file is subject to change | |
| // Nightingale Equalizer Presets Backend Infrastructure draft | |
| interface sbIMediacoreMultibandEqualizer : nsISupports | |
| { | |
| ... | |
| attribute AString currentPresetName; | |
| }; |
This file contains hidden or 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
| ifeq (, $(filter linux, $(OSTYPE))) | |
| $(error Installing using make is currently not supported on your operating system) | |
| endif | |
| $(CP) $(DISTDIR) /usr/lib/nightingale | |
| ln -s /usr/lib/nightingale/nightingale /usr/bin/nightingale | |
| xdg-icon-ressource install --novendor --size 512 $(DISTDIR)/chrome/icons/default/default.xpm nightingale | |
| xdg-desktop-menu install --novendor $(TOPSRCDIR)/debian/nightingale.desktop |
This file contains hidden or 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
| The Nightingale logo can be used without any permission for works directly related to Nightingale. Usage for any other purposes, including distribution with a fork of Nightingale, are not allowed. |
This file contains hidden or 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
| diff --git a/debian/control b/debian/control | |
| index 5677472..c3949f1 100644 | |
| --- a/debian/control | |
| +++ b/debian/control | |
| @@ -32,6 +32,8 @@ Architecture: any | |
| Depends: | |
| ${shlibs:Depends}, | |
| ${misc:Depends}, | |
| + gstreamer0.10-plugins-base | |
| +Recommends: |
This file contains hidden or 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
| $index = 0; | |
| if(count($this->randomTileWeight) > 0) { | |
| $index = $this->randomTileWeight[array_rand($this->randomTileWeight)]; | |
| $this->randomTileWeight = array_filter($this->randomTileWeight, function($item) { | |
| return $item != $index; | |
| }); | |
| } |
This file contains hidden or 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
| var client = new MarketplaceClient("mykey", "mysecret", "development"); | |
| client.validatePackage("mines.zip").then(function(result) { | |
| console.log("Result: ", result); | |
| }, function(error) { | |
| console.error(error); | |
| }); |
This file contains hidden or 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
| var string = self.options.myString; | |
| window.addEventListener("load", function() { | |
| //DOM specific stuff here | |
| }); |
This file contains hidden or 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
| function _(id) { | |
| // I'm using self here, but replace it with addon, in case you're loading your content script directly in your html file for a panel | |
| return new Promise((resolve) => { | |
| self.port.once("translated", resolve); | |
| }); | |
| self.port.emit("translate", id); | |
| } | |
| // Example usage: | |
| _("anerror").then((string) => { |
This file contains hidden or 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
| tabs.open("about:home"); | |
| yield wait(tabs, "ready"); | |
| assert.ok(main.youtube_download_button.disabled == true); | |
| yield utils.cleanUI(); |
OlderNewer