Skip to content

Commit 69f4b2d

Browse files
committed
Preparing to merge
1 parent 2abe331 commit 69f4b2d

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ src/experres.h
44
src/gram.c
55
src/sc-im
66
src/tags
7+
src/log
78
tests/tags
9+
tests/log
10+
tests/*_vallog
811
src/scim
912
src/statres.h
1013
doc/grammar_yacc_tools/commands.txt

CHANGES

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,20 @@ UNDO now saves reference to the sheet where the action took place.
2727
** Fix not updating graph correctly after yanking cells with references -> Pc -> undo.
2828
It could also segfault on ocassions as well. Added test5 and test6 for this.
2929
Issue #568: handle '>' and '<' on mappings.
30-
30+
Issue #569: fix invalid read/write/segfault when deleting column.
31+
Added test8 and test9 for this.
32+
Fix: scroll correctly when editing cells with long strings (wider than screen)
33+
Fix 'go' command of normal mode. Was missing as a valid command in cmds.c after rename.
34+
Avoid reading passed maxcols maxrows when shifting left or up over last sheet column/row.
3135

3236

3337
Pending to make v0.8.3 release
3438
-------------------
35-
undo.c: add ent_ptr to added / deleted lists ordered.
36-
ents_that_depends_on_list: change to receive entr_ptr parameter
37-
+ arv should have priority over scimrc.
38-
+ mark should consider sheet. We should have mark A in Sheet 1, and mark B on Sheet 2.. modify tick()
39+
Pv
40+
todo: undo.c: add ent_ptr to added / deleted lists ordered.
41+
todo: ents_that_depends_on_list SHOULD take ent_ptr rather than struct ent * as parameter!
42+
+ mark should consider sheet. We could have mark A in Sheet 1, and mark B on Sheet 2.. modify tick()
3943
input: block buffer maps digraph
40-
+ ents_that_depends_on_list SHOULD take ent_ptr rather than struct ent * as parameter!
4144
+ rearrange file loading and saving functions
4245
+ Show range detail in inputwin as A0:C3
4346
+ Add GETENT in seval
@@ -48,12 +51,13 @@ input: block buffer maps digraph
4851

4952
Ideas for v0.8.4
5053
----------------
54+
+ arv should have priority over scimrc.
55+
+ rethink overlap. it shows incorrectly if text does not fit in the current LINE
5156
+ user customizable UI header (bar)
5257
+ yank.c functions should receive yanklist pointer as parameter. this would
5358
allow future use of registers to copy to and paste from.
5459
+ registers for yanking
55-
+use yanklist for added/removed in undo?
56-
60+
+ use yanklist for added/removed in undo?
5761
--
5862
Thanks to all that helped and created PR.
5963
Thanks to all who support and use this program.

src/help.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,4 +594,4 @@ void show_usage_and_quit(){
594594
put(user_conf_d, "quit_afterload", "1");
595595
}
596596

597-
char * rev = "version 0.8.3-dev";
597+
char * rev = "version 0.8.3-main";

0 commit comments

Comments
 (0)