Skip to content

Commit

Permalink
Updated version and new build is ready
Browse files Browse the repository at this point in the history
Former-commit-id: 136d937
  • Loading branch information
Nick Dawson committed Nov 23, 2021
1 parent 4df0422 commit 27f9d7d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# Google Photos Archiver
> Updated Instructions 8/9/2021
> Version 2.0.6

# Instructions:
1. Download the script (exe or python script listed below)
Expand All @@ -11,7 +9,7 @@ If you need assistance or want to report an issue fill out an [Issue Report](htt

# Downloads
## Windows 10 (64-bit) Executable
If you are unfamiliar with python or computers in general I recommend you download the [Win10 64bit Executable](https://github.com/NicholasDawson/ArchiverForGooglePhotos/releases/download/v2.0.6/gparch_cli.v2.0.6.exe.win-amd643.9.zip) as it will not require any special installation.
If you are unfamiliar with python or computers in general I recommend you download the [Win10 64bit Executable](https://github.com/NicholasDawson/ArchiverForGooglePhotos/releases) as it will not require any special installation.

## Python Script
If you are familiar with python, just download the [source code](https://github.com/NicholasDawson/ArchiverForGooglePhotos/releases/tag/v2.0.6)
Expand Down Expand Up @@ -91,3 +89,13 @@ You can combine any of the following commands to do what you specifically want.
- If no credentials are provided the program will search for 'credentials.json' in the directory.
- If no download options are provided, the program will download everything.
- The program automatically skips downloading existing files so running the program with any download option after downloading items already will update everything without re-downloading or deleting existing media. It will only ensure everything is downloaded from Google Photos.

## Contributors
### Loading Environment
Install `pipenv` using `pip install pipenv` then in this repo's root directory type:
`pipenv install` to build the virtual environment.

### Building EXE for Windows
Run `py cxfreeze_setup.py build`

The exe will appear in the build directory.
3 changes: 2 additions & 1 deletion cxfreeze_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import pkg_resources
from cx_Freeze import Executable, setup
from gparch import VERSION

"""
Archiver For Google Photos
Expand Down Expand Up @@ -64,7 +65,7 @@ def collect_dist_info(packages):

setup(
name="Archiver for Google Photos (CLI)",
version="2.0.0",
version=VERSION,
description="A tool to maintain an archive/mirror of your Google Photos library for backup purposes.",
options={"build_exe": build_exe_options},
executables=[Executable("gparch_cli.py", base=base)],
Expand Down
2 changes: 1 addition & 1 deletion gparch.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"""

VERSION = "2.0.5"
VERSION = "2.1.0"

# Define Scopes for Application
SCOPES = [
Expand Down

0 comments on commit 27f9d7d

Please sign in to comment.