aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - fixed compiler warning: dead initialization (the values are never read)Steffen Pankratz2016-03-062-4/+2
| | | | | | In order to not get compiler warnings about 'unused return values' a void cast is used, which also makes it clear the the returned values are ignored on purpose
* Merge pull request #330 from kratz00/misc_fixesBenjamin Dobell2016-03-013-5/+5
|\ | | | | Minor bug fixes.
| * - fixed possible null pointer accessSteffen Pankratz2016-02-291-1/+1
| |
| * - fixed logical error, wrong variable was used in error messageSteffen Pankratz2016-02-291-1/+1
| |
| * - fixed memory leakSteffen Pankratz2016-02-291-1/+1
| | | | | | | | Memory allocated by 'new[]' should be deallocated by 'delete[]'.
| * - fixed typosSteffen Pankratz2016-02-291-2/+2
|/ | | | prefox <-> prefix
* Merge pull request #287 from yan12125/allow-disable-guiBenjamin Dobell2016-02-211-3/+6
|\ | | | | Add an option to disable the frontend when building
| * Add an option to disable GUIYen Chi Hsuan2015-08-221-3/+6
| |
* | Merge pull request #325 from vaselo/masterBenjamin Dobell2016-02-081-7/+7
|\ \ | |/ |/| Fixed libpit array overflows
| * Fixed libpit array overflowsvaselo2016-02-081-7/+7
|/
* Do not use static libusb-1.0 by default on Linux.Benjamin Dobell2015-03-211-1/+4
|
* Actually fix #261 (CMake Linux detection)Benjamin Dobell2015-03-061-2/+2
|
* Due to a Qt bug on OS X we need to browse for *.gz not *.tar.gzBenjamin Dobell2015-03-061-2/+2
|
* Added missing info to the Windows READMEBenjamin Dobell2015-02-211-2/+2
|
* Fixed a few Heimdall Frontend nigglesBenjamin Dobell2015-02-212-69/+70
| | | | | Yes, the HeimdallState enum class operator overloading and operator usage is crazy nonsense. I want to love enum class, but this is just ridiculous.
* Implemented hack to make WinUSB play nice with empty receive transfersBenjamin Dobell2015-02-211-0/+8
|
* Fixed incorrect method arguments causing PIT transfers to failBenjamin Dobell2015-02-211-2/+2
|
* New signed codeless kextBenjamin Dobell2015-02-214-6/+12
| | | | | In theory this codeless kext should be higher priority than Kies, however it does not seem to be working consistently.
* Make OS X kext installation work irrespective of current directoryBenjamin Dobell2015-02-211-1/+2
|
* Fix issue with Linux specific code not compiling (#261)Benjamin Dobell2015-02-201-0/+4
|
* Fix FindLibusb.cmake and make CMake setup IDE compatibleBenjamin Dobell2015-02-202-1/+5
|
* Fix case sensitive FS issue and update Linux READMEBenjamin Dobell2015-02-192-44/+8
|
* Fix Unix build issues and work-around Qt5 Mac UI bugsBenjamin Dobell2015-02-195-75/+77
|
* Removed autotools and VS files, and standardised source dir namingBenjamin Dobell2015-02-1974-103679/+1753
|
* Upgrade Heimdall Frontend to Qt5 and build with cmakeBenjamin Dobell2015-02-198-19/+67
|
* Update Heimdall CLI build to use an MSYS2 environmentBenjamin Dobell2015-02-199-2734/+64
|
* Fix UNIX CMake (and OS X autotools) builds for Heimdall CLIBenjamin Dobell2014-12-103-16/+36
|
* CMake build fixesBenjamin Dobell2014-11-172-1/+3
|
* Continue to support autotools... for nowBenjamin Dobell2014-11-172-1/+5
|
* CMake files for Heimdall CLI and mingw supportBenjamin Dobell2014-11-1712-13/+342
|
* More empty transfer craziness, this time when receving packetsBenjamin Dobell2014-07-062-64/+76
| | | | | It seems newer devices need more weird empty transfers in order to function.
* Autogen'd files for Heimdall 1.4.1Benjamin Dobell2014-06-0114-800/+931
|
* Fixed support for large files (up to 2^32 - 1 bytes)Benjamin Dobell2014-06-017-36/+49
| | | | | | The Loke protocol supports 32-bit unsigned for the size of files being flashed. However, POSIX file commands only support 32-bit (signed). As such we now have platform specific support for larger files.
* Fixed file transfer sequence bugBenjamin Dobell2014-06-012-13/+11
|
* Give devices some leeway to handle empty bulk transfers.Benjamin Dobell2014-05-312-8/+13
|
* Fixed line endings in install-kext.shBenjamin Dobell2014-05-211-7/+7
|
* Signed the OS X codeless kext.Benjamin Dobell2014-05-214-0/+105
|
* Fixed regression that broke support for GT-I9100 etc.Benjamin Dobell2014-05-182-19/+41
|
* Tweaked VC++ linker options for Frontend (to ensure quicker builds).Benjamin Dobell2014-05-181-0/+2
|
* Removed unused optional parameters in BridgeManager.Benjamin Dobell2014-05-182-25/+16
|
* Fixed Frontend bug that could cause flashing to fail.Benjamin Dobell2014-05-181-0/+1
| | | | | | | The resume boolean did not have a default value set. Consequently if the memory address containing the boolean was already non-null it resulted in the heimdall CLI binary being called with the --resume flag even though the Resume check-box in the UI was not checked.
* Removed VC++ info from Windows README as builds are now statically linked.Benjamin Dobell2014-05-171-15/+0
|
* Windows does not provide (or require) va_copy.Benjamin Dobell2014-05-171-0/+4
|
* Updated .gitignore to exclude ./configure and Make output.Benjamin Dobell2014-05-151-0/+21
|
* Fixed Heimdall Frontend Mac builds.Benjamin Dobell2014-05-151-1/+1
|
* Added missing new lines to CLI help output.Benjamin Dobell2014-05-153-3/+3
|
* Fixed help output alignment.Benjamin Dobell2014-05-114-10/+10
|
* Fixed header guard typo.Benjamin Dobell2014-05-111-1/+1
|
* Fixed hard-coded libdir regression.Benjamin Dobell2014-05-102-2/+2
|
* Merge pull request #199 from m-willers/fix_stdargsBenjamin Dobell2014-05-101-30/+42
|\