summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrés <andmarti@gmail.com>2021-03-18 13:42:21 -0300
committerAndrés <andmarti@gmail.com>2021-03-18 13:42:21 -0300
commit9ed39afd19a152d6a5f630e6619a50d3746469fc (patch)
treea69cbbec2f5fb705158d04a11b3ee261a7a1a2f2
parent2af89198ff96fc017e89f66a92a6594d5f576e49 (diff)
Forgot last doc changesv0.8.0
-rw-r--r--CHANGES86
-rw-r--r--src/color.c6
-rw-r--r--src/version.h2
-rw-r--r--test202102251
4 files changed, 91 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 8b06557..80c2173 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,88 @@
+v0.8.0
+Released March 17th 2021
+
+
+New features
+------------
++New motions in edit mode: df cf F dF cF d0 d$ c0 c$ t T dt dT ct cT ^ g_ d^ dg_ c^ cg_
++Simple mouse support. Can handle selection of single cells and scroll.
++Added markdown export.
++Add custom colors with RGB definitions.
++Add support for italic attribute to be appled to cells.
++Added digraphs.
++Added EXECUTE command.
++Added --export_csv --export_tab --export_txt parameters.
++New input_bar_bottom config variable.
++New underline_grid config variable.
++Added filename in status bar (filename_with_mode config variable).
++Added option to truncate cells.
++Added xlsx sheet parameter.
++New @fact function.
+
+Other
+-----
++modified config and history file locations
++renamed winch to sig_winch.
++current fg and bg colors are kept if they are not specified in :cellcolor.
++OpenBSD support (mostly wordexp() workaround)
++Correct lua api function names in doc
++always generate backup file when opening file
++renamed scim to sc-im in Makefile
++Document trigger return value convention
+
+Issues fixed
+------------
+fix bug when deleting an ent that for instance has a @sum()... it used to remove its vertex and THE ENTS LINKED to THEM!
+fix error messages when using "scim --version" and color definitions are intented to be applied from .scimrc.
+fix in waiting for valid command to complete after pressing ESC key.
+fix in parse_str so a word with white space can be stored in dictionary value
+fix when setting default_paste_from_clipboard_cmd
+Don't clobber startup message w/ err opening file
+Allow for lua scripts in local .sc directory #259
+Send informational messages to stderr rather than the output when used in non-interactive mode #263
+fixed cell_negative color #271
+fixed locked cells when saving #261
+fixed DEL key in insert mode #272
+fix when resizing column #266
+"Autobackup - case insensitive QER options when backup exists"
+fixed segfault when fcopy'ing with no selection while on first column
+Call write triggers on value clear
+Use sc_info to report trigger exit code
+fixed #277
+Grow table up to MAXROWS exactly
+Remove redundant if clause (God only knows where that was).
+
+fix in getVertex that prevented rebuild_graph to work properly.
+fix annoying bug because of not resetting inputline_pos to 0 when confirming a command in COMMAND_MODE
+fix in let and slet. existing vertexs should not be removed.
+
+added "eval_visited" in vertex struct for not to collide with current "visited", since:
+ EvalAll uses EvalBottomUp
+ EvalBottomUp uses EvalJustOneVertex
+ EvalJustOneVertex uses eval
+ eval uses GraphAddEdge
+ GraphAddEdge uses GraphIsReachable
+ GraphIsReachable uses visited
+ and EvalBottomUp also uses uses visited!
+Also changed markAllVerticesNotVisited and All_vertexs_of_edges_visited functions.
+
+Some other issues fixed: #228, #234, #239, #240, #244, #246, #260, #295, #308
+.. and many other fixes and improvements!
+
+PENDING
+-------
+The most significative issue is regarding circular references.
+This have to be deeply analyzed and with the collaboration of the community
+it would be hopefully fixed by v0.9.
+
+Thanks to all that helped and created PR.
+Thanks to all who support and use this program.
+
+Andrés Martinelli
+andmarti1424
+
+****************************************************************************************
+
v0.7.0
*Added 'copy to clipboard' feature: now content of a range can be copied to clipboard using the :ccopy command.
*Added 'paste from clipboard' feature with :cpaste command.
@@ -188,3 +273,4 @@ v0.2.2
* Various fixes when using SC-IM without UI (--nocurses).
* Help documentation now can be loaded without making install SC-IM.
* MAXROWS now can be defined in Makefile.
+
diff --git a/src/color.c b/src/color.c
index b55043f..325f6d0 100644
--- a/src/color.c
+++ b/src/color.c
@@ -97,10 +97,12 @@ void start_default_ucolors() {
// Set some colors attributes
ucolors[ DEFAULT ].fg = WHITE;
ucolors[ DEFAULT ].bg = DEFAULT_COLOR;
- ucolors[ HEADINGS ].bg = RED;
+ ucolors[ HEADINGS ].bg = YELLOW;
ucolors[ HEADINGS ].fg = WHITE;
- ucolors[ HEADINGS_ODD ].bg = RED;
+ ucolors[ HEADINGS ].bold = 1;
+ ucolors[ HEADINGS_ODD ].bg = YELLOW;
ucolors[ HEADINGS_ODD ].fg = WHITE;
+ ucolors[ HEADINGS_ODD ].bold = 1;
ucolors[ GRID_PAIR ].fg = WHITE;
ucolors[ GRID_PAIR ].bg = DEFAULT_COLOR;
ucolors[ GRID_ODD ].fg = WHITE;
diff --git a/src/version.h b/src/version.h
index d2459bd..287c80a 100644
--- a/src/version.h
+++ b/src/version.h
@@ -46,4 +46,4 @@
* CODE REVISION NUMBER:
*/
-char * rev = "version 0.7.0";
+char * rev = "version 0.8.0";
diff --git a/test20210225 b/test20210225
deleted file mode 100644
index 2556c7a..0000000
--- a/test20210225
+++ /dev/null
@@ -1 +0,0 @@
-do4