Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added relevance search/sort #444

Open
wants to merge 15 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,30 +31,36 @@ qrc_*.*
*.autosave

# the main program itself
nixnote
nixnote2

#user files
# user files
*.pro.*

#compiled translations
# compiled translations
translations/*.qm

#Makefiles
# Makefiles
Makefile
Makefile.Debug
Makefile.Release

#KDE workfile
# KDE workfile
.directory
/.project

#eclipse files
# eclipse files
.cproject
.settings

cmake-build-debug/
.idea/
build/

#QMake file
# idea
.idea/workspace.xml
.idea/misc.xml
.idea/tasks.xml
.idea/dictionaries
.idea/watcherTasks.xml

# QMake file
.qmake.stash
5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/runConfigurations/nixnote2.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cmdtools/cmdlinetool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ int CmdLineTool::sync() {
sql.exec("Select * from sqlite_master where type='table' and name='NoteTable';");
if (!sql.next()) {
NoteModel model(this);
model.createTable();
model.createNoteTable();
}
sql.finish();

Expand Down
25 changes: 25 additions & 0 deletions deploy-step.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/bin/sh

# simple script which can be used as deployment step in qt creator
# $1 is expected to be target directory


echo Deploying `pwd` to $1

# copy folders ...
cp -rf \
help \
images \
java \
qss \
translations \
$1

# ... and files required for execution
cp -f \
changelog.txt \
license.html \
shortcuts.txt \
$1

echo Finished deployment..
Loading