Skip to content

Commit

Permalink
Bump version to 4.30 everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
hartwork committed Feb 19, 2023
1 parent 70ba77c commit 2b6f804
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/windows-msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,25 +67,25 @@ jobs:
./makensis_198 installer_PLUGIN.nsi # writes to bin_plugin/
find bin_*/ -type f | sort -f
mv bin_plugin/geiss4winamp_429.exe ./ # i.e. out of bin_plugin/
mv bin_plugin/geiss4winamp_430.exe ./ # i.e. out of bin_plugin/
- name: Upload screensaver binary
uses: actions/upload-artifact@v3.1.2
with:
name: "geiss_saver_429_${{ github.sha }}"
name: "geiss_saver_430_${{ github.sha }}"
path: "bin_saver/*"
if-no-files-found: error

- name: Upload plug-in binary
uses: actions/upload-artifact@v3.1.2
with:
name: "geiss4winamp_429_${{ github.sha }}"
name: "geiss4winamp_430_${{ github.sha }}"
path: "bin_plugin/*"
if-no-files-found: error

- name: Upload plug-in installer
uses: actions/upload-artifact@v3.1.2
with:
name: "geiss4winamp_429_installer_${{ github.sha }}"
path: "geiss4winamp_429.exe"
name: "geiss4winamp_430_installer_${{ github.sha }}"
path: "geiss4winamp_430.exe"
if-no-files-found: error
2 changes: 1 addition & 1 deletion Resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ END
IDD_CONFIG DIALOGEX 0, 0, 428, 297
STYLE DS_SYSMODAL | DS_SETFONT | DS_MODALFRAME | DS_SETFOREGROUND |
DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Geiss 4.29"
CAPTION "Geiss 4.30"
FONT 8, "MS Sans Serif", 0, 0, 0x0
BEGIN
PUSHBUTTON "OK",IDOK,319,276,50,14
Expand Down
4 changes: 2 additions & 2 deletions installer_PLUGIN.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@
; ----------------------------------------------------------------

!define PLUGIN_NAME "Geiss" ; Name of the component. Can have spaces in it.
!define PLUGIN_CAPTION "Geiss 4.29 Setup" ; Caption for the installer dialog
!define PLUGIN_CAPTION "Geiss 4.30 Setup" ; Caption for the installer dialog
!define PLUGIN_DLL "vis_geis.dll" ; The filename of the actual plugin
!define PLUGIN_OUTFILE "bin_plugin\geiss4winamp_429.exe" ; Name of the installer to create
!define PLUGIN_OUTFILE "bin_plugin\geiss4winamp_430.exe" ; Name of the installer to create

; ----------------------------------------------------------------
Name ${PLUGIN_NAME}
Expand Down
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ UPDATING VERSION NUMBER:
// plugin:
// saver: dsound.lib winmm.lib LIBCMT.LIB

#define CURRENT_GEISS_VERSION 429
#define CURRENT_GEISS_VERSION 430

#ifndef PLUGIN
#ifndef SAVER
Expand Down

0 comments on commit 2b6f804

Please sign in to comment.