mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-14 19:32:04 +01:00
- fixed: doubleclicking right grid didn't highlight the existing channel in left grid properly
- fixed: date-stamp in package name
This commit is contained in:
@@ -987,7 +987,7 @@ namespace ChanSort.Ui
|
||||
private void NavigateToChannel(ChannelInfo channel, GridView view)
|
||||
{
|
||||
if (channel == null) return;
|
||||
int rowHandle = this.gviewRight.GetRowHandle(this.currentChannelList.Channels.IndexOf(channel));
|
||||
int rowHandle = view.GetRowHandle(this.currentChannelList.Channels.IndexOf(channel));
|
||||
if (view.IsValidRowHandle(rowHandle))
|
||||
{
|
||||
this.SelectFocusedRow(view, rowHandle);
|
||||
|
||||
@@ -17,7 +17,7 @@ cd ..
|
||||
del Website\ChanSort.zip 2>nul
|
||||
copy Source\readme.txt %target%
|
||||
cd %target%
|
||||
c:\cygwin\bin\date +%Y-%m-%d>%TEMP%\date.txt
|
||||
c:\cygwin\bin\date "+%%Y-%%m-%%d">%TEMP%\date.txt
|
||||
set /p curdate=<%temp%\date.txt
|
||||
"c:\program files (x86)\7-Zip\7z.exe" a -tzip ChanSort_%curdate%.zip *
|
||||
|
||||
|
||||
Reference in New Issue
Block a user