Updated version number.
This commit is contained in:
@@ -34,11 +34,11 @@ jobs:
|
|||||||
id: cache-library
|
id: cache-library
|
||||||
with:
|
with:
|
||||||
path: library.bin
|
path: library.bin
|
||||||
key: library-23.06
|
key: library-25.08
|
||||||
- name: Download Library
|
- name: Download Library
|
||||||
if: steps.cache-library.outputs.cache-hit != 'true'
|
if: steps.cache-library.outputs.cache-hit != 'true'
|
||||||
run: |
|
run: |
|
||||||
wget https://github.com/leozide/leocad/releases/download/v23.03/Library-23.06.zip -O library.zip
|
wget https://github.com/leozide/leocad/releases/download/v23.03/Library-25.08.zip -O library.zip
|
||||||
unzip library.zip
|
unzip library.zip
|
||||||
- name: Cache POV-Ray
|
- name: Cache POV-Ray
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
|
|||||||
+5
-5
@@ -2,8 +2,8 @@ version: '{branch}.{build}'
|
|||||||
skip_tags: true
|
skip_tags: true
|
||||||
image:
|
image:
|
||||||
- Ubuntu1604
|
- Ubuntu1604
|
||||||
- macos
|
- macOS
|
||||||
- Visual Studio 2019
|
- Visual Studio 2022
|
||||||
configuration: Release
|
configuration: Release
|
||||||
platform: x64
|
platform: x64
|
||||||
|
|
||||||
@@ -37,7 +37,7 @@ for:
|
|||||||
- mkdir appdir
|
- mkdir appdir
|
||||||
- copy build\release\leocad.exe appdir
|
- copy build\release\leocad.exe appdir
|
||||||
- copy docs\readme.md appdir\readme.txt
|
- copy docs\readme.md appdir\readme.txt
|
||||||
- appveyor DownloadFile https://github.com/leozide/leocad/releases/download/v23.03/Library-23.06.zip -FileName library.zip
|
- appveyor DownloadFile https://github.com/leozide/leocad/releases/download/v23.03/Library-25.08.zip -FileName library.zip
|
||||||
- 7z e library.zip
|
- 7z e library.zip
|
||||||
- copy library.bin appdir\\library.bin
|
- copy library.bin appdir\\library.bin
|
||||||
- appveyor DownloadFile https://github.com/leozide/povray/releases/download/continuous/povconsole32-sse2.exe -FileName appdir\povconsole32-sse2.exe
|
- appveyor DownloadFile https://github.com/leozide/povray/releases/download/continuous/povconsole32-sse2.exe -FileName appdir\povconsole32-sse2.exe
|
||||||
@@ -79,7 +79,7 @@ for:
|
|||||||
|
|
||||||
after_build:
|
after_build:
|
||||||
- make install INSTALL_ROOT=AppDir
|
- make install INSTALL_ROOT=AppDir
|
||||||
- appveyor DownloadFile https://github.com/leozide/leocad/releases/download/v23.03/Library-23.06.zip -FileName library.zip
|
- appveyor DownloadFile https://github.com/leozide/leocad/releases/download/v23.03/Library-25.08.zip -FileName library.zip
|
||||||
- unzip library.zip
|
- unzip library.zip
|
||||||
- mkdir -p AppDir/usr/share/leocad
|
- mkdir -p AppDir/usr/share/leocad
|
||||||
- mv library.bin AppDir/usr/share/leocad/library.bin
|
- mv library.bin AppDir/usr/share/leocad/library.bin
|
||||||
@@ -119,7 +119,7 @@ for:
|
|||||||
- export TRAVIS_COMMIT=$APPVEYOR_REPO_COMMIT
|
- export TRAVIS_COMMIT=$APPVEYOR_REPO_COMMIT
|
||||||
- appveyor DownloadFile https://github.com/leozide/povray/releases/download/continuous/povray
|
- appveyor DownloadFile https://github.com/leozide/povray/releases/download/continuous/povray
|
||||||
- chmod +x povray
|
- chmod +x povray
|
||||||
- appveyor DownloadFile https://github.com/leozide/leocad/releases/download/v23.03/Library-23.06.zip -FileName library.zip
|
- appveyor DownloadFile https://github.com/leozide/leocad/releases/download/v23.03/Library-25.08.zip -FileName library.zip
|
||||||
- unzip library.zip
|
- unzip library.zip
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
|
|||||||
+3
-3
@@ -73,10 +73,10 @@ char* strupr(char* string);
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Version number.
|
// Version number.
|
||||||
#define LC_VERSION_MAJOR 23
|
#define LC_VERSION_MAJOR 25
|
||||||
#define LC_VERSION_MINOR 03
|
#define LC_VERSION_MINOR 9
|
||||||
#define LC_VERSION_PATCH 0
|
#define LC_VERSION_PATCH 0
|
||||||
#define LC_VERSION_TEXT "23.03"
|
#define LC_VERSION_TEXT "25.09"
|
||||||
|
|
||||||
// Forward declarations.
|
// Forward declarations.
|
||||||
class Project;
|
class Project;
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
.TH LEOCAD 1 "5 June 2021"
|
.TH LEOCAD 1 "1 September 2025"
|
||||||
.\" NAME should be all caps, SECTION should be 1-8, maybe w/ subsection
|
.\" NAME should be all caps, SECTION should be 1-8, maybe w/ subsection
|
||||||
.\" other params are allowed: see man(7), man(1)
|
.\" other params are allowed: see man(7), man(1)
|
||||||
.SH NAME
|
.SH NAME
|
||||||
|
|||||||
+1
-1
@@ -27,7 +27,7 @@ CONFIG += precompile_header incremental c++17 force_debug_info
|
|||||||
|
|
||||||
win32 {
|
win32 {
|
||||||
RC_ICONS = resources/leocad.ico
|
RC_ICONS = resources/leocad.ico
|
||||||
VERSION = 23.3.0.0
|
VERSION = 25.9.0.0
|
||||||
QMAKE_TARGET_COMPANY = LeoCAD Software
|
QMAKE_TARGET_COMPANY = LeoCAD Software
|
||||||
QMAKE_TARGET_DESCRIPTION = LeoCAD
|
QMAKE_TARGET_DESCRIPTION = LeoCAD
|
||||||
QMAKE_TARGET_COPYRIGHT = "Copyright (C) LeoCAD.org"
|
QMAKE_TARGET_COPYRIGHT = "Copyright (C) LeoCAD.org"
|
||||||
|
|||||||
+1
-1
@@ -28,7 +28,7 @@ Group: Graphics
|
|||||||
%if 0%{?fedora} || 0%{?centos_version}
|
%if 0%{?fedora} || 0%{?centos_version}
|
||||||
Group: Amusements/Graphics
|
Group: Amusements/Graphics
|
||||||
%endif
|
%endif
|
||||||
Version: 23.03
|
Version: 25.09
|
||||||
%if 0%{?opensuse_bs}
|
%if 0%{?opensuse_bs}
|
||||||
Release: <CI_CNT>.<B_CNT>%{?dist}
|
Release: <CI_CNT>.<B_CNT>%{?dist}
|
||||||
%else
|
%else
|
||||||
|
|||||||
+1
-1
@@ -63,7 +63,7 @@
|
|||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>LCAD</string>
|
<string>LCAD</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>23.03.0</string>
|
<string>25.09.0</string>
|
||||||
<key>CFBundleDisplayName</key>
|
<key>CFBundleDisplayName</key>
|
||||||
<string>LeoCAD</string>
|
<string>LeoCAD</string>
|
||||||
<key>CFBundleName</key>
|
<key>CFBundleName</key>
|
||||||
|
|||||||
+2
-2
@@ -1,7 +1,7 @@
|
|||||||
name: leocad
|
name: leocad
|
||||||
base: core18
|
base: core18
|
||||||
adopt-info: leocad
|
adopt-info: leocad
|
||||||
version: '23.03'
|
version: '25.09'
|
||||||
|
|
||||||
grade: stable
|
grade: stable
|
||||||
confinement: strict
|
confinement: strict
|
||||||
@@ -31,7 +31,7 @@ parts:
|
|||||||
- libqt5concurrent5
|
- libqt5concurrent5
|
||||||
- libqt5printsupport5
|
- libqt5printsupport5
|
||||||
- libqt5xml5
|
- libqt5xml5
|
||||||
source: https://github.com/leozide/leocad/archive/v23.03.tar.gz
|
source: https://github.com/leozide/leocad/archive/v25.09.tar.gz
|
||||||
parse-info: [usr/share/metainfo/leocad.appdata.xml]
|
parse-info: [usr/share/metainfo/leocad.appdata.xml]
|
||||||
library:
|
library:
|
||||||
source: .
|
source: .
|
||||||
|
|||||||
@@ -22,6 +22,7 @@
|
|||||||
<id>leocad.desktop</id>
|
<id>leocad.desktop</id>
|
||||||
</provides>
|
</provides>
|
||||||
<releases>
|
<releases>
|
||||||
|
<release version="25.09" date="2025-09-01" />
|
||||||
<release version="23.03" date="2023-03-19" />
|
<release version="23.03" date="2023-03-19" />
|
||||||
<release version="21.06" date="2021-06-05" />
|
<release version="21.06" date="2021-06-05" />
|
||||||
<release version="21.03" date="2021-03-14" />
|
<release version="21.03" date="2021-03-14" />
|
||||||
|
|||||||
Reference in New Issue
Block a user