mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-07 19:34:11 +01:00
Add binary component for Gecko 10/Linux/x86-64.
This commit is contained in:
@@ -3,6 +3,7 @@ interfaces components/6.0-Linux_x86_64-gcc3/dactylIUtils.xpt abi=Linux_x86_64-gc
|
||||
interfaces components/7.0-Linux_x86_64-gcc3/dactylIUtils.xpt abi=Linux_x86_64-gcc3 appversion>=7.0 appversion<7.*
|
||||
interfaces components/8.0-Linux_x86_64-gcc3/dactylIUtils.xpt abi=Linux_x86_64-gcc3 platformversion>=8.0 platformversion<8.*
|
||||
interfaces components/9.0-Linux_x86_64-gcc3/dactylIUtils.xpt abi=Linux_x86_64-gcc3 platformversion>=9.0 platformversion<9.*
|
||||
interfaces components/10.0-Linux_x86_64-gcc3/dactylIUtils.xpt abi=Linux_x86_64-gcc3 platformversion>=10.0 platformversion<10.*
|
||||
|
||||
interfaces components/6.0-Darwin_x86_64-gcc3/dactylIUtils.xpt abi=Darwin_x86_64-gcc3 appversion>=6.0 appversion<6.*
|
||||
interfaces components/7.0-Darwin_x86_64-gcc3/dactylIUtils.xpt abi=Darwin_x86_64-gcc3 appversion>=7.0 appversion<7.*
|
||||
@@ -18,6 +19,7 @@ binary-component components/6.0-Linux_x86_64-gcc3/dactyl.so abi=Linux_x86_64-gcc
|
||||
binary-component components/7.0-Linux_x86_64-gcc3/dactyl.so abi=Linux_x86_64-gcc3 appversion>=7.0 appversion<7.*
|
||||
binary-component components/8.0-Linux_x86_64-gcc3/dactyl.so abi=Linux_x86_64-gcc3 platformversion>=8.0 platformversion<8.*
|
||||
binary-component components/9.0-Linux_x86_64-gcc3/dactyl.so abi=Linux_x86_64-gcc3 platformversion>=9.0 platformversion<9.*
|
||||
binary-component components/10.0-Linux_x86_64-gcc3/dactyl.so abi=Linux_x86_64-gcc3 platformversion>=10.0 platformversion<10.*
|
||||
|
||||
binary-component components/6.0-Darwin_x86_64-gcc3/dactyl.so abi=Darwin_x86_64-gcc3 appversion>=6.0 appversion<6.*
|
||||
binary-component components/7.0-Darwin_x86_64-gcc3/dactyl.so abi=Darwin_x86_64-gcc3 appversion>=7.0 appversion<7.*
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
GECKO_MAJOR ?= 9
|
||||
GECKO_MAJOR ?= 10
|
||||
GECKO_MINOR ?= 0
|
||||
ABI_OS := $(shell uname -s)
|
||||
ABI_ARCH := $(shell uname -m)
|
||||
|
||||
@@ -14,6 +14,8 @@ defineModule("prefs", {
|
||||
require: ["services", "util"]
|
||||
}, this);
|
||||
|
||||
this.lazyRequire("messages", ["_"]);
|
||||
|
||||
var Prefs = Module("prefs", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakReference]), {
|
||||
ORIGINAL: "extensions.dactyl.original.",
|
||||
RESTORE: "extensions.dactyl.restore.",
|
||||
|
||||
@@ -14,6 +14,8 @@ defineModule("util", {
|
||||
require: ["dom", "services"]
|
||||
}, this);
|
||||
|
||||
this.lazyRequire("overlay", ["overlay"]);
|
||||
|
||||
var FailedAssertion = Class("FailedAssertion", ErrorBase, {
|
||||
init: function init(message, level, noTrace) {
|
||||
if (noTrace !== undefined)
|
||||
|
||||
Reference in New Issue
Block a user