Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions engine/services/updates.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ def fetch_latest_release(self) -> Optional[dict]:
or None if no release found or error occurred.
"""
headers = {"User-Agent": self.user_agent}
token = os.getenv("GITHUB_TOKEN")
if token:
headers["Authorization"] = f"Bearer {token}"

try:
with httpx.Client(timeout=10.0) as client:
Expand Down
2 changes: 1 addition & 1 deletion packaging/inno/parrotink.iss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
; Inno Setup Script for ParrotInk

#define MyAppName "ParrotInk"
#define MyAppVersion "0.2.33"
#define MyAppVersion "0.2.34"
#define MyAppPublisher "Aalwattar"
#define MyAppURL "https://github.com/Aalwattar/ParrotInk"
#define MyAppExeName "ParrotInk.exe"
Expand Down
8 changes: 4 additions & 4 deletions packaging/pyinstaller/version_info.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ VSVersionInfo(
ffi=FixedFileInfo(
# filevers and prodvers should be (major, minor, micro, build)
# THe app version can be updated by the build script
filevers=(0, 2, 33, 0),
prodvers=(0, 2, 33, 0),
filevers=(0, 2, 34, 0),
prodvers=(0, 2, 34, 0),
# Contains a bitmask that specifies the valid bits 'flags' r
mask=0x3f,
# Contains a bitmask that specifies the attributes of the file.
Expand All @@ -32,12 +32,12 @@ VSVersionInfo(
u'040904B0',
[StringStruct(u'CompanyName', u'ParrotInk'),
StringStruct(u'FileDescription', u'ParrotInk Voice-To-Text'),
StringStruct(u'FileVersion', u'0.2.33'),
StringStruct(u'FileVersion', u'0.2.34'),
StringStruct(u'InternalName', u'ParrotInk'),
StringStruct(u'LegalCopyright', u'Copyright (c) 2026 ParrotInk'),
StringStruct(u'OriginalFilename', u'ParrotInk.exe'),
StringStruct(u'ProductName', u'ParrotInk'),
StringStruct(u'ProductVersion', u'0.2.33')])
StringStruct(u'ProductVersion', u'0.2.34')])
]),
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "parrotink"
version = "0.2.33"
version = "0.2.34"
description = "Real-time voice-to-text application for Windows"
readme = "README.md"
requires-python = ">=3.11"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading