-
Notifications
You must be signed in to change notification settings - Fork 472
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
25 additions
and
22 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,15 +1,16 @@ | ||
cherrytree (0.99.31-1) focal; urgency=low | ||
cherrytree (0.99.32-1) focal; urgency=low | ||
|
||
* in preferences dialog tab themes there are now two style schemes, one starting from dark colors and one starting from light colors (#1362) | ||
* a different style scheme can now be selected for plain text and code (used to share the same) | ||
* implemented 'format clone' cloning formatting at cursor which can then be applied with existing menu item 'format latest' (#600) | ||
* insert special symbols changed from having a submenu item per symbol to a dialog listing all the symbols (#1503) | ||
* added few more icons as selectable as custom node icon (#1514) | ||
* fix mac os big sur crash when formatting text foreground/background color with RGB not from palette (#1512) | ||
* removed default global shortcut Ctrl+Delete to delete tree node because overrides text editor standard (#1513) | ||
* fixed import from keepnote missing images (#1516) | ||
* preferences dialog, selection of ui language, added flags (#1511) | ||
* fixed misleading command line argument to export to pdf - the user is expected to pass a directory path, not a file path | ||
* improved restoring of exact vertical scroll position (#1151) | ||
* fix iterated find/replace dialog disappearing after first button click | ||
* more node icons (#1514) | ||
* fix copy as plain text not working in table cell (#1528) | ||
* close image resize dialog when pressing enter (#1547) | ||
* fix crash at find in all nodes before dialog pops up, Windows OS (#1460) | ||
* improved dialog to select an item in the list focusing the item that was last used (e.g. special characters) | ||
* in nodes icons cycle cherries colors after reaching a node level superior to the max number of cherries colors (#692) | ||
* fixed issue with tree on the right side not properly restoring the tree width (#1534) | ||
* user-* themes are not to be selectable for code, now excluded from the list | ||
* added support for language 'elixir' by @SteffenBauer (#1541) | ||
|
||
|
||
-- Giuseppe Penone <[email protected]> Tue, 23 Feb 2021 21:48:08 +0000 | ||
-- Giuseppe Penone <[email protected]> Sat, 13 Mar 2021 22:53:08 +0000 |
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,7 +1,7 @@ | ||
/* | ||
* ct_codebox.h | ||
* | ||
* Copyright 2017-2020 Giuseppe Penone <[email protected]> | ||
* Copyright 2017-2021 Giuseppe Penone <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
@@ -70,7 +70,7 @@ class CtCodebox : public CtAnchoredWidget, public CtTextCell | |
const bool widthInPixels, | ||
const bool highlightBrackets, | ||
const bool showLineNumbers); | ||
virtual ~CtCodebox(); | ||
~CtCodebox() override; | ||
|
||
void apply_width_height(const int parentTextWidth) override; | ||
void apply_syntax_highlighting(const bool forceReApply) override; | ||
|
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,7 +1,7 @@ | ||
/* | ||
* ct_image.h | ||
* | ||
* Copyright 2009-2020 | ||
* Copyright 2009-2021 | ||
* Giuseppe Penone <[email protected]> | ||
* Evgenii Gurianov <https://github.com/txe> | ||
* | ||
|
@@ -45,7 +45,7 @@ class CtImage : public CtAnchoredWidget | |
Glib::RefPtr<Gdk::Pixbuf> pixBuf, | ||
const int charOffset, | ||
const std::string& justification); | ||
virtual ~CtImage() override; | ||
~CtImage() override; | ||
|
||
void apply_width_height(const int /*parentTextWidth*/) override {} | ||
void apply_syntax_highlighting(const bool /*forceReApply*/) override {} | ||
|
@@ -72,7 +72,7 @@ class CtImagePng : public CtImage | |
const Glib::ustring& link, | ||
const int charOffset, | ||
const std::string& justification); | ||
virtual ~CtImagePng() override {} | ||
~CtImagePng() override {} | ||
|
||
void to_xml(xmlpp::Element* p_node_parent, const int offset_adjustment, CtStorageCache* cache) override; | ||
bool to_sqlite(sqlite3* pDb, const gint64 node_id, const int offset_adjustment, CtStorageCache* cache) override; | ||
|
@@ -98,7 +98,7 @@ class CtImageAnchor : public CtImage | |
const Glib::ustring& anchorName, | ||
const int charOffset, | ||
const std::string& justification); | ||
virtual ~CtImageAnchor() override {} | ||
~CtImageAnchor() override {} | ||
|
||
void to_xml(xmlpp::Element* p_node_parent, const int offset_adjustment, CtStorageCache* cache) override; | ||
bool to_sqlite(sqlite3* pDb, const gint64 node_id, const int offset_adjustment, CtStorageCache* cache) override; | ||
|
@@ -126,7 +126,7 @@ class CtImageEmbFile : public CtImage | |
const int charOffset, | ||
const std::string& justification, | ||
const size_t uniqueId); | ||
virtual ~CtImageEmbFile() override {} | ||
~CtImageEmbFile() override {} | ||
|
||
void to_xml(xmlpp::Element* p_node_parent, const int offset_adjustment, CtStorageCache* cache) override; | ||
bool to_sqlite(sqlite3* pDb, const gint64 node_id, const int offset_adjustment, CtStorageCache* cache) override; | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* ct_table.h | ||
* | ||
* Copyright 2009-2020 | ||
* Copyright 2009-2021 | ||
* Giuseppe Penone <[email protected]> | ||
* Evgenii Gurianov <https://github.com/txe> | ||
* | ||
|
@@ -40,7 +40,7 @@ class CtTable : public CtAnchoredWidget | |
const CtTableColWidths& colWidths, | ||
const size_t currRow = 0, | ||
const size_t currCol = 0); | ||
virtual ~CtTable(); | ||
~CtTable() override; | ||
|
||
/** | ||
* @brief Build a table from csv | ||
|
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