Changeset 0346302
- Timestamp:
- 06/23/11 19:33:26 (12 years ago)
- Branches:
- master, qt5
- Children:
- 8fe5af6
- Parents:
- a9618a8
- Files:
-
- 1 added
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
ra9618a8 r0346302 1 2011-06-23 philipp 2 3 * BUGS: Checked the remaining code. Didn't find possibilities for 4 SQL injections anymore. 5 1 6 2011-06-23 gregoa 2 7 8 * TODO: Update TODO. 9 * ChangeLog, fosdem-schedule.pro: Add release and changelog targets 10 to project file. 3 11 * Changelog: Remove empty Changelog. 4 12 -
README
ra9618a8 r0346302 40 40 with this program; if not, write to the Free Software Foundation, Inc., 41 41 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 42 43 data/confclerk.*: 44 45 Copyright (C) 2011, Christian Kling <kling_christian@gmx.at> 46 47 This program is free software; you can redistribute it and/or modify 48 it under the terms of the GNU General Public License as published by 49 the Free Software Foundation; either version 2 of the License, or 50 (at your option) any later version. 51 52 This program is distributed in the hope that it will be useful, 53 but WITHOUT ANY WARRANTY; without even the implied warranty of 54 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 55 GNU General Public License for more details. 56 57 You should have received a copy of the GNU General Public License along 58 with this program; if not, write to the Free Software Foundation, Inc., 59 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 60 42 61 43 62 -
TODO
ra9618a8 r0346302 3 3 - rename *.pro, s/fosdem-schedule/confclerk/ in various places 4 4 - .sqlite file location, config location 5 - svn rm data/fosdem-schedule.svg 5 6 6 7 FOSDEM specifics: 7 8 - data/NxM (fosdem logo) 8 + create confclerk logo and usein application and for .desktop9 + use confclerk logo in application and for .desktop 9 10 - src/maps 10 11 - src/icons/brain-alone.png,fosdem.png … … 13 14 maemo: 14 15 - data/maemo/*.desktop - add generic .desktop file 16 - ./data/Makefile 17 - convert in .pro (or leave that for the packaging) 18 installation is 'broken' anyway since the removal of "SUBDIRS += data" 15 19 16 20 other 17 21 - copyright for icons / replace icons (gnome-icon-theme etc.) 18 22 - add contact info 23 - .pro: maybe play with install target -
fosdem-schedule.pro
ra9618a8 r0346302 13 13 VERSION = 0.5.0 14 14 15 QMAKE_EXTRA_TARGETS += tarball changelog release 16 QMAKE_DISTCLEAN += ChangeLog 15 QMAKE_EXTRA_TARGETS += tarball icon changelog release 17 16 18 17 changelog.target = ChangeLog … … 20 19 svn up && svn2cl --group-by-day --reparagraph 21 20 changelog.CONFIG = phony 21 22 icon.target = data/$${TARGET}.png 23 icon.commands = convert data/$${TARGET}.svg data/$${TARGET}.png 24 icon.depends = data/$${TARGET}.svg 22 25 23 26 release.depends = tarball … … 30 33 tar -cz --exclude=.svn -f $$tarball.target $${TARGET}-$${VERSION} ; \ 31 34 $(DEL_FILE) -r $${TARGET}-$${VERSION} 32 tarball.depends = changelog 35 tarball.depends = changelog icon
Note: See TracChangeset
for help on using the changeset viewer.