Skip to content

Commit 0b6f942

Browse files
committed
Prepare release v1.2.0
1 parent 16438ea commit 0b6f942

File tree

4 files changed

+33
-6
lines changed

4 files changed

+33
-6
lines changed

ReleaseNotes.txt

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,33 @@ ComparePlus Changelog:
22
----------------------
33

44

5+
28.02.2024
6+
v1.2.0
7+
8+
- Update Notepad++ and Scintilla plugin API headers
9+
- Let Notepad++ handle dialogs dark mode
10+
- Allocate diff changes indicator number via Notepad++ API
11+
- Handle 'Replace All' Notepad++ notifications
12+
- Improve diffs post-processing steps (better diffs presentation in some specific cases)
13+
- Fixed bug and improvements in the change detection algo
14+
- Add commands to bookmark diffs
15+
- Add commands to jump to changes positions within changed line
16+
- Add option to ignore folded lines and also allow folding in compare state
17+
- Add 'Ignore Changed Spaces' option, the current 'Ignore Space' is actually the 'Ignore All Spaces'
18+
- Remove "Best Sequence Change Detect" option - does not bring any added value anymore
19+
- Add compare status info type setting
20+
- Make 'Cancel Compare' much more responsive
21+
- Disable auto-recompare if compare took more than 5 seconds
22+
- Add warning message before comparing very large files
23+
- Change Notepad++ status bar compare info implementation (avoids crashes due to TextFX interoperation)
24+
- Save and restore each view caret line color and layer on compare (improves plugins interoperability)
25+
- Fix unwanted selection when activating compared file
26+
- Fix last line alignment and sync
27+
- Fix selection compare zero line alignment
28+
- Restore view properly after selections compare close
29+
- Changes to some menu items names for more clarity
30+
31+
532
02.10.2022
633
v1.1.0
734

src/Compare.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of ComparePlus plugin for Notepad++
33
* Copyright (C)2011 Jean-Sebastien Leroy (jean.sebastien.leroy@gmail.com)
4-
* Copyright (C)2017-2022 Pavel Nedev (pg.nedev@gmail.com)
4+
* Copyright (C)2017-2024 Pavel Nedev (pg.nedev@gmail.com)
55
*
66
* This program is free software: you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License as published by

src/Engine/Engine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of ComparePlus plugin for Notepad++
33
* Copyright (C)2011 Jean-Sebastien Leroy (jean.sebastien.leroy@gmail.com)
4-
* Copyright (C)2017-2022 Pavel Nedev (pg.nedev@gmail.com)
4+
* Copyright (C)2017-2024 Pavel Nedev (pg.nedev@gmail.com)
55
*
66
* This program is free software: you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License as published by

src/resource.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is part of ComparePlus plugin for Notepad++
33
* Copyright (C)2011 Jean-Sebastien Leroy (jean.sebastien.leroy@gmail.com)
4-
* Copyright (C)2022 Pavel Nedev (pg.nedev@gmail.com)
4+
* Copyright (C)2022-2024 Pavel Nedev (pg.nedev@gmail.com)
55
*
66
* This program is free software: you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License as published by
@@ -23,10 +23,10 @@
2323
#define TO_STR(X) PARAM_TO_STR(X)
2424

2525

26-
#define VER_COPYRIGHT "Copyright (C) 2022\0"
26+
#define VER_COPYRIGHT "Copyright (C) 2024\0"
2727

28-
#define PLUGIN_VERSION 1.1.0
29-
#define VER_FILEVERSION 1,1,0,0
28+
#define PLUGIN_VERSION 1.2.0
29+
#define VER_FILEVERSION 1,2,0,0
3030
#define IS_PRERELEASE 0
3131

3232
#if (IS_PRERELEASE == 1)

0 commit comments

Comments
 (0)