CintaNotes is a Windows application for fast and convenient note taking. It can clip text from any application on a hot key, has a powerful tagging system and effective full-text search capability.
0
Corrigé

Clipboard copy/paste cyrillic text

Vorland il y a 12 ans mis à jour par Alex Jenter il y a 12 ans 3

When copying note to a clipboard (at the chosen English keyboard), the inserting of the copied note from a clipboard to another application (I tried application "Bred") has a bug: instead of inserting Cyrillic symbols the "question marks" are inserted. At chosen Russian keyboard - everything is normal. It's known Problem - if I am not mistaken, it is necessary to report about the codepage of a copied note to the Windows Clipboard. Whether it is possible to correct? (Inserting Clipboard into Windows WordPad works without bug - probably, the problem is in "old" applications)

I found examples, how to fix this copy/past behavior:
C++ Source for non-unicode application (compiled in "C++ Builder" ):

const AnsiString strData="string to copy";

// open the system clipboard and delete all the data in it
if(!OpenClipboard(NULL))
{
//Error
throw Exception( "" );
}
EmptyClipboard();

//allocate memory in global heap for buffer
HGLOBAL hglbCopy = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE, strData.Length() + 1);
if(!hglbCopy)
{
CloseClipboard();
//Error
throw Exception( "" );
}

//lock the memory object to guarantee that nobody can move or discard it
LPTSTR lptstrCopy = (LPTSTR)GlobalLock(hglbCopy);
if(!lptstrCopy)
{
CloseClipboard();
GlobalFree(hglbCopy);
//Error
throw Exception( "" );
}

// copy the buffer into locked memory object
memcpy(lptstrCopy, strData.data(), strData.Length());
lptstrCopy += strData.Length();
*lptstrCopy = 0; // string null terminator

//unlock the memory object
GlobalUnlock(hglbCopy);

//put the data into clipboard in text format
HANDLE hClipData = SetClipboardData(CF_TEXT, hglbCopy);
if(!hClipData)
{
CloseClipboard();
GlobalFree(hglbCopy);
//Error
throw Exception( "" );
}

//set locale for text in the clipboard
hClipData = SetClipboardData(CF_LOCALE, hglbCopy);
if(!hClipData)
{
CloseClipboard();
GlobalFree(hglbCopy);
//Error
throw Exception( "" );
}

//close the system clipboard
CloseClipboard();

Solution
Alex Jenter il y a 12 ans

Actually this has been fixed in 2.1

0
Corrigé

XML import is very slow (V1.5.1)

Alex Jenter il y a 13 ans mis à jour il y a 13 ans 0
import
Solution
Alex Jenter il y a 13 ans
Fixed in 1.5.2
0
Corrigé

Error when entering / in the search box (1.7)

ChrisCN il y a 13 ans mis à jour par Alex Jenter il y a 12 ans 1
Version 1.7
If you enter / into the search box you get: "class err::InvalidArgumentException Precondition failed: app::model::Tag::Tag !name.empty()

Not a big thing - but should be avoided
Solution
Alex Jenter il y a 12 ans
Completed in V1.8

 

0
Corrigé

strange selected notes after removing tag

ChrisCN il y a 13 ans mis à jour par Alex Jenter il y a 12 ans 0
Not really a major problem - but just noticed:
If you:
 - select a tag to show only specifig notes
 - select some of the notes in the list
 - hit F4 to remove a tag
 - now you remove the tag you have selected in the first step
then:
 - the notes are removed from the list (as expected)
BUT:
 - the notes that are now in the position of the removed notes are selected  > this means: arbitrary notes are selected


notes-list
Solution
Alex Jenter il y a 12 ans
Completed in V1.8
+6
Écarté

Toggling "search inside words" mode via clicking on the magnyfing glass icon

Alex Jenter il y a 15 ans mis à jour par Christof Deininger il y a 9 ans 3
The magnifying glass icon should be different in search inside word mode, and it should allow switching between the modes on click.
searching complexity:easy
Solution
Christof Deininger il y a 9 ans
Closed due to inability to collect 10 votes for more than 2 years.
0
À l'étude

add "New search" to reset search filter

Thomas Lohrum il y a 11 ans mis à jour par Alex Jenter il y a 11 ans 11
A function should be added to reset all search filters to prepare a new search.
searching
0
Corrigé

