Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Wrong commit. :) |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 4e3bf1c486cd20d6ca393e68f53d1b722c84927e |
User & Date: | johnfound 2017-12-30 09:13:57 |
Original Comment: | Official release of v2.6.2 |
Context
2017-12-30
| ||
10:11 |
The official release v2.6.2
Updated the documentation. Updated the FASM compiler. Minor edits to the help CSS styles and the help index. check-in: 1863b5fab7 user: johnfound tags: trunk, v2.6.2 | |
09:13 | Wrong commit. :) check-in: 4e3bf1c486 user: johnfound tags: trunk | |
09:03 | Merged with FixSaveAsDlg branch in order to fix a bug, manifesting only in Win10. check-in: 79923f736e user: johnfound tags: trunk | |
Changes
Changes to WhatsNew.txt.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
This file contains only a brief notes about changes from version to version and only for the official releases. As long as the file is created by hand, some information (even important) can be missed or not accurate. For very detailed and accurate information about the changes, see the timeline in the source code repository: https://fresh.flatassembler.net/fossil/repo/fresh/timeline version 2.6.1 (29.10.2017) Quick bugfix release. [-] Fixed the broken form for "Labels explorer". [-] Fixed missing file from the binary distribution. |
> > > > > > > > > |
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
This file contains only a brief notes about changes from version to version and only for the official releases. As long as the file is created by hand, some information (even important) can be missed or not accurate. For very detailed and accurate information about the changes, see the timeline in the source code repository: https://fresh.flatassembler.net/fossil/repo/fresh/timeline version 2.6.2 (30.12.2017) Bugs fixed. [-] Fixed a crash on SaveAs dialog, in Windows 10 [-] The CSS for the help files are now in external file, making the help styling easier. version 2.6.1 (29.10.2017) Quick bugfix release. [-] Fixed the broken form for "Labels explorer". [-] Fixed missing file from the binary distribution. |
Changes to source/version.inc.
1 2 3 4 5 6 7 8 9 10 11 |
FRESH_VERSION equ 'v2.6.1' FRESH_MAJOR = 2 FRESH_MINOR = 6 FRESH_WORK = 1 macro months [dayscount] { forward if DAY > dayscount DAY = DAY-dayscount MONTH = MONTH+1 |
| | |
1 2 3 4 5 6 7 8 9 10 11 |
FRESH_VERSION equ 'v2.6.2' FRESH_MAJOR = 2 FRESH_MINOR = 6 FRESH_WORK = 2 macro months [dayscount] { forward if DAY > dayscount DAY = DAY-dayscount MONTH = MONTH+1 |