News 2005

From WPKG | Open Source Software Deployment and Distribution
Revision as of 17:52, 6 April 2008 by WPKGSysop (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Come back to see all WPKG news...


09.12.2005

WPKG 0.9.2 has been released.

This is a stable release.

WPKG-0.9.2-test1 released as 0.9.2 (stable) - no changes.



03.12.2005

WPKG 0.9.2-test1 has been released.

This is a testing release.

Changes after 0.9.1:

Depending on the user input, these features may be reintroduced again some day in the future (did anyone use it?)



13.11.2005

WPKG 0.9.1 has been released.

This is a stable release.

Changes after 0.9:



31.10.2005

Our all pages are in WIKI now!

This means you can add/edit/correct nearly all WPKG-related content.

I also hope everything looks better now.



10.10.2005

WPKG 0.9.1-test1 has been released.

This is a testing release.

Thu Oct 10 2005

V 0.9.1-test1

wpkg.js changes after 0.9:

Thanks to K. Dohmann for sending a patch!



08.09.2005

WPKG 0.9 has been released.

This is a stable release.

No changes after WPKG 0.9-test5 were made.



25.08.2005

WPKG 0.9-test5 has been released.

This is a testing release.

Thu Aug 25 2005

V 0.9-test5

wpkg.js changes after 0.9-test4:

Thanks to Suuri Kikkeli for sending a patch!



19.08.2005

We have a Bugzilla running now!

For those interested in reporting bugs, adding feature requests, sending patches, please visit http://bugzilla.wpkg.org/.



14.07.2005

WPKG 0.9-test4 has been released.

This is a testing release.

Thu Jul 14 2005

V 0.9-test4

wpkg.js changes after 0.9-test3:



08.07.2005

WPKG 0.9-test3 has been released.

This is a testing release.

Fri Jul 8 2005

V 0.9-test3

wpkg.js changes after 0.9-test2:



06.07.2005

WPKG 0.9-test2 has been released.

This is a testing release.

Wed Jul 6 2005

V 0.9-test2

wpkg.js changes after 0.9-test1:



04.07.2005

WPKG 0.9-test1 has been released.

This is a testing release.

Mon Jul 4 2005

V 0.9-test1

wpkg.js changes after 0.8:

Thanks to Gordon Klimm for sending patches!



01.07.2005

WPKG 0.8 has been released.

This is a stable release.

Fri Jul 1 2005

V 0.8

wpkg.js changes after 0.8-test2:



28.06.2005

WPKG 0.8-test2 has been released.

This is a testing release.

Tue Jun 28 2005

V 0.8-test2

wpkg.js changes after 0.8-test1:



20.06.2005

WPKG 0.7 has been released.

This is a stable release.

Mon Jun 20 2005

V 0.7



18.06.2005

WPKG 0.8-test1 has been released.

This is a testing release.

Sat Jun 18 2005

V 0.8-test1

wpkg.js changes after 0.7-test1:

     <package execute="once">

After that, this task will be added to wpkg.xml, and will not be executed again.

/debug or /verbose - print everything WPKG does, useful for packet installation debugging (and for new users which need to understand how WPKG works) /dryrun - "simulates" packet installing, without installing anything



11.06.2005

WPKG 0.7-test1 has been released.

This is a testing release.

Sat Jun 11 2005

V 0.7-test1


wpkg.js changes after 0.6:

You can view the exact syntax on this page: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/jscript7/html/jsjsgrpregexpsyntax.asp

Quick examples:

    <host name="b[0-9]+" profile-id="profile" />

works for: b1, b10, b100 does not work for: bubu, b, x, x1, x10, x100


    <host name=".+" profile-id="profile" />

works for *all* hosts - use with care (!), place at the bottom of hosts.xml


    <host name="b.+" profile-id="profile1" />

works for "b10", "b11", "b12345" etc.


    <host name="b.+" profile-id="profile2" />
    <host name="bronek1" profile-id="profile1" />
    <host name="bron.+" profile-id="profile3" />

Normally, hosts are parsed from top to the bottom, except when the hostname is not a regular expression. So host "bronek" will match "profile1", even though it also matches "b.+" and "bron.+" (which are regular expressions).


/force - Uses force when performing actions (ignores wpkg.xml).
Handy when you're not sure if your system is "up to date" with the state described in hosts.xml, packages.xml and profiles.xml (i.e., when someone was adding / removing software by other means than WPKG).
It will "scan" your system for all possible packages from packages.xml, and then, install and/or uninstall packages, according to profiles.xml / packages.xml / hosts.xml for a given host.

/forceInstall - Forces installation over existing packages.
The "install" command will be run, even if "check" conditions are met. This can be useful to "repair" packages etc.



10.06.2005

WPKG 0.6 has been released.

Noone reported issues with 0.6-test1, so from now on WPKG 0.6 is officially stable :)


Fri Jun 10 2005

V 0.6

wpkg.js changes after 0.6-test1:



08.06.2005

WPKG 0.6-test1 has been released.

It includes major changes over the latest stable version, including the possibility to check if something was installed in Windows Software Add/remove!

Changes:

Wed Jun 8 2005

V 0.6-test1

wpkg.js changes:

An example entry looks like below:

     <check type="uninstall" condition="exists" path="Filzip 3.02" />

In the path="" field you just have to add a name which is in Windows Software Add/Remove - and that's it: you no longer have to figure out the registry entries and/or files!

Of course you can still use "file" and "registry" check types, combine them all etc. (all of them have to be met to consider software installed; they will be checked also *after* installation due to the fact that some installers don't handle exit codes properly).


     Checking presence of Filzip 3.02; uninstall check condition failed !
     Checking presence of Filzip 3.02; file check condition failed !
     Checking presence of Filzip 3.02; registry check condition failed !
     Installing Filzip 3.02...
     Checking presence of Filzip 3.02; uninstall check condition met.
     Checking presence of Filzip 3.02; file check condition failed !
     Checking presence of Filzip 3.02; registry check condition met.

This can mean: - the installation was unsuccessful (and the package won't be written to %SYSTEM32%\wpkg.xml) because the file check condition was not met, - file check condition has a typo in packages.xml, - you don't have to use that many conditions - one "uninstall" check is often enough.



06.06.2005

An updated version of WPKG web interface has been uploaded. Get it from the download section.

Short installation instruction:

         DocumentRoot "/var/www/html/wpkg/root"
         chown -R apache wpkg/



04.06.2005

WPKG 0.5-test1 has been released.

Changes include:

wpkg.js changes:

- we have our own domain - wpkg.org :) - the documentation - which is now on http://wpkg.org - has been greatly improved since the last WPKG release (most of you probably noticed that long time ago) - some work has been done on a web interface to WPKG



03.06.2005

A new "announcement" list has been added. It's a very low traffic list. You can subscribe to it if you wish to be up to date with WPKG releases and news.


23.05.2005

An updated version of WPKG web interface has been uploaded. Get it from the download section.



21.05.2005

The documentation has been updated. Easier installation methods has been described.



19.05.2005

You can now download the sources of the WPKG web interface. Get it from the download section. Beware, it's still alpha...



14.05.2005

Some more examples.

A way to integrate with Unattended has been described.



13.05.2005

A site with examples have been added.



12.05.2005

A WPKG http backend demo site has been launched on http://wpkg.bilba.pl

If you would like to help develop it (and see the source code), please let us know on the mailing list. <math>Insert formula here</math>

Retrieved from "http://wpkg.org/News_2005"
Personal tools
Namespaces
Variants
Actions
Navigation
ideas?
Toolbox