From 81546e60c222fe4aef750b890b0dbe3a5ac280d8 Mon Sep 17 00:00:00 2001 From: gpz Date: Sun, 24 Dec 2023 17:11:05 +0000 Subject: [PATCH] Updated html pages, bump version to 3.8. This is the potential 3.8 release, merry christmas :) git-svn-id: https://svn.code.sf.net/p/vice-emu/code/trunk@44900 379a1393-f5fb-40a0-bcee-ef074d9b53f7 --- vice/README | 40 +++++++++--------- vice/configure.ac | 4 +- vice/doc/Release-Howto.txt | 11 ++--- vice/doc/html/index.html | 83 ++++++++++++++++++++++++-------------- vice/doc/html/macosx.html | 16 +++++++- vice/doc/html/windows.html | 40 +++++++++++++++++- 6 files changed, 135 insertions(+), 59 deletions(-) diff --git a/vice/README b/vice/README index 10e76870e01..e9732f2e330 100644 --- a/vice/README +++ b/vice/README @@ -1,5 +1,5 @@ - VICE 3.7.1 Dec 2022 + VICE 3.8 Dez 2023 _______________ @@ -24,7 +24,7 @@ ---------------------------------------------------------------------------- - This is version 3.7.1 of VICE, the multi-platform C64, C128, VIC20, + This is version 3.8 of VICE, the multi-platform C64, C128, VIC20, PET, PLUS4 and CBM-II emulator. This version can be compiled for Win32, macOS, Haiku and for most Unix systems provided with the X Window System version 11, R5 or later. @@ -191,24 +191,24 @@ VICE, the Versatile Commodore Emulator Core Team Members: - 1999-2022 Pottendo - 2005-2022 Marco van den Heuvel - 2007-2022 Fabrizio Gennari - 2009-2022 Groepaz - 2009-2022 Errol Smith - 2009-2022 Ingo Korb - 2010-2022 Olaf Seibert - 2011-2022 Marcus Sutton - 2011-2022 Kajtar Zsolt - 2016-2022 AreaScout - 2016-2022 Bas Wassink - 2017-2022 Michael C. Martin - 2018-2022 Christopher Phillips - 2019-2022 David Hogan - 2020-2022 Empathic Qubit - 2020-2022 Roberto Muscedere - 2021-2022 June Tate-Gans - 2021-2022 Pablo Roldan + 1999-2023 Pottendo + 2005-2023 Marco van den Heuvel + 2007-2023 Fabrizio Gennari + 2009-2023 Groepaz + 2009-2023 Errol Smith + 2009-2023 Ingo Korb + 2010-2023 Olaf Seibert + 2011-2023 Marcus Sutton + 2011-2023 Kajtar Zsolt + 2016-2023 AreaScout + 2016-2023 Bas Wassink + 2017-2023 Michael C. Martin + 2018-2023 Christopher Phillips + 2019-2023 David Hogan + 2020-2023 Empathic Qubit + 2020-2023 Roberto Muscedere + 2021-2023 June Tate-Gans + 2021-2023 Pablo Roldan Inactive/Ex Team Members: 2011-2016 Stefan Haubenthal diff --git a/vice/configure.ac b/vice/configure.ac index 56d534ef506..986fad58cf7 100755 --- a/vice/configure.ac +++ b/vice/configure.ac @@ -10,8 +10,8 @@ dnl a development version. Don't add any strings to the version number (such dnl as '-dev' or 'beta'), the '-r$SVNREV' revision string is the only thing we dnl alllow after the version number. m4_define(vice_version_major, 3) -m4_define(vice_version_minor, 7) -m4_define(vice_version_build, 1) +m4_define(vice_version_minor, 8) +m4_define(vice_version_build, 0) dnl Some people lose their shit if a version ends in .0 dnl also turns out some people lose it if it doesn't :) diff --git a/vice/doc/Release-Howto.txt b/vice/doc/Release-Howto.txt index 8694dd91ac1..1ec47a57d58 100644 --- a/vice/doc/Release-Howto.txt +++ b/vice/doc/Release-Howto.txt @@ -50,7 +50,7 @@ $ svn commit -m "preparing release - no more committing until after the release - make sure the version in configure.ac is updated: m4_define(vice_version_major, 3) - m4_define(vice_version_minor, 6) + m4_define(vice_version_minor, 8) m4_define(vice_version_build, 0) These three defines are all that is needed for a version number, the absence @@ -60,6 +60,7 @@ $ svn commit -m "preparing release - no more committing until after the release The BUILD number is bumped by one on each point release, except when we do our "traditional" Christmas release, then we bump MINOR and reset BUILD to 0. + For massive changes we can decide to bump MAJOR and set MINOR and BUILD to 0, for example when merging the 'vice-4' branch somewhere in the future. @@ -78,7 +79,7 @@ while at it, also check the following: Make sure everything is fine, and commit the release -$ svn commit -m "this is the 3.6.0 release - merry xmas" +$ svn commit -m "this is the 3.8.0 release - merry xmas" **************************************** @@ -104,7 +105,7 @@ $ svn commit -m "this is the 3.6.0 release - merry xmas" The file in .github/workflows/make-release.yml implements a release process that will create the dist tarball and then windows builds from that tarball. To trigger it, - push a git tag like v3.6.0 to our github mirror. This will create a release on Github + push a git tag like v3.8.0 to our github mirror. This will create a release on Github which can be seen at https://github.com/VICE-Team/svn-mirror/releases. The build process can be observed at https://github.com/VICE-Team/svn-mirror/actions. @@ -117,7 +118,7 @@ $ svn commit -m "this is the 3.6.0 release - merry xmas" Github. Make sure that the commit has synchronised over to Github before you trigger the build process. - $ RELEASE=3.6.0 + $ RELEASE=3.8.0 $ git clone --branch clean --depth 1 git@github.com:VICE-Team/svn-mirror.git or if that doesnt work because github doesnt have your ssh key: @@ -128,7 +129,7 @@ $ svn commit -m "this is the 3.6.0 release - merry xmas" $ git tag $RELEASE $ git push origin $RELEASE - Pushing the tag triggers the release build, and creates a 'release' on Github called 3.6.0. + Pushing the tag triggers the release build, and creates a 'release' on Github called 3.8.0. Annoyingly, this release will automatically include a zip and tgz of the source for that commit, without any way to prevent it. diff --git a/vice/doc/html/index.html b/vice/doc/html/index.html index 9380c5c65c2..95ff5b5858d 100644 --- a/vice/doc/html/index.html +++ b/vice/doc/html/index.html @@ -57,9 +57,7 @@

What is VICE?

News

[NEW] -(28 December 2022) Version 3.7.1 released
-[NEW] -(28 December 2022) Version 3.7.1 released (with macOS fixes) +(24 Dezember 2023) Version 3.8 released