Searched defs:version (Results 1 - 11 of 11) sorted by relevance
/inkscape/packaging/wix/ |
H A D | version.py | 6 version = ''
variable 35 # retrieve the version information from the inkscape.rc file
46 # version = version.replace("+", "_")
54 ''' the second element contains now version info in the form major,minor,fix,build'''
56 version = veritems[0] + '.' + veritems[1]
variable 59 with open('version.wxi', 'w') as wxi:
60 wxi.write("<?xml version='1.0' encoding='utf-8'?>\n")
61 wxi.write("<!-- do not edit, this file is created by version.py tool any changes will be lost -->\n")
63 wxi.write("<?define ProductVersion='" + version [all...] |
/inkscape/src/ |
H A D | sp-root.h | 17 #include "version.h" 36 } version, original; member in class:SPRoot
|
H A D | version.cpp | 17 #include "version.h" 19 bool sp_version_from_string(const char *string, Inkscape::Version *version) argument 29 ss >> version->_major; 32 ss >>version->_minor; 37 version->_major = 0; 38 version->_minor = 0; 43 char *sp_version_to_string(Inkscape::Version version) argument 45 return g_strdup_printf("%u.%u", version._major, version._minor); 48 bool sp_version_inside_range(Inkscape::Version version, argument [all...] |
H A D | sp-object.cpp | 1391 void SPObject::_requireSVGVersion(Inkscape::Version version) { argument 1396 if ( root->version.svg < version ) { 1397 root->version.svg = version;
|
/inkscape/share/extensions/ |
H A D | inkweb.js | 15 ** by the Free Software Foundation, either version 3 of the License, or 16 ** (at your option) any later version. 29 version: 0.04,
|
/inkscape/src/extension/ |
H A D | loader.cpp | 17 #include "inkscape-version.h" 88 // Get a handle to the version function of the module 104 // Get version and test against this version 105 const gchar* version = GetInkscapeVersion(); local 106 if( strcmp(version, version_string) != 0) { 108 g_warning("Plugin was built against Inkscape version %s, this is %s. The plugin might not be compatible.", version, version_string);
|
/inkscape/src/ui/dialog/ |
H A D | aboutbox.cpp | 39 #include "inkscape-version.h" 167 the filename of its translated version, e.g. about.zh.svg for Chinese. 183 SPObject *version = doc->getObjectById("version"); local 184 if ( version && SP_IS_TEXT(version) ) { 185 sp_te_set_repr_text_multiline (SP_TEXT (version), Inkscape::version_string); 676 "have designed this version of the GPL to prohibit the practice for those\n" 695 " \"This License\" refers to version 3 of the GNU General Public License.\n" 706 "exact copy. The resulting work is called a \"modified version\" o [all...] |
/inkscape/src/util/ |
H A D | ziptool.cpp | 21 * version 2.1 of the License, or (at your option) any later version. 2518 error("bad version needed found"); 2740 unsigned int version; local 2741 if (!getInt(&version)) 2743 error("bad version found"); 2749 error("bad version found"); 2864 trace("Version :%d" , version);
|
/inkscape/src/libuemf/ |
H A D | uwmf.h | 1096 uint16_t version; //!< Metafile version Enumeration member in struct:__anon354
|
H A D | uemf.h | 1062 For U_EMR_COMMENTS_METAFILE version field 1744 uint32_t version; //!< Must be 1 member in struct:__anon130
|
/inkscape/ |
H A D | buildtool.cpp | 14 * version 2.1 of the License, or (at your option) any later version. 36 * Note: if you are using MinGW, and a not very recent version of it, 142 * it under the terms of the GNU General Public License version 2 as 207 * it under the terms of the GNU General Public License version 2 as 1390 //printf("Got version:%s\n",buf.c_str()); 3074 * Return a lower case version of the given string 3323 { return version; } 3375 version = ""; 3393 version 3437 String version; member in class:buildtool::PkgConfig 9300 virtual String version() function in class:buildtool::Make [all...] |
Completed in 308 milliseconds