Skip to content

Commit

Permalink
Update .gitignore and add missed resources.rc
Browse files Browse the repository at this point in the history
  • Loading branch information
RinatNamazov committed Oct 17, 2023
1 parent 553daf3 commit 206b8e8
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 74 deletions.
74 changes: 0 additions & 74 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,76 +1,2 @@
out/
.vs/

# This file is used to ignore files which are generated
# ----------------------------------------------------------------------------

*~
*.autosave
*.a
*.core
*.moc
*.o
*.obj
*.orig
*.rej
*.so
*.so.*
*_pch.h.cpp
*_resource.rc
*.qm
.#*
*.*#
core
!core/
tags
.DS_Store
.directory
*.debug
Makefile*
*.prl
*.app
moc_*.cpp
ui_*.h
qrc_*.cpp
Thumbs.db
*.res
*.rc
/.qmake.cache
/.qmake.stash

# qtcreator generated files
*.pro.user*

# xemacs temporary files
*.flc

# Vim temporary files
.*.swp

# Visual Studio generated files
*.ib_pdb_index
*.idb
*.ilk
*.pdb
*.sln
*.suo
*.vcproj
*vcproj.*.*.user
*.ncb
*.sdf
*.opensdf
*.vcxproj
*vcxproj.*

# MinGW generated files
*.Debug
*.Release

# Python byte code
*.pyc

# Binaries
# --------
*.dll
*.exe

94 changes: 94 additions & 0 deletions resources/resources.rc
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
// Microsoft Visual C++ generated resource script.
//
#include "resources.h"

#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 2 resource.
//
#include "winres.h"
/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS

/////////////////////////////////////////////////////////////////////////////
// Russian (Russia) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_RUS)
LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
#pragma code_page(1251)

#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//

1 TEXTINCLUDE BEGIN "resource.h\0" END

2 TEXTINCLUDE BEGIN "#include "
"winres.h"
"\r\n"
"\0" END

3 TEXTINCLUDE BEGIN "\r\n"
"\0" END

#endif // APSTUDIO_INVOKED
#endif // Russian (Russia) resources
/////////////////////////////////////////////////////////////////////////////

/////////////////////////////////////////////////////////////////////////////
// English (United States) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)

/////////////////////////////////////////////////////////////////////////////
//
// Icon
//

// Icon with lowest ID value placed first to ensure application icon
// remains consistent on all systems.
IDI_ICON1 ICON "sampx_icon.ico"
#endif // English (United States) resources
/////////////////////////////////////////////////////////////////////////////

#define VER_FILEVERSION 1, 2, 0, 1
#define VER_FILEVERSION_STR "1.2.0-beta"

#define VER_PRODUCTVERSION 1, 2, 0, 1
#define VER_PRODUCTVERSION_STR "1.2.0-beta"

VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
PRODUCTVERSION VER_PRODUCTVERSION
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
#ifdef _DEBUG
FILEFLAGS VS_FF_DEBUG
#else
FILEFLAGS 0x0L
#endif
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_APP
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "RINWARES"
VALUE "FileDescription", "https://github.com/RinatNamazov/SampX"
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "InternalName", "SampX"
VALUE "LegalCopyright", "Copyright � 2021, 2023 RINWARES, Rinat Namazov"
VALUE "OriginalFilename", "SampX.exe"
VALUE "ProductName", "SampX"
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1252
END
END

0 comments on commit 206b8e8

Please sign in to comment.