Skip to content

Commit

Permalink
Merge pull request #57 from Nighty3098/InDev
Browse files Browse the repository at this point in the history
Added export to HTML
  • Loading branch information
Nighty3098 authored May 5, 2024
2 parents 06daa76 + 128fb28 commit 0c62df6
Show file tree
Hide file tree
Showing 6 changed files with 300 additions and 235 deletions.
3 changes: 2 additions & 1 deletion rm_cache.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/bash

rm -rf src/CodeKeeper/build
rm src/CodeKeeper/CodeKeeper.pro.user
rm src/CodeKeeper/CodeKeeper.pro.user.1f90c22
rm src/CodeKeeper/main.o
Expand Down Expand Up @@ -35,4 +36,4 @@ rm src/CodeKeeper/settingswindow.o
rm src/CodeKeeper/syncwindow.o
rm src/CodeKeeper/ui_qplaintexteditsearchwidget.h

echo "Done!"
echo "Done!"
8 changes: 8 additions & 0 deletions src/CodeKeeper/keeperFunc/functional.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ void MainWindow::getSettingsData()
isVisibleFolders = globalSettings->value("isVisibleFolders", true).toBool();
isVisiblePreview = globalSettings->value("isVisiblePreview", false).toBool();
isViewMode = globalSettings->value("isViewMode", false).toBool();
git_repo = globalSettings->value("git_repo").value<QString>();
git_user = globalSettings->value("git_user").value<QString>();
git_token = globalSettings->value("git_token").value<QString>();
isAutoSyncB = globalSettings->value("isAutoSync").value<bool>();

qDebug() << dir << selectedFont << font_size << theme << isCustomTitlebar << sortNotesRole
<< isAutoSyncing << isVisibleNotesList << isVisibleFolders << isVisiblePreview
<< isViewMode << git_repo << git_user << git_token << isAutoSyncB;
}

void MainWindow::setConnectionStatus()
Expand Down
Loading

0 comments on commit 0c62df6

Please sign in to comment.