Skip to content

Commit 06d245a

Browse files
committed
Merge branch 'release/0.6.4' into main
2 parents 222b116 + e200e4f commit 06d245a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ RUN apt update
33
RUN apt install -y python-is-python3 python3-pip
44
RUN apt-get install -y curl
55
RUN apt-get install ca-certificates
6-
RUN curl -L -o tmp/keep-it-markdown-0.6.3.tar.gz https://github.com/djsudduth/keep-it-markdown/archive/refs/tags/0.6.3.tar.gz
7-
RUN tar -zxvf tmp/keep-it-markdown-0.6.3.tar.gz
6+
RUN curl -L -o tmp/keep-it-markdown-0.6.4.tar.gz https://github.com/djsudduth/keep-it-markdown/archive/refs/tags/0.6.4.tar.gz
7+
RUN tar -zxvf tmp/keep-it-markdown-0.6.4.tar.gz
88
RUN pip install keyrings.alt
9-
RUN pip install -r /keep-it-markdown-0.6.3/requirements.txt
9+
RUN pip install -r /keep-it-markdown-0.6.4/requirements.txt
1010

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,8 @@ If you are having difficulty logging in to Google you can use Docker with the pr
203203
1) Install Docker on any PC (find the online instructions for your particular operating system)
204204
2) Startup Docker (or it will autostart on reboot depending on how you installed it)
205205
3) Go to the command line and run ``docker build -t kim .`` in the directory where you installed KIM (it will take about 5 min to create the image)
206-
4) Run the Docker image with ``docker run --mount type=bind,source=(your PC's KIM directory)/mdfiles,target=/keep-it-markdown-0.6.3/mdfiles -it kim`` (you will be automatically logged into the Docker image and your PC's directory will be mapped to the Docker image directory)
207-
5) Change the directory to Kim ``cd keep-it-markdown-0.6.3``
206+
4) Run the Docker image with ``docker run --mount type=bind,source=(your PC's KIM directory)/mdfiles,target=/keep-it-markdown-0.6.4/mdfiles -it kim`` (you will be automatically logged into the Docker image and your PC's directory will be mapped to the Docker image directory)
207+
5) Change the directory to Kim ``cd keep-it-markdown-0.6.4``
208208
6) Follow **Second Way** instructions here to get a copy of the oauth_token cookie value - https://github.com/rukins/gpsoauth-java?tab=readme-ov-file
209209
7) Run the script in the KIM directory - `python get_token.py`
210210
8) Enter your Google email account name, oauth_token, and Android ID when prompted (Android ID can be anything, OAuth token expires in about 5 min)
@@ -282,5 +282,5 @@ Fixed the keep.resume warning message for newer gkeepapi version >= 0.16.0
282282
Fixed the Python 3.12+ regular expression error
283283
Added more detail error message if KIM fails to execute
284284

285-
## 0.6.3 Recent Changes
285+
## 0.6.3/0.6.4 Recent Changes
286286
Fixed the Dockerfile versions

kim.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from importlib.metadata import version
1616
from PIL import Image
1717

18-
KIM_VERSION = "0.6.3"
18+
KIM_VERSION = "0.6.4"
1919
KEEP_KEYRING_ID = 'google-keep-token'
2020
KEEP_NOTE_URL = "https://keep.google.com/#NOTE/"
2121
CONFIG_FILE = "settings.cfg"

0 commit comments

Comments
 (0)