From 2e2651e4dc43532d172dcbdcf4c73d9e6ce8debd Mon Sep 17 00:00:00 2001 From: duvallj Date: Fri, 1 Feb 2019 23:03:04 +0000 Subject: Add HWYLA --- readme.md | 2 ++ 1 file changed, 2 insertions(+) (limited to 'readme.md') diff --git a/readme.md b/readme.md index 80f43cd..51228c9 100644 --- a/readme.md +++ b/readme.md @@ -6,3 +6,5 @@ Script to update modpacks automatically #### To Use Simply put the location of your `mods` folder in `pack-location.txt` and run `python update.py install` + +Requires the `requests` module. -- cgit v1.2.3 From 0d5c8a8d21eb6e2cd4bd9ebd8fd53aef13cfb52a Mon Sep 17 00:00:00 2001 From: Alexander Hayden Date: Sat, 2 Feb 2019 10:37:40 -0500 Subject: C L A R I F Y T H E W O R D S --- readme.md | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'readme.md') diff --git a/readme.md b/readme.md index 51228c9..3cb9ccd 100644 --- a/readme.md +++ b/readme.md @@ -8,3 +8,8 @@ Script to update modpacks automatically Simply put the location of your `mods` folder in `pack-location.txt` and run `python update.py install` Requires the `requests` module. + +#### Maintenance: + +To check `downloads.txt` modlist for updates against `latest-urls.txt` modlist, run `python update.py check_updates` +To automatically populate `downloads.txt` with the most recent versions of mods listed in `latest-urls.txt` run `python update.py apply_updates` -- cgit v1.2.3 From 39f07d92af6f363175f3c09ccbd73b4093b4f172 Mon Sep 17 00:00:00 2001 From: Alexander Hayden Date: Sat, 2 Feb 2019 10:51:56 -0500 Subject: markdown --- readme.md | 1 + 1 file changed, 1 insertion(+) (limited to 'readme.md') diff --git a/readme.md b/readme.md index 3cb9ccd..dc53e31 100644 --- a/readme.md +++ b/readme.md @@ -12,4 +12,5 @@ Requires the `requests` module. #### Maintenance: To check `downloads.txt` modlist for updates against `latest-urls.txt` modlist, run `python update.py check_updates` + To automatically populate `downloads.txt` with the most recent versions of mods listed in `latest-urls.txt` run `python update.py apply_updates` -- cgit v1.2.3 From ce4cb0b5cd157c77396344958b403c41a4f0f8b3 Mon Sep 17 00:00:00 2001 From: duvallj Date: Sat, 2 Feb 2019 13:32:01 -0500 Subject: Update update.py (better argument parsing, documentation) --- readme.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'readme.md') diff --git a/readme.md b/readme.md index dc53e31..0438f1e 100644 --- a/readme.md +++ b/readme.md @@ -5,12 +5,15 @@ Script to update modpacks automatically #### To Use -Simply put the location of your `mods` folder in `pack-location.txt` and run `python update.py install` +First, install [Python 3](https://www.python.org/downloads/) and [Git](https://git-scm.com/downloads) and add them to your `$PATH`. +Then, run `pip install -r requirements.txt` to install all the Python module requirements. -Requires the `requests` module. +Simply put the location of your `mods` folder in `pack-location.txt` and run `python update.py install` #### Maintenance: -To check `downloads.txt` modlist for updates against `latest-urls.txt` modlist, run `python update.py check_updates` +To check `downloads.txt` modlist for updates against `mods.txt` modlist, run `python update.py check_updates`. + +To automatically populate `downloads.txt` with the most recent versions of mods listed in `mods.txt` run `python update.py apply_updates`. -To automatically populate `downloads.txt` with the most recent versions of mods listed in `latest-urls.txt` run `python update.py apply_updates` +Finally, to actually install your mods from the list in `downloads.txt`, run `python update.py install` -- cgit v1.2.3 From d3c7b517043f6d759b454a9e14cd2b3b9639888a Mon Sep 17 00:00:00 2001 From: duvallj Date: Sat, 2 Feb 2019 16:34:48 -0500 Subject: Make 1F335 slightly happier --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'readme.md') diff --git a/readme.md b/readme.md index 0438f1e..5461962 100644 --- a/readme.md +++ b/readme.md @@ -6,7 +6,7 @@ Script to update modpacks automatically #### To Use First, install [Python 3](https://www.python.org/downloads/) and [Git](https://git-scm.com/downloads) and add them to your `$PATH`. -Then, run `pip install -r requirements.txt` to install all the Python module requirements. +Then, run `pip install requests` to install the Python Requests module (required to run the script). Simply put the location of your `mods` folder in `pack-location.txt` and run `python update.py install` -- cgit v1.2.3 From 8005ef8bd1bdee8f41ff22d331bdb7eedd44621e Mon Sep 17 00:00:00 2001 From: Alexander Hayden Date: Mon, 4 Feb 2019 12:15:00 -0500 Subject: Fix readme --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'readme.md') diff --git a/readme.md b/readme.md index 5461962..cf9835b 100644 --- a/readme.md +++ b/readme.md @@ -12,8 +12,8 @@ Simply put the location of your `mods` folder in `pack-location.txt` and run `py #### Maintenance: -To check `downloads.txt` modlist for updates against `mods.txt` modlist, run `python update.py check_updates`. +To check `version.txt` modlist for updates against `mods.txt` modlist, run `python update.py check_updates`. -To automatically populate `downloads.txt` with the most recent versions of mods listed in `mods.txt` run `python update.py apply_updates`. +To automatically populate `version.txt` with the most recent versions of mods listed in `mods.txt` run `python update.py apply_updates`. -Finally, to actually install your mods from the list in `downloads.txt`, run `python update.py install` +Finally, to actually install mods from the list in `version.txt`, run `python update.py install` -- cgit v1.2.3