diff --git a/.github/workflows/build_release_draft.yml b/.github/workflows/build_release_draft.yml index 5625612..d5b2996 100644 --- a/.github/workflows/build_release_draft.yml +++ b/.github/workflows/build_release_draft.yml @@ -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 @@ -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 diff --git a/cvamp/gui.py b/cvamp/gui.py index 58dcddb..b2d9a27 100644 --- a/cvamp/gui.py +++ b/cvamp/gui.py @@ -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( diff --git a/pyproject.toml b/pyproject.toml index c296ad3..ca62fc8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "]