Skip to content

Commit

Permalink
Prepare for V4.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cebix committed Dec 14, 2024
1 parent cecb98f commit 5276eed
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Frodo.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
%define name Frodo
%define version 4.4
%define version 4.5
%define release 1

Summary: Commodore 64 emulator
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dnl Information on the package.
AC_PREREQ([2.69])
AC_INIT([Frodo],[4.4], [], [Frodo])
AC_INIT([Frodo],[4.5], [], [Frodo])
AC_CONFIG_SRCDIR([src/main.cpp])
AM_INIT_AUTOMAKE([1.12 foreign])
AC_CANONICAL_HOST
Expand Down
8 changes: 4 additions & 4 deletions src/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@

// Version/revision
constexpr int FRODO_VERSION = 4;
constexpr int FRODO_REVISION = 4;
constexpr int FRODO_REVISION = 5;

#ifdef FRODO_SC
const char VERSION_STRING[] = "Frodo V4.4";
const char VERSION_STRING[] = "Frodo V4.5";
#else
const char VERSION_STRING[] = "Frodo Lite V4.4";
const char VERSION_STRING[] = "Frodo Lite V4.5";
#endif

#define DRIVE_ID_STRING "FRODO V4.4"
#define DRIVE_ID_STRING "FRODO V4.5"

#endif // ndef VERSION_H

0 comments on commit 5276eed

Please sign in to comment.