Skip to content

Commit 0c62df6

Browse files
authored
Merge pull request #57 from Nighty3098/InDev
Added export to HTML
2 parents 06daa76 + 128fb28 commit 0c62df6

File tree

6 files changed

+300
-235
lines changed

6 files changed

+300
-235
lines changed

rm_cache.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
22

3+
rm -rf src/CodeKeeper/build
34
rm src/CodeKeeper/CodeKeeper.pro.user
45
rm src/CodeKeeper/CodeKeeper.pro.user.1f90c22
56
rm src/CodeKeeper/main.o
@@ -35,4 +36,4 @@ rm src/CodeKeeper/settingswindow.o
3536
rm src/CodeKeeper/syncwindow.o
3637
rm src/CodeKeeper/ui_qplaintexteditsearchwidget.h
3738

38-
echo "Done!"
39+
echo "Done!"

src/CodeKeeper/keeperFunc/functional.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,14 @@ void MainWindow::getSettingsData()
4848
isVisibleFolders = globalSettings->value("isVisibleFolders", true).toBool();
4949
isVisiblePreview = globalSettings->value("isVisiblePreview", false).toBool();
5050
isViewMode = globalSettings->value("isViewMode", false).toBool();
51+
git_repo = globalSettings->value("git_repo").value<QString>();
52+
git_user = globalSettings->value("git_user").value<QString>();
53+
git_token = globalSettings->value("git_token").value<QString>();
54+
isAutoSyncB = globalSettings->value("isAutoSync").value<bool>();
55+
56+
qDebug() << dir << selectedFont << font_size << theme << isCustomTitlebar << sortNotesRole
57+
<< isAutoSyncing << isVisibleNotesList << isVisibleFolders << isVisiblePreview
58+
<< isViewMode << git_repo << git_user << git_token << isAutoSyncB;
5159
}
5260

5361
void MainWindow::setConnectionStatus()

0 commit comments

Comments
 (0)