Crash when middle-clicking on tag while no notes displayed

Alex Jenter il y a 14 ans mis à jour il y a 14 ans 0
subj
Solution
Alex Jenter il y a 14 ans
Fixed in 1.4.1
+1
Écarté

Move search bar to the right

Galadkin il y a 13 ans mis à jour par Christof Deininger il y a 9 ans 2

Move search bar to the right. I use CN around a year, but still confused every time with place of search bar, every time I click to "sort by bar" first, when I want to find something. Because all in all other software (browser, Explorer, OneNote, uTorrent and many many other) search bar placed at top right corner. Also I fully resize CN window to get view like a paper notepad in the hand (habit), in this form he looks like a good KISS software. But in this form, the search bar show only 3 letter. I really don't understand why sort bar still so long, because even the most long word "Modified" have 30% white space after it. Look at my mokup, maybe it's more productive and matches HIG of any platforms.Image 36

main-window cosmetic
Solution
Christof Deininger il y a 9 ans
Closed due to inability to collect 10 votes for more than 2 years.
+10
Écarté

Mouse wheel panning in notes list

Alex Jenter il y a 15 ans mis à jour par Christof Deininger il y a 9 ans 3
Middle-click + drag in the notes list should scroll the list like in MS Word or any web browser
viewing notes-list complexity:easy
0
Corrigé

Simplenote sync: CN resets Markdown flag

Alex Jenter il y a 11 ans mis à jour il y a 11 ans 0
It seems when a note is edited in CintaNote, it resets the Simplenote Markdown flag to plaintext, so then I end up with unformatted text in both places. (Michael Worthington)
syncing
Solution
Alex Jenter il y a 11 ans
Fixed in 2.5.1
0
Corrigé

CN doesn't start up

JeffW il y a 12 ans mis à jour par Alex Jenter il y a 12 ans 21
startup
Solution
Alex Jenter il y a 12 ans

 Fixed in 1.8.2

0
À l'étude

Difference note appearances across sections

Brease Chan il y a 11 ans mis à jour par Alex Jenter il y a 11 ans 0
viewing notes-list sections
0
Corrigé

Error log file (log.txt) is created when 'lang' folder not found

Alex Jenter il y a 14 ans mis à jour il y a 14 ans 0
Solution
Alex Jenter il y a 14 ans
Fixed in 1.4.3
0
À l'étude

Automatically add newlines to notes

Alex Jenter il y a 11 ans mis à jour il y a 11 ans 1
IF there were an option to have any text not ending in NEWLINE to append 2 NL when pasted onto EOF position in a note (i.e., appended to a note) OR when note content first created with CTRL-F12, then it would be great !
(suggested by Robert Shiplett)
taking/clipping
0
Corrigé

Extra " "(space) symbol at the beginning of the Tags field in editor

Alex Jenter il y a 14 ans mis à jour il y a 14 ans 0
Solution
Alex Jenter il y a 14 ans
Fixed in 1.4.1
0
Écarté

Make Ctrl+BkSp work for several selected notes

Alex Jenter il y a 12 ans mis à jour par Christof Deininger il y a 9 ans 2
Tags common to all notes should be selected.
If there are no tags common to all selected notes, all tags from these notes should become selected in OR mode.

 

tag-sidebar other-ui complexity:easy
Solution
Christof Deininger il y a 9 ans
Closed due to inability to collect 10 votes for more than 2 years.
+1
Terminé

Make "start minimized" a persistent option

MuadDib il y a 14 ans mis à jour par Alex Jenter il y a 14 ans 1
In addition to the "-m" switch, it would be very convenien to have the "start minimized" setting persistent in the settings file. That way, CN can be used together with the PortableApps.com launcher as a portably auto-started application.

To explain, the PAc launcher has the ability to auto-start apps upon its own startup. That mostly makes sens for apps that sit in the sys tray though.

BTW, using a portable launcher also solves the "how to auto-start CN from a USB drive" issue that I've read about elsewhere.
startup complexity:easy
Solution
Alex Jenter il y a 14 ans
Done in 1.4.1 as option "startup.minimized".
0
Corrigé

No notes shown after deleting all notes with selected tag

