[Kde-cygwin-cvs] CVS: tools/installer installer.pro,1.3,1.4 readme.txt,1.1,1.2 installer.cpp,1.2,NON
Status: Inactive
Brought to you by:
habacker
Update of /cvsroot/kde-cygwin/tools/installer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7851/installer Modified Files: installer.pro readme.txt Removed Files: installer.cpp installer.h installwizard.h main.cpp pagebase.h simplewizard.cpp simplewizard.h Log Message: version 0.5.1 Index: installer.pro =================================================================== RCS file: /cvsroot/kde-cygwin/tools/installer/installer.pro,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- installer.pro 22 Jan 2006 18:33:24 -0000 1.3 +++ installer.pro 22 Jan 2006 18:40:04 -0000 1.4 @@ -1,23 +1,3 @@ -HEADERS += installer.h \ - installwizard.h \ - simplewizard.h \ - shared/package.h \ - shared/packagelist.h - -SOURCES += installer.cpp \ - installwizard.cpp \ - simplewizard.cpp \ - shared/package.cpp \ - shared/packagelist.cpp \ - main.cpp -FORMS = page1.ui page2.ui page3.ui - -QT += network -CONFIG += -INCLUDEPATH = shared - -# install -target.path = $$[QT_INSTALL_EXAMPLES]/network/http -sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS http.pro -sources.path = $$[QT_INSTALL_EXAMPLES]/network/http -INSTALLS += target sources +TEMPLATE=subdirs +SUBDIRS=console +#gui Index: readme.txt =================================================================== RCS file: /cvsroot/kde-cygwin/tools/installer/readme.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- readme.txt 22 Jan 2006 18:29:10 -0000 1.1 +++ readme.txt 22 Jan 2006 18:40:04 -0000 1.2 @@ -1,9 +1,49 @@ +Initial version of a KDE installer currently used to download and install +the required libraries from the GNUWIN32 project mirrors + +syntax: + +bin\kde-installer-console.exe <package-name> + +NOTES +===== +packages.txt is a list of recently available packages,which are known to work. +To reload the list from the mirror rename or delete packages.txt. + TODO +==== +- add command line options like + - destdir/installation root + - operation mode --install, --erase, --list --query, ... + +- add dependencies.txt with manual added dependencies (detectable by or package informations ?) + +- create gui version in wizard form (qt's simplewizard example could be taken as base) + + +History +======= + +version 0.5 +----------- +- added support for downloading packages +- added blocking mode to downloader +- added prelimary installation support using external unzip tool -- define blocking function for downloading -- import unzip support -- add package selection page +version 0.4 +------------ +- separated code into shared, console and gui +- created Downloader class +version 0.3 +----------- +- added support for downloading package list +version 0.2 +----------- +- separated code into classes Package, PackageList +version 0.1 +----------- +- initial created from qt http example --- installer.cpp DELETED --- --- installer.h DELETED --- --- installwizard.h DELETED --- --- main.cpp DELETED --- --- pagebase.h DELETED --- --- simplewizard.cpp DELETED --- --- simplewizard.h DELETED --- |