Added Dutch localisation (Thanks Rick Van Lieshout and Fly Man)
Reformated Docs into Markdown FossilOrigin-Name: c2bac983bbd7ac0b30a8911f9491af593a8b8989
This commit is contained in:
@ -6,66 +6,87 @@ Prerequisites
|
||||
Building Fuel from source requires Qt version 4 or 5. Qt is available at:
|
||||
http://www.qt.io/download-open-source/
|
||||
|
||||
To run Fuel a compiled binary of Fossil must be available either in the system
|
||||
To run Fuel a compiled binary of Fossil must be available either in the system
|
||||
path or in the same folder as the Fuel executable. You can find the latest
|
||||
Fossil binaries from the Fossil homepage at:
|
||||
http://www.fossil-scm.org/download.html
|
||||
|
||||
https://www.fossil-scm.org/download.html
|
||||
|
||||
Retrieving the source
|
||||
-------------------------------------------------------------------------------
|
||||
The source is available as a tar.gz archive at the following location
|
||||
http://fuelscm.org/fossil/wiki?name=Downloads
|
||||
|
||||
https://fuel-scm.org/fossil/wiki?name=Downloads
|
||||
|
||||
Additionally you can clone the source code directly from our site using fossil
|
||||
|
||||
mkdir fuel
|
||||
cd fuel
|
||||
fossil clone http://fuelscm.org/fossil fuel.fossil
|
||||
fossil clone https://fuel-scm.org/fossil fuel.fossil
|
||||
fossil open fuel.fossil
|
||||
|
||||
|
||||
Windows (Qt4)
|
||||
Windows (Qt4 / MinGW)
|
||||
-------------------------------------------------------------------------------
|
||||
1. Open a Command Prompt and cd into the folder containing the Fuel source code
|
||||
cd fuel
|
||||
|
||||
cd fuel
|
||||
|
||||
2. Make a build folder and cd into it
|
||||
md build
|
||||
cd build
|
||||
|
||||
3.1 Build with MinGW
|
||||
3.1.1 Generate the makefile with qmake
|
||||
md build
|
||||
cd build
|
||||
|
||||
3. Generate the makefile with qmake
|
||||
|
||||
C:\QtSDK\Desktop\Qt\4.8.1\mingw\bin\qmake ..\fuel.pro -r -spec win32-g++ CONFIG+=release
|
||||
|
||||
3.1.2 Build the project
|
||||
4. Build the project
|
||||
|
||||
c:\QtSDK\mingw\bin\mingw32-make
|
||||
|
||||
3.1.3 Copy the Qt DLLs
|
||||
5. Copy the Qt DLLs
|
||||
|
||||
copy C:\QtSDK\Desktop\Qt\4.8.1\mingw\bin\QtCore4.dll release
|
||||
copy C:\QtSDK\Desktop\Qt\4.8.1\mingw\bin\QtGui4.dll release
|
||||
|
||||
3.1.4 Copy the MinGW DLLs
|
||||
6. Copy the MinGW DLLs
|
||||
|
||||
copy C:\QtSDK\mingw\bin\libgcc_s_dw2-1.dll release
|
||||
copy C:\QtSDK\mingw\bin\mingwm10.dll release
|
||||
|
||||
3.2 Build with Visual Studio 2010
|
||||
3.2.1 Generate the Visual Studio project makefile with qmake
|
||||
|
||||
|
||||
Windows (Qt4 / MSVC)
|
||||
-------------------------------------------------------------------------------
|
||||
1. Open a Command Prompt and cd into the folder containing the Fuel source code
|
||||
|
||||
cd fuel
|
||||
|
||||
2. Make a build folder and cd into it
|
||||
|
||||
md build
|
||||
cd build
|
||||
|
||||
3. Generate the Visual Studio project makefile with qmake
|
||||
|
||||
C:\QtSDK\Desktop\Qt\4.8.1\msvc2010\bin\qmake ..\fuel.pro -tp vc -spec win32-msvc2010
|
||||
|
||||
3.2.2 Open the generated project
|
||||
4. Open the generated project
|
||||
|
||||
start fuel.vcxproj
|
||||
|
||||
3.2.3 Build the project
|
||||
|
||||
Alternatively you can build via MSBuild
|
||||
|
||||
5. Build the project
|
||||
Use the IDE to build the project or alternatively you can use via MSBuild
|
||||
|
||||
c:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild Fuel.vcxproj /t:build /p:Configuration=Release
|
||||
|
||||
3.2.4 Copy the Qt DLLs
|
||||
|
||||
6. Copy the Qt DLLs
|
||||
|
||||
copy C:\QtSDK\Desktop\Qt\4.8.1\msvc2010\bin\QtCore4.dll release
|
||||
copy C:\QtSDK\Desktop\Qt\4.8.1\msvc2010\bin\QtGui4.dll release
|
||||
|
||||
|
||||
4. Enjoy
|
||||
release\Fuel.exe
|
||||
|
||||
release\Fuel.exe
|
||||
|
||||
|
||||
Mac OS X
|
||||
@ -73,46 +94,59 @@ Mac OS X
|
||||
Build Steps:
|
||||
|
||||
1. Open a Terminal and add your Qt bin folder to the path
|
||||
export PATH=$PATH:/path/to/qt/version/clang_64/bin
|
||||
|
||||
export PATH=$PATH:/path/to/qt/version/clang_64/bin
|
||||
|
||||
2. Go into the folder containing the Fuel source code
|
||||
cd fuel
|
||||
|
||||
cd fuel
|
||||
|
||||
3. Generate localization files
|
||||
intl/convert.sh
|
||||
|
||||
intl/convert.sh
|
||||
|
||||
4. Generate the makefile with qmake
|
||||
qmake fuel.pro -spec macx-clang CONFIG+=release
|
||||
|
||||
qmake fuel.pro -spec macx-clang CONFIG+=release
|
||||
|
||||
5. Build the project
|
||||
make
|
||||
|
||||
make
|
||||
|
||||
6. (Optional) Include the Fossil executable within the Fuel application bundle
|
||||
cp /location/to/fossil Fuel.app/Contents/MacOS
|
||||
|
||||
cp /location/to/fossil Fuel.app/Contents/MacOS
|
||||
|
||||
7. Package Qt dependencies into Fuel to make a standalone application bundle
|
||||
macdeployqt Fuel.app
|
||||
|
||||
macdeployqt Fuel.app
|
||||
|
||||
8. Enjoy
|
||||
open Fuel.app
|
||||
|
||||
open Fuel.app
|
||||
|
||||
|
||||
Unix-based OSs
|
||||
Unix-based OS
|
||||
-------------------------------------------------------------------------------
|
||||
Build Steps:
|
||||
|
||||
1. cd into the folder containing the Fuel source code
|
||||
cd fuel
|
||||
|
||||
cd fuel
|
||||
|
||||
2. Generate localization files
|
||||
intl/convert.sh
|
||||
|
||||
intl/convert.sh
|
||||
|
||||
3. Generate the makefile with qmake
|
||||
qmake fuel.pro
|
||||
|
||||
qmake fuel.pro
|
||||
|
||||
4. Build the project
|
||||
make
|
||||
|
||||
make
|
||||
|
||||
5. Enjoy
|
||||
./Fuel
|
||||
|
||||
./Fuel
|
||||
|
@ -1,15 +1,22 @@
|
||||
Fuel V1.0.1 (2015-07-XX)
|
||||
================================================================================
|
||||
- Reformated Docs into Markdown
|
||||
- Added Localisations:
|
||||
- Italian (Thanks maxxlupi and Zangune)
|
||||
- Dutch (Thanks Rick Van Lieshout and Fly Man)
|
||||
|
||||
Fuel V1.0.0 (2015-03-28)
|
||||
============
|
||||
================================================================================
|
||||
- Feature: Long Operations can now be aborted by pressing the Escape key
|
||||
- Improvement: Better support for commit messages with international characters
|
||||
- Improvement: Fossil queries about CR/NL inconsistencies are now handled better
|
||||
- Improvement: Files in Conflicted state are now shown
|
||||
- Localisations:
|
||||
Russian (Thanks Mouse166)
|
||||
Portuguese (Thanks emansije)
|
||||
- Russian (Thanks Mouse166)
|
||||
- Portuguese (Thanks emansije)
|
||||
|
||||
Fuel V0.9.7 (Unreleased)
|
||||
============
|
||||
================================================================================
|
||||
- Feature: Optionally use the internal browser for the Fossil UI
|
||||
- Feature: Support for persisting the state (Column order and sizes) of the File View
|
||||
- Feature: Dropping a Fossil checkout file or workspace folder on Fuel now opens that workspace
|
||||
@ -18,15 +25,15 @@ Fuel V0.9.7 (Unreleased)
|
||||
and Escape aborts it
|
||||
- Feature: Support for localization
|
||||
- Localisations:
|
||||
French (Thanks Fringale)
|
||||
German (Thanks stayawake)
|
||||
Greek
|
||||
Spanish (Thanks djnavas)
|
||||
- French (Thanks Fringale)
|
||||
- German (Thanks stayawake)
|
||||
- Greek
|
||||
- Spanish (Thanks djnavas)
|
||||
- Feature: Support for QT5
|
||||
- Distribution: Fuel is now available in the Arch User Repository
|
||||
|
||||
Fuel V0.9.6 (2012-05-13)
|
||||
============
|
||||
================================================================================
|
||||
- Feature: Support for fossil stashes
|
||||
- Feature: Support for dragging and dropping files out of Fuel
|
||||
- Feature: Allow for opening workspaces via the checkout file or a workspace folder
|
||||
@ -42,3 +49,4 @@ Fuel V0.9.6 (2012-05-13)
|
||||
- Bug Fix: Fixed issue where a complete repository would be committed even when
|
||||
the user has a specific set of files marked for commit
|
||||
- Misc: Minor GUI bug fixes and usability enhancements
|
||||
|
Reference in New Issue
Block a user