burrum il y a 12 ans mis à jour par Alex Jenter il y a 12 ans 0

1. Create emtpy db in CN 2.0.2

2. Create 3 notes, tag 2 of them with 'test'

Image 57


3. Select tag 'test':

Image 58


4. One by one, delete two visible notes


Result:

Empty notes list and no tags selected:

Image 59


These are the only steps I know to get into this state "empty filter, no notes shown, no tags slected, but notebook is not empty".


I know two valid states to show empty notes list:

* Not empty filter, string is not found in the db. Then we show "No notes found which match current filter"

* Empty filter, no notes in the notebook.


So this is half-bug/half-question. Is it normal? Is this state valid?


notes-list tags
Solution
Alex Jenter il y a 12 ans
Released in 2.0.3


0
Résolu

Should users be able to tag their ideas?

burrum il y a 14 ans mis à jour par Alex Jenter il y a 14 ans 0

When I submit new feedback to CintaNotes UserEcho system, I cannot assign tags (like Viewing, Editing, etc). However, after I post feedback and start editing it, I can do that. The question is, should users have this ability or not? If yes, please allow assigning tags straight from adding new feedback. If no, block it in Edit mode. I first thought it's a UserEcho bug, but I was told it's an admin setting. 

Solution
Alex Jenter il y a 14 ans

 Thanks for the info. I have changed the settings, the users are encouraged to use tags!

0
À l'étude

Sorting in the exported file.

Viktor il y a 10 ans mis à jour par Alex Jenter il y a 10 ans 1
When exporting the file tags not sorted
So you can not compare the XML file with the previous version in WinMerge.
Please add sorting tags in the exported XML file.
- Sort tags by "name"
- Sort sections by "id"
- Sort notes by "uid"


sorting export
0
Résolu

CintaNotes possibility

Daniel Tillmanns il y a 11 ans mis à jour par Alex Jenter il y a 11 ans 3

Hi, I look for a successful system of notes. I would like I could use him on my Mac and my PC and possibly my androïd. Thus is needed a good system of synchronization. I would like I could also easily order (tag) my notes by domain or employee. Is CintaNotes the good software for it? Does a French version exists? Thank you in advance for your help(assistant). Daniel

Solution
Alex Jenter il y a 11 ans

Hi Daniel,

thanks for your question!

Yes, CintaNotes supports French GUI, but the help is unfortunately only in English.

The synchronization via Simplenote and/or Dropbox will make your notes available to you both on Mac and on Android. The tagging system in CintaNotes is one of the most powerful of them all, and in cormmercial version also hierarchic tags are supported. 

Please let me know if you have any more questions!

0
Écarté

Open other companion software from cintanotes via links

Paul Barca il y a 10 ans mis à jour par Alex Jenter il y a 10 ans 8
I use a software for saving webpages as a companion to cintanotes. I can open a relevant surfulater article from the 'link' box in notes, so my request is either multiple link boxes to link to multiple articles from just one note in cintanotes OR treating the link to open other softwares like a web URL link, which can have multiple links in the main note body  itself 
main-window external links
0
À l'étude

Option to wipe notebook clean after N wrong password entering attempts

Alex Jenter il y a 9 ans mis à jour par anonymous il y a 8 ans 2

Useful when, for example, you are laid off from your job and don't even have the possiblity to clean up.

0
Pas un bug

Does not create a backup (daily and weekly).

Viktor il y a 10 ans mis à jour par Alex Jenter il y a 9 ans 9
Does not create a backup (daily and weekly).
Version 2.8.6
OS Windows 8.1
backup
+1
Pas un bug

Cintanotes slow in terminal server sessions

Alex Jenter il y a 14 ans mis à jour il y a 13 ans 1
I use cintanotes to take my notes. I was using the software on my
desktop for quiet some time. Recently I had situations to work
connecting to the terminal server remotely. I have seen cintanotes
hanging on the terminal server sessions while typing on the search bar.
Each key stroke takes long time on terminal server session. I upgraded
to the latest version of cintanotes available in the web, but still the
problem persists. Desktop sessions are working without any performance
issue.
Solution
Alex Jenter il y a 13 ans
Closing this because the bug was not reproduced and there hasn't been second upvote in 3 months