Compare commits

...

2 Commits

Author SHA1 Message Date
Vladimir Dubrovin
e9848b6622 Fix blake2 for Watcom
Some checks failed
RPM/DEB build aarch64 / ${{ matrix.target }} (ubuntu-24.04-arm) (push) Has been cancelled
RPM/DEB build armhf / ${{ matrix.target }} (ubuntu-latest) (push) Has been cancelled
RPM/DEB build x86-64 / ${{ matrix.target }} (ubuntu-latest) (push) Has been cancelled
Build Win32 3proxy-lite with Watcom / ${{ matrix.target }} (windows-2022) (push) Has been cancelled
Build Win32 3proxy with MSVC / ${{ matrix.target }} (windows-2022) (push) Has been cancelled
Build Win64 3proxy with MSVC / ${{ matrix.target }} (windows-2022) (push) Has been cancelled
Build Win-arm64 3proxy with MSVC / ${{ matrix.target }} (windows-2022) (push) Has been cancelled
2026-04-24 17:43:33 +03:00
Vladimir Dubrovin
e419a21cf9 build windows release 2026-04-24 17:24:39 +03:00
9 changed files with 18 additions and 10 deletions

View File

@ -2,7 +2,7 @@ name: Build Win32 3proxy-lite with Watcom
on:
push:
branches: [ "master" ]
branches: [ "master", "test-ci" ]
paths: [ 'RELEASE', '.github/workflows/build-watcom.yml' ]
jobs:

View File

@ -2,7 +2,7 @@ name: Build Win32 3proxy with MSVC
on:
push:
branches: [ "master" ]
branches: [ "master", "test-ci" ]
paths: [ 'RELEASE', '.github/workflows/build-win32.yml' ]
jobs:

View File

@ -2,7 +2,7 @@ name: Build Win64 3proxy with MSVC
on:
push:
branches: [ "master" ]
branches: [ "master", "test-ci" ]
paths: [ 'RELEASE', '.github/workflows/build-win64.yml' ]
jobs:

View File

@ -2,7 +2,7 @@ name: Build Win-arm64 3proxy with MSVC
on:
push:
branches: [ "master" ]
branches: [ "master", "test-ci" ]
paths: [ 'RELEASE', '.github/workflows/build-winarm64.yml' ]
jobs:

View File

@ -1 +1 @@
0.9.6
0.9.6.1

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
3proxy (0.9.6.1-1) buster; urgency=medium
*3proxy 0.9.6.1 initial build
-- z3APA3A <3apa3a@3proxy.org> Fri, 24 Apr 2026 17:23:05 +0300
3proxy (0.9.6-1) buster; urgency=medium
*3proxy 0.9.6 initial build

View File

@ -1,5 +1,5 @@
Name: 3proxy
Version: 0.9.6
Version: 0.9.6.1
Release: 1%{?dist}
Summary: 3proxy tiny proxy server
License: GPL/LGPL/Apache/BSD

View File

@ -18,7 +18,9 @@
#include <stddef.h>
#include <stdint.h>
#if defined(_MSC_VER)
#if defined(WATCOM)
#define BLAKE2_PACKED(x) _Packed x
#elif defined(_MSC_VER)
#define BLAKE2_PACKED(x) __pragma(pack(push, 1)) x __pragma(pack(pop))
#else
#define BLAKE2_PACKED(x) x __attribute__((packed))

View File

@ -1,5 +1,5 @@
#ifndef VERSION
#define VERSION "3proxy-0.9.6"
#define VERSION "3proxy-0.9.6.1"
#endif
#ifndef BUILDDATE
#define BUILDDATE ""
@ -7,8 +7,8 @@
#define MAJOR3PROXY 0
#define SUBMAJOR3PROXY 9
#define MINOR3PROXY 6
#define SUBMINOR3PROXY 0
#define RELEASE3PROXY "3proxy-0.9.6(" BUILDDATE ")\0"
#define SUBMINOR3PROXY 1
#define RELEASE3PROXY "3proxy-0.9.6.1(" BUILDDATE ")\0"
#ifndef YEAR3PROXY
#define YEAR3PROXY "2026"
#endif