I hereby claim:
- I am jryans on github.
- I am jryans (https://keybase.io/jryans) on keybase.
- I have a public key whose fingerprint is 0CDC 5D9C DC4D E9C1 1953 9771 2D10 51DA B386 963C
To claim this, I am signing this object:
# Clone the target mercurial repo | |
$ hg clone http://hg.mozilla.org/integration/fx-team | |
# Then when you are ready to land, first ensure cleaning up the mercurial repo | |
$ cd ~/fx-team && hg strip --no-backup 'roots(outgoing())' && hg pull -u | |
# Then transfer your commits from git to mercurial | |
# Here for just some very specific changesets | |
$ cd git-mozilla-central-repo/ && git push-to-hg -t REV1..REV2 ~/fx-team | |
# Or just one |
I hereby claim:
To claim this, I am signing this object:
{ | |
"browser": true, | |
"devel": true, | |
"loopfunc": true, | |
"esnext": true, | |
"moz": true, | |
"quotmark": true, | |
"undef": true, | |
"unused": true, | |
"maxerr": 10000, |
export CC="clang" | |
export CXX="clang++" | |
export CFLAGS="-fcolor-diagnostics" | |
export CXXFLAGS="-fcolor-diagnostics" | |
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-firefox-release-b2g-desktop | |
mk_add_options AUTOCONF=autoconf213 | |
ac_add_options --enable-application=b2g |
I am excited to announce that we're now shipping WiFi debugging for Firefox OS! It's available in [Firefox OS 3.0 / master][fxos-build] with [Firefox Nightly][desktop-nightly] on desktop.
WiFi debugging allows [WebIDE][webide] to connect to your Firefox OS device via your local WiFi network instead of a USB cable.
The connection experience is generally more straightforward (especially after connecting to a device the first time) than with USB and also more convenient to use since you're no longer tied down by a cable.
Quite a few big new features, improvements, and bug fixes made their way into Firefox Developer Edition 39. Update your Firefox [Developer Edition][dev-ed], or [Nightly][nightly] builds to try them out!
The [Inspector][inspector] now allows you to move elements around via [drag and drop][dnd]. Click and hold on an element and then drag it to where you want it to go. This feature was added by contributor Mahdi Dibaiee.
[![Drag and Drop][dnd-poster]][dnd-video]
Back in [Firefox 33][fx33], a tooltip was added to the rule view to allow editing curves for cubic bezier CSS animations. In Developer Edition 39, we've greatly enhanced the tooltip's UX by adding various standard curves you can try right away, as well as cleaned up the overall appearance. This was added by new contributor John Giannakos.
export CC="clang" | |
export CXX="clang++" | |
export CFLAGS="-fcolor-diagnostics" | |
export CXXFLAGS="-fcolor-diagnostics" | |
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-firefox-debug | |
mk_add_options AUTOCONF=autoconf213 | |
ac_add_options --enable-application=browser |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Cross Process Viewport</title> | |
<script id="shader-vs" type="x-shader/x-vertex"> | |
uniform mat4 uMatrixProj; | |
uniform vec4 uLayerRects[4]; | |
uniform mat4 uLayerTransform; | |
uniform vec4 uRenderTargetOffset; |
[core] | |
repositoryformatversion = 0 | |
filemode = true | |
bare = false | |
logallrefupdates = true | |
ignorecase = true | |
precomposeunicode = true | |
[remote "origin"] | |
url = [email protected]:jryans/gecko-dev.git | |
fetch = +refs/heads/*:refs/remotes/origin/* |