Skip to content
This repository has been archived by the owner on Nov 16, 2024. It is now read-only.

Commit

Permalink
v.1.2.1 - Repo cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rix committed May 19, 2024
1 parent 8a4f314 commit eed564c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![PyPI version](https://badge.fury.io/py/altstore-proxy.svg)](https://badge.fury.io/py/altstore-proxy)
[![Github Sponsorship](https://img.shields.io/badge/support-me-red.svg)](https://github.com/users/rix1337/sponsorship)

A simple proxy for slow AltStore servers.
A simple proxy for slow AltStore servers

# Setup

Expand Down
2 changes: 1 addition & 1 deletion altstore_proxy/providers/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


def get_version():
return "1.2.0"
return "1.2.1"


if __name__ == '__main__':
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ RUN echo "VS: ${VS}"
RUN pip3 install --upgrade pip \
&& pip3 install wheel

# Install specific package version and clean up unneeded packages
RUN if [[ ${VS} == "false" ]] ; then echo "Grabbing latest altstore-proxy version from pypi.org" && VERSION=$(curl -Ls https://pypi.org/pypi/altstore-proxy/json | jq -r .info.version) ; else echo "Using version from workflow_dispatch input" && VERSION=$VS ; fi && \
# Install specified package version and clean up unneeded packages
RUN if [[ ${VS} == "false" ]] ; then echo "Grabbing latest version from pypi.org" && VERSION=$(curl -Ls https://pypi.org/pypi/${PACKAGE_NAME}/json | jq -r .info.version) ; else echo "Using version from workflow_dispatch input" && VERSION=$VS ; fi && \
echo $VERSION && \
pip3 install ${PACKAGE_NAME}=="$VERSION" --no-cache-dir && \
apk del build-base jq
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: '3.3'
services:
docker-altstore-proxy:
altstore-proxy:
container_name: 'AltStore-Proxy'
ports:
- 'port:8080'
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
bottle==0.12.25
requests==2.31.0
tqdm==4.66.4
bottle==0.12.25 # web framework
requests==2.31.0 # fetching source repos and artifacts
tqdm==4.66.4 # download progress bar
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
required = f.read().splitlines()

setuptools.setup(
name="altstore_proxy",
name="altstore_proxy", # case-sensitive replace this string, and this string with a dash in entire repo
version=get_version(),
author="rix1337",
author_email="",
description="A simple proxy for slow AltStore servers",
description="A simple proxy for slow AltStore servers", # case-sensitive replace here and in README.md
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rix1337/AltStore-Proxy",
url="https://github.com/rix1337/AltStore-Proxy", # case-sensitive replace the repo name in entire repo
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=required,
Expand Down

0 comments on commit eed564c

Please sign in to comment.