mirror of
https://github.com/Open-Shell/Open-Shell-Menu.git
synced 2026-04-13 02:17:26 +10:00
Compare commits
5 Commits
v4.4.102-d
...
v4.4.109-d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
77da0614ac | ||
|
|
9c6fadb828 | ||
|
|
8a5ad15317 | ||
|
|
ef2d92bb84 | ||
|
|
cf2f874896 |
@@ -54,10 +54,10 @@ END
|
||||
|
||||
// Solution loading fail-safe
|
||||
#ifndef _PRODUCT_VERSION
|
||||
#define _PRODUCT_VERSION 4.3.2
|
||||
#define _PRODUCT_VERSION 4.4.102
|
||||
#endif
|
||||
#ifndef _PRODUCT_VERSION_STR
|
||||
#define _PRODUCT_VERSION_STR "4.3.2"
|
||||
#define _PRODUCT_VERSION_STR "4.4.102"
|
||||
#endif
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
@@ -116,5 +116,3 @@ IDI_APPICON ICON "..\\ClassicStartSetup\\ClassicS
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
#endif // not APSTUDIO_INVOKED
|
||||
|
||||
_PRODUCT_VERSOIN
|
||||
|
||||
@@ -770,9 +770,6 @@ CMenuContainer::~CMenuContainer( void )
|
||||
if (m_SearchIcons)
|
||||
DeleteObject(m_SearchIcons);
|
||||
if (m_pProgramsTree) m_pProgramsTree->Release();
|
||||
|
||||
if (s_pFrameworkInputPane && m_InputCookie)
|
||||
s_pFrameworkInputPane->Unadvise(m_InputCookie);
|
||||
}
|
||||
|
||||
void CMenuContainer::AddFirstFolder( IShellItem *pFolder, std::vector<MenuItem> &items, int options )
|
||||
@@ -6215,6 +6212,10 @@ LRESULT CMenuContainer::OnDestroy( UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL
|
||||
CloseThemeData(m_ScrollTheme);
|
||||
m_ScrollTheme=NULL;
|
||||
}
|
||||
|
||||
if (s_pFrameworkInputPane && m_InputCookie)
|
||||
s_pFrameworkInputPane->Unadvise(m_InputCookie);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ set PATH=C:\Program Files\7-Zip\;C:\Program Files (x86)\HTML Help Workshop;C:\Pr
|
||||
rem git clean -dfx
|
||||
|
||||
@rem Default version
|
||||
@set CS_VERSION=4.3.2
|
||||
@set CS_VERSION=4.4.102
|
||||
|
||||
@if defined APPVEYOR_BUILD_VERSION (
|
||||
@set CS_VERSION=%APPVEYOR_BUILD_VERSION%
|
||||
|
||||
@@ -59,4 +59,4 @@ https://github.com/passionate-coder/Classic-Start/releases
|
||||
|
||||
|
||||
---
|
||||
[](https://github.com/passionate-coder/Classic-Start/releases) [](https://ci.appveyor.com/project/passionate-coder/classic-start/branch/master) [](https://gitq.com/passionate-coder/Classic-Start) [](https://gitter.im/passionate-coder/Disc-Chitchat)
|
||||
[](https://github.com/passionate-coder/Classic-Start/releases) [](https://github.com/passionate-coder/Classic-Start/releases) [](https://ci.appveyor.com/project/passionate-coder/classic-start/branch/master) [](https://gitq.com/passionate-coder/Classic-Start) [](https://gitter.im/passionate-coder/Disc-Chitchat)
|
||||
|
||||
17
clean
17
clean
@@ -1,17 +0,0 @@
|
||||
git rm -f *..lastbuildstate
|
||||
git rm -f *.dll
|
||||
git rm -f *.exe
|
||||
git rm -f *.exp
|
||||
git rm -f *.iobj
|
||||
git rm -f *.lastbuildstate
|
||||
git rm -f *.lib
|
||||
git rm -f *.log
|
||||
git rm -f *.ltlog
|
||||
git rm -f *.ipdb
|
||||
git rm -f *.obj
|
||||
git rm -f *.pch
|
||||
git rm -f *.pdb
|
||||
git rm -f *.res
|
||||
git rm -f *.tlog
|
||||
git rm -f *.adml
|
||||
git rm -f *.admx
|
||||
21
clean.cmd
Normal file
21
clean.cmd
Normal file
@@ -0,0 +1,21 @@
|
||||
REM :: This script will forcefully clean the repository of residual cruft from the build process in the offchance I have forgotten
|
||||
REM :: to include something. It is not perfect but it appears to do the job.
|
||||
REM :: This is an alternative to 'git reset --hard HEAD' which would destroy local changes.
|
||||
REM :: - Xenhat
|
||||
git rm -f *..lastbuildstate
|
||||
git rm -f *.dll
|
||||
git rm -f *.exe
|
||||
git rm -f *.exp
|
||||
git rm -f *.iobj
|
||||
git rm -f *.lastbuildstate
|
||||
git rm -f *.lib
|
||||
git rm -f *.log
|
||||
git rm -f *.ltlog
|
||||
git rm -f *.ipdb
|
||||
git rm -f *.obj
|
||||
git rm -f *.pch
|
||||
git rm -f *.pdb
|
||||
git rm -f *.res
|
||||
git rm -f *.tlog
|
||||
git rm -f *.adml
|
||||
git rm -f *.admx
|
||||
Reference in New Issue
Block a user