new package: gtk-2.24.28 and gtk-3.14.13
Closes #1 -> NSIS installer with long PATH names Closes #2 -> libxml++ added New packages added: json-glib, libxml++ and libxslt Several packages saw a version bump. For now I am sticking with gtk-3.14, since gtk-3.16 introduces a mandatory dependency on OpenGL through libepoxy which I still need to figure out...
							
								
								
									
										73
									
								
								gtk-nsis-pack/share/glib-2.0/gschema.dtd
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,73 @@ | ||||
| <!ELEMENT schemalist (schema|enum)* > | ||||
| <!ATTLIST schemalist gettext-domain CDATA #IMPLIED > | ||||
|  | ||||
| <!ELEMENT schema (key|child|override)* > | ||||
| <!ATTLIST schema id             CDATA #REQUIRED | ||||
|                  path           CDATA #IMPLIED | ||||
|                  gettext-domain CDATA #IMPLIED | ||||
|                  extends        CDATA #IMPLIED | ||||
|                  list-of        CDATA #IMPLIED > | ||||
|  | ||||
| <!-- enumerated and flags types --> | ||||
| <!-- each value element maps a nick to a numeric value --> | ||||
| <!ELEMENT enum (value*) > | ||||
| <!ATTLIST enum id CDATA #REQUIRED > | ||||
|  | ||||
| <!ELEMENT flags (value*) > | ||||
| <!ATTLIST flags id CDATA #REQUIRED > | ||||
|  | ||||
| <!ELEMENT value EMPTY > | ||||
| <!-- nick must be at least 2 characters long --> | ||||
| <!-- value must be parsable as a 32-bit integer --> | ||||
| <!ATTLIST value nick  CDATA #REQUIRED | ||||
|                 value CDATA #REQUIRED > | ||||
|  | ||||
| <!ELEMENT key (default|summary?|description?|range?|choices?|aliases?)* > | ||||
| <!-- name can only contain lowercase letters, numbers and '-' --> | ||||
| <!-- type must be a GVariant type string --> | ||||
| <!-- enum must be the id of an enum type that has been defined earlier --> | ||||
| <!-- flags must be the id of a flags type that has been defined earlier --> | ||||
| <!-- exactly one of type, enum or flags must be given --> | ||||
| <!ATTLIST key name  CDATA #REQUIRED | ||||
|               type  CDATA #IMPLIED | ||||
|               enum  CDATA #IMPLIED | ||||
|               flags CDATA #IMPLIED > | ||||
|  | ||||
| <!-- the default value is specified a a serialized GVariant, | ||||
|      i.e. you have to include the quotes when specifying a string --> | ||||
| <!ELEMENT default (#PCDATA) > | ||||
| <!-- the presence of the l10n attribute marks a default value for | ||||
|      translation, its value is the gettext category to use --> | ||||
| <!-- if context is present, it specifies msgctxt to use --> | ||||
| <!ATTLIST default l10n    (messages|time) #IMPLIED | ||||
|                   context CDATA           #IMPLIED > | ||||
|  | ||||
| <!ELEMENT summary (#PCDATA) > | ||||
| <!ELEMENT description (#PCDATA) > | ||||
|  | ||||
| <!-- range is only allowed for keys with numeric type --> | ||||
| <!ELEMENT range EMPTY > | ||||
| <!-- min and max must be parseable as values of the key type and min < max --> | ||||
| <!ATTLIST range min CDATA #REQUIRED | ||||
|                 max CDATA #REQUIRED > | ||||
|  | ||||
| <!-- choices is only allowed for keys with string or string array type --> | ||||
| <!ELEMENT choices (choice+) > | ||||
| <!-- each choice element specifies one possible value --> | ||||
| <!ELEMENT choice EMPTY > | ||||
| <!ATTLIST choice value CDATA #REQUIRED > | ||||
|  | ||||
| <!-- aliases is only allowed for keys with enumerated type or with choices --> | ||||
| <!ELEMENT aliases (alias+) > | ||||
| <!-- each alias element specifies an alias for one of the possible values --> | ||||
| <!ELEMENT alias EMPTY > | ||||
| <!ATTLIST alias value CDATA #REQUIRED > | ||||
|  | ||||
| <!ELEMENT child EMPTY > | ||||
| <!ATTLIST child name   CDATA #REQUIRED | ||||
|                 schema CDATA #REQUIRED > | ||||
|  | ||||
| <!ELEMENT override (#PCDATA) > | ||||
| <!ATTLIST override name    CDATA #REQUIRED | ||||
|                    l10n    CDATA #IMPLIED | ||||
|                    context CDATA #IMPLIED > | ||||
							
								
								
									
										
											BIN
										
									
								
								gtk-nsis-pack/share/glib-2.0/gschemas.compiled
									
									
									
									
									
										Normal file
									
								
							
							
						
						
							
								
								
									
										17
									
								
								gtk-nsis-pack/share/glib-2.0/org.gtk.Demo.gschema.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,17 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
|  | ||||
| <schemalist> | ||||
|  | ||||
|   <enum id='org.gtk.Demo.Color'> | ||||
|     <value nick='red'   value='0'/> | ||||
|     <value nick='green' value='1'/> | ||||
|     <value nick='blue'  value='2'/> | ||||
|   </enum> | ||||
|  | ||||
|   <schema id='org.gtk.Demo' path='/org/gtk/Demo/'> | ||||
|     <key name='color' enum='org.gtk.Demo.Color'> | ||||
|       <default>'red'</default> | ||||
|     </key> | ||||
|   </schema> | ||||
|  | ||||
| </schemalist> | ||||
| @@ -0,0 +1,26 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <schemalist> | ||||
|  | ||||
|   <schema id='org.gtk.Settings.ColorChooser' path='/org/gtk/settings/color-chooser/'> | ||||
|     <key name='custom-colors' type='a(dddd)'> | ||||
|       <default>[]</default> | ||||
|       <summary>Custom colors</summary> | ||||
|       <description> | ||||
|         An array of custom colors to show in the color chooser. Each color is | ||||
|         specified as a tuple of four doubles, specifying RGBA values between | ||||
|         0 and 1. | ||||
|       </description> | ||||
|     </key> | ||||
|     <key name='selected-color' type='(bdddd)'> | ||||
|       <default>(false,1.0,1.0,1.0,1.0)</default> | ||||
|       <summary>The selected color</summary> | ||||
|       <description> | ||||
|          The selected color, described as a tuple whose first member is a | ||||
|          boolean that is true if a color was selected, and the remaining | ||||
|          four members are four doubles, specifying RGBA values between | ||||
|          0 and 1. | ||||
|       </description> | ||||
|     </key> | ||||
|   </schema> | ||||
|  | ||||
| </schemalist> | ||||
| @@ -0,0 +1,25 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <schemalist> | ||||
|  | ||||
|   <schema id='org.gtk.Settings.Debug' path='/org/gtk/settings/debug/'> | ||||
|     <key name='enable-inspector-keybinding' type='b'> | ||||
|       <default>true</default> | ||||
|       <summary>Enable inspector keybinding</summary> | ||||
|       <description> | ||||
|         If this setting is true, GTK+ lets the user open an interactive | ||||
|         debugging window with a keybinding. The default shortcuts for | ||||
|         the keybinding are Control-Shift-I and Control-Shift-D. | ||||
|       </description> | ||||
|     </key> | ||||
|     <key name='inspector-warning' type='b'> | ||||
|       <default>true</default> | ||||
|       <summary>Inspector warning</summary> | ||||
|       <description> | ||||
|         If this setting is true, GTK+ shows a warning before letting | ||||
|         the user use the interactive debugger. | ||||
|       </description> | ||||
|     </key> | ||||
|   </schema> | ||||
|  | ||||
| </schemalist> | ||||
|  | ||||
| @@ -0,0 +1,141 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!-- | ||||
|   Copyright © 2010 Christian Persch | ||||
|  | ||||
|   This library is free software; you can redistribute it and/or modify | ||||
|   it under the terms of the GNU Lesser General Public License as published by | ||||
|   the Free Software Foundation; either version 2.1, or (at your option) | ||||
|   any later version. | ||||
|  | ||||
|   This library is distributed in the hope that it will be useful, | ||||
|   but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
|   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
|   GNU Lesser General Public License for more details. | ||||
|  | ||||
|   You should have received a copy of the GNU Lesser General Public License | ||||
|   along with this library. If not, see <http://www.gnu.org/licenses/>. | ||||
| --> | ||||
| <schemalist> | ||||
|  | ||||
|   <enum id='org.gtk.Settings.FileChooser.LocationMode'> | ||||
|     <value nick='path-bar' value='0'/> | ||||
|     <value nick='filename-entry' value='1'/> | ||||
|   </enum> | ||||
|  | ||||
|   <enum id='org.gtk.Settings.FileChooser.SortColumn'> | ||||
|     <value nick='name' value='0'/> | ||||
|     <value nick='size' value='1'/> | ||||
|     <value nick='modified' value='2'/> | ||||
|   </enum> | ||||
|  | ||||
|   <enum id='org.gtk.Settings.FileChooser.SortOrder'> | ||||
|     <value nick='ascending' value='0'/> | ||||
|     <value nick='descending' value='1'/> | ||||
|   </enum> | ||||
|  | ||||
|   <enum id='org.gtk.Settings.FileChooser.StartupMode'> | ||||
|     <value nick='recent' value='0'/> | ||||
|     <value nick='cwd' value='1'/> | ||||
|   </enum> | ||||
|  | ||||
|   <enum id='org.gtk.Settings.FileChooser.ClockFormat'> | ||||
|     <value nick='24h' value='0'/> | ||||
|     <value nick='12h' value='1'/> | ||||
|   </enum> | ||||
|  | ||||
|   <schema id='org.gtk.Settings.FileChooser' path='/org/gtk/settings/file-chooser/'> | ||||
|     <key name='last-folder-uri' type='s'> | ||||
|       <default>""</default> | ||||
|     </key> | ||||
|     <key name='location-mode' enum='org.gtk.Settings.FileChooser.LocationMode'> | ||||
|       <default>'path-bar'</default> | ||||
|       <summary>Location mode</summary> | ||||
|       <description> | ||||
| 	Controls whether the file chooser shows just a path bar, or a visible entry | ||||
|         for the filename as well, for the benefit of typing-oriented users. The | ||||
|         possible values for these modes are "path-bar" and "filename-entry". | ||||
|       </description> | ||||
|     </key> | ||||
|     <key name='show-hidden' type='b'> | ||||
|       <default>false</default> | ||||
|       <summary>Show hidden files</summary> | ||||
|       <description> | ||||
| 	Controls whether the file chooser shows hidden files or not. | ||||
|       </description> | ||||
|     </key> | ||||
|     <key type="b" name="sort-directories-first"> | ||||
|       <default>false</default> | ||||
|       <summary>Show folders first</summary> | ||||
|       <description> | ||||
|         If set to true, then folders are shown before files in the list. | ||||
|       </description> | ||||
|     </key> | ||||
|     <key name='expand-folders' type='b'> | ||||
|       <default>false</default> | ||||
|       <summary>Expand folders</summary> | ||||
|       <description>This key is deprecated; do not use it.</description> | ||||
|     </key> | ||||
|     <key name='show-size-column' type='b'> | ||||
|       <default>true</default> | ||||
|       <summary>Show file sizes</summary> | ||||
|       <description> | ||||
| 	Controls whether the file chooser shows a column with file sizes. | ||||
|       </description> | ||||
|     </key> | ||||
|     <key name='sort-column' enum='org.gtk.Settings.FileChooser.SortColumn'> | ||||
|       <default>'name'</default> | ||||
|       <summary>Sort column</summary> | ||||
|       <description> | ||||
| 	Can be one of "name", "modified", or "size".  It controls | ||||
| 	which of the columns in the file chooser is used for sorting | ||||
| 	the list of files. | ||||
|       </description> | ||||
|     </key> | ||||
|     <key name='sort-order' enum='org.gtk.Settings.FileChooser.SortOrder'> | ||||
|       <default>'ascending'</default> | ||||
|       <summary>Sort order</summary> | ||||
|       <description> | ||||
| 	Can be one of the strings "ascending" or "descending". | ||||
|       </description> | ||||
|     </key> | ||||
|     <key name='window-position' type='(ii)'> | ||||
|       <default>(-1, -1)</default> | ||||
|       <summary>Window position</summary> | ||||
|       <description> | ||||
| 	The (x, y) coordinates of the upper-left corner of the GtkFileChooserDialog's | ||||
|         window. | ||||
|       </description> | ||||
|     </key> | ||||
|     <key name='window-size' type='(ii)'> | ||||
|       <default>(-1, -1)</default> | ||||
|       <summary>Window size</summary> | ||||
|       <description> | ||||
| 	The size (width, height) of the GtkFileChooserDialog's window, in pixels. | ||||
|       </description> | ||||
|     </key> | ||||
|     <key name='startup-mode' enum='org.gtk.Settings.FileChooser.StartupMode'> | ||||
|       <default>'recent'</default> | ||||
|       <summary>Startup mode</summary> | ||||
|       <description> | ||||
| 	Either "recent" or "cwd"; controls whether the file chooser | ||||
| 	starts up showing the list of recently-used files, or the | ||||
| 	contents of the current working directory. | ||||
|       </description> | ||||
|     </key> | ||||
|     <key name='sidebar-width' type='i'> | ||||
|       <default>148</default> | ||||
|       <summary>Sidebar width</summary> | ||||
|       <description> | ||||
| 	Width in pixels of the file chooser's places sidebar. | ||||
|       </description> | ||||
|     </key> | ||||
|     <key name="clock-format" enum="org.gtk.Settings.FileChooser.ClockFormat"> | ||||
|       <default>'24h'</default> | ||||
|       <summary>Time format</summary> | ||||
|       <description> | ||||
|         Whether the time is shown in 24h or 12h format. | ||||
|       </description> | ||||
|     </key> | ||||
|   </schema> | ||||
|  | ||||
| </schemalist> | ||||
							
								
								
									
										25
									
								
								gtk-nsis-pack/share/glib-2.0/org.gtk.exampleapp.gschema.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,25 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <schemalist> | ||||
|   <schema path="/org/gtk/exampleapp/" id="org.gtk.exampleapp"> | ||||
|     <key name="font" type="s"> | ||||
|       <default>'Monospace 12'</default> | ||||
|       <summary>Font</summary> | ||||
|       <description>The font to be used for content.</description> | ||||
|     </key> | ||||
|     <key name="transition" type="s"> | ||||
|       <choices> | ||||
|         <choice value='none'/> | ||||
|         <choice value='crossfade'/> | ||||
|         <choice value='slide-left-right'/> | ||||
|       </choices> | ||||
|       <default>'none'</default> | ||||
|       <summary>Transition</summary> | ||||
|       <description>The transition to use when switching tabs.</description> | ||||
|     </key> | ||||
|     <key name="show-words" type="b"> | ||||
|       <default>false</default> | ||||
|       <summary>Show words</summary> | ||||
|       <description>Whether to show a word list in the sidebar</description> | ||||
|     </key> | ||||
|   </schema> | ||||
| </schemalist> | ||||
| Before Width: | Height: | Size: 883 B After Width: | Height: | Size: 883 B | 
| Before Width: | Height: | Size: 781 B After Width: | Height: | Size: 781 B | 
| Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB | 
| Before Width: | Height: | Size: 720 B After Width: | Height: | Size: 720 B | 
| Before Width: | Height: | Size: 599 B After Width: | Height: | Size: 599 B | 
| Before Width: | Height: | Size: 563 B After Width: | Height: | Size: 563 B | 
| Before Width: | Height: | Size: 618 B After Width: | Height: | Size: 618 B | 
| Before Width: | Height: | Size: 851 B After Width: | Height: | Size: 851 B | 
| Before Width: | Height: | Size: 1017 B After Width: | Height: | Size: 1017 B | 
| After Width: | Height: | Size: 774 B | 
| Before Width: | Height: | Size: 910 B After Width: | Height: | Size: 910 B | 
| Before Width: | Height: | Size: 889 B After Width: | Height: | Size: 889 B | 
| Before Width: | Height: | Size: 698 B After Width: | Height: | Size: 698 B | 
| Before Width: | Height: | Size: 927 B After Width: | Height: | Size: 927 B | 
| Before Width: | Height: | Size: 951 B After Width: | Height: | Size: 951 B | 
| Before Width: | Height: | Size: 948 B After Width: | Height: | Size: 948 B | 
| Before Width: | Height: | Size: 689 B After Width: | Height: | Size: 689 B | 
| Before Width: | Height: | Size: 660 B After Width: | Height: | Size: 660 B | 
| Before Width: | Height: | Size: 480 B After Width: | Height: | Size: 480 B | 
| After Width: | Height: | Size: 773 B | 
| After Width: | Height: | Size: 381 B | 
							
								
								
									
										
											BIN
										
									
								
								gtk-nsis-pack/share/icons/Adwaita/16x16/actions/edit-clear.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 385 B | 
| Before Width: | Height: | Size: 549 B After Width: | Height: | Size: 549 B | 
| Before Width: | Height: | Size: 959 B After Width: | Height: | Size: 959 B | 
| Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB | 
| Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB | 
| Before Width: | Height: | Size: 949 B After Width: | Height: | Size: 949 B | 
| Before Width: | Height: | Size: 722 B After Width: | Height: | Size: 722 B | 
| Before Width: | Height: | Size: 656 B After Width: | Height: | Size: 656 B | 
| Before Width: | Height: | Size: 647 B After Width: | Height: | Size: 647 B | 
| Before Width: | Height: | Size: 822 B After Width: | Height: | Size: 822 B | 
| Before Width: | Height: | Size: 642 B After Width: | Height: | Size: 642 B | 
| Before Width: | Height: | Size: 636 B After Width: | Height: | Size: 636 B | 
							
								
								
									
										
											BIN
										
									
								
								gtk-nsis-pack/share/icons/Adwaita/16x16/actions/folder-new.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| After Width: | Height: | Size: 813 B | 
| Before Width: | Height: | Size: 611 B After Width: | Height: | Size: 611 B | 
| Before Width: | Height: | Size: 616 B After Width: | Height: | Size: 616 B | 
| Before Width: | Height: | Size: 621 B After Width: | Height: | Size: 621 B | 
| Before Width: | Height: | Size: 647 B After Width: | Height: | Size: 647 B | 
| Before Width: | Height: | Size: 411 B After Width: | Height: | Size: 411 B | 
| Before Width: | Height: | Size: 393 B After Width: | Height: | Size: 393 B | 
| Before Width: | Height: | Size: 427 B After Width: | Height: | Size: 427 B | 
| Before Width: | Height: | Size: 402 B After Width: | Height: | Size: 402 B | 
| Before Width: | Height: | Size: 799 B After Width: | Height: | Size: 799 B | 
| Before Width: | Height: | Size: 738 B After Width: | Height: | Size: 738 B | 
| Before Width: | Height: | Size: 719 B After Width: | Height: | Size: 719 B | 
| Before Width: | Height: | Size: 826 B After Width: | Height: | Size: 826 B | 
| Before Width: | Height: | Size: 637 B After Width: | Height: | Size: 637 B | 
| Before Width: | Height: | Size: 734 B After Width: | Height: | Size: 734 B | 
| Before Width: | Height: | Size: 735 B After Width: | Height: | Size: 735 B | 
| Before Width: | Height: | Size: 705 B After Width: | Height: | Size: 705 B | 
| Before Width: | Height: | Size: 709 B After Width: | Height: | Size: 709 B | 
| Before Width: | Height: | Size: 720 B After Width: | Height: | Size: 720 B | 
| Before Width: | Height: | Size: 844 B After Width: | Height: | Size: 844 B | 
| Before Width: | Height: | Size: 596 B After Width: | Height: | Size: 596 B | 
| Before Width: | Height: | Size: 720 B After Width: | Height: | Size: 720 B | 
| Before Width: | Height: | Size: 709 B After Width: | Height: | Size: 709 B | 
| Before Width: | Height: | Size: 677 B After Width: | Height: | Size: 677 B | 
| Before Width: | Height: | Size: 640 B After Width: | Height: | Size: 640 B | 
| Before Width: | Height: | Size: 640 B After Width: | Height: | Size: 640 B | 
| Before Width: | Height: | Size: 677 B After Width: | Height: | Size: 677 B | 
| Before Width: | Height: | Size: 742 B After Width: | Height: | Size: 742 B | 
| Before Width: | Height: | Size: 643 B After Width: | Height: | Size: 643 B | 
| Before Width: | Height: | Size: 669 B After Width: | Height: | Size: 669 B | 
| Before Width: | Height: | Size: 680 B After Width: | Height: | Size: 680 B | 
| Before Width: | Height: | Size: 805 B After Width: | Height: | Size: 805 B | 
| Before Width: | Height: | Size: 650 B After Width: | Height: | Size: 650 B | 
| Before Width: | Height: | Size: 760 B After Width: | Height: | Size: 760 B | 
| Before Width: | Height: | Size: 530 B After Width: | Height: | Size: 530 B | 
| Before Width: | Height: | Size: 556 B After Width: | Height: | Size: 556 B | 
| Before Width: | Height: | Size: 520 B After Width: | Height: | Size: 520 B | 
| Before Width: | Height: | Size: 333 B After Width: | Height: | Size: 333 B | 
| Before Width: | Height: | Size: 454 B After Width: | Height: | Size: 454 B | 
| Before Width: | Height: | Size: 591 B After Width: | Height: | Size: 591 B | 
| Before Width: | Height: | Size: 946 B After Width: | Height: | Size: 946 B | 
| Before Width: | Height: | Size: 804 B After Width: | Height: | Size: 804 B | 
| Before Width: | Height: | Size: 876 B After Width: | Height: | Size: 876 B | 
| Before Width: | Height: | Size: 782 B After Width: | Height: | Size: 782 B | 
| Before Width: | Height: | Size: 807 B After Width: | Height: | Size: 807 B | 
| Before Width: | Height: | Size: 573 B After Width: | Height: | Size: 573 B | 
| Before Width: | Height: | Size: 456 B After Width: | Height: | Size: 456 B | 
| Before Width: | Height: | Size: 393 B After Width: | Height: | Size: 393 B | 
| Before Width: | Height: | Size: 678 B After Width: | Height: | Size: 678 B | 
| Before Width: | Height: | Size: 530 B After Width: | Height: | Size: 530 B | 
| Before Width: | Height: | Size: 398 B After Width: | Height: | Size: 398 B | 
| Before Width: | Height: | Size: 532 B After Width: | Height: | Size: 532 B | 
| Before Width: | Height: | Size: 549 B After Width: | Height: | Size: 549 B | 
| Before Width: | Height: | Size: 370 B After Width: | Height: | Size: 370 B | 
| Before Width: | Height: | Size: 604 B After Width: | Height: | Size: 604 B | 
| Before Width: | Height: | Size: 518 B After Width: | Height: | Size: 518 B | 
| Before Width: | Height: | Size: 504 B After Width: | Height: | Size: 504 B | 
| Before Width: | Height: | Size: 504 B After Width: | Height: | Size: 504 B | 
| Before Width: | Height: | Size: 518 B After Width: | Height: | Size: 518 B | 
| Before Width: | Height: | Size: 610 B After Width: | Height: | Size: 610 B |