Compare commits

...

8 Commits

Author SHA1 Message Date
198b1eefb7 Merge branch 'next-gen' of github.com:mcv-software/twblue into next-gen 2026-01-13 00:44:46 -06:00
363d2082c0 release a new version in our updates system 2026-01-13 00:43:46 -06:00
José Manuel Delicado
d65109d935 Merge pull request #891 from MCV-Software/dependabot/pip/numpy-2.4.1
build(deps): bump numpy from 2.4.0 to 2.4.1
2026-01-13 07:29:51 +01:00
9688c20dd9 Added nsis to github actions' path 2026-01-13 00:15:19 -06:00
4d20d7744a Update workflow (again) 2026-01-13 00:04:00 -06:00
29e52288df Update release workflow to install nsis prior to generating the installer 2026-01-13 00:01:19 -06:00
9ed2f6771e Fix setup.py with cx_freeze 8 API changes 2026-01-12 23:44:21 -06:00
dependabot[bot]
0512d53043 build(deps): bump numpy from 2.4.0 to 2.4.1
Bumps [numpy](https://github.com/numpy/numpy) from 2.4.0 to 2.4.1.
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](https://github.com/numpy/numpy/compare/v2.4.0...v2.4.1)

---
updated-dependencies:
- dependency-name: numpy
  dependency-version: 2.4.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-13 03:47:36 +00:00
4 changed files with 11 additions and 7 deletions

View File

@@ -29,6 +29,12 @@ jobs:
.\scripts\build.ps1 .\scripts\build.ps1
mv src/dist scripts\TWBlue64 mv src/dist scripts\TWBlue64
- name: Install NSIS
run: choco install nsis
- name: Add NSIS to PATH
run: echo "C:\Program Files (x86)\NSIS" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: make installer - name: make installer
run: | run: |
cd scripts cd scripts

View File

@@ -23,7 +23,7 @@ libretranslatepy==2.1.4
lief==0.15.1 lief==0.15.1
Markdown==3.10 Markdown==3.10
Mastodon.py==2.1.4 Mastodon.py==2.1.4
numpy==2.4.0 numpy==2.4.1
oauthlib==3.3.1 oauthlib==3.3.1
packaging==25.0 packaging==25.0
pillow==12.1.0 pillow==12.1.0

View File

@@ -3,7 +3,7 @@ import sys
import application import application
import platform import platform
import os import os
from cx_Freeze import setup, Executable, winmsvcr from cx_Freeze import setup, Executable
from requests import certs from requests import certs
def get_architecture_files(): def get_architecture_files():
@@ -34,7 +34,7 @@ def find_accessible_output2_datafiles():
base = None base = None
if sys.platform == 'win32': if sys.platform == 'win32':
base = 'Win32GUI' base = 'GUI'
build_exe_options = dict( build_exe_options = dict(
build_exe="dist", build_exe="dist",
@@ -51,8 +51,6 @@ executables = [
Executable('main.py', base=base, target_name="twblue") Executable('main.py', base=base, target_name="twblue")
] ]
winmsvcr.FILES = ()
winmsvcr.FILES_TO_DUPLICATE = ()
setup(name=application.name, setup(name=application.name,
version=application.version, version=application.version,
description=application.description, description=application.description,

View File

@@ -1,9 +1,9 @@
{ {
"current_version": "2025.03.08", "current_version": "2026.01.13",
"description": "Added support for editing and scheduling Mastodon posts, improved quoted posts reading, and added server announcements buffer. Includes visual stability fixes and keyboard shortcut improvements.", "description": "Added support for editing and scheduling Mastodon posts, improved quoted posts reading, and added server announcements buffer. Includes visual stability fixes and keyboard shortcut improvements.",
"date": "2026-01-12", "date": "2026-01-12",
"downloads": "downloads":
{ {
"Windows64": "https://github.com/MCV-Software/TWBlue/releases/download/v2026.01.12/TWBlue_portable_v2026.01.12.zip" "Windows64": "https://github.com/MCV-Software/TWBlue/releases/download/v2026.01.13/TWBlue_portable_v2026.01.13.zip"
} }
} }