update CHANGELOG and remove omment in ez_bkup
This commit is contained in:
parent
c9fe0f4ec4
commit
a5a5fb4d6e
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -1,11 +1,20 @@
|
|||
# Changelog
|
||||
|
||||
## 0.9.3 - 6-29-23
|
||||
### Changed
|
||||
- Moved databasePath to shared. (ITwrx)
|
||||
- Include Routines in current Bkup run based on selected seq instead of routine.selByDef. (ITwrx)
|
||||
- Show/hide sources and destinations based on selected seq instead of routine.selByDef. (ITwrx)
|
||||
### Added
|
||||
- added selected_routines feature. enable/disable Routines for current run from routine_list view. #2 (ITwrx)
|
||||
- added tooltip/help_text to the "+Routine" button. (ITwrx)
|
||||
|
||||
## 0.9.2 - 6-28-23
|
||||
### Changed
|
||||
- Moved calling of rsync for the Routine Bkups to it's own thread. issue #1 (ITwrx)
|
||||
- Moved calling of rsync for the Routine Bkups to it's own thread. #1 (ITwrx)
|
||||
### Added
|
||||
- added help text in various places. issue #6 (ITwrx)
|
||||
- added "/Drive" to the "+Folder" Destination button. issue #3 (ITwrx)
|
||||
- added help text in various places. #6 (ITwrx)
|
||||
- added "/Drive" to the "+Folder" Destination button. #3 (ITwrx)
|
||||
|
||||
## 0.9.1 - 6-25-23
|
||||
### Changed
|
||||
|
|
|
@ -8,7 +8,6 @@ import "models/routine", "shared"
|
|||
import views/[edit_routine_dialog, routine_list, app_menu_button]
|
||||
|
||||
const APP_NAME = "EZ-Bkup"
|
||||
#let databasePath = appPath & "/ez-bkup.sqlite"
|
||||
|
||||
viewable App:
|
||||
## The main application
|
||||
|
@ -65,6 +64,7 @@ method view(app: AppState): Widget {.locks: "unknown".} =
|
|||
when isMainModule:
|
||||
# Entry point for the application.
|
||||
# Loads the model from the database and starts the application.
|
||||
#databasePath is coming from shared.nim
|
||||
let model = newRoutineModel(databasePath)
|
||||
brew("org.itwrx.EZ-Bkup", gui(App(routineModel = model)), icons=["icons/"], stylesheets=[loadStylesheet("styles.css")])
|
||||
|
Loading…
Reference in New Issue