From: Jim Evins Date: Sun, 21 Oct 2007 15:56:43 +0000 (+0000) Subject: Initial checkin of website. X-Git-Tag: glabels-2_3_0~313 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a84e23b3e38a8c6fc710759cd3cbf74deedec5d7;p=glabels Initial checkin of website. git-svn-id: https://glabels.svn.sourceforge.net/svnroot/glabels/trunk@685 f5e0f49d-192f-0410-a22d-a8d8700d0965 --- diff --git a/web/common_php.inc b/web/common_php.inc new file mode 100644 index 00000000..6da170fa --- /dev/null +++ b/web/common_php.inc @@ -0,0 +1,253 @@ +"; + print "root_dir = \"$root_dir\"
"; + print "htroot = \"$htroot\"
"; + print "root = \"$root\"
"; + } + + #------------------------------------------------------- + # Print root URL + #------------------------------------------------------- + function root() + { + global $root; + + print $root; + } + + #------------------------------------------------------- + # Construct and print img tag + #------------------------------------------------------- + function img($src, $alt) + { + global $root; + global $root_dir; + + if (substr($src,0,1) == "/") { + $size = GetImageSize("$root_dir$src"); + print "\"$alt\""; + } else { + $size = GetImageSize("$src"); + print "\"$alt\""; + } + } + + #------------------------------------------------------- + # Construct and print img tag with explicit size, NULL alt + #------------------------------------------------------- + function img_size($src, $w, $h) + { + global $root; + + $alt = ""; + + if (substr($src,0,1) == "/") { + print "\"$alt\""; + } else { + print "\"$alt\""; + } + } + + #------------------------------------------------------- + # Construct and print link (a) tag + #------------------------------------------------------- + function a($href, $text) + { + global $root; + + if (substr($href,0,1) == "/") { + print "$text"; + } else { + print "$text"; + } + } + + #------------------------------------------------------- + # Construct and print link (a) tag to a downloadable file + #------------------------------------------------------- + function a_file($href) + { + global $root; + + $text = basename($href); + + if (substr($href,0,1) == "/") { + print "$text"; + } else { + print "$text"; + } + } + + #------------------------------------------------------- + # Construct and print link (a) tag to a sf dl file + #------------------------------------------------------- + function a_sfdownload($file) + { + print "$file"; + } + + #------------------------------------------------------- + # Construct and print link (a) tag to a web address + #------------------------------------------------------- + function a_host($host) + { + global $root; + + print "$host"; + } + + #------------------------------------------------------- + # Construct and print mailto (a) tag + #------------------------------------------------------- + function a_mailto($email) + { + print "$email"; + } + + #------------------------------------------------------- + # Common Header and navigation + #------------------------------------------------------- + function gLabelsHeader($tab) + { + global $root; + + $tabs["$root/"] = "home"; + $tabs["$root/news/"] = "news"; + $tabs["$root/screenshots/"] = "screenshots"; + $tabs["$root/download/"] = "download"; + $tabs["$root/doc/"] = "docs"; + $tabs["$root/faq/"] = "FAQ"; + $tabs["$root/contact/"] = "contact"; + $tabs["$root/links/"] = "links"; + + print "\n"; +?> + + + + + + + + + gLabels + + + + + + + +
 
+ +
+ + + + + + +
+ +
+
 
+
 
+
+ + + + + + + + +
+
 
+
 
+ + + +
+ + + + + + + + diff --git a/web/contact/index.php b/web/contact/index.php new file mode 100644 index 00000000..e30a3cb9 --- /dev/null +++ b/web/contact/index.php @@ -0,0 +1,77 @@ + + + + +

Contact ...

+ +

Reporting bugs

+

Please report any bugs you find in gLabels at the +. +You may also join the to discuss +the problem more directly (please submit all bugs to the tracker as well). +

+

Please consult the following checklist when reporting a bug. +

+
    +
  1. Verify that you are not experiencing a known bug or limitation by consulting the . +
  2. Verify that the bug is not a duplicate of an existing bug by searching the tracker. If you have additional information + on an existing bug, please add your information to the existing bug. If you + are not using the latest version of glabels, you should also look for closed + bugs since the problem may have already been resolved.
  3. +
  4. Please provide complete information: +
      +
    • version of gLabels
    • +
    • platform (operating system, version, and CPU)
    • +
    • detailed steps to reproduce the problem
    • +
    • sample file(s) (if appropriate)
    • +
    • screenshots (if appropriate)
    • +
    • locale (very important for i18n issues, e.g. problems with special characters)
    • +
    +
  5. +
  6. If this is a crash, it is important to submit a backtrace. Use gdb to get a backtrace as follows: +
    $ gdb glabels +GNU gdb ... + +(gdb) run + (Carry out the actions to make glabels crash) +(gdb) bt + (copy and paste all of this to your bug report) +(gdb) quit +$
    +
  7. + +
+ +

Feature Requests

+Feature requests should be submitted to the +. + +

Mailing Lists

+ + + + + +

Want to help?

+

+Please start by joining one or both of the above mailing lists. +

