Skip to content

ksy36/firefox-ios

This branch is 8461 commits behind mozilla-mobile/firefox-ios:main.

Folders and files

NameName
Last commit message
Last commit date
Dec 7, 2021
Feb 3, 2022
Nov 11, 2021
Feb 9, 2022
Feb 11, 2022
Feb 11, 2022
Jan 31, 2022
Nov 1, 2021
Jan 25, 2022
Nov 23, 2021
Feb 7, 2022
Nov 11, 2021
Feb 3, 2022
Nov 11, 2021
Nov 11, 2021
Feb 3, 2022
Feb 10, 2022
Nov 11, 2021
Feb 3, 2022
Nov 11, 2021
Jan 31, 2022
Feb 3, 2022
Jul 9, 2021
Jan 31, 2022
Nov 11, 2021
Nov 11, 2021
Dec 9, 2021
Jan 31, 2022
Jan 27, 2022
Feb 9, 2022
Feb 9, 2022
Jan 31, 2022
Aug 11, 2021
Nov 24, 2021
Feb 1, 2022
May 5, 2020
Sep 29, 2016
Feb 9, 2022
Dec 17, 2021
Jun 30, 2020
Jul 23, 2021
Mar 22, 2017
Apr 1, 2019
Dec 19, 2019
May 26, 2021
Jan 31, 2022
Oct 13, 2017
Apr 16, 2019
Jan 31, 2022
Jun 29, 2020
Nov 4, 2014
Apr 16, 2019
Feb 4, 2022
Feb 3, 2022
Jan 31, 2022
Jan 31, 2022
Jan 31, 2022
Jan 31, 2022
Jul 30, 2021
Feb 10, 2022
Jan 31, 2022
Jan 31, 2022
Jun 22, 2021
Feb 27, 2021
Feb 9, 2022
Jan 31, 2022
Aug 1, 2021
Jan 22, 2018
Dec 8, 2021
Apr 27, 2020
May 11, 2021

Repository files navigation

Firefox for iOS codebeat badge codecov

Download on the App Store.

This branch (main)

This branch works only with Xcode 13.2.1, Swift 5.5.2 and supports iOS 13 and above.

Please note: Both Intel and M1 macs are supported 🎉 and we use swift package manager.

Please make sure you aim your pull requests in the right direction.

For bug fixes and features for a specific release, use the version branch.

Getting involved

Want to contribute but don't know where to start? Here is a list of issues that are contributor friendly

Building the code

  1. Install the latest Xcode developer tools from Apple.
  2. Install, Node, and a Python 3 virtualenv for localization scripts:
    brew update
    brew install node
    pip3 install virtualenv
  3. Clone the repository:
    git clone https://github.com/mozilla-mobile/firefox-ios
  4. Pull in the project dependencies:
    cd firefox-ios
    sh ./bootstrap.sh
  5. Open Client.xcodeproj in Xcode.
  6. Build the Fennec scheme in Xcode.

Note: In case you have dependencies issues with SPM, you can try to reset package caches and resolve package version.

Building User Scripts

User Scripts (JavaScript injected into the WKWebView) are compiled, concatenated, and minified using webpack. User Scripts to be aggregated are placed in the following directories:

/Client
|-- /Frontend
    |-- /UserContent
        |-- /UserScripts
            |-- /AllFrames
            |   |-- /AtDocumentEnd
            |   |-- /AtDocumentStart
            |-- /MainFrame
                |-- /AtDocumentEnd
                |-- /AtDocumentStart

This reduces the total possible number of User Scripts down to four. The compiled output from concatenating and minifying the User Scripts placed in these folders resides in /Client/Assets and are named accordingly:

  • AllFramesAtDocumentEnd.js
  • AllFramesAtDocumentStart.js
  • MainFrameAtDocumentEnd.js
  • MainFrameAtDocumentStart.js

To simplify the build process, these compiled files are checked-in to this repository. When adding or editing User Scripts, these files can be re-compiled with webpack manually. This requires Node.js to be installed, and all required npm packages can be installed by running npm install in the project's root directory. User Scripts can be compiled by running the following npm command in the root directory of the project:

npm run build

Contributing

Want to contribute to this repository? Check out Contributing Guidelines

License

This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at https://mozilla.org/MPL/2.0/

About

Firefox for iOS

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 75.1%
  • C 18.8%
  • HTML 3.0%
  • JavaScript 1.2%
  • Python 0.9%
  • Shell 0.4%
  • Other 0.6%