Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Version 1.5.19.1.5.19 | Richard W.M. Jones | 2010-09-22 | 1 | -1/+1 |
| | |||||
* | Version 1.5.18.1.5.18 | Richard W.M. Jones | 2010-09-22 | 1 | -1/+1 |
| | |||||
* | Version 1.5.17.1.5.17 | Richard W.M. Jones | 2010-09-21 | 1 | -1/+1 |
| | |||||
* | Version 1.5.16.1.5.16 | Richard Jones | 2010-09-15 | 1 | -1/+1 |
| | |||||
* | configure: Make "fedora-13" the default repository. | Richard Jones | 2010-09-15 | 1 | -2/+2 |
| | |||||
* | Version 1.5.15.1.5.15 | Richard Jones | 2010-09-15 | 1 | -1/+1 |
| | |||||
* | Version 1.5.14.1.5.14 | Richard Jones | 2010-09-14 | 1 | -1/+1 |
| | |||||
* | configure: Check for virtio-serial support in qemu. | Richard Jones | 2010-09-14 | 1 | -35/+9 |
| | | | | | | All other vmchannel methods are obsolete, but we were still trying to check for them. This replaces all of them with a simple check for virtio-serial. | ||||
* | pardus: Check for cpio in configure. | Richard Jones | 2010-09-14 | 1 | -0/+5 |
| | |||||
* | Version 1.5.13.1.5.13 | Richard Jones | 2010-09-13 | 1 | -1/+1 |
| | |||||
* | build: hivex is required. | Richard Jones | 2010-09-11 | 1 | -6/+2 |
| | | | | | hivex library has been required since we moved the inspection code to C. Check for this in configure.ac. | ||||
* | Version 1.5.12.1.5.12 | Richard Jones | 2010-09-11 | 1 | -1/+1 |
| | |||||
* | build: require Augeas for library. | Richard Jones | 2010-09-11 | 1 | -0/+5 |
| | | | | | | Augeas has been required since we moved the inspection code to C, however we were not correctly enforcing this in configure.ac, nor correctly linking to the library until now. | ||||
* | Split generator into separate source files. | Richard Jones | 2010-09-11 | 1 | -0/+1 |
| | | | | | | | | | | 'src/generator.ml' is no more. Instead the generator is logically split up over many different source files. Read generator/README for help and tips. We compile the generator down to bytecode, not native code. This means it will run more slowly, but is done for maximum portability. | ||||
* | syntax: Replace -a and -o with && and || for portability. | Richard Jones | 2010-09-11 | 1 | -13/+13 |
| | |||||
* | Version 1.5.11.1.5.11 | Richard Jones | 2010-09-10 | 1 | -1/+1 |
| | |||||
* | Version 1.5.10.1.5.10 | Richard Jones | 2010-09-09 | 1 | -1/+1 |
| | |||||
* | Version 1.5.9.1.5.9 | Richard Jones | 2010-09-08 | 1 | -1/+1 |
| | |||||
* | Version 1.5.8.1.5.8 | Richard Jones | 2010-09-04 | 1 | -1/+1 |
| | |||||
* | PHP bindings. | Richard Jones | 2010-09-04 | 1 | -0/+8 |
| | | | | | | Note that these are not complete on 32 bit architectures. PHP doesn't offer any convenient 64 bit type (on 32 bit). Therefore you should always use these PHP bindings on 64 bit. | ||||
* | Allow manual pages and POD files to be translated. | Richard Jones | 2010-09-02 | 1 | -0/+6 |
| | | | | | | | | | | | | | | This uses the optional po4a package to split these files into PO files for translation, and reassemble afterwards. Note this creates an extra pot file (po-docs/libguestfs-docs.pot). We don't (yet) combine this with the main po/libguestfs.pot file. The 'libguestfs-docs.pot' file included in this commit is not the real thing, just a short cut down snippet for testing. The real thing is created if you update one of the dependent files and rebuild. Note also the dummy ja.po, for testing the principles. | ||||
* | Version 1.5.7.1.5.7 | Richard Jones | 2010-09-01 | 1 | -1/+1 |
| | |||||
* | Version 1.5.6.1.5.6 | Richard Jones | 2010-08-27 | 1 | -1/+1 |
| | |||||
* | build: Don't add version extra string to the version number. | Richard Jones | 2010-08-27 | 1 | -1/+1 |
| | | | | | | | | | | | | If this string was non-empty, then it broke a lot of things because autoconf and other parts of the build system were expecting this string to contain a simple MAJOR.MINOR.RELEASE version number. This requires changes to guestfish and guestmount so they use the guestfs_version API to fetch the version from the library. (The Perl tools were already doing it this way). In a way this is more accurate, because it's no longer hard-coded in the binary, but fetched from the dynamically linked libguestfs.so. | ||||
* | Prepare for version 1.5.5. | Richard Jones | 2010-08-26 | 1 | -1/+1 |
| | |||||
* | Version 1.5.4.1.5.4 | Richard Jones | 2010-08-24 | 1 | -1/+1 |
| | |||||
* | New APIs: set-network and get-network to enable network support. | Richard Jones | 2010-08-24 | 1 | -3/+3 |
| | | | | guestfs_set_network (g, true) enables network support in the appliance. | ||||
* | Version 1.5.31.5.3 | Richard Jones | 2010-08-17 | 1 | -1/+1 |
| | |||||
* | fish: Add -c/--connect and -d/--domain options. | Richard Jones | 2010-08-17 | 1 | -0/+10 |
| | | | | | | | | The -d option lets you specify libvirt domains. The disks from these domains are found and added, as if you'd named them with -a. The -c option lets you specify a libvirt URI, which is needed when we consult libvirt to implement the above. | ||||
* | New API: file-architecture | Richard Jones | 2010-08-17 | 1 | -0/+19 |
| | | | | | | This change simply converts the existing Perl-only function file_architecture into a core API call. The core API call is written in C and available in all languages and from guestfish. | ||||
* | Python: Use new PyCapsule API where supported. | Richard Jones | 2010-08-17 | 1 | -0/+5 |
| | | | | | See: http://lists.fedoraproject.org/pipermail/devel/2010-August/141064.html | ||||
* | Version 1.5.2.1.5.2 | Richard Jones | 2010-07-22 | 1 | -1/+1 |
| | |||||
* | Version 1.5.1.1.5.1 | Richard Jones | 2010-07-21 | 1 | -1/+1 |
| | |||||
* | Use an unsigned type (size_t) for all loop iterators. | Richard Jones | 2010-07-16 | 1 | -1/+0 |
| | | | | | | | | | This resolves a warning from gcc 4.5: assuming signed overflow does not occur when simplifying conditional to constant This page explains the issues in some detail: http://www.airs.com/blog/archives/120 | ||||
* | build: Don't warn about 'long long'. | Richard Jones | 2010-07-16 | 1 | -0/+2 |
| | | | | | Various language bindings simply need this, so we have to allow it even though it's a GCC extension. | ||||
* | Prepare for new development branch, starting at 1.5.0. | Richard Jones | 2010-07-08 | 1 | -2/+2 |
| | | | | | | Add BUGS and RELEASE-NOTES to EXTRA_DIST. Also update the RELEASE-NOTES file. | ||||
* | Version 1.3.21.1.3.21 | Richard Jones | 2010-06-16 | 1 | -1/+1 |
| | |||||
* | Version 1.3.20.1.3.20 | Richard Jones | 2010-06-08 | 1 | -1/+1 |
| | |||||
* | Version 1.3.19.1.3.19 | Richard Jones | 2010-06-04 | 1 | -1/+1 |
| | | | | Update BUGS and PO files. | ||||
* | Version 1.3.18.1.3.18 | Richard Jones | 2010-06-02 | 1 | -1/+1 |
| | | | | Update BUGS and PO files. | ||||
* | Version 1.3.17.1.3.17 | Richard Jones | 2010-05-27 | 1 | -1/+1 |
| | |||||
* | Version 1.3.16.1.3.16 | Richard Jones | 2010-05-25 | 1 | -1/+1 |
| | |||||
* | Version 1.3.15.1.3.15 | Richard Jones | 2010-05-25 | 1 | -1/+1 |
| | |||||
* | Version 1.3.14.1.3.14 | Richard Jones | 2010-05-24 | 1 | -1/+1 |
| | |||||
* | build: For development releases, print a notice. | Richard Jones | 2010-05-24 | 1 | -0/+16 |
| | |||||
* | Version 1.3.13.1.3.13 | Richard Jones | 2010-05-15 | 1 | -1/+1 |
| | |||||
* | Version 1.3.12, update PO files.1.3.12 | Richard Jones | 2010-05-14 | 1 | -1/+1 |
| | |||||
* | Unify supermin appliance building using febootstrap 2.7 | Richard Jones | 2010-05-13 | 1 | -38/+4 |
| | |||||
* | Version 1.3.11.1.3.11 | Richard Jones | 2010-05-08 | 1 | -1/+1 |
| | |||||
* | Version 1.3.10.1.3.10 | Richard Jones | 2010-05-07 | 1 | -1/+1 |
| |