mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-06 00:07:29 -04:00
** Added check for wrong UI version to make release
** fixed wrong versions and DOS endlines git-svn-id: http://svn.osgeo.org/qgis/trunk@1647 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
2e79bd4e26
commit
0a96c5bf45
@ -1,8 +1,12 @@
|
|||||||
QGIS Change Log
|
QGIS Change Log
|
||||||
ChangeLog,v 1.143 2004/06/21 00:15:49 timlinux Exp
|
ChangeLog,v 1.144 2004/06/21 10:23:33 jobi Exp
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
Version 0.3 'Madison' .... development version
|
Version 0.3 'Madison' .... development version
|
||||||
|
|
||||||
|
2004-06-21 [jobi] 0.3.0devel47
|
||||||
|
** Added check for wrong UI version to make release
|
||||||
|
** fixed wrong versions and DOS endlines
|
||||||
|
|
||||||
2004-06-21 [ts] 0.3.0devel46
|
2004-06-21 [ts] 0.3.0devel46
|
||||||
|
|
||||||
** Got tired of always resetting my gidbase dir everytime qgis restarts -
|
** Got tired of always resetting my gidbase dir everytime qgis restarts -
|
||||||
|
11
Makefile.am
11
Makefile.am
@ -26,7 +26,16 @@ SUBDIRS = src providers plugins doc tools i18n
|
|||||||
|
|
||||||
pkginclude_HEADERS = qgsconfig.h
|
pkginclude_HEADERS = qgsconfig.h
|
||||||
|
|
||||||
release: distdir
|
UIcheck:
|
||||||
|
@UIS=`find . -name *.ui` && \
|
||||||
|
if [ `grep "UI version" $$UIS | sed -e '/3.1/d' | wc -l` -ne 0 ]; then \
|
||||||
|
echo -e "\nWrong UI version:"; \
|
||||||
|
grep "UI version" $$UIS | sed -e '/3.1/d' -e 's/:.*version="\([0-9\.]*\)".*/ is version \1/g'; \
|
||||||
|
echo; \
|
||||||
|
exit 1; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
release: UIcheck distdir
|
||||||
-chmod -R a+r $(distdir)
|
-chmod -R a+r $(distdir)
|
||||||
GZIP=$(GZIP_ENV) $(AMTAR)$(TAR) chozf $(distdir).tar.gz $(distdir)
|
GZIP=$(GZIP_ENV) $(AMTAR)$(TAR) chozf $(distdir).tar.gz $(distdir)
|
||||||
rm -f $(distdir)/qgis.spec
|
rm -f $(distdir)/qgis.spec
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
dnl Process this file with autoconf to produce a configure script.
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
dnl configure.in,v 1.145 2004/06/21 00:15:49 timlinux Exp
|
dnl configure.in,v 1.146 2004/06/21 10:23:33 jobi Exp
|
||||||
|
|
||||||
|
|
||||||
AC_INIT
|
AC_INIT
|
||||||
@ -25,7 +25,7 @@ dnl ---------------------------------------------------------------------------
|
|||||||
MAJOR_VERSION=0
|
MAJOR_VERSION=0
|
||||||
MINOR_VERSION=3
|
MINOR_VERSION=3
|
||||||
MICRO_VERSION=0
|
MICRO_VERSION=0
|
||||||
EXTRA_VERSION=46
|
EXTRA_VERSION=47
|
||||||
if test $EXTRA_VERSION -eq 0; then
|
if test $EXTRA_VERSION -eq 0; then
|
||||||
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}
|
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}
|
||||||
else
|
else
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<!DOCTYPE UI><UI version="3.2" stdsetdef="1">
|
<!DOCTYPE UI><UI version="3.1" stdsetdef="1">
|
||||||
<class>QgsContColDialogBase</class>
|
<class>QgsContColDialogBase</class>
|
||||||
<widget class="QDialog">
|
<widget class="QDialog">
|
||||||
<property name="name">
|
<property name="name">
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<!DOCTYPE UI><UI version="3.0" stdsetdef="1">
|
<!DOCTYPE UI><UI version="3.1" stdsetdef="1">
|
||||||
<class>QgsLegendItemBase</class>
|
<class>QgsLegendItemBase</class>
|
||||||
<widget class="QWidget">
|
<widget class="QWidget">
|
||||||
<property name="name">
|
<property name="name">
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<!DOCTYPE UI><UI version="3.2" stdsetdef="1">
|
<!DOCTYPE UI><UI version="3.1" stdsetdef="1">
|
||||||
<class>QgsSiSyDialogBase</class>
|
<class>QgsSiSyDialogBase</class>
|
||||||
<widget class="QDialog">
|
<widget class="QDialog">
|
||||||
<property name="name">
|
<property name="name">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user