| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| Outevia_x64_v1.0.0_setup.exe | 2026-05-31 | 55.6 MB | |
| Outevia v1.0.0 - first release source code.tar.gz | 2026-05-31 | 318 Bytes | |
| Outevia v1.0.0 - first release source code.zip | 2026-05-31 | 468 Bytes | |
| README.md | 2026-05-31 | 2.2 kB | |
| Totals: 4 Items | 55.6 MB | 4 | |
v1.0.0 30 May 2026 First release
- OCR, Text and Drawing buttons: added
Margin="0,0,8,0"andMinWidth=60for uniform alignment with the other toolbar buttons - "Always on top" button: now uses the same active magenta colour (consistent with OCR/Text/Drawing)
- OCR fix: the
_isOcrModebranch was completely missing inImageGrid_MouseLeftButtonDown, so the selection never started - OCR fix: added a branch in
ImageGrid_MouseMoveto update the selection rectangle while dragging - Added missing
_isOcrSelectingand_ocrStartfields to the class - Fix
BtnAlwaysOnTop: removed theBtnAlwaysOnTop.Content = LocalizationManager.T("AlwaysOnTop")line inApplyLocalization()because it was overwriting the SVG icon with text - Added
_isOcrSelecting = falsereset on mouse release after OCR - OCR, Text and Drawing buttons converted from
ButtontoToggleButtonwithActiveToolToggleStylestyle (magenta background when active) - Added
ActiveToolBrush(#33C03A8A) andActiveToolBorderBrush(#FFC03A8A) to the theme - Activating one tool now automatically disables the others (OCR/Text/Drawing are mutually exclusive)
- Text Undo/Redo fix:
AddTextAtPosition()now correctly adds to_undoStackTextand clears_redoStackText - The "Ready" text in the status bar is now localized through the
StatusReadykey (it: "Pronto", en: "Ready") - All code points that previously set hardcoded "Pronto" now use
LocalizationManager.T("StatusReady") - The messages "Text mode active" and "Drawing mode active" now also respect the current language
- Added a "Changelog" item to the system tray context menu
- The Changelog menu opens the same window as "About" but reads
Resources/changelog.md - Created the
Resources/changelog.mdfile - Fix: the "Enable OCR Button" checkbox in
SettingsWindow.xamlhad noChecked/Uncheckedevents wired, so the flag was never saved - Fix: the same missing wiring was present for the "Start with Windows" checkbox
- Added
App.MainViewer?.RefreshToolVisibility()inChkEnableOcr_Changedto refresh the toolbar immediately - Added
App.MainViewer?.RefreshToolVisibility()also after closing settings opened fromViewerWindow(options button in the main window)