|
| 1 | +2.6.0 (2024-09-07) |
| 2 | +- Sequential was crashing when resuming a bookmarked folder (it was |
| 3 | + attempting to access a deleted object). Fixed. |
| 4 | +- moving an item to the trash now updates the displayed list (Sequential |
| 5 | + was not doing doing this so it looked like the app was not working). |
| 6 | +- transitioning to fullscreen via the "Tile Window to Left/Right of Screen" |
| 7 | + command resulted in an incorrect transition when leaving fullscreen mode. |
| 8 | + Fixed. |
| 9 | +- in the thumbnails, folders containing just folders (no images), and |
| 10 | + similarly for their children, were not selectable (at least one image was |
| 11 | + needed), which made it impossible to browse into the sub-folder tree of |
| 12 | + such a folder. Such folders are now selectable. |
| 13 | +- when an archive has sub-folders with the same name but which are in |
| 14 | + different folders, eg, a.zip/b/aa/1.jpg and a.zip/c/aa/2.jpg, the selection |
| 15 | + code would mistake b/aa for c/aa and behave incorrectly when navigating |
| 16 | + from 1.jpg to 2.jpg. Fixed by testing for the parent of each sub-folder, |
| 17 | + eg, testing for b vs c when comparing b/aa against c/aa. |
| 18 | + Rationale: if an archive had a.zip/b/1.jpg and a.zip/c/1.jpg in it, |
| 19 | + Sequential would confuse the first 1.jpg for the second 1.jpg and behave |
| 20 | + incorrectly. With this fix, it no longer confuses the 2 files. |
| 21 | +- when resolving URL bookmarks, attempts to mount server volumes are no |
| 22 | + longer attempted otherwise the app was very slow to update and open menus |
| 23 | + such as the Recent Items menu and it was slow to respond to the use of the |
| 24 | + cmd-` shortcut to switch windows. However, such offline entries will now |
| 25 | + be removed from the Recent Item menu if their server is not mounted when |
| 26 | + the app builds the Recent Items menu (this is the price to pay for having |
| 27 | + a responsive UI). |
| 28 | +- added the View > Invert Colors menu command for better PDF reading in Dark |
| 29 | + Mode (since most text based PDFs have white backgrounds which makes them |
| 30 | + harder to read when Dark Mode is enabled). Keyboard shortcut: cmd-shift-I. |
| 31 | +- added the View > Reset Rotation menu command to reset the "rotation value" |
| 32 | + of the displayed image to zero degrees. Keyboard shortcut: cmd-option-R. |
| 33 | + Note: this command resets only the "rotation value" of an image to zero |
| 34 | + degrees; it does not reset the "base orientation" of an image to zero |
| 35 | + degrees so, for example, if the View > Reorient > 90 degrees clockwise |
| 36 | + command had also been used along with a manual rotation from a |
| 37 | + 2-finger-rotate gesture, using this command would only reset/undo the |
| 38 | + 2-finger-rotate gesture and the image would still having its |
| 39 | + "base orientation" set to 90 degrees clockwise so it would still appear |
| 40 | + with a 90 degrees clockwise rotation. |
| 41 | + Note: use the View > Reorient > Upright command to fully reset an image's |
| 42 | + display (the command resets both the "base orientation" and the |
| 43 | + "rotation value" of the image to zero degrees). |
| 44 | + Rationale: in previous versions, the only way to reset the "rotation |
| 45 | + value" of an image (which is changed when a 2-finger-rotate gesture was |
| 46 | + performed) was to close the document and re-open it, and this is best |
| 47 | + achieved by using the File > Pause command and then selecting the |
| 48 | + File > Resume > (paused file) command. Obviously, this is not ideal. |
| 49 | +- changed the behavior of the View > Reorient > Upright command: previously, |
| 50 | + it would only change the "base orientation" of the image to upright but not |
| 51 | + reset the "rotation value" of the image. In this version, using the command |
| 52 | + will also reset the "rotation value" of the image to zero degrees. |
| 53 | + For example, if you rotated the image manually by using a 2-finger-rotate |
| 54 | + gesture to 45 degrees clockwise and then used the |
| 55 | + View > Reorient > 90 degrees clockwise command, the image would be displayed |
| 56 | + with a 135 degree clockwise rotation (with the image having a 90 degree |
| 57 | + "base orientation" and a 45 degree "rotation value"). In the previous |
| 58 | + versions, if the Upright command was selected, the image would have its |
| 59 | + "base orientation" set to zero degrees but its "rotation value" would be |
| 60 | + left at 45 degrees which resulted in the image being displayed at 45 degrees |
| 61 | + clockwise rotation. In this version, the "rotation value" of the image is |
| 62 | + also reset back to zero degrees which causes the image to be displayed with |
| 63 | + no rotation (which is the behavior expected by most users). |
| 64 | +- added the Page > Go to Page… menu command to enable navigation to a specific |
| 65 | + page such as in a PDF document. Keyboard shortcut: cmd-option-G. To dismiss |
| 66 | + the text field where you enter the page number, press the 'esc' or 'return' |
| 67 | + keys. The page numbers that can be entered apply to those of the current |
| 68 | + document (such as a PDF document) or current folder and not to the entire |
| 69 | + archive or root-folder of the window. For example, when displaying a .zip |
| 70 | + file with 2 PDFs in it with the first having 115 pages and the second having |
| 71 | + 30 pages, Sequential will accept values from 1 to 115 when displaying any |
| 72 | + page in the first PDF; it will accept values from 1 to 30 when displaying |
| 73 | + any page in the second PDF. |
| 74 | + |
1 | 75 | 2.5.0 (2023-12-01) |
2 | 76 | - converted the codebase to use Modern Objective-C syntax. |
3 | 77 | - converted the codebase to build under Automatic Reference Counting (ARC); |
|
0 commit comments