-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
709ff2f
commit 4068703
Showing
281 changed files
with
699 additions
and
713 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
arora | ||
Arora.app | ||
arora.exe | ||
endorphin | ||
Endorphin.app | ||
endorphin.exe | ||
Makefile* | ||
.DS_Store | ||
.ui | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
Benjamin C Meyer [email protected] | ||
Jakub Wieczorek [email protected] | ||
Diego Iastrubni [email protected] | ||
Jakub Lužný [email protected] | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
# Step-by-Step Instructions to Run the latest Arora | ||
# Step-by-Step Instructions to Run the latest Endorphin | ||
|
||
Arora is still in development, which means that there are no compiled installable packages yet. To try the latest code, follow this guide. | ||
Endorphin is still in development, which means that there are no compiled installable packages yet. To try the latest code, follow this guide. | ||
|
||
### Step 1: Make sure git is installed. | ||
To see if git is installed, open up a terminal window and type `git`. If it is not installed, the terminal will report back command not found. If it is installed, you'll receive the git help text. To install git: [Windows](https://gitforwindows.org/), [Mac](https://git-scm.com/download/mac), and for Linux, use your distro's package manager. | ||
|
||
### Step 2: Download and install Qt 5.14 or greater. | ||
If you already have **Qt 5.14** or greater installed, you can skip this step. To install Qt 5.14, visit the [Download Page](https://www.qt.io/download) or use your distro's package manager on Linux. Be sure to add the correct PATH variable if required in the official install instructions. When you're done, skip the alternative method section, and move onto Step 3. | ||
|
||
### Step 3: Download and compile the latest Arora. | ||
Now we will download the latest tree of Arora. Issue these commands: | ||
### Step 3: Download and compile the latest Endorphin. | ||
Now we will download the latest tree of Endorphin. Issue these commands: | ||
``` | ||
$ git clone git://github.com/AaronDewes/arora.git | ||
$ cd arora | ||
$ git clone git://github.com/AaronDewes/endorphin-browser.git | ||
$ cd endorphin-browser | ||
$ mkdir build && cd build | ||
$ cmake .. | ||
$ make -j$(nproc) | ||
``` | ||
Arora is now compiled. To run arora, simply run `./arora` from the current directory. | ||
Endorphin is now compiled. To run endorphin, simply run `./endorphin` from the current directory. | ||
|
||
_**Optional**_: To update to the latest Arora in the future, you can issue these commands: | ||
_**Optional**_: To update to the latest Endorphin in the future, you can issue these commands: | ||
``` | ||
$ cd arora | ||
$ cd endorphin-browser | ||
$ git pull | ||
$ cd build | ||
$ make -j$(nproc) | ||
``` | ||
|
||
If you are looking for an IDE to develop Arora in you can checkout the free IDE Qt Creator that is available with Qt. | ||
If you are looking for an IDE to develop Endorphin in you can checkout the free IDE Qt Creator that is available with Qt. |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
# Arora web browser | ||
# Endorphin web browser | ||
|
||
Arora is a cross platform web browser built using Qt and WebKit. | ||
Endorphin is a cross platform web browser built using Qt and WebKit. | ||
|
||
This is a fork of the [original Arora browser](https://github.com/Arora/arora). | ||
The original browser was created by Benjamin C. Meyer. | ||
This fork was created and is maintained by Aaron Dewes. | ||
This is a fork of the [Arora browser](https://github.com/Arora/arora). | ||
This fork was created by Aaron Dewes. | ||
|
||
## Contributing | ||
|
||
If you want to contribute, feel free to open an issue or a PR. | ||
|
||
|
||
### Building | ||
Arora uses the cmake build system. If you already have Qt 5.14 or newer on your system building is as easy as running the command 'cmake' and then 'make'. | ||
Endorphin uses the cmake build system. If you already have Qt 5.14 or newer on your system building is as easy as running the command 'cmake' and then 'make'. | ||
For more detailed information see the [Building guide](BUILDING.md). |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/** | ||
* Copyright (c) 2009, Benjamin C. Meyer <[email protected]> | ||
* Copyright (c) 2009, Aaron Dewes <[email protected]> | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
|
@@ -9,7 +9,7 @@ | |
* 2. Redistributions in binary form must reproduce the above copyright | ||
* notice, this list of conditions and the following disclaimer in the | ||
* documentation and/or other materials provided with the distribution. | ||
* 3. Neither the name of the Benjamin Meyer nor the names of its contributors | ||
* 3. Neither the name of the Aaron Dewes nor the names of its contributors | ||
* may be used to endorse or promote products derived from this software | ||
* without specific prior written permission. | ||
* | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/** | ||
* Copyright (c) 2009, Benjamin C. Meyer <[email protected]> | ||
* Copyright (c) 2009, Aaron Dewes <[email protected]> | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
|
@@ -9,7 +9,7 @@ | |
* 2. Redistributions in binary form must reproduce the above copyright | ||
* notice, this list of conditions and the following disclaimer in the | ||
* documentation and/or other materials provided with the distribution. | ||
* 3. Neither the name of the Benjamin Meyer nor the names of its contributors | ||
* 3. Neither the name of the Aaron Dewes nor the names of its contributors | ||
* may be used to endorse or promote products derived from this software | ||
* without specific prior written permission. | ||
* | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/** | ||
* Copyright (c) 2009, Benjamin C. Meyer <[email protected]> | ||
* Copyright (c) 2009, Aaron Dewes <[email protected]> | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
|
@@ -9,7 +9,7 @@ | |
* 2. Redistributions in binary form must reproduce the above copyright | ||
* notice, this list of conditions and the following disclaimer in the | ||
* documentation and/or other materials provided with the distribution. | ||
* 3. Neither the name of the Benjamin Meyer nor the names of its contributors | ||
* 3. Neither the name of the Aaron Dewes nor the names of its contributors | ||
* may be used to endorse or promote products derived from this software | ||
* without specific prior written permission. | ||
* | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright 2009 Benjamin C. Meyer <[email protected]> | ||
* Copyright 2009 Aaron Dewes <[email protected]> | ||
* Copyright 2009 Zsombor Gegesy <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
|
Oops, something went wrong.