Skip to content

Commit 27f9d7d

Browse files
author
Nick Dawson
committed
Updated version and new build is ready
Former-commit-id: 136d937
1 parent 4df0422 commit 27f9d7d

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# Google Photos Archiver
2-
> Updated Instructions 8/9/2021
3-
> Version 2.0.6
42

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

1210
# Downloads
1311
## Windows 10 (64-bit) Executable
14-
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.
12+
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.
1513

1614
## Python Script
1715
If you are familiar with python, just download the [source code](https://github.com/NicholasDawson/ArchiverForGooglePhotos/releases/tag/v2.0.6)
@@ -91,3 +89,13 @@ You can combine any of the following commands to do what you specifically want.
9189
- If no credentials are provided the program will search for 'credentials.json' in the directory.
9290
- If no download options are provided, the program will download everything.
9391
- 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.
92+
93+
## Contributors
94+
### Loading Environment
95+
Install `pipenv` using `pip install pipenv` then in this repo's root directory type:
96+
`pipenv install` to build the virtual environment.
97+
98+
### Building EXE for Windows
99+
Run `py cxfreeze_setup.py build`
100+
101+
The exe will appear in the build directory.

cxfreeze_setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import pkg_resources
44
from cx_Freeze import Executable, setup
5+
from gparch import VERSION
56

67
"""
78
Archiver For Google Photos
@@ -64,7 +65,7 @@ def collect_dist_info(packages):
6465

6566
setup(
6667
name="Archiver for Google Photos (CLI)",
67-
version="2.0.0",
68+
version=VERSION,
6869
description="A tool to maintain an archive/mirror of your Google Photos library for backup purposes.",
6970
options={"build_exe": build_exe_options},
7071
executables=[Executable("gparch_cli.py", base=base)],

gparch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
4242
"""
4343

44-
VERSION = "2.0.5"
44+
VERSION = "2.1.0"
4545

4646
# Define Scopes for Application
4747
SCOPES = [

0 commit comments

Comments
 (0)