Skip to content

Commit

Permalink
Merge pull request #290 from KevinBytesTheDust/dev_v7
Browse files Browse the repository at this point in the history
version bump
  • Loading branch information
KevinBytesTheDust committed Jul 27, 2024
2 parents 1060072 + 1b5f8e9 commit 09ee651
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/build_release_draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,7 @@ jobs:
shell: bash
run: |
export today=$(date +'%Y%m%d')
if [ "$RUNNER_OS" == "Windows" ]; then
echo "output_filename=CVAmp${{steps.read_toml.outputs.value}}_${today}_${{runner.os}}-${{runner.arch}}" >> $GITHUB_ENV
else
echo "output_filename=CVAmp${{steps.read_toml.outputs.value}}_${today}_${{runner.os}}-${{runner.arch}}_experimental" >> $GITHUB_ENV
fi
echo "output_filename=CVAmp_v${{steps.read_toml.outputs.value}}_${today}_${{runner.os}}-${{runner.arch}}" >> $GITHUB_ENV
- name: Build executable
shell: bash
Expand Down Expand Up @@ -83,7 +79,7 @@ jobs:
- name: Create draft release with artifacts
uses: softprops/action-gh-release@v1
with:
name: CVAmp GUI ${{github.ref_name}}
name: CVAmp ${{github.ref_name}}
body_path: docs/release_template_text.md
prerelease: false
draft: true
Expand Down
2 changes: 1 addition & 1 deletion cvamp/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def __init__(self, parent, manager, *args, **kwargs):
proxy_available_text.place(x=40, y=10)
proxy_available = tk.Label(self, text="0", borderwidth=2, relief="solid", width=5)
proxy_available.place(x=70, y=40)
proxy_available.configure(text="100")
proxy_available.configure(text=len(self.manager.proxies.proxy_list))

lbl_buy = tk.Label(self, text="(buy more)", fg="blue", cursor="hand2")
lbl_buy.bind(
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cvamp"
version = "0.7.0"
version = "0.7.1"
description = "Viewer Amplifier bot with playwright. Spawns low-resolution muted Chrome instances with proxy & user-agent. Requires HTTP proxies."
authors = ["KevinBytesTheDust <kevin@blueloperlabs.ch>"]

Expand Down

0 comments on commit 09ee651

Please sign in to comment.