Skip to content

Commit

Permalink
* Release 15.56 preparations.
Browse files Browse the repository at this point in the history
  • Loading branch information
tboeckel committed Aug 31, 2021
1 parent ece5e6f commit c8a2a07
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
MUI TextEditor MCC class - ChangeLog
------------------------------------

#### v15.56 RELEASE ############################################################

2021-06-08 Thore B�ckelmann <tboeckel@gmx.de>

* mcc/Methods.c: implemented the method MUIM_TextEditor_TestPos similar to the
Expand Down
4 changes: 2 additions & 2 deletions doc/MCC_TextEditor.readme
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ Short: TextEditor custom class for MUI
Author: TextEditor.mcc Open Source Team
Uploader: Jens Maus <mail@jens-maus.de>
Type: dev/mui
Version: 15.55
Replaces: dev/mui/MCC_TextEditor-15.54.lha
Version: 15.56
Replaces: dev/mui/MCC_TextEditor-15.55.lha
Requires: AmigaOS 3.0+, MorphOS or AROS, MUI 3.8+, 68020+/PPC604e+
Architecture: ppc-amigaos >= 4.0.0; m68k-amigaos >= 3.0; ppc-morphos >= 1.4.2; i386-aros; ppc-aros; x86_64-aros

Expand Down
3 changes: 3 additions & 0 deletions mcc/Methods.c
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,7 @@ IPTR mIndexToCursorXY(struct InstData *data, struct MUIP_TextEditor_IndexToCurso

///
///
void kprintf(const char *,...);
IPTR mTestPos(struct InstData *data, struct MUIP_TextEditor_TestPos *msg)
{
BOOL rc = FALSE;
Expand Down Expand Up @@ -608,6 +609,8 @@ IPTR mTestPos(struct InstData *data, struct MUIP_TextEditor_TestPos *msg)
if(line != NULL)
idx += data->CPos_X;

kprintf("found line %08lx cposx %ld %ld\n", line, data->CPos_X, line->line.Length-1);

*msg->index = idx;
*msg->cursorx = data->CPos_X;
*msg->cursory = lineNumber;
Expand Down
4 changes: 2 additions & 2 deletions mcc/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@

// for setting all necessary version information
#define LIB_VERSION 15
#define LIB_REVISION 55
#define LIB_DATE "18.12.2020"
#define LIB_REVISION 56
#define LIB_DATE "31.08.2021"
#define LIB_COPYRIGHT "Copyright (C) 2005-2021 TextEditor.mcc Open Source Team"

// set the LIB_REV_STRING
Expand Down
4 changes: 2 additions & 2 deletions mcp/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@

// for setting all necessary version information
#define LIB_VERSION 15
#define LIB_REVISION 55
#define LIB_DATE "18.12.2020"
#define LIB_REVISION 56
#define LIB_DATE "31.08.2021"
#define LIB_COPYRIGHT "Copyright (C) 2005-2021 TextEditor.mcc Open Source Team"

// set the LIB_REV_STRING
Expand Down

0 comments on commit c8a2a07

Please sign in to comment.