redfetch 0.2.1.dev0__tar.gz → 0.2.4.dev0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/.github/workflows/pipeline.yml +20 -8
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/PKG-INFO +2 -2
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/src/redfetch/__about__.py +2 -2
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/.gitignore +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/CHANGELOG.md +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/LICENSE +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/README.md +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/pyproject.toml +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/redfetch.ico +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/src/redfetch/ResourceInstallBtn.js +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/src/redfetch/__init__.py +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/src/redfetch/api.py +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/src/redfetch/auth.py +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/src/redfetch/config.py +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/src/redfetch/config_firstrun.py +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/src/redfetch/db.py +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/src/redfetch/download.py +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/src/redfetch/listener.py +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/src/redfetch/main.py +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/src/redfetch/meta.py +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/src/redfetch/push.py +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/src/redfetch/settings.toml +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/src/redfetch/terminal_ui.py +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/src/redfetch/terminal_ui.tcss +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/src/redfetch/utils.py +0 -0
- {redfetch-0.2.1.dev0 → redfetch-0.2.4.dev0}/tests/test_is_special_or_dependency.py +0 -0
|
@@ -178,8 +178,26 @@ jobs:
|
|
|
178
178
|
redfetch.exe
|
|
179
179
|
description: 'RedFetch Executable'
|
|
180
180
|
|
|
181
|
+
- name: Upload Executable Artifact
|
|
182
|
+
uses: actions/upload-artifact@v4
|
|
183
|
+
with:
|
|
184
|
+
name: redfetch.exe
|
|
185
|
+
path: redfetch.exe
|
|
186
|
+
|
|
187
|
+
publish-to-redguides:
|
|
188
|
+
needs: build-and-publish-exe
|
|
189
|
+
if: startsWith(github.ref, 'refs/tags/v')
|
|
190
|
+
runs-on: ubuntu-latest # Change to Linux runner
|
|
191
|
+
steps:
|
|
192
|
+
- name: Checkout Code
|
|
193
|
+
uses: actions/checkout@v4
|
|
194
|
+
|
|
195
|
+
- name: Download Executable Artifact
|
|
196
|
+
uses: actions/download-artifact@v4
|
|
197
|
+
with:
|
|
198
|
+
name: redfetch.exe
|
|
199
|
+
|
|
181
200
|
- name: Redguides Publish
|
|
182
|
-
if: startsWith(github.ref, 'refs/tags/v')
|
|
183
201
|
uses: RedGuides/redguides-publish@v1
|
|
184
202
|
env:
|
|
185
203
|
REDGUIDES_API_KEY: ${{ secrets.REDGUIDES_API_KEY }}
|
|
@@ -189,10 +207,4 @@ jobs:
|
|
|
189
207
|
version: ${{ env.PYAPP_PROJECT_VERSION }}
|
|
190
208
|
message: 'CHANGELOG.md'
|
|
191
209
|
file: 'redfetch.exe'
|
|
192
|
-
domain: 'https://raw.githubusercontent.com/RedGuides/redfetch/main/'
|
|
193
|
-
|
|
194
|
-
- name: Upload Executable Artifact
|
|
195
|
-
uses: actions/upload-artifact@v4
|
|
196
|
-
with:
|
|
197
|
-
name: redfetch.exe
|
|
198
|
-
path: redfetch.exe
|
|
210
|
+
domain: 'https://raw.githubusercontent.com/RedGuides/redfetch/main/'
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: redfetch
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4.dev0
|
|
4
4
|
Summary: Download and publish EverQuest scripts and software using the RedGuides API
|
|
5
5
|
Project-URL: Homepage, https://www.redguides.com
|
|
6
6
|
Project-URL: Documentation, https://www.redguides.com/community/resources/redfetch.3177/
|
|
7
7
|
Project-URL: Repository, https://github.com/RedGuides/redfetch
|
|
8
8
|
Project-URL: Issues, https://github.com/RedGuides/redfetch/issues
|
|
9
9
|
Project-URL: Changelog, https://github.com/RedGuides/redfetch/blob/main/CHANGELOG.md
|
|
10
|
-
Project-URL: Source_archive, https://github.com/RedGuides/redfetch/archive/
|
|
10
|
+
Project-URL: Source_archive, https://github.com/RedGuides/redfetch/archive/bce9cc471f40cbb8b2c427c7df9ceb5f2542b712.zip
|
|
11
11
|
Author-email: Redbot <ask@redguides.com>
|
|
12
12
|
License-Expression: GPL-3.0-or-later
|
|
13
13
|
License-File: LICENSE
|
|
@@ -12,5 +12,5 @@ __version__: str
|
|
|
12
12
|
__version_tuple__: VERSION_TUPLE
|
|
13
13
|
version_tuple: VERSION_TUPLE
|
|
14
14
|
|
|
15
|
-
__version__ = version = '0.2.
|
|
16
|
-
__version_tuple__ = version_tuple = (0, 2,
|
|
15
|
+
__version__ = version = '0.2.4.dev0'
|
|
16
|
+
__version_tuple__ = version_tuple = (0, 2, 4, 'dev0')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|