update CHANGELOG. remove Lock Levels.
This commit is contained in:
parent
60d8d9abff
commit
ebf986e38a
|
@ -1,5 +1,12 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.9.6 - 7-1-23
|
||||||
|
### Added
|
||||||
|
- Added check for missing source(s)/destination(s). Show error status. Log locations. #10 (ITwrx)
|
||||||
|
- Updated EZ-Bkup version. (ITwrx)
|
||||||
|
### Changed
|
||||||
|
- remove Lock Levels. Deprecated in Nim-devel.
|
||||||
|
|
||||||
## 0.9.5 - 6-29-23
|
## 0.9.5 - 6-29-23
|
||||||
### Changed
|
### Changed
|
||||||
- Updated EZ-Bkup version number in about dialog. (ITwrx)
|
- Updated EZ-Bkup version number in about dialog. (ITwrx)
|
||||||
|
|
|
@ -13,7 +13,7 @@ viewable App:
|
||||||
## The main application
|
## The main application
|
||||||
routineModel: RoutineModel ## The RoutineModel that stores all routines.
|
routineModel: RoutineModel ## The RoutineModel that stores all routines.
|
||||||
|
|
||||||
method view(app: AppState): Widget {.locks: "unknown".} =
|
method view(app: AppState): Widget =
|
||||||
result = gui:
|
result = gui:
|
||||||
Window:
|
Window:
|
||||||
title = APP_NAME
|
title = APP_NAME
|
||||||
|
|
|
@ -11,7 +11,7 @@ viewable AppMenuButton:
|
||||||
|
|
||||||
routineModel: RoutineModel
|
routineModel: RoutineModel
|
||||||
|
|
||||||
method view(button: AppMenuButtonState): Widget {.locks: "unknown".} =
|
method view(button: AppMenuButtonState): Widget =
|
||||||
result = gui:
|
result = gui:
|
||||||
MenuButton:
|
MenuButton:
|
||||||
icon = "open-menu-symbolic"
|
icon = "open-menu-symbolic"
|
||||||
|
@ -31,7 +31,7 @@ method view(button: AppMenuButtonState): Widget {.locks: "unknown".} =
|
||||||
programName = "EZ-Bkup"
|
programName = "EZ-Bkup"
|
||||||
logo = "EZ-Bkup-icon"
|
logo = "EZ-Bkup-icon"
|
||||||
style = [StyleClass("about-dialog")]
|
style = [StyleClass("about-dialog")]
|
||||||
version = "0.9.5"
|
version = "0.9.6"
|
||||||
credits = @{
|
credits = @{
|
||||||
"Created By": @["https://ITwrx.org"],
|
"Created By": @["https://ITwrx.org"],
|
||||||
"License": @["GPLv3"]
|
"License": @["GPLv3"]
|
||||||
|
|
|
@ -19,7 +19,7 @@ viewable EditRoutineDialog:
|
||||||
routine: Routine ## The routine being edited
|
routine: Routine ## The routine being edited
|
||||||
mode: EditRoutineDialogMode ## Purpose of the dialog (create/update)
|
mode: EditRoutineDialogMode ## Purpose of the dialog (create/update)
|
||||||
|
|
||||||
method view(dialog: EditRoutineDialogState): Widget {.locks: "unknown".} =
|
method view(dialog: EditRoutineDialogState): Widget =
|
||||||
result = gui:
|
result = gui:
|
||||||
Dialog:
|
Dialog:
|
||||||
title = $dialog.mode & " Routine"
|
title = $dialog.mode & " Routine"
|
||||||
|
|
|
@ -15,7 +15,7 @@ viewable RoutineEditor:
|
||||||
# any changes to the routine. The changed callback
|
# any changes to the routine. The changed callback
|
||||||
proc changed(routine: Routine)
|
proc changed(routine: Routine)
|
||||||
|
|
||||||
method view(editor: RoutineEditorState): Widget {.locks: "unknown".} =
|
method view(editor: RoutineEditorState): Widget =
|
||||||
result = gui:
|
result = gui:
|
||||||
#must have top level container that everything else is inside of.
|
#must have top level container that everything else is inside of.
|
||||||
Box:
|
Box:
|
||||||
|
|
|
@ -77,7 +77,7 @@ proc rsyncThread(list: RoutineListState) {.thread.} =
|
||||||
|
|
||||||
list.redrawFromThread()
|
list.redrawFromThread()
|
||||||
|
|
||||||
method view(list: RoutineListState): Widget {.locks: "unknown".} =
|
method view(list: RoutineListState): Widget =
|
||||||
result = gui:
|
result = gui:
|
||||||
ScrolledWindow:
|
ScrolledWindow:
|
||||||
Box:
|
Box:
|
||||||
|
|
Loading…
Reference in New Issue