Skip to content

Commit

Permalink
change text in the companion app
Browse files Browse the repository at this point in the history
+ README changes
  • Loading branch information
mrrfv committed Feb 11, 2023
1 parent 321403d commit 7aa5cc6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ These things are the majority of what most people would want to keep safe, but e
### Linux

1. Install p7zip, adb, curl, bc, pv and optionally secure-delete. If you're on Debian or Ubuntu, run this command: `sudo apt update; sudo apt install p7zip-full adb curl bc pv secure-delete`.
2. Clone or [download](https://github.com/mrrfv/linux-android-backup/archive/refs/heads/master.zip) this repository.
2. Clone or [download](https://github.com/mrrfv/linux-android-backup/tags) this repository. You can also grab an [experimental version](https://github.com/mrrfv/linux-android-backup/archive/refs/heads/master.zip).
3. Enable [developer options](https://developer.android.com/studio/debug/dev-options#enable) and USB debugging on your device, then run `backup.sh` in a terminal.

### macOS
Expand All @@ -65,7 +65,7 @@ brew install p7zip pv bash
### Windows

1. Install the [Windows Subsystem for Linux (WSL)](https://docs.microsoft.com/en-us/windows/wsl/install#install), a compatibility layer allowing you to run Linux applications (such as this one) on Windows. You only need to follow the `Install` step.
2. Clone or [download](https://github.com/mrrfv/linux-android-backup/archive/refs/heads/master.zip) this repository.
2. Clone or [download](https://github.com/mrrfv/linux-android-backup/tags) this repository. You can also grab an [experimental version](https://github.com/mrrfv/linux-android-backup/archive/refs/heads/master.zip).
3. Open the repository in the file explorer. Right click on a file called `backup-windows.ps1`, and click on "Run with PowerShell". **IMPORTANT: If you see an error after running the script, search for "Developer Settings" in the Settings app, and apply the settings related to PowerShell.**

![Powershell Developer Settings](.github/images/windows-powershell-developer-settings.png)
Expand Down
6 changes: 3 additions & 3 deletions backup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
set -e

# Application metadata - don't change
# This is used to download a stable, compatible version of the Android companion app,
# so it should match the tag name in GitHub Releases
APP_VERSION="v1.0.2"
# This is used to download a stable, compatible version of the Android companion app as well as ensure backwards compatibility,
# so it should match the tag name in GitHub Releases.
APP_VERSION="v1.0.3"

SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
Expand Down
4 changes: 2 additions & 2 deletions companion_app/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -210,10 +210,10 @@ class _HomeState extends State<Home> {
child: Column(
children: <Widget>[
const Text(
"The Linux Android Backup companion app allows for backups of your contacts, with more to come. It doesn't upload your data to a remote server: data is saved to the internal storage and then read by the script running on your computer.",
"The Linux Android Backup companion app allows for backups of data not normally accessible through adb. No data is uploaded to a remote server: it is saved to the internal storage and then read by the script running on your computer.",
),
const Text(
"This app requires a computer as well as the Linux Android Backup script running."),
"This app requires the Linux Android Backup script running on your computer."),
ElevatedButton(
onPressed: () {
setState(() {
Expand Down
2 changes: 1 addition & 1 deletion companion_app/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.0.2+1
version: 1.0.3+1

environment:
sdk: ">=2.15.1 <3.0.0"
Expand Down

0 comments on commit 7aa5cc6

Please sign in to comment.