updated to version 0.6
This commit is contained in:
parent
9a01a34c6e
commit
4ea8c5833e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=72875
@ -8,11 +8,11 @@
|
||||
#
|
||||
|
||||
PORTNAME= knowit
|
||||
PORTVERSION= 0.4
|
||||
PORTVERSION= 0.6
|
||||
PORTREVISION= 0
|
||||
#PORTEPOCH=
|
||||
CATEGORIES= deskutils
|
||||
MASTER_SITES= http://www.uw.edu.pl/~mrudolf/files/
|
||||
MASTER_SITES= http://knowit.sourceforge.net/files/
|
||||
|
||||
MAINTAINER= alane@FreeBSD.org
|
||||
|
||||
|
@ -1 +1 @@
|
||||
MD5 (knowit-0.4.tar.bz2) = 244f4878be346980e0ccd40372606f0c
|
||||
MD5 (knowit-0.6.tar.bz2) = 6efceb4ad2a0fb533961c19123309519
|
||||
|
@ -1,22 +0,0 @@
|
||||
--- knowit/notes.cpp.orig Sun Dec 8 01:24:02 2002
|
||||
+++ knowit/notes.cpp Sun Dec 8 01:50:11 2002
|
||||
@@ -80,12 +80,13 @@
|
||||
bool TNotesCollection::changeNote(QListViewItem* item, const QString& s)
|
||||
{
|
||||
TNote* changed = find(item);
|
||||
- if (!changed) qWarning("Internal error: change note\n");
|
||||
- else {
|
||||
- bool change = changed->change(s);
|
||||
- modified = modified or change;
|
||||
- return change;
|
||||
- }
|
||||
+ if (!changed) {
|
||||
+ qWarning("Internal error: change note\n");
|
||||
+ return false;
|
||||
+ }
|
||||
+ if (changed->change(s)) {
|
||||
+ return modified = true;
|
||||
+ }
|
||||
return false;
|
||||
}
|
||||
|
@ -1,6 +1,8 @@
|
||||
bin/knowit
|
||||
bin/i386-portbld-freebsd4.7-knowit
|
||||
bin/knowit
|
||||
share/applnk/Applications/knowit.desktop
|
||||
share/apps/knowit/tips
|
||||
share/doc/HTML/en/knowit/common
|
||||
share/doc/HTML/en/knowit/index.cache.bz2
|
||||
share/doc/HTML/en/knowit/index.docbook
|
||||
@ -8,12 +10,19 @@ share/doc/HTML/en/knowit/screenshot.png
|
||||
share/icons/hicolor/16x16/apps/knowit.png
|
||||
share/icons/hicolor/32x32/apps/knowit.png
|
||||
share/locale/de/LC_MESSAGES/knowit.mo
|
||||
share/locale/es/LC_MESSAGES/knowit.mo
|
||||
share/locale/fr/LC_MESSAGES/knowit.mo
|
||||
share/locale/hu/LC_MESSAGES/knowit.mo
|
||||
share/locale/pl/LC_MESSAGES/knowit.mo
|
||||
share/locale/zh_CN.GB2312/LC_MESSAGES/knowit.mo
|
||||
share/locale/sk/LC_MESSAGES/knowit.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/knowit.mo
|
||||
@dirrm share/icons/hicolor/32x32/apps
|
||||
@dirrm share/icons/hicolor/32x32
|
||||
@dirrm share/icons/hicolor/16x16/apps
|
||||
@dirrm share/icons/hicolor/16x16
|
||||
@dirrm share/icons/hicolor
|
||||
@dirrm share/doc/HTML/en/knowit
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/apps/knowit
|
||||
@dirrm share/applnk/Applications
|
||||
|
Loading…
Reference in New Issue
Block a user