+ + + + + diff --git a/web/css/glabels.css b/web/css/glabels.css new file mode 100644 index 00000000..daecf0ba --- /dev/null +++ b/web/css/glabels.css @@ -0,0 +1,388 @@ +/* GLABELS.CSS */ + + +/* -------------- Global --------------- */ +body { + font-family : Verdana, Verdana, Arial, Helvetica, sans-serif; + font-size : 77%; + background-color : #EEEAE4; + color : #000000; + margin : 0; +} + + +/****************************************/ +/* Basic layout. */ +/****************************************/ + +/* -------------- Title --------------- */ +#title { + padding: 0; + position: absolute; + top:0px; + left: 0px; + width: 150px; + height: 60px; + margin-top: 30px; + margin-left: 10px; + margin-right: 10px; + background: url("/images/glabels-title-140.png") top center no-repeat; +} + +/* -------------- Navigation --------------- */ +#nav { + padding: 0; + position: absolute; + top: 90px; + left: 0; + width: 150px; + margin-top: 30px; + margin-left: 10px; + margin-right: 10px; +} + +#nav ul { + margin: 0; + padding: 0; + background-color: #EEEAE4; +} + +#nav li { + font-weight: bold; + margin: 0; + list-style: none; + padding: 0 0 1px 0; + line-height: 1.0; +} + +#nav span { + line-height: 1.0; + color: #333333; + display: block; + border: solid 1px #DDD9D4; + margin: 0; + border-top-color: #FFFFFF; + border-left-color: #FFFFFF; + background: #F3F0EC; + padding: 5px 10px 5px 0.5em; +} + +#nav :link, #nav :visited { + line-height: 1.0; + color: #993333; + display: block; + text-decoration: none; + border: solid 1px #EEEAE4; + margin: 0; + padding: 5px 10px 5px 0.5em; + background: transparent url(/images/button-bg.png) top right repeat-y; +} + +#nav :link:hover, #nav :visited:hover { + color: #FF0000; + border: solid 1px #DDD9D4; + border-top-color: #FFFFFF; + border-left-color: #FFFFFF; + background: #F3F0EC; +} + +#nav :link:active, #nav :visited:active { + background: #FFFFFF; +} + +/* -------------- Sourceforge link --------------- */ +#sflink { + padding: 0; + position: absolute; + top: 350px; + left: 0; + width: 150px; + margin-top: 30px; + margin-left: 10px; + margin-right: 10px; + text-align: center; +} + +/* -------------- Main flow --------------- */ +#main { + font-size: 0.9em; + position: absolute; + top:0px; + left: 160px; + width: auto; + min-width: 440px; + margin-top: 10px; + margin-left: 10px; + margin-right: 20px; + padding-right: 20px; + background-color : #EEEAE4; +} + +.tlcorner, .trcorner, .blcorner, .brcorner { + background-color : #EEEAE4; + width: 19px; + height: 19px; +} + +.tlcorner, .blcorner { float: left; left: 0px; } +.trcorner, .brcorner { float: right; right: 0px; } +.tlcorner, .trcorner { top: 0px; } +.blcorner, .brcorner { bottom: 0px; margin-top: -19px; top: -18px;} + +.tlcorner { background: #EEEAE4 url("/images/corner-tl.png") no-repeat left top; } +.trcorner { background: #EEEAE4 url("/images/corner-tr.png") no-repeat right top; } +.blcorner { background: #EEEAE4 url("/images/corner-bl.png") no-repeat left bottom; } +.brcorner { background: #EEEAE4 url("/images/corner-br.png") no-repeat right bottom; } + +/* -------------- Main content --------------- */ +#content { + padding: 24px; + border: 1px solid #aaa; + background-color : #FFFFFF; +} + +/* -------------- Footer --------------- */ +#footer { + padding: 0; + margin-top: 20px; + margin-right: 10px; + margin-left: 10px; + margin-bottom: 70px; + font-weight:400; +} + +#copy { + top: 2px; + text-align: left; + float: left; + padding-right: 10px; + color : #666666; +} + +#copy>a:link { + color : #003366; +} + +#copy>a:visited { + color : #003366; +} + +#copy>a:hover { + color : #666666; +} + +#w3clinks { + top: 2px; + right: 0px; + float: right; + text-align: right; + padding-left: 20px; +} + + +/****************************************/ +/* Special content. */ +/****************************************/ + +/* -------------- News --------------- */ +.newsitem { + margin:20px 0px 10px 0px; + font-family : Verdana, Arial, Helvetica, sans-serif; + font-size : 10pt; + text-align: left; + color:#000000; +} + +.newsdate { + margin:0px 0px 3px 0px; + font-size:14px; + text-align: left; + color:#993333; +} + +.newstitle { + margin:3px 0px 6px 0px; + padding:0px; + font-size:16px; + line-height:20px; + font-weight:900; + color:#000000; +} + +/* -------------- Pre-formatted code box --------------- */ +.codebox { + margin:0px 0px 16px 0px; + padding:5px 5px 5px 5px; + border-style:solid; + border-color:#000000; + border-width:1px; + background-color:#FFFFF0; + font:11px/14px courier, monospace; + white-space: pre; +} + +/* -------------- Newest/latest item --------------- */ +.latest { + font-family : Verdana, Arial, Helvetica, sans-serif; + font-weight:900; +} + +.latest>a:link { + color : #FF0000; +} + +.latest>a:visited { + color : #FF0000; +} + +.latest>a:hover { + color : #666666; +} + +/* -------------- Top level headers --------------- */ +h1 { + padding-left: 70px; + padding-top:6px; + margin-top:15px; + line-height: 58px; + font-size:28px; + text-align: left; + font-weight:900; + color:#333399; + border-bottom-style: solid; + border-bottom-width: 1px; + border-bottom-color: #999999; +} + +h1.about { + background: url(/tango-icons/dialog-information.png) top left no-repeat; +} + +h1.news { + background: url(/tango-icons/internet-news-reader.png) top left no-repeat; +} + +h1.screenshots { + background: url(/tango-icons/emblem-photos.png) top left no-repeat; +} + +h1.download { + background: url(/tango-icons/package-x-generic.png) top left no-repeat; +} + +h1.development { + background: url(/tango-icons/applications-development.png) top left no-repeat; +} + +h1.doc { + background: url(/tango-icons/help-browser.png) top left no-repeat; +} + +h1.contact { + background: url(/tango-icons/system-users.png) top left no-repeat; +} + +h1.links { + background: url(/tango-icons/applications-internet.png) top left no-repeat; +} + + +/****************************************/ +/* Basic tags. */ +/****************************************/ + +h2 { + margin:28px 0px 4px 0px; + padding:0px; + font-size:18px; + line-height:20px; + font-weight:900; +} + +h3 { + margin:16px 0px 4px 0px; + padding:0px; + font-size:14px; + line-height:20px; + font-weight:900; +} + +h4 { + margin:16px 0px 6px 0px; + padding:0px; + font-size:12px; + line-height:20px; + font-weight:900; +} + +h5 { + margin:16px 0px 6px 0px; + padding:0px; + font-size:10px; + line-height:20px; + font-weight:900; +} + + +p { + margin-top: 8px; + margin-bottom: 8px; + font-family : Verdana, Arial, Helvetica, sans-serif; + font-size : 10pt; + text-align: left; +} + +a:link { + color : #006699; +} + +a:visited { + color : #006699; +} + +a:hover { + color : #000000; +} + +td { + font-family : Verdana, Arial, Helvetica, sans-serif; + font-size : 10pt; +} + +li { + font-family : Verdana, Arial, Helvetica, sans-serif; + font-size : 10pt; + color : #000000; +} + + + +/****************************************/ +/* Modifying classes. */ +/****************************************/ + +.noborder { + border:0; +} + +.center { + text-align: center; +} + +/****************************************/ +/* FAQ */ +/****************************************/ +div.faqtoc { + margin:0px 0px 16px 0px; + padding:5px 5px 5px 5px; + border-style:solid; + border-color:#000000; + border-width:1px; + background-color:#FFFFF0; +} + +.faqtocline { list-style: none; } + +div.faqanswer { + margin-left:4em; +} diff --git a/web/doc/glabels-2.0.dtd.txt b/web/doc/glabels-2.0.dtd.txt new file mode 100644 index 00000000..fb8fa47d --- /dev/null +++ b/web/doc/glabels-2.0.dtd.txt @@ -0,0 +1,329 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/doc/index.php b/web/doc/index.php new file mode 100644 index 00000000..b97a3a9c --- /dev/null +++ b/web/doc/index.php @@ -0,0 +1,31 @@ + + + + +

Documentation ...

+ + + + +

Customizing

+

+gLabels knows about a small universe of label/card stationery. You may create new templates by using the Template Designer under the File menu. +

+

+If for some reason you wish to manually create templates, please read the appropriate page below. New templates can be mailed to + +for possible inclusion in future releases of gLabels. +

+ + + + + + diff --git a/web/doc/templates-2.0/glabels-template-cd.png b/web/doc/templates-2.0/glabels-template-cd.png new file mode 100644 index 00000000..0a3de3bf Binary files /dev/null and b/web/doc/templates-2.0/glabels-template-cd.png differ diff --git a/web/doc/templates-2.0/glabels-template-label.png b/web/doc/templates-2.0/glabels-template-label.png new file mode 100644 index 00000000..87a724b9 Binary files /dev/null and b/web/doc/templates-2.0/glabels-template-label.png differ diff --git a/web/doc/templates-2.0/glabels-template-layout.png b/web/doc/templates-2.0/glabels-template-layout.png new file mode 100644 index 00000000..c7127952 Binary files /dev/null and b/web/doc/templates-2.0/glabels-template-layout.png differ diff --git a/web/doc/templates-2.0/index.php b/web/doc/templates-2.0/index.php new file mode 100644 index 00000000..fbbb512c --- /dev/null +++ b/web/doc/templates-2.0/index.php @@ -0,0 +1,291 @@ + + + + +

Defining new gLabels templates for gLabels 2.0.x

+ +

+Predefined templates are defined by XML files located in +${prefix}/share/glabels/, +where ${prefix} is usually something like +/usr/local or /usr depending +on the configuration option prefix. gLabels will +use all files of the form *-templates.xml or *.template, +that it finds in ${prefix}/share/glabels/ and ${HOME}/.glabels/. +Additional templates can be added by creating additional +*.template files in either of these directories. +

+ + +

Assumptions/caveats

+ + + +

*-templates.xml and *.template files

+
+<?xml version="1.0"?> +<Glabels-templates> + + ...templates... + +</Glabels-templates> +
+ + +

Example Template

+
+ <Template name="Avery 8160" size="US-Letter" description="Mailing Labels"> + <Label-rectangle id="0" width="189" height="72" round="5"> + <Markup-margin size="5"/> + <Layout nx="3" ny="10" x0="11.25" y0="36" dx="200" dy="72"/> + </Label-rectangle> + <Alias name="Avery 5160"/> + <Alias name="Avery 6233"/> + </Template> +
+ + +

Template Node

+

+A Template node describes a single stationary product. It must contain +one instance of any type of Label node (Label-rectangle, +Label-round, or Label-cd). This node can be followed by zero +or more Alias nodes. +

+

Properties

+ + + + + + + + + + + + + + + + + + + + + + + + + +
nameName or part # of stationary product. E.g. "Avery 8160"
sizeSize of sheet. E.g., "US-Letter," "A4", ...
descriptionDescription of stationary product. E.g, "Mailing Labels."
_descriptionTranslatable description of stationary product. E.g, "Mailing Labels." (Only useful for predefined templates)
widthPage width. Only valid if size="Other"
heightPage height. Only valid if size="Other"
+ +

Label-rectangle Node

+

+A Label-rectangle node describes the dimensions of a single label or +business card that is rectangular in shape (may have rounded edges). +

+

Properties

+ + + + + + + + + + + + + + + + + + + + + + + + + +
idReserved for future use. Should always be 0.
widthWidth of label/card
heightHeight of label/card
roundRadius of corners. For items with square edges (business cards) + , the radius should be 0.
x_wasteAmount of horizontal waste (over-print) to allow. This is useful for minimizing alignment problems when using non-white backgrounds (e.g. images).
y_wasteAmount of vertical waste (over-print) to allow. This is useful for minimizing alignment problems when using non-white backgrounds (e.g. images).
+
+ + +

Label-round Node

+

+A Label-round node describes the dimensions of a simple round label (not a CD). +

+

Properties

+ + + + + + + + + + + + + +
idReserved for future use. Should always be 0.
radiusRadius (1/2 diameter) of label
wasteAmount of waste (over-print) to allow. This is useful for minimizing alignment problems when using non-white backgrounds (e.g. images).
+ +

Label-cd Node

+

+A Label-cd node describes the dimensions of a CD, DVD, or business card +CD. +

+

Properties

+ + + + + + + + + + + + + + + + + + + + + + + + + +
idReserved for future use. Should always be 0.
radiusOuter radius of label
holeRadius of concentric hole
widthIf present, the label is clipped to the given width. (Useful for "business card CDs").
heightIf present, the label is clipped to the given height. (Useful for "business card CDs").
wasteAmount of waste (over-print) to allow. This is useful for minimizing alignment problems when using non-white backgrounds (e.g. images).
+
+ + + +

Markup-margin Node

+

+A Markup-margin describes a margin along all edges of a label. +

+

Properties

+ + + + + +
sizeSize of the margin. I.e. the distance of the margin line from the + edge of the card/label.
+ + +

Markup-line Node

+

+A Markup-line describes a markup line. +

+

Properties

+ + + + + + + + + + + + + + + + + +
x1x coordinate of 1st endpoint of the line segment.
y1y coordinate of 1st endpoint of the line segment.
x2x coordinate of 2nd endpoint of the line segment.
y2y coordinate of 2nd endpoint of the line segment.
+ +

Markup-circle Node

+

+A Markup-circle describes a markup circle. +

+

Properties

+ + + + + + + + + + + + + +
x0x coordinate of circle origin (center).
y0y coordinate of circle origin (center).
radiusRadius of circle.
+ +

Layout Node

+

+A label node may contain multiple Layout children. If labels are layed out in +a simple grid pattern, only one layout is needed. However, if labels are +layed out in multiple grids, such as a running bond pattern, multiple +layout tags can be used. Note: a single label can always be treated as +a grid of one. +

+

Properties

+ + + + + + + + + + + + + + + + + + + + + + + + + +
nxNumber of labels/cards across in the grid (horizontal)
nyNumber of labels/cards up and down in the grid (vertical)
x0Distance from left edge of sheet to the left edge of the left + column of cards/labels in the layout.
y0Distance from the top edge of sheet to the top edge of + the top row of labels/cards in the layout.
dxHorizontal pitch of grid.
dyVertical pitch of grid.
+
+ + +

Alias Node

+

Properties

+ + + + + +
nameThe name or part # of a product with the same size and layout + characteristics.
+ +
+ + + diff --git a/web/download/index.php b/web/download/index.php new file mode 100644 index 00000000..d4888dd4 --- /dev/null +++ b/web/download/index.php @@ -0,0 +1,123 @@ + + + + + +

Stable Version ...

+ + + + +

System Requirements

+

+gLabels is designed to run on GNOME 2.2+, but more specifically it requires the following libraries. +

+ +

+Note: to compile gLabels on RPM based systems, you will need the development RPMs (e.g., gnome-print-devel) +installed for each of these libraries. +

+ + +

Source:

+ + + + + + +

Third party packages

+

+gLabels is currently available for most popular GNU/Linux distributions through +their associated repositories, including the following repositories: +

+ + + + + + + + +

Development (Unstable) Version ...

+ +

System Requirements

+

+The development version of gLabels is designed to run on GNOME 2.16, but more specifically it requires the following libraries. +

+ +

+Note: to compile gLabels on most GNU/Linux systems, you will need the development packages (e.g., gtk2-devel) +installed for each of these libraries and their dependencies. +Just having the base library packages installed is not enough. +

+ + +

Source:

+ + +

Subversion:

+

+gLabels2 can be checked out through subversion with +the following command. +

+
$ svn co https://glabels.svn.sourceforge.net/svnroot/glabels/trunk/glabels2 +
+

+More information can be found at the . +

+ + + + + + + + +

+ + + + + + + + diff --git a/web/faq/index.php b/web/faq/index.php new file mode 100644 index 00000000..90c4900d --- /dev/null +++ b/web/faq/index.php @@ -0,0 +1,107 @@ + + + + +

Frequently Asked Questions (FAQ) ...

+ + + + +

Index

+
+ +
+ + +

1. Common Problems.

+ +
+

1.1 I cannot edit text. What's wrong? (2.0.x)

+
+

+This is most likely due to an + in +libbonoboui that was introduced in GNOME 2.8. The symptom is that as soon +as you select a text object, its object property editor apears briefly then +disappears. +

+

+The workaround for this bug is to resize the glabels window so that it is large +enough to display the text property editor in the sidebar. +Note: it is impossible for glabels to automatically do this since the size +needed will vary with different themes, font sizes, and locales. +

+

+This problem is fixed in the development branch of glabels (2.1.x) by using +the GtkUIManager instead of libbonoboui to build the user interface. These +changes are very extensive and require later versions of GNOME, thus are not +suitable for backport into the 2.0.x branch.. +

+
+ + +
+

1.2 Why don't transparent images print correctly? (1.92.1 - 2.1.3)

+
+

+There is currently a limitation in the postscript back-end of libgnomeprint +that causes images with an alpha channel to be composited in an intermediate +context at 72 DPI. Unfortunately an image only needs to have an alpha channel +to trigger this behaviour even if the image is completely opaque, therefore +in earlier versions of gLabels (before 1.92.1) all GIF and PNG images would be +printed at 72 DPI. To work around this problem image compositing was +sacrificed for full resolution rendering beginning with gLabels 1.92.1. +

+

+If you are compiling gLabels from source and are willing to sacrifice image +quality for image transparency, you can disable the workaround by +compiling glabels with the NO_ALPHA_HACK option: +

+
$ ./configure CPPFLAGS=-DNO_ALPHA_HACK +$ make +... +
+
+ + +
+

1.3 How can I instruct glabels to not print blank address lines when doing a document merge?

+
+

+This feature can be best described by a simple example. In the following CSV +file, column 5 contains the second address line for each record. This field is +empty in records 1 and 2, but not in record 3. (For this feature to work, +the field must be completely empty -- any text, including spaces will +defeat this feature.) +

+
Summers,Joyce,,"1630 Revello Dr",,Sunnydale,CA,95037 +McGarret,Steve,O,"404 Piikoi Street",,Honolulu,HI,96813 +Kramer,Cosmo,,"Apt 5B","129 W. 81 St.","New York",NY,10024-7207 +
+

+In the following screenshot, a single multiline text object has been +created to format these addresses. Notice that ${5} representing +the second address line is on a line by itself. (Any additional text +on this line, including spaces would defeat this feature.) +

+ +

+Printing this label results in the following output. +

+ + +
+ + diff --git a/web/faq/q1.3-output.png b/web/faq/q1.3-output.png new file mode 100644 index 00000000..54bffb11 Binary files /dev/null and b/web/faq/q1.3-output.png differ diff --git a/web/faq/q1.3-screenshot.png b/web/faq/q1.3-screenshot.png new file mode 100644 index 00000000..e1d8f2af Binary files /dev/null and b/web/faq/q1.3-screenshot.png differ diff --git a/web/images/.xvpics/button-bg.png b/web/images/.xvpics/button-bg.png new file mode 100644 index 00000000..f9072cb2 --- /dev/null +++ b/web/images/.xvpics/button-bg.png @@ -0,0 +1,5 @@ +P7 332 +#IMGINFO:111x1 Indexed (226 bytes) +#END_OF_COMMENTS +80 1 255 +ÿÛþûßúÛÿÚÿÛþÛûÞûÿÛþÛûÞûßúßûÚÿÛþûÛþÛßúÛÿÚûßúßûÚûÞÛûÞûÛÞûÚûßÚûÚßûÚÛúßÛÚûÚßúÛÛÚûÚßÚ \ No newline at end of file diff --git a/web/images/.xvpics/corner-bl-1.png b/web/images/.xvpics/corner-bl-1.png new file mode 100644 index 00000000..8a97c288 --- /dev/null +++ b/web/images/.xvpics/corner-bl-1.png @@ -0,0 +1,5 @@ +P7 332 +#IMGINFO:19x19 RGB (345 bytes) +#END_OF_COMMENTS +19 19 255 +¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿIÛÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿIÚÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿۑÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿۑÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÛ¶¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÛ¶’ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿI$IÛÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿI$I·ÚÿÿÿÿÿÿÿÿÿÿÿÿÿÿI$II¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿI$IIۑÿÿÿÿÿÿÿÿÿÿÿÿÿÛ¶¶¶I$ÛÛÿÿÿÿÿÿÿÿÿÿÿÛ¶¶¶I$I·þÿÿÿÿÿÿÿÿÿÿÛ¶¶¶I$II¶ÛÿÿÿÿÿÿÿÿÿÛ¶¶¶I$IIۑÛÛÿÿÿÿÿÿÿI$IIÛ¶¶¶IH%·ÚÚÿÿÿÿÿI$IIÛ¶¶¶IH%Iۑ·ÚÛþÿI$IIÛ¶¶¶IH%IÛ¶¶Ú%¶¶ \ No newline at end of file diff --git a/web/images/.xvpics/corner-br-1.png b/web/images/.xvpics/corner-br-1.png new file mode 100644 index 00000000..bdcf039d --- /dev/null +++ b/web/images/.xvpics/corner-br-1.png @@ -0,0 +1,5 @@ +P7 332 +#IMGINFO:19x19 RGB (347 bytes) +#END_OF_COMMENTS +19 19 255 +ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ’ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÛHÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÛ$ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¶·ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ’¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¶Û¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ’Ú·ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¶II$ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÛ¶$IIÿÿÿÿÿÿÿÿÿÿÿÿÿÿ’Ú%HIÿÿÿÿÿÿÿÿÿÿÿÿÿ’Ú·$IHÿÿÿÿÿÿÿÿÿÿÿÿ’HI%ÛÚ¶ÿÿÿÿÿÿÿÿÿÿÿ’HI%IÚ·ÚÿÿÿÿÿÿÿÿÿÛ¶¶$IIIÚ·¶ÿÿÿÿÿÿÿÿ¶’Ú·$IIHÛ¶·ÿÿÿÿÿÿ¶’H%IIÚ·¶Ú$I%ÿÿÛ¶¶¶¶·HI$IÛ¶¶Û$IH¶’IH·Ú·¶H%IHÛ¶·¶HI% \ No newline at end of file diff --git a/web/images/.xvpics/corner-tl-1.png b/web/images/.xvpics/corner-tl-1.png new file mode 100644 index 00000000..a5188bde --- /dev/null +++ b/web/images/.xvpics/corner-tl-1.png @@ -0,0 +1,5 @@ +P7 332 +#IMGINFO:19x19 RGB (336 bytes) +#END_OF_COMMENTS +19 19 255 +I$IIÛ¶¶¶IH%IÛ¶¶Ú%¶¶I$IIÛ¶¶¶IH%Iۑ·ÚÛþÿI$IIÛ¶¶¶IH%·ÚÚÿÿÿÿÿI$IIÛ¶¶¶I¶¶ÿÿÿÿÿÿÿÿÛ¶¶¶I$II¶ÛÿÿÿÿÿÿÿÿÿÛ¶¶¶I$I·þÿÿÿÿÿÿÿÿÿÿÛ¶¶¶I$ÛÛÿÿÿÿÿÿÿÿÿÿÿÛ¶¶¶I¶ÿÿÿÿÿÿÿÿÿÿÿÿÿI$II¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿI$I·ÚÿÿÿÿÿÿÿÿÿÿÿÿÿÿI$IÛÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿI$·þÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÛ¶¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿۑÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿۑÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÛ¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿIÛÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ \ No newline at end of file diff --git a/web/images/.xvpics/corner-tr-1.png b/web/images/.xvpics/corner-tr-1.png new file mode 100644 index 00000000..da555844 --- /dev/null +++ b/web/images/.xvpics/corner-tr-1.png @@ -0,0 +1,5 @@ +P7 332 +#IMGINFO:19x19 RGB (373 bytes) +#END_OF_COMMENTS +19 19 255 +¶’IH·Ú·¶H%IHÛ¶·¶HI%ÿÿÛ¶¶¶¶·HI$IÛ¶¶Û$IHÿÿÿÿÿÿ¶’H%IIÚ·¶Ú$I%ÿÿÿÿÿÿÿÿ¶’HI·Ú·¶H%IÿÿÿÿÿÿÿÿÿÛ¶¶$IIIÚ·¶ÿÿÿÿÿÿÿÿÿÿÿ’HI%IÚ·Úÿÿÿÿÿÿÿÿÿÿÿÿ’HI%ÛÚ¶ÿÿÿÿÿÿÿÿÿÿÿÿÿ’HI·Ú¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿ’Ú%HIÿÿÿÿÿÿÿÿÿÿÿÿÿÿÛ¶$IIÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¶II$ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ’H%ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¶Û¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ’¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¶·ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÛ¶ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÛHÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ’ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¶ \ No newline at end of file diff --git a/web/images/.xvpics/glabels-title-140.png b/web/images/.xvpics/glabels-title-140.png new file mode 100644 index 00000000..83533d11 Binary files /dev/null and b/web/images/.xvpics/glabels-title-140.png differ diff --git a/web/images/.xvpics/glabels-title-clean1-140-1.png b/web/images/.xvpics/glabels-title-clean1-140-1.png new file mode 100644 index 00000000..dc953eb5 Binary files /dev/null and b/web/images/.xvpics/glabels-title-clean1-140-1.png differ diff --git a/web/images/.xvpics/pixel-null.png b/web/images/.xvpics/pixel-null.png new file mode 100644 index 00000000..62c370a6 --- /dev/null +++ b/web/images/.xvpics/pixel-null.png @@ -0,0 +1,5 @@ +P7 332 +#IMGINFO:1x1 Indexed (138 bytes) +#END_OF_COMMENTS +1 1 255 +I \ No newline at end of file diff --git a/web/images/button-bg.png b/web/images/button-bg.png new file mode 100644 index 00000000..6a64bdb5 Binary files /dev/null and b/web/images/button-bg.png differ diff --git a/web/images/corner-bl.png b/web/images/corner-bl.png new file mode 100644 index 00000000..13c71b39 Binary files /dev/null and b/web/images/corner-bl.png differ diff --git a/web/images/corner-br.png b/web/images/corner-br.png new file mode 100644 index 00000000..a5077d7e Binary files /dev/null and b/web/images/corner-br.png differ diff --git a/web/images/corner-tl.png b/web/images/corner-tl.png new file mode 100644 index 00000000..61d7a50b Binary files /dev/null and b/web/images/corner-tl.png differ diff --git a/web/images/corner-tr.png b/web/images/corner-tr.png new file mode 100644 index 00000000..c8872480 Binary files /dev/null and b/web/images/corner-tr.png differ diff --git a/web/images/glabels-title-140.png.good b/web/images/glabels-title-140.png.good new file mode 100644 index 00000000..abbc8a50 Binary files /dev/null and b/web/images/glabels-title-140.png.good differ diff --git a/web/images/pixel-null.png b/web/images/pixel-null.png new file mode 100644 index 00000000..c250a1ff Binary files /dev/null and b/web/images/pixel-null.png differ diff --git a/web/index.php b/web/index.php new file mode 100644 index 00000000..419992c9 --- /dev/null +++ b/web/index.php @@ -0,0 +1,301 @@ + + + + +

About gLabels ...

+ +

+gLabels is a program for creating labels and business cards for the GNOME desktop +environment. It is designed to work with various laser/ink-jet peel-off label and business card sheets that +you'll find at most office supply stores. gLabels is free software and is distributed under the terms of the +GNU General Public License (). +

+ + + + +

Recent News ...

+ + + + +
+
17 August 2007
+
Release 2.1.4 (Unstable)
+

+It's been over a year in the making... +

+

+Although this latest development snapshot has only a few functional updates, its underlying technology has been largely overhauled. +The libgnomeprint library has been completely replaced with the new GtkPrintOperation and Cairo. +One side effect of print rendering with Cairo is that image compositing now works at full resolution. +Cairo has also replaced GnomeCanvas in the main display and drawing interface. +Many other deprecated dependencies have been replaced as well. Because of this, this version requires at least Gnome 2.16. +

+

+Changes/fixes since 2.1.3 include +

+
    + +
  • Added categorization of templates and an updated New Label dialog.
  • +
  • Added initial support for datamatrix 2D barcodes.
  • +
  • Migrated from EggRecent to GtkRecentManager.
  • +
  • Migrated from libgnomeprint to GtkPrintOperation and Cairo.
  • +
  • Migrated from libgnomeprint to Pango for text layout.
  • +
  • Migrated GnomeDruid to GtkAssistant for template designer.
  • +
  • Migrated from GnomeCanvas to Cairo.
  • +
  • Removed splash screen.
  • +
  • Added support for Brazilian CEPNet barcodes.
  • +
  • Updated French translation (Claude Paroz)
  • +
  • New Esperanto translation (Antonio C. Codazzi)
  • +
  • Minor bug fixes (and probably some new bugs).
  • +
  • New templates.
  • + +
+

+. +

+
+ + + + + + +
+
27 May 2006
+
Release 2.1.3 (Unstable)
+

+Changes/fixes since 2.1.2 include +

+
    + +
  • Don't print "Invalid barcode data" if data field is empty. Fixes Bug #1479839. (Darren Warner)
  • +
  • Fixed hangup when grid or markup have been toggled during a previous session. Fixes Bug #1434324.
  • +
  • Added shadow attribute to label objects.
  • +
  • Fixed color groups in color combo widgets.
  • +
  • Fixed several potential crashes.
  • + +
+

+. +

+
+ + + + + + +
+
26 December 2005
+
Release 2.0.4 (Stable)
+

+Changes/fixes since 2.0.3 include +

+
    + +
  • Use filechooser for GnomeFileEntrys in merge properties dialog and + object editor image page. Fixes #1328173 and #1294692
  • +
  • New configure option to disable update-mime-database and update-desktop-database
  • +
  • Minor cleanup
  • +
  • New templates and fixes
  • + +
+

+. +

+
+ + + + + + +
+
22 December 2005
+
Release 2.1.2 (Unstable)
+

+Changes/fixes since 2.1.1 include +

+
    + +
  • Updated Italian translation (Daniele Medri)
  • +
  • Fixed double entry in property bar's font family combobox
  • +
  • Don't allow zero width or height when drawing pixbufs
  • +
  • Fixed various memory leaks
  • +
  • New configure option to disable update-mime-database and update-desktop-database
  • +
  • New merge backend for evolution data server (Austin Henry)
  • +
  • New merge backend for VCards (Austin Henry)
  • +
  • New templates and fixes
  • + +
+

+. +

+
+ + + + + + +
+
26 June 2005
+
Release 2.1.1 (Unstable)
+

+Changes/fixes since 2.1.0 include +

+
    + +
  • Added document merge tutorial
  • +
  • Replaced deprecated widgets (now requires Gnome 2.10 and GTK+ 2.6)
  • +
  • Replaced libbonoboui with GtkUIManager (now requires Gnome 2.10 and GTK+ 2.6)
  • +
  • Updated Russian translation (Vitaly Lipatov)
  • +
  • Updated Spanish translation (Sergio Rivadero)
  • +
  • Updated Czech translation (David Makovský and Zbynek Mrkvick)
  • +
  • Updated Italian translation (Daniele Medri)
  • +
  • Added documentation for libglabels
  • +
  • Minor bug fixes and cleanup
  • +
  • New templates
  • + +
+
+ + + + + + +
+
26 June 2005
+
Release 2.0.3 (Stable)
+

+Changes/fixes since 2.0.2 include +

+
    + +
  • Added document merge tutorial
  • +
  • Updated Russian translation (Vitaly Lipatov)
  • +
  • Updated Spanish translation (Sergio Rivadero)
  • +
  • Updated Czech translation (David Makovský and Zbynek Mrkvick)
  • +
  • Updated Italian translation (Daniele Medri)
  • +
  • Fixed packing style of printer selection dialog
  • +
  • New templates
  • + +
+
+ + + + + + +
+
22 January 2005
+
Release 2.1.0 (Unstable)
+

+This is the first development release in preparation for 2.2. New features include +

+
    + +
  • Color object properties can be provided through document-merge feature (Frederic Ruaudel)
  • +
  • Fixes/changes from 2.0.2
  • + +
+
+ + + + + + +
+
22 January 2005
+
Release 2.0.2 (Stable)
+

+Changes/fixes since 2.0.1 include +

+
    + +
  • Desktop file reconciled with desktop-entry-spec
  • +
  • New cleaned-up icon
  • +
  • Added option to glabels-batch to allow selection of first label
  • +
  • Added options to glabels-batch to allow selection of merge source and crop marks (José Dapena Paz)
  • +
  • Updated french translation (Florent Morel)
  • +
  • Fixed translation problem with object editor labels
  • +
  • Minor bug fixes and cleanup
  • +
  • New templates
  • + +
+
+ + + + + + +
+
15 August 2004
+
Release 2.0.1, "You know it, Bruddah" (Stable)
+

+There were a couple of problems with 2.0.0. Changes/fixes include +

+
    + +
  • Fixed crash when reading some labels created with 1.93.x
  • +
  • Updated japanese translations (Takeshi AIHANA)
  • +
  • Fixed crash from improperly freeing translation strings
  • + +
+
+ + + + + + +
+
09 August 2004
+
Release 2.0.0, "Zulu as Kono" (Stable)
+

+Well it's finally here, 2.0 -- woo hoo! +Changes/fixes from 1.93.3 include +

+
    + +
  • Fixed crash when encountering old template files
  • + +
  • Align grid to label center for DVD/CD and round labels
  • + +
  • Don't touch compression of original file
  • + +
  • 64-bit fixes
  • + +
  • Added man page
  • + +
  • Fixed missing outline problem experienced with some printers
  • + +
  • Added separate horizontal and vertical waste properties for rectangular templates
  • + +
  • Added option to auto-shrink text during document merge
  • + +
  • Fixed memory leaks
  • + +
  • Added format attibute to barcode objects, to allow correct layout of merged labels
  • + +
  • Added mime type registration for GNOME 2.6
  • + +
+
+ + + + + + + +

+ + + diff --git a/web/links/index.php b/web/links/index.php new file mode 100644 index 00000000..58d478c0 --- /dev/null +++ b/web/links/index.php @@ -0,0 +1,49 @@ + + + + + +

Related links ...

+ + + +

gLabels Project Links

+ + + + +

Supporting Software

+ + + + +

Similar Software

+ + + + +

Other

+ + + + + diff --git a/web/news/index.php b/web/news/index.php new file mode 100644 index 00000000..4f32aebf --- /dev/null +++ b/web/news/index.php @@ -0,0 +1,917 @@ + + + + +

News ...

+ + + + +
+
17 August 2007
+
Release 2.1.4 (Unstable)
+

+It's been over a year in the making... +

+

+Although this latest development snapshot has only a few functional updates, its underlying technology has been largely overhauled. +The libgnomeprint library has been completely replaced with the new GtkPrintOperation and Cairo. +One side effect of print rendering with Cairo is that image compositing now works at full resolution. +Cairo has also replaced GnomeCanvas in the main display and drawing interface. +Many other deprecated dependencies have been replaced as well. Because of this, this version requires at least Gnome 2.16. +

+

+Changes/fixes since 2.1.3 include +

+
    + +
  • Added categorization of templates and an updated New Label dialog.
  • +
  • Added initial support for datamatrix 2D barcodes.
  • +
  • Migrated from EggRecent to GtkRecentManager.
  • +
  • Migrated from libgnomeprint to GtkPrintOperation and Cairo.
  • +
  • Migrated from libgnomeprint to Pango for text layout.
  • +
  • Migrated GnomeDruid to GtkAssistant for template designer.
  • +
  • Migrated from GnomeCanvas to Cairo.
  • +
  • Removed splash screen.
  • +
  • Added support for Brazilian CEPNet barcodes.
  • +
  • Updated French translation (Claude Paroz)
  • +
  • New Esperanto translation (Antonio C. Codazzi)
  • +
  • Minor bug fixes (and probably some new bugs).
  • +
  • New templates.
  • + +
+

+. +

+
+ + + + + + +
+
27 May 2006
+
Release 2.1.3 (Unstable)
+

+Changes/fixes since 2.1.2 include +

+
    + +
  • Don't print "Invalid barcode data" if data field is empty. Fixes Bug #1479839. (Darren Warner)
  • +
  • Fixed hangup when grid or markup have been toggled during a previous session. Fixes Bug #1434324.
  • +
  • Added shadow attribute to label objects.
  • +
  • Fixed color groups in color combo widgets.
  • +
  • Fixed several potential crashes.
  • + +
+

+. +

+
+ + + + + + +
+
26 December 2005
+
Release 2.0.4 (Stable)
+

+Changes/fixes since 2.0.3 include +

+
    + +
  • Use filechooser for GnomeFileEntrys in merge properties dialog and + object editor image page. Fixes #1328173 and #1294692
  • +
  • New configure option to disable update-mime-database and update-desktop-database
  • +
  • Minor cleanup
  • +
  • New templates and fixes
  • + +
+

+. +

+
+ + + + + + +
+
22 December 2005
+
Release 2.1.2 (Unstable)
+

+Changes/fixes since 2.1.1 include +

+
    + +
  • Updated Italian translation (Daniele Medri)
  • +
  • Fixed double entry in property bar's font family combobox
  • +
  • Don't allow zero width or height when drawing pixbufs
  • +
  • Fixed various memory leaks
  • +
  • New configure option to disable update-mime-database and update-desktop-database
  • +
  • New merge backend for evolution data server (Austin Henry)
  • +
  • New merge backend for VCards (Austin Henry)
  • +
  • New templates and fixes
  • + +
+

+. +

+
+ + + + + + +
+
26 June 2005
+
Release 2.1.1 (Unstable)
+

+Changes/fixes since 2.1.0 include +

+
    + +
  • Added document merge tutorial
  • +
  • Replaced deprecated widgets (now requires Gnome 2.10 and GTK+ 2.6)
  • +
  • Replaced libbonoboui with GtkUIManager (now requires Gnome 2.10 and GTK+ 2.6)
  • +
  • Updated Russian translation (Vitaly Lipatov)
  • +
  • Updated Spanish translation (Sergio Rivadero)
  • +
  • Updated Czech translation (David Makovský and Zbynek Mrkvick)
  • +
  • Updated Italian translation (Daniele Medri)
  • +
  • Added documentation for libglabels
  • +
  • Minor bug fixes and cleanup
  • +
  • New templates
  • + +
+
+ + + + + + +
+
26 June 2005
+
Release 2.0.3 (Stable)
+

+Changes/fixes since 2.0.2 include +

+
    + +
  • Added document merge tutorial
  • +
  • Updated Russian translation (Vitaly Lipatov)
  • +
  • Updated Spanish translation (Sergio Rivadero)
  • +
  • Updated Czech translation (David Makovský and Zbynek Mrkvick)
  • +
  • Updated Italian translation (Daniele Medri)
  • +
  • Fixed packing style of printer selection dialog
  • +
  • New templates
  • + +
+
+ + + + + + +
+
22 January 2005
+
Release 2.1.0 (Unstable)
+

+This is the first development release in preparation for 2.2. New features include +

+
    + +
  • Color object properties can be provided through document-merge feature (Frederic Ruaudel)
  • +
  • Fixes/changes from 2.0.2
  • + +
+
+ + + + + + +
+
22 January 2005
+
Release 2.0.2 (Stable)
+

+Changes/fixes since 2.0.1 include +

+
    + +
  • Desktop file reconciled with desktop-entry-spec
  • +
  • New cleaned-up icon
  • +
  • Added option to glabels-batch to allow selection of first label
  • +
  • Added options to glabels-batch to allow selection of merge source and crop marks (José Dapena Paz)
  • +
  • Updated french translation (Florent Morel)
  • +
  • Fixed translation problem with object editor labels
  • +
  • Minor bug fixes and cleanup
  • +
  • New templates
  • + +
+
+ + + + + + +
+
15 August 2004
+
Release 2.0.1, "You know it, Bruddah" (Stable)
+

+There were a couple of problems with 2.0.0. Changes/fixes include +

+
    + +
  • Fixed crash when reading some labels created with 1.93.x
  • +
  • Updated japanese translations (Takeshi AIHANA)
  • +
  • Fixed crash from improperly freeing translation strings
  • + +
+
+ + + + + + + +
+
09 August 2004
+
Release 2.0.0, "Zulu as Kono" (Stable)
+

+Well it's finally here, 2.0 -- woo hoo! +Changes/fixes from 1.93.3 include +

+
    + +
  • Fixed crash when encountering old template files
  • + +
  • Align grid to label center for DVD/CD and round labels
  • + +
  • Don't touch compression of original file
  • + +
  • 64-bit fixes
  • + +
  • Added man page
  • + +
  • Fixed missing outline problem experienced with some printers
  • + +
  • Added separate horizontal and vertical waste properties for rectangular templates
  • + +
  • Added option to auto-shrink text during document merge
  • + +
  • Fixed memory leaks
  • + +
  • Added format attibute to barcode objects, to allow correct layout of merged labels
  • + +
  • Added mime type registration for GNOME 2.6
  • + +
+
+ + + + +
+
21 February 2004
+
Release 1.93.3, "Doggy-Downers" (Unstable for GNOME 2)
+

+With any luck, this should be the final development release of gLabels before 2.0. Changes/fixes include +

+
    + +
  • If GTK+ is version 2.3.2 or greater, the new GtkFileChooserDialog + will be used for the Open and Save As dialogs.
  • + +
  • Added fixed format subtypes for POSTNET, EAN, UPC, and ISBN barcode + types.
  • + +
  • Fixed resize problems with barcodes.
  • + +
  • Corner resize handles will now maintain the current constant aspect ratio + of an object if the Control key is pressed while resizing.
  • + +
  • Fixed vertical offset of barcode text.
  • + +
  • Template code has been split out into its own library + (libglabels) to facilitate 3rd party use of glabels templates.
  • + +
+
+ + + + +
+
04 January 2004
+
Release 1.93.2, "Puppy-Uppers" (Unstable for GNOME 2)
+

+This latest development snapshot is primarily bug fixes, but includes +a couple of interesting new features. Changes/fixes include +

+
    + +
  • Make templates known when encountered for the first time in a label. + This can occur when template names have changed between versions or + when you receive a glabels document from someone else who has created a + custom template. (me)
  • + +
  • Now builds against GNOME 2.5.1 (GARNOME 0.28.3). (me)
  • + +
  • Fixed button order in new label and label properties dialogs. + (Wayne Schuller)
  • + +
  • Fixed a bug with the preferences dialog, which resulted in ignoring + default object property preferences. (me)
  • + +
  • Fixed a bug which caused the waste property to function incorrectly + on rectangular labels. (me)
  • + +
  • Added template designer assistant/wizard. (me)
  • + +
  • Added line spacing property to all text objects. (Wayne Schuller)
  • + +
  • Fixed bug in object editor size page which caused the height spin + button to be ignored. (me)
  • + +
  • Fixed bug with object editor size page that caused text object sizes + to be prematurely changed when any property is edited. (me)
  • + +
+
+ + + + +
+
23 December 2003
+
Release 1.93.1, "You'll shoot your eye out" (Unstable for GNOME 2)
+

+This latest development snapshot is primarily bug fixes. Changes/fixes +include +

+
    +
  • Document merge now honors locale's encoding when reading CSV files. (me)
  • +
  • Size and position spinboxes now limit well beyond label edges. (me)
  • +
  • Print dialog now tracks settings separately for each label/window. (me)
  • +
  • Scroll window now tracks changes in template. (me)
  • +
  • Various GUI elements are updated when preferences change. (me)
  • +
  • Fixed position bug for box objects. (me)
  • +
  • Fixed crash when copying text objects. (me)
  • +
  • Added property bar entries to view menu. (me)
  • +
  • Property bar widget now track properties of selected widgets in an intuitive manner (Emmanuel Pacaud)
  • +
  • Fixed crash when a template name does not exactly match a current template name. (me)
  • +
  • Some UI cleanup
  • +
  • Fixed size reset button on image size pages. (me)
  • +
+
+ + + + +
+
30 November 2003
+
Release 1.93.0, "More Goo To Go" (Unstable for GNOME 2)
+

+This latest development snapshot replaces the multiple object property dialogs with a single dockable sidebar. This release completes the feature set planned for glabels 2.0. +

+
+ + + + +
+
9 November 2003
+
Release 1.92.3, "Spam Lamb" (Unstable for GNOME 2)
+

+This latest development snapshot fixes a couple of nasty bugs: +

+
    +
  • Fixes a crash that occured when changing zoom level after objects have been deleted.
  • +
  • Templates with a page size of "Other" are once again supported.
  • +
+
+ + + + +
+
1 November 2003
+
Release 1.92.2, "Book'im" (Unstable for GNOME 2)
+

+This latest development snapshot fixes the glabels-batch command line front-end, which has been broken since 1.92.0. +

+
+ + + + +
+
27 October 2003
+
Release 1.92.1 "KMG365" (Unstable for GNOME 2)
+

+This latest development snapshot is primarily bug fixes. Changes/fixes +include +

+
    +
  • Added option to print crop marks. (Me)
  • +
  • Fixed NULL name bug in gl_pixbuf_cache_remove_pixbuf(). (Me)
  • +
  • Fixed bug when importing glabels-0.4 text items. (Me)
  • +
  • Fixed locale problems when reading paper-sizes.xml. (Emmanuel Pacaud)
  • +
  • Default font changed to "Sans" from "Helvetica." (Emmanuel Pacaud)
  • +
  • Updated to most recent egg-recent-files. (Emmanuel Pacaud)
  • +
  • Fixed bug when text item is a single merge field. (Emmanuel Pacaud)
  • +
  • Fixed bug in hacktext canvas item that would leave artifacts when item is moved. (Emmanuel Pacaud)
  • +
  • Allow XML comments at any spot in a template file. (Me)
  • +
  • Workaround for poor rendering of images with alpha channel. (Me)
  • +
  • Properly clean-up bonobo ui component of destroyed windows. (Me)
  • +
+
+ + + + +
+
3 September 2003
+
Release 1.92.0 "Ain't No Big Thing, Brudda" (Unstable for GNOME 2)
+ +

+This latest development snapshot has been a long time in the making. Changes +include +

+
    +
  • Uses libgnomeprint-2.2
  • +
  • Fixes a couple of crashes associated with image objects.
  • +
  • A new property toolbar for changing common object properties "en masse."
  • +
  • XML file formats have been cleaned up (see ). +
      +
    • Labels generated with 1.91.x should import automatically.
    • +
    +
  • +
  • Templates now support a waste attribute, so that background images can print beyond the edge of the label.
  • +
+
+ + + + +
+
26 January 2003
+
Release 1.91.1 (Unstable for GNOME 2)
+ +

This development snapshot includes

+
    +
  • Support for "business card" CDs.
  • +
  • Images are now saved "inline."
  • +
  • Text boxes can be resized.
  • +
  • Barcodes are resizable both vertically and horizontally.
  • +
  • Barcode checksums can be enabled/disabled by the user.
  • +
+
+ + + + +
+
31 December 2002
+
Release 1.91.0 (Unstable for GNOME 2)
+ +

This development snapshot includes

+
    +
  • Object flip and rotation commands.
  • +
  • Object alignment commands.
  • +
  • A status bar, showing current zoom level and cursor position.
  • +
  • Image filenames can come from a document merge field.
  • +
  • A cleaner API for document merge backends.
  • +
  • Ability to select individual records when performing a document merge.
  • +
  • Templates support layouts beyond simple grids (see Memorex CD Labels for an example).
  • +
  • Templates support markup lines.
  • +
+

NOTE: This development snapshot breaks compatibility with labels created with previous development versions.

+
+ + + + +
+
05 October 2002
+
Release 1.91.0 (Unstable for GNOME 2)
+ +

This development snapshot includes

+
    +
  • This release now uses a single document interface (SDI) instead of MDI.
  • +
  • Template coordinate system is now relative to upper left corner.
  • +
+
+ + + + +
+
26 September 2002
+
Release 1.89.2 (Unstable for GNOME 2)
+ +

This development snapshot includes

+
    +
  • fixes several problems with document-merge feature
  • +
  • extensive user interface tweaks
  • +
  • more code cleanup
  • +
+
+ + + + +
+
10 September 2002
+
Release 1.89.1 (Unstable for GNOME 2)
+ +

This development snapshot includes

+
    +
  • the ability to read label files created with 0.4.x
  • +
  • various user interface tweaks
  • +
  • some code cleanup
  • +
+
+ + + + +
+
10 September 2002
+
Release 0.4.6 (Stable for GNOME 1.4)
+ +

+Yet another release for the GNOME 1.4 platform. +

+
    +
  • Fixes a bug which ignored isolated whitespace between merge fields when opening previously saved label files.
  • +
  • Includes updated Russian language support, thanks to Vitaly Lipatov
  • +
  • Additional label templates
  • +
+
+ + + + +
+
27 August 2002
+
Release 1.89.0 (Unstable for GNOME 2)
+ +

+This is the first development release of the codebase for GNOME 2. This +release is far from complete, and does still have problems. +Download at your own risk. +

+
+ + + + +
+
25 August 2002
+
Release 0.4.5
+ +

+"Ok, so I lied." Hopefully, this will be the final release for GNOME 1.4. Future releases will target the GNOME 2.0 platform. +

+ +
+ + + + +
+
27 June 2002
+
Release 0.4.4
+ +

+Hopefully, this will be the final release for GNOME 1.4. Future releases will +target the GNOME 2.0 platform. +

+ +
+ + + + +
+
22 Febuary 2002
+
Release 0.4.3
+ + +
+ + + + +
+
03 Febuary 2002
+
Release 0.4.2
+ + +
+ + + + +
+
14 January 2002
+
Release 0.4.1
+ + +
+ + + + +
+
06 January 2002
+
Release 0.4.0
+ +

+This is the first release with a document merge feature. The +implementation of this feature may still be a little rough around +the edges. Currently only a simple back-end for text files exists -- +others are planned. The currently supported text-file format is very +simple: each line is a record; fields are delimited by tabs, +commas, or colons; and newlines can be embedded into records by using +the "\n" entity. +

+

+Other changes include +

+ +
+ + + + +
+
17 December 2001
+
Release 0.3.4
+ + +
+ + + + +
+
13 December 2001
+
Release 0.3.3
+ + +
+ + + + +
+
06 December 2001
+
Release 0.3.2
+ + + +

03 December 2001, Release 0.3.1:

+ +
+ + + + +
+
02 December 2001
+
Release 0.3.0
+ +

+This release includes some significant restructuring "under the hood." +Some of the more visible features include: +

+ +
+ + + + +
+
18 November 2001
+
Release 0.2.4
+ + +
+ + + + +
+
11 November 2001
+
Release 0.2.3
+ + +
+ + + + +
+
28 October 2001
+
Release 0.2.2
+ + +
+ + + + +
+
21 October 2001
+
Release 0.2.1
+ + +
+ + + + +
+
14 October 2001
+
Release 0.2.0
+ + +
+ + + + +
+
05 October 2001
+
Release 0.1.5
+ +

+This quick release includes French language support, thanks to +Olivier Berger. +

+
+ + + + +
+
01 October 2001
+
Release 0.1.4
+ +

+This release adds the standard clipboard functions (cut, +copy and paste). It also fixes a couple of minor bugs. +

+
+ + + + +
+
26 September 2001
+
Release 0.1.3
+ +This release adds 10 additional barcode types, thanks to Alessandro Rubini's GNU-Barcode library. +
+ + + + +
+
08 September 2001
+
Release 0.1.2
+ + +
+ + + + +
+
03 September 2001
+
Release 0.1.1
+ + +
+ + + + +
+
28 August 2001
+
Release 0.1.0
+ +

+This is the initial release of gLabels. It is still a little +rough around the edges and is missing several important features; +however, it should have enough functionality to produce sheets +of identical labels or business cards. +

+
+ + + + + + diff --git a/web/screenshots/.xvpics/191-screenshot-main-grid-thumb.png b/web/screenshots/.xvpics/191-screenshot-main-grid-thumb.png new file mode 100644 index 00000000..05d0f85f --- /dev/null +++ b/web/screenshots/.xvpics/191-screenshot-main-grid-thumb.png @@ -0,0 +1,5 @@ +P7 332 +#IMGINFO:171x154 RGB (22745 bytes) +#END_OF_COMMENTS +66 60 255 +’mmn‘nmm’mmn‘nmm’mnm‘nmm’mnm‘nmn‘mnm’mmn‘mnm’mmn‘nmm’mnm‘nmm’mnm‘nmnHnImImIMiMjLjMiMImInHnImImImIMjLjMiMImImJlJMiMiMiMIjLjMiMImImIiMmIùI’’‘n’qŽ‘rnm’‘’n‘’’MŽ‘r’‘Ž-iINHJImIIMIIINhJMIIMIiINHJMIIôÕiÔEù$’’°’¶¶¶·‘·µ·–²¶¶¶’¶¶¶–²»Õ“¶¶¶–²¶¶–²¶¶–²¶¶·‘·µ·’¶¶¶’¶¶¶–²¶¶–¬—Œ’Œ¶’Ú·Ú¶ÛÚ·Ú¶ÛÚÛÚ·ÚÛ¶ÚÛÚ·ÚÛÚ·ÚÛÚÛÚÛÚÛ¶ÛÚÛÚÛÛÚÛ¶ÛÚÛÚÛÚÛÚ·ÚÛÚÛÚÛÚÛ¶ÛÚۑ’Ú’’‘Û’‘’Ûڒ¶m·Ú’‘’’¶’Û‘¶’¶ÛÚ·ÚÛÚÛÚÛÚÛ¶ÛÚÛÚÛÚÛÚ·ÚÛÚÛÚÛÚÛ·ÚÛÚÛÚÛÚÛm’¶¶¶¶¶·‘Û’Ú’Ú’Û‘·¶¶¶¶¶·µ·¶¶¶¶·µ·¶¶¶¶¶·µ·¶¶¶¶¶·µ·’Ú’Ú’Û’Ú’¶¶¶·µ·¶¶‘’Ú’Û¶ÚÛ¶ÛÚÛÚ·µ³ÚÛÚº·ÖÚÛ¶ÛÚÛ¶¶ÛÚÛ¶’ÚÛÚ»ÖÛÚÛÚÛÚÛº×ÚÛÚÛÚÛÚ»ÖÛÚÛÚÛÛÚ»’Ú¶·ÿ‘Ûڒm’Ú¶ÛßÖ»Ö¶¶–û¶–ÿ·¶¶¶ÚۑוÛÛÚÛÚ×Ú»ÚÛÚÛÚÛÖÛºÛÛÚÛÚÛÖÛºÛÚÛڒ’Ú’¶û–Úۑ’‘Û’‘“ÚÚÛmriÿºi’ÚÛ¶¶¶»Ö¶Ú·ÚÛÚÛÚ·ÚÛÚÛÚÛÚÛ¶ÛÛÚÛÚÛÚÛ¶ÛÚÛÚÛڒ’Ú’¶¶’ÚÛ¶¶Û¶Ûµ“ÚÛÚmŽqÛڒÛÖ»ÚÚ·¶Ûµ·±ß·ÚÛÚÛÚÛÚ׺ÛÚÛÚÛÚÛÖ»ÚÛÛÚÛÚÛֻڒ’Ú’¶·ÚÚ·¶¶¶Ûµ·¶Ú·Ú¶’Û¶Ûµ·Úۑ·Ú·Ú¶¶¶·ÚÛÚÛÚ·ÚÛÚÛÚÛÚÛ¶ÛÚÛÚÛÛÚÛ¶ÛÚÛÚۑ’Ú’Û¶¶Ú·¶¶¶Ûµ“Ú’ÿ¶Ú·¶ÚÛ¶¶Û¶¶¶’Ú·Ú’Ú·ÚÛÚ·ÚÛÚÛÚÛÚÛ¶ÛÚÛÚÛÚÛÚ·ÚÛÚÛÚÛۑ’¶’¶¶¶¶¶¶’·µ·¶¶¶¶¶¶·µ“Ú’¶¶¶¶·µ·¶¶¶’¶¶¶·µ·¶¶¶¶¶’Û‘·¶¶¶¶¶¶¶·µ“¶¶¶¶¶’’Ú¶·Ú·ÚÛÚ¶¶Û’µ’ÛÚÛ¶Ûڍßוs‘ÛÛ¶¶Úے¶ÚÛ¶’ÛÚ¶¶·Úڒ¶ÛÚÛ¶ÛÚÛÚÛÛÚÛ¶ÛÚÛڒ’Ú’Û$ÿ¶ÛڒÛڑúmûº’Úۑú‘Ûr•nڒIHß׶¶º×¶¶Úۑ“µ»Ör¶ÛÚÛÚÛº×ÚÛÛÚÛÚۺב’Ú’ÿ¶ÛÚÛÚ·ÚÛ¶‘·Ú’ÛÚÛÚmÛÚrT’Û¶‘’ÛÚ¶·‘Ûº²¶Û¶¶mß֎•·ÚÛÚ×ÚÛºÛÚÛÚÛÖÛÚ»‘’’‘¶¶’¶’¶’¶’¶’¶’µ·‘·‘¶’¶’¶’¶¶’¶’¶‘·‘·‘¶’¶¶’¶’¶’¶’¶‘·‘·µ’¶’¶’¶’¶’¶‘’¶¶Ú·¶¶Û¶¶¶Û¶¶Ú·¶¶Ú·¶Ú¶·¶Ú¶·¶Ú¶·Ú¶·¶Ú¶·Ú¶¶·Ú¶¶·Ú¶¶Û¶¶¶Û¶¶Ú·¶¶Û¶¶¶¶’¶¶»Ö¶º·Öº·¶º×º¶·Ú¶¶»¶Ö»¶º×¶º¶·Ú¶·ºÖ·º¶»Ö¶º·Öº·¶º×º¶·Ú¶¶»¶Ö»¶º×¶¶¶’¶¶ÛߺÛÛßÚ»ÛÞÛÛÛºßÛÚÛß»ÚßÛÛºÛßÚÛÛ¿ÚÛÛÞÛ»ÛÞÛÛ»ÞÛÛÚß»ÛÚßÛÛºÛßÚÛ»ßÚ¶·’¶¶ßûµÿûúûÛú•ûûúÛûú¶•ûûúûûÚûúûúûÛúûúûþ×ÿöÿöÿÖÿûúûúÛûúûúÛúûúûûÚÿÛ֖’¶¶ßûÿÿÿ¾}~<~ÞÿÿÿÿÿÿûßÿûßþûßÿûßþûßÿÛÿÿþÛÿûßÿúßÿÿÛÿûÞÿûßÿûÞÿûßÿû¾×±’¶¶ßÿÿÿº}ž}<>ÿÿÿÿÿÿÿûÿÿÿßÿÿÿÿÿÿûÿßÿÿÿþÿÿÿÿûÿÿÿßÿÿÿûÿÿÿßÿÿþÿÿû߶¶’¶¶ßûÿY=<<›¶==ÿÿÿÿÿûßûÞÿûßÛþûßûßþÛÿûßúßûßÿÛþûßûÞûßÿÛúßÿÛÿúßûßûÚ»±’¶¶ßÿÿX==\ž%H^›ÿÿÿÿÿÿûÿÿÿþÿÿÿÿßÿûÿÿÿÿÿÿßÿÿÿûÿÿÿþÿßÿûÿÿÿÿÿÿßÿÿûÞ·µ’¶¶ßûÿ]|RTY]]’ÿÿÿÿÿÿÚÿÿÛÿÿÛþÿÛÿ¶¶Ûÿÿÿ‘ÛßÖÿÛÿþÛÿÿÛÿÚÿÿÿÛÿÛþÿÛÿÛ¶¶’¶¶ßÿÿ45XUrXš–¾Ûÿÿÿÿÿþÿÿÿßÿÿÿÿûÿ‘—Ö¶–ÿÖÿr‘·‘²’¶ÿÿßÿûÿÿÿÿÿþßÿÿû߶¶’¶¶ßûÿ™Yzyy98»Þ–ÞÛÿÿßÿúßûßûþßûßûÿq¶¶·Öߑ·±—Ö¶‘—ÚûßûþÛÿßûÞûÿßûÞûÛ¶¶’¶¶ßÿÿû¾yy~Uy»ÞÛÿÿÿÿÿÿÿþßÿÿÿÿûÿÿÿßÿÿÿÿûÿÿÿþÿÿÿßÿûÿÿÿÿÿßÿÿûÿÿþÛ¶·’¶¶ßûÞÿÿu~y1Uº¿ÚÿÛÞûÿÿÿßÿûÿÿÿÞÿûÿÿÿßÿûÿÿÿÿÞÿûÿÿÿßÿûÿÿÞÿûÿÿÿßû߶¶’¶¶ßûÿÿÿßþ»\159YÛÞÿÛÚÿÿÿÿßÿûÿÿÿÿÿßúÿÿÿÿßÿÿûÿÿÿÿÿßûþÿÿÿßÿûÿÿÿÿßúß֗’¶¶ßÿû89šÿÿ¾4689»ÞÿÿßÿûÿÿÿÿÿÿþÿÛÿÿÿÿÿÿÿÿÛÿÿÿÿÿÿÿþÿÛÿÿÿÿÿÿÿÿÛÿÿÿÚ·µ’¶¶ßû¾45]–Úÿ945=žÚÿÿÿßÿÿûÿÿÿÿßÿûÿþÿßÿÿÿûÿÿÿÿßÿÿûþÿÿßûÿÿÿÿßÿÿÿúÿÛº²’¶¶ßûÞ5Y9U¶ÿ]4]=ºÞßÿÿÿÛÿÿÿþÿûÿßÿÿÿÿÛÿþÿÿßûÿÿÿÿÿÿÛÿþÿÿÿÛÿÿÿÿÿÿÛþÛº³’¶¶ßûÿ58]v¾8Y=X¿Ú¿þÿûÿ¾šÿûÿßÿÿÿÿúßßÿûÿ¾šÚÿßÿÿûÿÞÿÿÿûßÞÿûÿÿßÿÿûÞ·¶’¶¶ßûÿ™5Y9<}1Y8u¿ºÞÿûßÿ™ÿyšßº»¹žÛ¾™šššÿÚzÿ½vßx»¾–¾š™zºyÛ޺߾ÿûÿÛº²’¶¶ßÿÿÿº}~™5T5U™»ºÿÞÿÿÿºžººšy»½›¹ßšužÚÿߺߙßÚºzޚÿy»™ÿy۞º¾ºÿÿû߶¶’¶¶ßûÿÿÿÞyz0YššºÚßÿÿÿÿ™ÿÿßûÿÿÿߺÞÿûÿßÿÿÿûßÿþÿÿßûÿ¾ºÿÛÿÿÿÿÚÿÿÿÿßû¶–’¶¶ßû•·±·¶–¶qי·Ú·Ú–‘ÿ·ÚÛþÛÛÚÿÛÚßÛþÛÿÛÿÚÿÿÛÿÿûÞÿÿÛÞÿÛÿÿÿÿÛÿÿÿþû߶¶’¶¶ßûL%E(%$I(%D)$E)()D)D)E(EI)HIIiIMiImMjqirm’qŽ’‘’–’²•³•³µ·ßþÛו’¶¶ßûÚÿÿÛÿÛþÿÛÿÛþÛÿÛÿþÛÿÛÿÚÛÿÛþÛÿÚ·ÿÚÛÿ¶Ûþ·¶ÿÚÛÛÚÛÚÛÚÛÚÛÚ·ÚÛÚÿÛÛ¶¶’¶¶ßÿûÿÿÿÿÿÿÿÿÚÿÿÿÿÿÿÿßÿûÿÿÿÿ‘’’¶’¶ÿm¶¶r²‘’’–²m¶’¶’ÿ‘·•ÿûÿÿÿÿÿÿÛ¶¶’¶¶ßûÿÚÿÿÛÿÿÚÿÛÿÿÛþÿÛÿßûÿþÛÿßûÚÛÿÚÛÿºûÛÚßûÚÛÚÛÛÚ¶ÛÛþ»úÛßûÿÚÿÿÛÿÚ·¶’¶¶ßÿûÿÿÿÿÿÿÿÿÚÿÿÿÿÿÿÿßÿûÿÿÿÿÿÿÿÿÚÿÿÛµ’’’¶Ûÿ¶Ú’Û‘·µÛ’¶’ÿÿÚÿÿÿÿÿÛ¶¶’¶¶ßû‘ÿ»Öß²Ú»ûþÛÿÛÿÚÿÿÛÿÚÿÛÿÛþÿÛÿÛþÛۑ߲ÛÚ·þÛ¶¶Û¶¶¶ÿ¶ÛÚÛÿÛþÛÿÛÿÚ·µ’¶¶ßÿ²’‘’ß֒ÚÿÿÿßÿûÿÿÿÿÿÿÿÿßÿûÿþÿÿÿÿÿßÿûÿÿÿÿÿÿÿÿÛÿþÿÿÿÿÿÛÿÿÿÿÿÿÚ·¶’¶¶ßûÚ¶ÛÛ¶ÿÚÿےÿþÿ·ÿÿþÛÿÿÛÿÞûÿÿÛÿÚÿÿÛÿÿÚÿÿÛÿÿÛþÿÛÿÿÛþßûÿÛÿþÛÿÿÛÞג’¶¶ßÿ֒Ûþ“µ·qב¶’q²ÿÿÿÿÿÿÿÿÛÿÿÿÿÿÿÿÿÿßÿúÿÿÿÿÿÿÿÿÛÿÿÿÿÿÿÿÛÿÿþÿÿÿÛ¶¶’¶¶ßûÚÛÿßúÛÿÛþÛÛÞûÛÚÿÛÛþÿÛÿÛÿþßûÿÛÿÚÿÿßûÿÚÿÿÛÿßúÿÛÿÿÛþÛÿÿÛÿþÛÿÛß֒’¶¶ßû¶ÚÛÛÚÛÚÛÚÛÚ·‘·¶¶¶¶ÿÿßûÿÿþÿÛÿÿÿÛÿÿÿþßûÿÿÿÿßûÿÿþÿÛÿÿÿÛÿÿÿþÛÿß֒’¶¶ßÿ·‘’q׶¶’Ú»²•³µ·¶¶ßûÿÿÿÿÿÿÿÿÚÿÿÿÿÿÿÿÿÿÿÛÿÿÿÿÿÿÿÚÿÿÿÿÿÿÿÿÿû߶¶’¶¶ßûÿÿÿúßÿÿûÿßûþÿÛÿÿÿûßþÿÿûÿßÿûþÿßûÿÿÿÛþÿûÿßÿûÿþÿÛÿÿÿÛÿþûÿÿßûÿÚ»²’¶¶ßÿûÿÿÿþûÿßûÿÿÿúÿÿßûÿÿÿûþÿÿÛÿÿÿûÿþÿÛÿÿûÿÿÿúÿßÿÿûÿÿúßÿÿûÿÿÿÿúÿ߶²’¶¶»Ö¶º·Öº·¶º×¶º·Öº¶·ºÖ·º¶×º¶¶»Ö¶»¶Ö»¶¶»Ö¶º·Öº·¶º×¶º·Öº¶·ºÖ·º¶×º¶¶’¶¶Ú·¶¶Û¶¶¶Û¶¶Ú·¶¶Ú·¶Ú¶·¶Ú¶·¶Ú¶·Ú¶·¶Ú¶·Ú¶¶·Ú¶¶·Ú¶¶Û¶¶¶Û¶¶Ú·¶¶Û¶¶¶¶’m¶’‘’’’‘’’’‘’¶’‘’’’‘’’‘’’¶m¶’’‘’’’‘’’’µ’nµn¶’‘’’’‘’’’‘¶n¶‘’’‘’’’‘’‘ÛÛÚ·ÚÛÚÛÚÛÚÛ¶ÛÚÛÚÛÚÛÚ·ÚÛÚÛÛÚÛÚ·ÚÛÚÛÚÛÚےÚÛÚÛÚÛÚÛ¶ÛÚÛÛÚÛÚۑÿn¶‘·¶m·ÚÛÚÛÚÛ¶ÛÚÛÚÛÚ·ÚÛÚÛÚÛÚ·ÚÛÚÛÚÛ¶ÛÚÛÚÛÚ·ÚÛÚ·ÚÛÚÛÚÛ¶ÛÚÛÚÛÚ·ÚÛÚ·ÚÛÚÛÚ·I$IIÛ¶¶¶IH%IÛ¶¶Ú%HI%Û¶Ú¶%HII·Ú¶¶%HIIÛ¶¶¶I$IIÛ¶¶Û$I$IÛ¶Ú·$IH%Û¶Ú·$I \ No newline at end of file diff --git a/web/screenshots/.xvpics/191-screenshot-main-thumb.png b/web/screenshots/.xvpics/191-screenshot-main-thumb.png new file mode 100644 index 00000000..7ddd0384 --- /dev/null +++ b/web/screenshots/.xvpics/191-screenshot-main-thumb.png @@ -0,0 +1,5 @@ +P7 332 +#IMGINFO:171x154 RGB (17362 bytes) +#END_OF_COMMENTS +66 60 255 +’mmn‘nmm’mmn‘nmm’mnm‘nmm’mnm‘nmn‘mnm’mmn‘mnm’mmn‘nmm’mnm‘nmm’mnm‘nmnHnImImIMiMjLjMiMImInHnImImImIMjLjMiMImImJlJMiMiMiMIjLjMiMImImIiMmIùI’’‘n’qŽ‘rnm’‘’n‘’’MŽ‘r’‘Ž-iINHJImIIMIIINhJMIIMIiINHJMIIôÕiÔEù$’’°’¶¶¶·‘·µ·–²¶¶¶’¶¶¶–²»Õ“¶¶¶–²¶¶–²¶¶–²¶¶·‘·µ·’¶¶¶’¶¶¶–²¶¶–¬—Œ’Œ¶’Ú·Ú¶ÛÚ·Ú¶ÛÚÛÚ·ÚÛ¶ÚÛÚ·ÚÛÚ·ÚÛÚÛÚÛÚÛ¶ÛÚÛÚÛÛÚÛ¶ÛÚÛÚÛÚÛÚ·ÚÛÚÛÚÛÚÛ¶ÛÚۑ’Ú’’‘Û’‘’Ûڒ¶m·Ú’‘’’¶’Û‘¶’¶ÛÚ·ÚÛÚÛÚÛÚÛ¶ÛÚÛÚÛÚÛÚ·ÚÛÚÛÚÛÚÛ·ÚÛÚÛÚÛÚÛm’¶¶¶¶¶·‘Û’Ú’Ú’Û‘·¶¶¶¶¶·µ·¶¶¶¶·µ·¶¶¶¶¶·µ·¶¶¶¶¶·µ·’Ú’Ú’Û’Ú’¶¶¶·µ·¶¶‘’Ú’Û¶ÚÛ¶ÛÚÛÚ·µ³ÚÛÚº·ÖÚÛº×ÚÛ¶ºÛÖÛ¶¶¶ÛÚÛÚÛº×ÚÛÚÛÚÛÚ»ÖÛÛÚÛÚÛÚ»ÖÛÚÛÚۑ’Ú¶·ÿ‘Ûڒm’Ú¶ÛßÖ»Ö¶¶–û¶¶’ÚÛ¶–Ö·Ú¶¶’þ·ÚÛÚÛÚÛ׺ÛÚÛÚÛÚÛÖ»ÚÛÚÛÚÛÚ׺Ûڒ’Ú’¶û–Úۑ’‘Û’‘“ÚÚÛmriÿºŽ•×ÛÚ¶–ÖۑÛÚÛÚ׺ÛÛÚÛÚÛÚ׺ÛÚÛÚÛÚÛÖ»ÚÛÚÛÚÛÚ×q’Ú’¶¶’ÚÛ¶¶Û¶Ûµ“ÚÛÚmŽqÛÚ·¶ÚÛÚ·ÖºÛ¶²–ûºÛÚÛÚÛÚ׺ÛÚÛÚÛÚÛÖ»ÚÛÚÛÚÛÚ׺Ûۑ’Ú’¶·ÚÚ·¶¶¶Ûµ·¶Ú·Ú¶’Û¶ÛÚ¶ÛÚÛ¶ÚÛ¶¶·¶Ú·ÚÛÚÛÚÛÚÛ¶ÛÚÛÚÛÚÛÚ·ÚÛÚÛÛÚÛڷڒ’Ú’Û¶¶Ú·¶¶¶Ûµ“Ú’ÿ¶Ú·¶ÚÛÚ·ÚÛÚ¶Û¶Ûڒ¶ÛÚÛ¶ÛÚÛÚÛÚÛÚ·ÚÛÚÛÚÛÚÛ¶ÛÚÛÛÚÛÚÛm’¶’¶¶¶¶¶¶’·µ·¶¶¶¶¶¶·µ“Ú’¶¶¶¶·µ·¶¶¶’¶¶¶·µ·¶¶¶¶¶’Û‘·¶¶¶¶¶¶¶·µ“¶¶¶¶¶’’Ú¶·Ú·ÚÛÚ¶¶Û’µ’ÛÚÛ¶Ûڍßוs‘ÛÛ¶¶Úے¶ÚÛ¶’ÛÚ¶¶·Úڒ¶ÛÚÛ¶ÛÚÛÚÛÛÚÛ¶ÛÚÛڒ’Ú’Û$ÿ¶ÛڒÛڑúmûº’Úۑú‘Ûr•nڒIHß׶¶º×¶¶Úۑ“µ»Ör¶ÛÚÛÚÛº×ÚÛÛÚÛÚۺב’Ú’ÿ¶ÛÚÛÚ·ÚÛ¶‘·Ú’ÛÚÛÚmÛÚrT’Û¶‘’ÛÚ¶·‘Ûº²¶Û¶¶mß֎•·ÚÛÚ×ÚÛºÛÚÛÚÛÖÛÚ»‘’’‘¶¶’¶’¶’¶’¶’¶’µ·‘·‘¶’¶’¶’¶¶’¶’¶‘·‘·‘¶’¶¶’¶’¶’¶’¶‘·‘·µ’¶’¶’¶’¶’¶‘’¶¶Ú·¶¶Û¶¶¶Û¶¶Ú·¶¶Ú·¶Ú¶·¶Ú¶·¶Ú¶·Ú¶·¶Ú¶·Ú¶¶·Ú¶¶·Ú¶¶Û¶¶¶Û¶¶Ú·¶¶Û¶¶¶¶’¶¶»Ö¶º·Öº·¶º×º¶·Ú¶¶»¶Ö»¶º×¶º¶·Ú¶·ºÖ·º¶»Ö¶º·Öº·¶º×º¶·Ú¶¶»¶Ö»¶º×¶¶¶’¶¶ÛߺÛßÛÚÛß»ÚßÛÚÛßÛºßÛÛÞÛÛ»ÞÛÛßÚÛ¿ÛÚÛßÛÚ¿ÛÛÞÛÛÚ¿ÛÛÞÛÛÛÞ»ÛßÚÛßÛº¶·’¶¶ßÿûúûúûûÚûþûûúûúÛûúÿúûûúûÚûûþ÷ÿúûúÛûúûþûûúûÚûûúÿûúûúÛûúûþ÷ÿÿÚ·¶’¶¶ßÿÿÿÿÚ}~<^ßÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÛ¶·’¶¶ßÿÿÿº}ž}<>ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿû߶¶’¶¶ßÿÿº<]<¶›<9ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿß֒’¶¶ßÿÿX==\ž%H^›ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÚז’¶¶ßÿÿ4>½ÿÿÿß¾ßP{Þß¾Þ¿Þº¾¿º¾ß1™ß¾vÞ¿¾º¿ÞºzÞ¿ºÞ¿¾Þ¶Û¶¶º×¶¶º×¶¶rÖ¶·ºÖ¶·ºÖ¶Û¶¾=<]E]YÿÿÿßÞ¿™šQ›yvuzU·Uz™ßQVUvUvUQšVuvyRyRuzßޖڷֺ¶·Öº¶·¶rÖ¶·ºÖ¶·ºÖ¶Û–º8=UYY™ÿÿßßÞßUzušvšU–Ušvš¾ßQUV™vvuV¾Qž»uV™RyVÞ߶ڶ·¶ºÖ·¶ºÖ¶rÖ¶·ºÖ¶·ºÖ¶Û¶ßyyy·¾ûÿ¾ßÞ¾ß޿޾߾v¾Þß¾ßÞ¿ÞÞ¿Þ¿Þ¾»ÞÞ¿Þ¿ÞÞ¿Þߙ÷º·¶¶Ú·¶¶Ú’rÖ¶·ºÖ¶·ºÖ¶Û–ÿÿz419ÛÞÿß¾ß޾ߺš¶¾–ºÞ¿Þ–ºß޾߾ßÞ¾ßÞ¿ÞÞ¿Þ¿Þ߾޺׶º¶×¶º¶×¶¶r¶Ö·º¶Ö·º¶ÖÛ¶}U¿ÿ}18›ÞÿßÞ¿ÞÞ¿º‘š¶v•––‘»uÚ¿Þ¾ßÞ¿Þß¾Þ¿Þß¾Þß¾ßޚö›Ö¶¶Û¶¶¶Û’rÖ¶·ºÖ¶·ºÖ¶Û¶4:xv¾9XšßßÞÞ߾߾ºº¿Ú¾ºßº¾ºß™Ûuߚµ›¹·•¾¿Þß¾ßÞ¾ßޖֶֻ»¶Ö¶»¶¶r¶Ö·º¶Ö·º¶Öۖº49]}4]º»ÞßÞ¿Þß¹v’š‘u’š–º‘šÛqu¶r•»™–’º¾ßÞ¾ßÞ¿Þޚ׶ڷ¶¶Ú·¶¶¶rÖ¶·ºÖ¶·ºÖ¶Û–þZy]u4Yº»ÞßÞß¾Þ¿º¾ºÛ™»Þº¾»¹ßº¿¾µ›ºÞšºÚ¿Þß¾ß޾߾ºÖ»¶Ö¶»¶Ö¶»²r¶Ö·º¶Ö·º¶ÖۖÿÿšUyº»Þÿß޾߾ßÞ¿ÞÞ¿Þß¾Þ¿Þß¾Þß¾ßÞ¿ÞÞ¿Þ¿ÞÞ¿Þß¾Þ¶Û¶¶»Ö¶¶»Ö¶¶r¶Ö·º¶Ö·º¶ÖۖڿÚÞ»¾Ú¿Ú¾Û¾ºº¾Û¾º¾»Þº¾º¿Úº¾»¾Ú¾»¾Ú¾º»¾Ú¾»¾ºÞ»¾µ·Ú¶·¶Ú¶·¶Ú’r¶Ö·º¶Ö·º¶ÖÿÛÿÿÛþÿûßÿÿÿÛÿþûßÿÿûßÿÿúßÿÿûßÿÿþÛÿÿûßÿÿÚÿÿÿÛÿÿûÞÿû߶ַº¶Ö·º¶¶rÖ¶·ºÖ¶·ºÖ¶ÿÿÿÛÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿûÿßÿÿÿÿÿÿÿÿþÿÿÿÿÿûÿÿßÿÿÿÿÿûþ·¶º×¶¶º×¶¶rÖ¶·ºÖ¶·ºÖ¶ÿÛÿÿûÞÿÿûßÿÿûßþÿû߶¶ÿÿÿû–ÿÿÚÛûßÿþÿÛÿÿûßÿþÿûßÿûßþÿÛûºÖ·¶ºÖ·¶º¶rÖ¶·ºÖ¶·ºÖ¶ÿûÿßÿÿÿÿÿÿÿÿûÿÿßÿÿ‘ÿ’¶ûÞûº’·±–·µ’ÿûÿßÿÿÿÿÿÿÿÿûÿÞÿÿû¶º×¶¶º×¶¶¶rÖ¶·ºÖ¶·ºÖ¶ÿÛÿûÞÿûßÿûßþÿÛÿÿÛÿÖº’¶ÖßÛ¶¶²–’¶¶‘ÿûßÿÿÛþÿûßÿûÞÿÛÿûþ—Ö¶º×¶¶º×–r¶Ö·º¶Ö·º¶ÖÿÿÿÛÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÛþÿÛÿÿûÞÿÿÿÿÿûÿßÿÿÿÿÿÿÿÿÿÿûÿßþ·Ö¶º·Ö¶º·¶rÖ¶·ºÖ¶·ºÖ¶ÿÛÿÿÿÛþÿÿÿÛÿÿÿûßþÿÿûßÛµ³º’µ“µÛÿÿÿÿÛÿÿþÛÿÿÿÿÛÿÿþÛÿÿû¶¶»Ö¶¶º×¶¶r¶Ö·º¶Ö·º¶ÖÿûÿßÿÿÿÿÿÿûÿßÿþÿÿÿÿÿÿûÿßÿÿÿÿÿÿÿÿûÿÞÿÿÿÿÿûÿÿßÿÿÿûÿþßÖ·¶ºÖ·¶ºÖ—rÖ¶·ºÖ¶·ºÖ¶ÿÿÿÛÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿûÿßÿÿÿÿÿÿÿÿþÿÿÿÿÿûÿÿßÿÿÿÿÿûþ·¶º×¶¶º×¶¶r¶Ö·º¶Ö·º¶ÖÿÛÿûßþÿûßÿÿûßÿþÛÿÿÿÛÿÿþÛÿÿÿÛÿÿþÛÿÿûßÿÿÚÿÿÿûßÿÚÿÿûßú»¶Ö·º¶Ö¶»²rÖ¶·ºÖ¶·ºÖ¶ÿÿÿÛÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿûÿßÿÿÿÿÿÿÿÿþÿÿÿÿÿûÿÿßÿÿÿÿÿûþ·¶º×¶¶º×¶¶rÖ¶·º¶Ö·º¶ÖßûÿÛþûßÿûßÿþÛÿûßÿúßÿûßÿûÞÿûßÿûßþûßÿûßþÛÿÿÛÿúßÿÛÿûÞû¶»Ö¶¶»Ö¶¶¶r¶Ö·º¶Ö·º¶ÖÿÛÿÿÿÛÿþÿÛÿÿÚÿÿûßÿÿûßþÿÿÿÿÿÿÿÿÿÿÿ·þÿÿÿÛÚÛÛÿÚÛÚûßÚÿû¶»Ö¶¶»Ö¶¶¶rÖ¶·ºÖ¶·ºÖ¶ÿÛÚ·µ³ßµ×º¶·Öº’¶¶’¶Û¶ÚÛÛÿþûßÿÿÛÿÿڒڲ»Ú¶·ÚÛ¶¶Ú·ÖºÛûº¶×¶º¶×¶º²rÖ¶·ºÖ¶·ºÖ¶ÿûÿÚÿûÿûþûÿûþûÛÿúÿûÿûþûÿûÞûÿûÿúÿûÿÚûÿûþûÿûÿÚÿûûþûÿûº¶¶·Ú¶¶·Ú’rÖ¶·ºÖ¶·ºÖ¶»¶Ûº·Ú·ºº×º»Ö»¶Ûº¶»Ú·º×º»Öº»Ö»¶»Ú·ºÚ·º×º»Ö»º¶Ûº·Ú·º¶Û¶¶¶Û¶¶¶¶rÖ¶·ºÖ¶·ºÖ¶·ºÖ¶·ºÖ¶·ºÖ¶·ºÖ¶·ºÖ¶·ºÖ¶·ºÖ¶·ºÖ¶·ºÖ¶·ºÖ¶·ºÖ¶·ºÖ¶·ºÖ¶¶»Ö¶¶»Ö¶¶r¶Ö·º¶Ö·º¶Ö·º¶Ö·º¶Ö·º¶Ö·º¶Ö·º¶Ö·º¶Ö·º¶Ö·º¶Ö·º¶Ö·º¶Ö·º¶Ö·º¶Ö¶»¶Ö¶»¶Ö¶»¶Ö¶rÖ·¶Ú¶·Ú¶×º¶Ö»¶Ö·ºÖ·Ú¶¶Û¶¶×º¶×ºÖ¶»Ö¶»Ö¶Ö»¶Ö»¶Ö»Ö¶º×¶¶Û¶¶Û¶Öº·Ö¶»Ö¶º×¶Ú·¶rÖ·Ú¶·Ú¶Ö»¶Ö»Ö¶Û¶¶Û¶Ö»¶Ö»Ö¶Û¶¶Ú·Öº·Öº×¶Ú·¶Ú·Öº·ÖºÖ·Ú¶·Ú¶×º¶×ºÖ·Ú¶·Ú¶×º¶¶’ÛÚßûÚÛßúÛÛÞûÛÚßûÚÛßÚûÛÚßûÚÛßúÛÛÞûÛ¶º×ÚÛßúÛÛÞûÛÚßûÚÛßúÛÛÞûÛÚßÛúÛßÚûÛÞÛûº’ÛÚÿÿÛÿÿßûþÿßûÿÿßÿûÿÚÛºûÿÿ¶ÛÞ×ÚßûÚß֒»Úû¶ßÚ×ÚÛßhÛßûÚÛ¶ÿÛÚß±³þÛÛþÿÛÿ¶ÿÛÚے۶º×Ú¶·ÿÚºûº×¶ÿÿÿÿÿÛÚ¶Ûÿÿ¶Ûþ’Ûÿ¶ÛÚÛµ·Ûþ·Úÿ»ößڒÛÿ¶ÿÚ·þÛÛú–ÛûÚÛÚ߶ûºûßÛڒÛÚÛßúÛÛÚßÚûÛÚÛßúÛÛÚßûÚÛÛÞÛúÛÛÞÛûÚÛº×ÚÛÚßÛúÛÛÞÛÛúÛÚßÛÚÛûÚÛÚÛßÚÛÚûÛÚÛÛÞ×ڒÛÞûÛßúÛßúÛßûÚÿÛßúÛßúÛßûÚßûÚßûÛþÛÛþÛßûÚßûÚßûÛÞûÛÞûÛÿÚÛßúÛßûÚßûÚßûÚÛÚ»Ö·Úrֺֻ׺ֺֻֻ׺ֺֻ׺ֺֻ׺׺ֺֻ׺ֺֻ׺ֺֻֻ׺ֶֻ¶»Ö¶¶·ºÖ¶·ºÖ¶¶—µ³¶¶ \ No newline at end of file diff --git a/web/screenshots/.xvpics/193-screenshot-main-thumb.png b/web/screenshots/.xvpics/193-screenshot-main-thumb.png new file mode 100644 index 00000000..1a38b92f --- /dev/null +++ b/web/screenshots/.xvpics/193-screenshot-main-thumb.png @@ -0,0 +1,5 @@ +P7 332 +#IMGINFO:200x148 RGB (21705 bytes) +#END_OF_COMMENTS +80 59 255 +rJNINNJMJNNI.j.MJNJNMJNJMNJNI.n*MJNNJMJNNINNJNINNJMJNNIN*n-JNJNMJNJMNJNINNJMNnNmN’rJNNNJNNMKMOMOINNNJNNN*n.NJNNNnNnRnrnNNns‘OMKMOMJNN.j.NNJNNNJNNNIOMOINNNI*nqoqI*MJIN*MJIN)JNIN)JMJJ-JMJJ-JINI.jMnMnMnJM’NmJNIN)JMJJM*MJIN*ININ*ININ)JNIJr‘NnmNnÚÛÚ»ÖÛÚÛÚ»ÖÛÚÛÚ»ÖÛÚÛÚ»ÖÛÚÛÚ»ÖÛÚÛÚ»ÖÛÚÛÚ»ÖÛÚÛÚ»ÖÚÛÚÛº×ÚÛÚÛº×ÚÛÚÛº×ÚÛÚÛº×ÚÛÚÛº×ÚÛrÖ¶–ûÛ¶mÿÛڒ‘ßû¶m’’¶ÿ¶’qûÛÿÚÛßúÛßúÛßûÚßûÚßûÛÞûÛÞûÛÞûÛßúÛÛþÛÛÿÚÛÿÚÛßúÛßûÚßûÚßûÛÞû’ÛÚÛßúÛÛÚßúÛÛÞûÛÚÛÛÞûÛÚÛßúÛÛÚßûÚÛÞûÛÚÛßúÛÛÚßûÚÛßúÛÛÚßûÚÛÛÞûÛÚßûÚÛÛÞûÛÚßûÚÛÛÞûÚÛےÛÿ¶¶ÚÛ¶ÛþÛ¶¶ÛÿÚ·ÚÛº²ÿÛÚ¶ÿÛ¶¶ûÞÛûÞÛûßÚûßÚûßÛúßÛúßÛúßÛûÞÛûÞÛûßÚûßÚÛûÞÛûßÚûßÚûßÛúߒÛÞÛu׺ÕÖßû–²ßú·R¶Û¶‘×Ú»ÖÛމÛÚßûÚßûÚßûÚßûÛÞûÛÞûÛßúÛÛÞûÛÞûÛßúÛßúÛßûÚßûÚßûÚßûÛÞûÛڒÛÞ×ßúÛÚÛÛþ·ÚÛÿÚÛÚÛßÖÿÛÚÛÚÛÛÚÛÚÿÛÚÿÛÛþÛÛþÛÛûÞÛûÞÛûÞÛûßÚÛÿÚÛÿÛÚÿÛÚÿÛÚÿÛÛþÛÛþÛÛÿÚےÛÞ²’Û¶¶’ÞÛÖÛßú’–²ÿ¶¶ß׶¶¶¶¶¶¶ÛÛþÛÛÞûÛßúÛßúÛßûÚßûÚßûÚßûÛÚÿÛÚÿÛÛþÛÛþÛÛþÛÛßúÛßúÛßú’ß֒¶–¶’²ÚÛº×Þû¶’¶ß²¶Ûږ’²ºÖ’¶ÛÚßûÛÞûÛÞûÛßúÛßúÛßúÛßûÚßûÚÛÿÛÚÿÛÚÿÛÚÿÛÛÞûÛÞûÛßúÛßú’ÛÞûÛßúÛÛÞûÛÚßûÚÛÿÚÛßúÛÛÞûÛÛþÛÛÞûÛÚßûÚÛßúÛßúÛÛÞûÛÛÞûÛÚÿÛÚßûÚÛßúÛÛþÛÛÞûÛÛÞûÛÚßûÚےÛÞ²ÛÿÚ·Úß²‘¶ÿÛ¶û•·ú»rqۑ’ßû‘·þr²ß¶rÿړ–ÿ¶±ßÛûÞÛûÞÛûßÚûßÚÛÿÛÚÿÛÚÿÛÚÿÛÛþÛÛúßÛûÞÛےÛގÛÞûºûە²Öەûە²ÚÛ0mÛ(ißû–­ß²–ÿ¶¶¶û–’Úא·ÛþÛÛÿÚÛÿÚÛÿÚÛÿÛÚÿÛÚÿÛÛúßÛúßÛúßÛûÞÛûޒÛþÛÛßúÛßúÛßûÚßûÚßûÚÛÛÚÛßúÛßú·úßÛÚûßÖÚß×ÚûºÛþÛÛÿÚÛÿÚÛûßÚûßÚûßÚûßÛúßÛúßÛûÞÛûÞÛÛþÛrÖ¶»Ö¶·ºÖ¶»Ö¶¶»Ö¶¶Û¶¶º×¶¶º×¶ºÖ·¶º×¶¶Ú·¶ºÖ·¶ºÖ·ºÖ¶»úÛßûÚÛßúÛßúÛÛÚßÚûÛÛÞûÛÞûÛÚßûÚÛrÖ¶»Ö¶·ºÖ¶»Ö¶¶»Ö¶¶Û¶¶º×¶¶º×¶ºÖ·¶º×¶¶Ú·¶ºÖ·¶ºÖ·ºÖ¶ÛÛÞûÛÚÿÛÚÿÛÛþÛÛþÛÛßúÛßúÛßúÛßûÚÛrÖ¶»Ö¶·ºÖ¶»Ö¶¶»Ö¶¶Û¶¶º×¶¶º×¶ºÖ·¶º×¶¶Ú·¶ºÖ·¶ºÖ·ºÖ¶ÛÛurÛ¶Ú¶·Ö–Ú·Ú¶¶Û’ÚÛÚÛÿÚÛÿÛÚÿÛÚrÖ¶»Ö¶·ºÖ¶»Ö¶¶»Ö¶¶Û¶¶º×¶¶º×¶ºÖ·¶º×¶¶Ú·¶ºÖ·¶ºÖ·ºÖ¶ÛÛTQÿ¶Û’ÚÛ¶¶ÛÚ¶Û¶ÛÚÛÚÿÛÚÿÛÛþÛÛÚrÖ¶»Ö¶·ºÖ¶»Ö¶¶»Ö¶¶Û¶¶º×¶¶º×¶ºÖ·¶º×¶¶Ú·¶ºÖ·¶ºÖ·ºÖ¶ÛÛÞûÛÚÿÛÚÿÛÛþÛÛþÛÛßúÛßúÛßúÛßûÚÛrÖ·ºÖ¶»¶Ú·¶º×¶º·Öº¶»Ö¶»¶Ö»¶¶Ú·º¶×º¶·Ú¶·ºÖ¶»¶Ú·¶º×ºûºûºû»úÛÞÛÛÚûÛÞÛÛúÛßúÛßÚûßÛúßÛrÖßûÿúßÿûÿûÞÖÿÿÛÿûþÿÛÚÛûþÿûßûÿúÿÿÛÿúÿÿûÿÚÿûÿÿûþÛÛÚ»ÖÛºÖßÖ·¶¶º²¶¶–¶×ºûÛÞûÛÞûÛßúÛßrÖÿÿÿÿÿߙz}~ÿÿÿÿÿÿÿÿÿûßûÞÿÛÿÿºûÿÛÞÿÛÿûßþûßûßÿþÛÛÚ»ÖÛ¶¶ÛÚ¶¶¶·¶º²¶¶»ÖßúÛÛÞûÛÛÞûÛÚrÖÿÿÿÿž}ž]=~ÞÿÿÿÿÿÿûÿUßÛºÛÞ»–ººVÛޖßÛºvÞ»¶ßºßú»ÛÚÛþÛÛÿÚÛÛþÛÛÚÿÛÚÛßúÛÛÚÿÛÚÛÿÚÛÚrÖÿÿÿß\~}ž]=]ßÿÿÿÿÿÿÞRz•Ršurz–ºvºvš–š–vš–uvvšÿÛ¶Úû»Ú×ÞÛûÞÛûÞÛûÞÛûßÚûßÚûßÛÚÿÛÚÛrÖÿÿß}=\=<ž—Ú=yÿÿÿÿÿÿÿßûÿÿßµwþÿßûÿÿßûþߖÿÛÿÿÿÚÿÛºÛú—Öº²ßûßÚûÛÞûÛßúÛßúÛßúÛßûÚßÛÖrÖÿÿž8=]}–%)¾Zßÿÿÿÿÿþ×ßúÛÿßÿÚÿûÿÿÿÿßÿÿûÿÿßÿþÿÿÛ¶ÛþÛÛÿÚÛûÞÛûßÚûßÚÛÿÚÛÿÛÚÿÛÚÿÛÚÛrÖÿßY=\}º–(i=\~¶ÿÿÿÿÿÿ²»Ú¶¶¶Û¶ÛÿþÛÿÿÛÿÿÚÿÿÛÿÿÿÚÛÛºûÞûßû}ž™žz\:]9]zÞÿûßúßÿûßÚ×Ú»rÖÿßY9 + + + +

Screenshots ...

+ + + + +

Unstable/1.93.x

+ + + + + + +
+ + + + + + +
+ + + + +

Unstable/1.92.x

+ + + + + +
+ + + + +

Unstable/1.91.x

+ + + + + + +
+ + + + + + + +
+ + + + +

Stable/0.4.x

+ + + + + +
+ + + + + diff --git a/web/source/glabels-0.1.0.tar.gz b/web/source/glabels-0.1.0.tar.gz new file mode 100644 index 00000000..cf06bffe Binary files /dev/null and b/web/source/glabels-0.1.0.tar.gz differ diff --git a/web/source/glabels-0.1.1.tar.gz b/web/source/glabels-0.1.1.tar.gz new file mode 100644 index 00000000..d1df4e78 Binary files /dev/null and b/web/source/glabels-0.1.1.tar.gz differ diff --git a/web/source/glabels-0.1.2.tar.gz b/web/source/glabels-0.1.2.tar.gz new file mode 100644 index 00000000..c1732b95 Binary files /dev/null and b/web/source/glabels-0.1.2.tar.gz differ diff --git a/web/source/glabels-0.1.3.tar.gz b/web/source/glabels-0.1.3.tar.gz new file mode 100644 index 00000000..56e923e7 Binary files /dev/null and b/web/source/glabels-0.1.3.tar.gz differ diff --git a/web/source/glabels-0.1.4.tar.gz b/web/source/glabels-0.1.4.tar.gz new file mode 100644 index 00000000..f5e7d297 Binary files /dev/null and b/web/source/glabels-0.1.4.tar.gz differ diff --git a/web/source/glabels-0.1.5.tar.gz b/web/source/glabels-0.1.5.tar.gz new file mode 100644 index 00000000..b1e0bd04 Binary files /dev/null and b/web/source/glabels-0.1.5.tar.gz differ diff --git a/web/source/glabels-0.2.0.tar.gz b/web/source/glabels-0.2.0.tar.gz new file mode 100644 index 00000000..c3d09159 Binary files /dev/null and b/web/source/glabels-0.2.0.tar.gz differ diff --git a/web/source/glabels-0.2.1.tar.gz b/web/source/glabels-0.2.1.tar.gz new file mode 100644 index 00000000..8cf6f16c Binary files /dev/null and b/web/source/glabels-0.2.1.tar.gz differ diff --git a/web/source/glabels-0.2.2.tar.gz b/web/source/glabels-0.2.2.tar.gz new file mode 100644 index 00000000..24d68584 Binary files /dev/null and b/web/source/glabels-0.2.2.tar.gz differ diff --git a/web/source/glabels-0.2.3.tar.gz b/web/source/glabels-0.2.3.tar.gz new file mode 100644 index 00000000..df91c446 Binary files /dev/null and b/web/source/glabels-0.2.3.tar.gz differ diff --git a/web/source/glabels-0.2.4.tar.gz b/web/source/glabels-0.2.4.tar.gz new file mode 100644 index 00000000..f855122b Binary files /dev/null and b/web/source/glabels-0.2.4.tar.gz differ diff --git a/web/source/glabels-0.3.0.tar.gz b/web/source/glabels-0.3.0.tar.gz new file mode 100644 index 00000000..e61a1f61 Binary files /dev/null and b/web/source/glabels-0.3.0.tar.gz differ diff --git a/web/source/glabels-0.3.1.tar.gz b/web/source/glabels-0.3.1.tar.gz new file mode 100644 index 00000000..6580c1da Binary files /dev/null and b/web/source/glabels-0.3.1.tar.gz differ diff --git a/web/source/glabels-0.3.2.tar.gz b/web/source/glabels-0.3.2.tar.gz new file mode 100644 index 00000000..bbd2e6e9 Binary files /dev/null and b/web/source/glabels-0.3.2.tar.gz differ diff --git a/web/source/glabels-0.3.3.tar.gz b/web/source/glabels-0.3.3.tar.gz new file mode 100644 index 00000000..69f2f541 Binary files /dev/null and b/web/source/glabels-0.3.3.tar.gz differ diff --git a/web/source/glabels-0.3.4.tar.gz b/web/source/glabels-0.3.4.tar.gz new file mode 100644 index 00000000..6dc85ee8 Binary files /dev/null and b/web/source/glabels-0.3.4.tar.gz differ diff --git a/web/source/glabels-0.4.0.tar.gz b/web/source/glabels-0.4.0.tar.gz new file mode 100644 index 00000000..9c3652d8 Binary files /dev/null and b/web/source/glabels-0.4.0.tar.gz differ diff --git a/web/source/glabels-0.4.1.tar.gz b/web/source/glabels-0.4.1.tar.gz new file mode 100644 index 00000000..471df444 Binary files /dev/null and b/web/source/glabels-0.4.1.tar.gz differ diff --git a/web/source/glabels-0.4.2.tar.gz b/web/source/glabels-0.4.2.tar.gz new file mode 100644 index 00000000..5624a788 Binary files /dev/null and b/web/source/glabels-0.4.2.tar.gz differ diff --git a/web/source/glabels-0.4.3.tar.gz b/web/source/glabels-0.4.3.tar.gz new file mode 100644 index 00000000..a0c93e86 Binary files /dev/null and b/web/source/glabels-0.4.3.tar.gz differ diff --git a/web/source/glabels-0.4.4.tar.gz b/web/source/glabels-0.4.4.tar.gz new file mode 100644 index 00000000..92cf381f Binary files /dev/null and b/web/source/glabels-0.4.4.tar.gz differ diff --git a/web/source/glabels-0.4.5.tar.gz b/web/source/glabels-0.4.5.tar.gz new file mode 100644 index 00000000..c8b14f30 Binary files /dev/null and b/web/source/glabels-0.4.5.tar.gz differ diff --git a/web/source/glabels-0.4.6.tar.gz b/web/source/glabels-0.4.6.tar.gz new file mode 100644 index 00000000..43faf210 Binary files /dev/null and b/web/source/glabels-0.4.6.tar.gz differ diff --git a/web/source/glabels-1.89.0.tar.gz b/web/source/glabels-1.89.0.tar.gz new file mode 100644 index 00000000..1fc8f79e Binary files /dev/null and b/web/source/glabels-1.89.0.tar.gz differ diff --git a/web/source/glabels-1.89.1.tar.gz b/web/source/glabels-1.89.1.tar.gz new file mode 100644 index 00000000..ecee16e3 Binary files /dev/null and b/web/source/glabels-1.89.1.tar.gz differ diff --git a/web/source/glabels-1.89.2.tar.gz b/web/source/glabels-1.89.2.tar.gz new file mode 100644 index 00000000..c7abc095 Binary files /dev/null and b/web/source/glabels-1.89.2.tar.gz differ diff --git a/web/source/glabels-1.90.0.tar.gz b/web/source/glabels-1.90.0.tar.gz new file mode 100644 index 00000000..b5dc9ea7 Binary files /dev/null and b/web/source/glabels-1.90.0.tar.gz differ diff --git a/web/source/glabels-1.91.0.tar.gz b/web/source/glabels-1.91.0.tar.gz new file mode 100644 index 00000000..f41b947f Binary files /dev/null and b/web/source/glabels-1.91.0.tar.gz differ diff --git a/web/source/glabels-1.91.1.tar.gz b/web/source/glabels-1.91.1.tar.gz new file mode 100644 index 00000000..c74be1f0 Binary files /dev/null and b/web/source/glabels-1.91.1.tar.gz differ diff --git a/web/source/glabels-1.92.0.tar.gz b/web/source/glabels-1.92.0.tar.gz new file mode 100644 index 00000000..4f3cfd0f Binary files /dev/null and b/web/source/glabels-1.92.0.tar.gz differ diff --git a/web/source/glabels-1.92.1.tar.gz b/web/source/glabels-1.92.1.tar.gz new file mode 100644 index 00000000..5ea05eb2 Binary files /dev/null and b/web/source/glabels-1.92.1.tar.gz differ diff --git a/web/source/glabels-1.92.2.tar.gz b/web/source/glabels-1.92.2.tar.gz new file mode 100644 index 00000000..620049cd Binary files /dev/null and b/web/source/glabels-1.92.2.tar.gz differ diff --git a/web/source/glabels-1.92.3.tar.gz b/web/source/glabels-1.92.3.tar.gz new file mode 100644 index 00000000..118d9027 Binary files /dev/null and b/web/source/glabels-1.92.3.tar.gz differ diff --git a/web/source/glabels-1.93.0.tar.gz b/web/source/glabels-1.93.0.tar.gz new file mode 100644 index 00000000..f0b961cf Binary files /dev/null and b/web/source/glabels-1.93.0.tar.gz differ diff --git a/web/source/glabels-1.93.1.tar.gz b/web/source/glabels-1.93.1.tar.gz new file mode 100644 index 00000000..452837af Binary files /dev/null and b/web/source/glabels-1.93.1.tar.gz differ diff --git a/web/source/glabels-1.93.2.tar.gz b/web/source/glabels-1.93.2.tar.gz new file mode 100644 index 00000000..50c3be06 Binary files /dev/null and b/web/source/glabels-1.93.2.tar.gz differ diff --git a/web/source/glabels-1.93.3.tar.gz b/web/source/glabels-1.93.3.tar.gz new file mode 100644 index 00000000..afe110a3 Binary files /dev/null and b/web/source/glabels-1.93.3.tar.gz differ diff --git a/web/tango-icons/applications-development.png b/web/tango-icons/applications-development.png new file mode 100644 index 00000000..f0eafa17 Binary files /dev/null and b/web/tango-icons/applications-development.png differ diff --git a/web/tango-icons/applications-internet.png b/web/tango-icons/applications-internet.png new file mode 100644 index 00000000..6b56b703 Binary files /dev/null and b/web/tango-icons/applications-internet.png differ diff --git a/web/tango-icons/dialog-information.png b/web/tango-icons/dialog-information.png new file mode 100644 index 00000000..b6a95bd4 Binary files /dev/null and b/web/tango-icons/dialog-information.png differ diff --git a/web/tango-icons/emblem-photos.png b/web/tango-icons/emblem-photos.png new file mode 100644 index 00000000..51c4560f Binary files /dev/null and b/web/tango-icons/emblem-photos.png differ diff --git a/web/tango-icons/help-browser.png b/web/tango-icons/help-browser.png new file mode 100644 index 00000000..4ab49ada Binary files /dev/null and b/web/tango-icons/help-browser.png differ diff --git a/web/tango-icons/internet-news-reader.png b/web/tango-icons/internet-news-reader.png new file mode 100644 index 00000000..6f359a31 Binary files /dev/null and b/web/tango-icons/internet-news-reader.png differ diff --git a/web/tango-icons/package-x-generic.png b/web/tango-icons/package-x-generic.png new file mode 100644 index 00000000..00f5b0c6 Binary files /dev/null and b/web/tango-icons/package-x-generic.png differ diff --git a/web/tango-icons/system-users.png b/web/tango-icons/system-users.png new file mode 100644 index 00000000..60817bd8 Binary files /dev/null and b/web/tango-icons/system-users.png differ