
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
qNotesManager is an simple note-taking software.
Features:
Format note text in WYSIWYG-editor;
Insert images, lists, tables;
Add tags to your notes;
Attach files to your notes;
Group yout notes in categories (folders);
Filter notes by their creation / modification time;
Save file may be encrypted if you want to keep your information in secret;
Quick note function: create a new note with text from clipboard with just one click.
Supported platforms:
Linux
Windows
OS/2
MacOS (maybe, not tested)
7 years ago
0.9.8
- Removed QCA dependency
- Fixed loading image's icon generation for tall but narrow images.
0.9.7
- New features:
- Added 'Show in tree' action to search results. Triggering it will highlight selected note in the notes tree;
- Reworked local search panel: added 'Replace' field, added 'Greedy search' option, added backreference support;
- It is possible to disable deletion confirmation using 'do not ask anymore' checkbox;
- Added auto-reload feature : if an opened document has been changed outside of the program (using sync software), program offers user to reload it;
- Implemented 'Save image' and 'Resize image' features;
- Added 'Table Properties' window;
- Bug fixes:
- Fixed issue when editing note's tags would create duplicated tags;
- Fixed application crash when closing document with search results open;
- Fixed showing duplicated results in search results;
- Fixed application crash when trying to search in a closed document;
- Fixed application crash when trying to perform text search in a document;
- Fixed bug when double click on search result did not activate note's tab properly;
- Fixed bug when images were not copied to clipboard correctly;
- Fixed bug in notebook tree when after drag'n'drop item was always moved to second row;
- Fixed bug when note's text could not be copied to clipboard;
- Added shortcut (Ctrl+W) to close current note tab;
- Program now puts selected text to 'link name' field and text from clipboard to 'link' field in 'Insert hyperlink' dialog;
- New note caption extraction function reworked, caption now trimmed after first 'new line' character;
- Fixed lag when moving/resizing main window;
- Note's text field now receives focus when note's tab opened;
- Fixed obtrusive hyperlink tooltip that did not go away when window is hidden;
- Fixed bug when images from disk did not load propeerly;
- Improved thumbnails for images that in process of loading. Thumbnails now don't stretch, but have actual image's size.
7 years ago
0.9.8
- Removed QCA dependency
- Fixed loading image's icon generation for tall but narrow images.
0.9.7
- New features:
- Added 'Show in tree' action to search results. Triggering it will highlight selected note in the notes tree;
- Reworked local search panel: added 'Replace' field, added 'Greedy search' option, added backreference support;
- It is possible to disable deletion confirmation using 'do not ask anymore' checkbox;
- Added auto-reload feature : if an opened document has been changed outside of the program (using sync software), program offers user to reload it;
- Implemented 'Save image' and 'Resize image' features;
- Added 'Table Properties' window;
- Bug fixes:
- Fixed issue when editing note's tags would create duplicated tags;
- Fixed application crash when closing document with search results open;
- Fixed showing duplicated results in search results;
- Fixed application crash when trying to search in a closed document;
- Fixed application crash when trying to perform text search in a document;
- Fixed bug when double click on search result did not activate note's tab properly;
- Fixed bug when images were not copied to clipboard correctly;
- Fixed bug in notebook tree when after drag'n'drop item was always moved to second row;
- Fixed bug when note's text could not be copied to clipboard;
- Added shortcut (Ctrl+W) to close current note tab;
- Program now puts selected text to 'link name' field and text from clipboard to 'link' field in 'Insert hyperlink' dialog;
- New note caption extraction function reworked, caption now trimmed after first 'new line' character;
- Fixed lag when moving/resizing main window;
- Note's text field now receives focus when note's tab opened;
- Fixed obtrusive hyperlink tooltip that did not go away when window is hidden;
- Fixed bug when images from disk did not load propeerly;
- Improved thumbnails for images that in process of loading. Thumbnails now don't stretch, but have actual image's size.
arsivci
6 years ago
Quote:In file included from src/mainwindow.cpp:32:0:
src/cipherer.h:21:20: fatal error: QtCrypto: No such file or directory
#include <QtCrypto>
^
compilation terminated.
make: *** [build/release/.obj/unix/mainwindow.o] Error 1
Kernel: 3.10.30, qt-4.8.5, qca-2.0.2, qca-ossl-2.0.0_beta3, arch: x86_64.
I really hope to use this program.
Report
arsivci
6 years ago
Quote:In file included from src/mainwindow.cpp:32:0:
src/cipherer.h:21:20: fatal error: QtCrypto: No such file or directory
#include <QtCrypto>
^
compilation terminated.
make: *** [build/release/.obj/unix/mainwindow.o] Error 1
Kernel: 3.10.30, qt-4.8.5, qca-2.0.2, qca-ossl-2.0.0_beta3, arch: x86_64.
I really hope to use this program.
Report
olelukoie
7 years ago
INCLUDEPATH += src/qca/QtCrypto \
src/exceptions \
src/models
First there're no src/exceptions and src/models paths in your sources.
Second unconditional usage of your own copy of QCA headers creates conflicts with a system QCA library on non-Windows systems. Use your own copy of the headers only on Windows. On most Linux systems this path should be /usr/include/QtCrypto and thus using #include <QtCrypto/QtCrypto> in your source code you would completely eliminate the need to provide this path on 'unix' systems.
Report
olelukoie
7 years ago
First in contains a whitespace between -L and a path.
Second the path /usr/lib is a system path, it is used automatically and can vary on different systems and architectures (/usr/lib, /usr/lib32, /usr/lib64). Do not add it in LIBS.
Report
olelukoie
7 years ago
WARNING: /home/olelukoie/rpmbuild/BUILD/qNotesManager-0.9.4/qNotesManager.pro:8: Unescaped backslashes are deprecated.
This line #8 in the pro file states:
$(QTDIR)\include
It contains Windows-style path delimiter that won't work on non-windows systems and thus has to be changes.
Report
olelukoie
7 years ago
Report
WalterSullivan
7 years ago
Report
awes
7 years ago
Report
WalterSullivan
7 years ago
Report