Skip to content

Commit 1d29634

Browse files
committed
Updated to version 2.1.0
1 parent fcd3653 commit 1d29634

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [2.1.0] - 2020-01-08
5+
### Added
6+
- Added settings menu
7+
- Added ETA to backups
8+
- Added command line mode
9+
- Experimental WIP dark mode
10+
11+
### Fixed
12+
- Fixed expanding command arrows causing issues while analysis is still running
13+
- Analysis button now checks if an existing backup is running, to prevent it from being replaced before finishing
14+
- Fixed missing sliders on scrollbars for source and destination trees
15+
16+
### Changed
17+
- Significantly improved copy speed
18+
- ***Note:** CLI mode is significantly slower than the GUI. A fix is in the works.*
19+
- Windows can now be centered on top of other windows, rather than just the screen
20+
- Separated classes into their own files
21+
- Restructured code
22+
423
## [2.0.1] - 2020-12-25
524
### Fixed
625
- Functions for gathering file lists during analysis no longer break when trying to query missing drives

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<img alt="undefined" src="https://img.shields.io/github/downloads/TechGeek01/BackDrop/total" />
88
<a href="https://github.com/TechGeek01/BackDrop/blob/master/LICENSE"><img alt="undefined" src="https://img.shields.io/github/license/TechGeek01/BackDrop"></a>
99
<br />
10-
<a href="https://github.com/TechGeek01/BackDrop/releases/download/v2.0.1/backdrop-v2.0.1.exe" target="_blank"><img alt="undefined" src="https://badgen.net/badge/Download/Windows/?color=blue&icon=windows&label"></a>
10+
<a href="https://github.com/TechGeek01/BackDrop/releases/download/v2.1.0/backdrop.exe" target="_blank"><img alt="undefined" src="https://badgen.net/badge/Download/Windows/?color=blue&icon=windows&label"></a>
1111
<br /><br />
1212
</p>
1313

@@ -39,4 +39,5 @@ The fun part is that these file lists are calculated before each backup. This me
3939
* **Split share mode:** If you can't connect all of the drives at once when updating an existing config, there's an option for split mode. With split mode enabled, the backup will be analyzed and processed as though all drives are connected, but commands to drives that are disconnected will be skipped.
4040
* **Drive split mode warnings:** If a config is loaded from a drive, and not all drives are connected, it will automatically warn you, and only let you continue with analysis if you connect the missing drives, or enable split mode.
4141
* **Backup config memory:** Config files about your backups are stored on each drive. This means that when you select a drive you've previously used for backup, BackDrop will automatically select the other drives in the config, and the shares you had selected, so that you can update the backup that's already on the drive.
42+
* **Command line:** There's a built-in command line mode that's able to take parameters to configure and run a backup. This makes it possible to script and automate backups with BackDrop.
4243
* **Portability:** The best part about it is that there is no installation, and it's all a single executable! This means you can take it with you if you want, or run it on multiple computers. And because there's no installation, when you're not using it, BackDrop is completely out of the way.

backdrop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from bin.backup import Backup
2626

2727
# Set meta info
28-
appVersion = '2.1.0-rc.1'
28+
appVersion = '2.1.0'
2929

3030
# IDEA: Add config builder, so that if user can't connect all drives at once, they can be walked through connecting drives to build an initial config
3131
# TODO: Add a button in @interface for deleting the @config from @selected_drives

docs/img/showcase.png

902 Bytes
Loading

0 commit comments

Comments
 (0)