-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Wingman configuration, Preferences dialog, mind, main window, ... han…
…dling.
- Loading branch information
Showing
10 changed files
with
325 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Contribute to MindForger | ||
|
||
MindForger is free and open source software. Feel free to **contribute** - any help | ||
MindForger is free and open source software. Feel free to **contribute** - any help | ||
with MindForger development will be **highly appreciated**! | ||
|
||
* **Bugs and Suggestions** | ||
|
@@ -13,16 +13,24 @@ with MindForger development will be **highly appreciated**! | |
* Submit pull request/patch with implementation of a feature you missed. | ||
* **Integration** | ||
* How-to or code enabling integration with your (favorite) project. | ||
* **Enhancements** | ||
* **Enhancements** | ||
* Submit performance, efficiency and/or productivity enhancements suggestions (code, bug or docs) | ||
* **Documentation** | ||
* **Documentation** | ||
* Write a document, block post; create YouTube video, ... | ||
|
||
Don't hesitate to contact [me](mailto:[email protected]). | ||
|
||
**Table of contents**: | ||
|
||
* [Code of Conduct](#code-of-conduct) | ||
* [Styleguide: Git Commit Messages](#styleguide--git-commit-messages) | ||
* [Styleguide: C++](#styleguide--c) | ||
* [Styleguide: C++ Comments](#styleguide--c---comments) | ||
* [Styleguide: Qt](#styleguide--qt) | ||
|
||
|
||
# Code of Conduct | ||
This project and everyone participating in it is governed by the | ||
This project and everyone participating in it is governed by the | ||
[MindForger Code of Conduct](./CODE_OF_CONDUCT.md). By participating, you are expected to uphold this | ||
code. | ||
|
||
|
@@ -36,7 +44,7 @@ code. | |
|
||
# Styleguide: C++ | ||
Code style: | ||
|
||
* Use `.h` extension for header files. | ||
* Use `.cpp` extension for class files. | ||
* Use `lower_case_with_underscores` source code file names. | ||
|
@@ -63,8 +71,8 @@ public: | |
... | ||
|
||
void myFunction(int myParam) { ... } | ||
int myMultiLineFunction() const { | ||
|
||
int myMultiLineFunction() const { | ||
... | ||
} | ||
|
||
|
@@ -118,7 +126,7 @@ void MainWindowPresenter::doActionOrganizerMoveNoteToNextVisibleQuadrant(Note* n | |
``` | ||
# Styleguide: C++ comments | ||
# Styleguide: C++ Comments | ||
Comments should be used to explain tricky and/or | ||
important code only. Don't use comments to explain | ||
obvious things as comments might diverge from the | ||
|
@@ -190,3 +198,5 @@ public: | |
|
||
* MindForger uses MVP pattern (see `main_window_presenter.h/.cpp`) | ||
* See `/src/qt` source code for a code style reference. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,12 @@ | |
* Feature: Wingman brings OpenAI chat GPT integration allowing to | ||
compose, rewrite, summarize, do NER, fix, or chat with remarks. | ||
* Feature: Notebook Tree view brings ability to organize Notebooks to | ||
and outline. | ||
a tree (an outline). | ||
* Feature: Libraries bring ability to index external PDF files and generate | ||
Notebooks which represent them in MindForger. Synchronization and removal | ||
of the library supported as well. | ||
of the library (directory with files) is supported as well. | ||
* Feature: Emojis dialog allowing to use Unicode-based emojis | ||
in Notebook names, Note names or text. | ||
in Notebooks and Notes names or text. | ||
* Hidden feature: New left side toolbar which runs various tools | ||
(like Wikipedia, arXiv, StackOverflow, ...) on phrase which is the current | ||
context (Notebook or Note name, selected text or text under the cursor, ...) | ||
|
@@ -29,8 +29,9 @@ | |
* Fix: Missing OOTB Eisenhower Matrix is automatically added back to | ||
the list of Organizers. | ||
* Fix: Conflicting menu keyboard shortcuts resolution (e.g. Organizers view). | ||
* Fix: Edit and Format menus re-enabled on single Markdown file configuration. | ||
* Deprecation: dashboard view removed. | ||
* Deprecation: experimental Nitie code removed. | ||
* Deprecation: experimental Mitie (NER) code removed (replaced by LLM integration). | ||
|
||
2023-01-15 Martin Dvorak <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.