mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-18 19:06:10 +00:00
Updated links to the documentation (#1229)
* Updated links to the documentation
This commit is contained in:
parent
c442b9c357
commit
711ed505dc
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -10,7 +10,7 @@ Demonstrate the code is solid. Example: The exact commands you ran and their out
|
|||||||
|
|
||||||
**Code formatting**
|
**Code formatting**
|
||||||
|
|
||||||
Make sure you ran astyle on your code before making the PR. Check our contribution guidelines here: https://radareorg.github.io/cutter/code.html
|
Make sure you ran astyle on your code before making the PR. Check our contribution guidelines here: https://cutter.re/docs/code.html
|
||||||
|
|
||||||
**Closing issues**
|
**Closing issues**
|
||||||
|
|
||||||
|
@ -12,11 +12,12 @@ You can create an issue by clicking on [this link](https://github.com/radareorg/
|
|||||||
|
|
||||||
Note that cutter is still under development and many parts of the code are to be improved.
|
Note that cutter is still under development and many parts of the code are to be improved.
|
||||||
The best way is to check the opened issues [here](https://github.com/radareorg/cutter/issues) or discuss with radareorg team.
|
The best way is to check the opened issues [here](https://github.com/radareorg/cutter/issues) or discuss with radareorg team.
|
||||||
Please follow our contribution guidelines: https://radareorg.github.io/cutter/code.html
|
Please follow our contribution guidelines: https://cutter.re/docs/code.html
|
||||||
|
|
||||||
## Contributing to the documentation
|
## Contributing to the documentation
|
||||||
|
|
||||||
The documentation is something important for newcomers. As of today the documentation can be found [here](https://radareorg.github.io/cutter/) and it stands in the [docs](https://github.com/radareorg/cutter/tree/master/docs) folder.
|
The documentation is something important for newcomers. As of today the documentation can be found [here](https://cutter.re/docs/) and it stands in the [docs](https://github.com/radareorg/cutter/tree/master/docs) folder.
|
||||||
|
The API Reference is automatically generated from the source code, so it is strongly advised to document your code.
|
||||||
Check issues marked as "Documentation" on our issues [list](https://github.com/radareorg/cutter/issues?q=is%3Aissue+is%3Aopen+label%3ADocumentation).
|
Check issues marked as "Documentation" on our issues [list](https://github.com/radareorg/cutter/issues?q=is%3Aissue+is%3Aopen+label%3ADocumentation).
|
||||||
|
|
||||||
## Translations
|
## Translations
|
||||||
|
@ -23,7 +23,7 @@ You can download the latest release [here](https://github.com/radareorg/cutter/r
|
|||||||
|
|
||||||
## Building from sources
|
## Building from sources
|
||||||
|
|
||||||
To build Cutter on your local machine, please follow this guide: [Building from source](https://radareorg.github.io/cutter/building.html)
|
To build Cutter on your local machine, please follow this guide: [Building from source](https://cutter.re/docs/building.html)
|
||||||
|
|
||||||
## Docker
|
## Docker
|
||||||
|
|
||||||
@ -31,7 +31,7 @@ To deploy *cutter* using a pre-built `Dockerfile`, it's possible to use the [pro
|
|||||||
|
|
||||||
# Documentation
|
# Documentation
|
||||||
|
|
||||||
You can find our documentation [here](https://radareorg.github.io/cutter/).
|
You can find our documentation [here](https://cutter.re/docs/).
|
||||||
|
|
||||||
# Help
|
# Help
|
||||||
|
|
||||||
|
@ -10,22 +10,22 @@ First you must get the source of Cutter by cloning the repository:
|
|||||||
The “official” way to build Cutter is by using qmake, but there are two
|
The “official” way to build Cutter is by using qmake, but there are two
|
||||||
alternatives – cmake and meson.
|
alternatives – cmake and meson.
|
||||||
|
|
||||||
In any case, there are obviously some requirements: \* Radare2 installed
|
In any case, there are obviously some requirements:
|
||||||
from submodule \* Qt 5.9 or above \* Python3.6
|
- Radare2 installed from submodule
|
||||||
|
- Qt 5.9 or above
|
||||||
|
- Python3.6
|
||||||
|
|
||||||
**Before compiling, note that we also provide binaries available for
|
**Before compiling, note that we also provide binaries available for
|
||||||
windows/linux/MacOS
|
windows/linux/MacOS **\ `here <https://github.com/radareorg/cutter/releases>`__\ **.**
|
||||||
X**\ `here <https://github.com/radareorg/cutter/releases>`__\ **.**
|
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
Building options
|
Building options
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
Note that there are two major building options available: \*
|
Note that there are two major building options available:
|
||||||
``CUTTER_ENABLE_JUPYTER`` is used to compile Cutter with bundled Python
|
- ``CUTTER_ENABLE_JUPYTER`` is used to compile Cutter with bundled Python and Jupyter module
|
||||||
and Jupyter module \* ``CUTTER_ENABLE_QTWEBENGINE`` is used to compile
|
- ``CUTTER_ENABLE_QTWEBENGINE`` is used to compile Cutter with bundled QtWebEngine (to ease jupyter console usage)
|
||||||
Cutter with bundled QtWebEngine (to ease jupyter console usage)
|
|
||||||
|
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
@ -156,15 +156,20 @@ Download and unpack
|
|||||||
source root directory.
|
source root directory.
|
||||||
|
|
||||||
Environment settings (example for x64 version):
|
Environment settings (example for x64 version):
|
||||||
``batch :: Export MSVC variables CALL "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x64 :: Add qmake to PATH SET "PATH=C:\Qt\5.10.1\msvc2015_64\bin;%PATH%" :: Add Python to PATH SET "PATH=C:\Program Files\Python36;%PATH%"``
|
.. code:: batch
|
||||||
Install Meson:
|
:: Export MSVC variables
|
||||||
|
CALL "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x64
|
||||||
|
:: Add qmake to PATH
|
||||||
|
SET "PATH=C:\Qt\5.10.1\msvc2015_64\bin;%PATH%"
|
||||||
|
:: Add Python to PATH
|
||||||
|
SET "PATH=C:\Program Files\Python36;%PATH%"
|
||||||
|
|
||||||
|
Install Meson:
|
||||||
.. code:: batch
|
.. code:: batch
|
||||||
|
|
||||||
python -m pip install meson
|
python -m pip install meson
|
||||||
|
|
||||||
To compile Cutter run:
|
To compile Cutter run:
|
||||||
|
|
||||||
.. code:: batch
|
.. code:: batch
|
||||||
|
|
||||||
CALL prepare_r2.bat
|
CALL prepare_r2.bat
|
||||||
|
@ -14,11 +14,10 @@ Get Cutter
|
|||||||
|
|
||||||
Cutter is available for all platforms (Linux, OS X, Windows). You can
|
Cutter is available for all platforms (Linux, OS X, Windows). You can
|
||||||
download the latest release
|
download the latest release
|
||||||
`here <https://github.com/radareorg/cutter/releases>`__. \* OSX:
|
`here <https://github.com/radareorg/cutter/releases>`__.
|
||||||
Download the latest ``.dmg`` file. \* Windows: Download the latest
|
- OSX: Download the latest ``.dmg`` file.
|
||||||
archive. \* Linux: use the AppImage file. Then just make it executable
|
- Windows: Download the latest archive.
|
||||||
and run it: \* ``chmod +x Cutter-v1.7.4-x86_64.AppImage`` \*
|
- Linux: use the AppImage file. Then just make it executable and run it: ``chmod +x Cutter-v1.7.4-x86_64.AppImage``
|
||||||
``./Cutter-v1.7.4-x86_64.AppImage``
|
|
||||||
|
|
||||||
|
|
||||||
Building from sources
|
Building from sources
|
||||||
@ -34,7 +33,7 @@ You can contact the *Cutter* developers and community on:
|
|||||||
|
|
||||||
- Telegram: https://t.me/r2cutter
|
- Telegram: https://t.me/r2cutter
|
||||||
- #cutter on irc.freenode.net
|
- #cutter on irc.freenode.net
|
||||||
- Twitter: [@r2gui](https://twitter.com/r2gui)
|
- Twitter: https://twitter.com/r2gui
|
||||||
|
|
||||||
Want to help the project?
|
Want to help the project?
|
||||||
-------------------------
|
-------------------------
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
</screenshot>
|
</screenshot>
|
||||||
</screenshots>
|
</screenshots>
|
||||||
|
|
||||||
<url type="homepage">https://radareorg.github.io/cutter/</url>
|
<url type="homepage">https://cutter.re/docs/</url>
|
||||||
<update_contact>xarkes</update_contact>
|
<update_contact>xarkes</update_contact>
|
||||||
|
|
||||||
<releases>
|
<releases>
|
||||||
|
Loading…
Reference in New Issue
Block a user