summary refs log tree commit diff stats
path: root/src/fe-gtk/fe-gtk.c
AgeCommit message (Expand)Author
2012-10-24A lot more rebrandingBerke Viktor
2012-10-22Fix previous, failed attempt at fixing the default folder for DCC transfersBerke Viktor
2012-10-22Variable cleanup for the restBerke Viktor
2012-10-22Variable cleanup for input_*Berke Viktor
2012-10-22Variable cleanup for gui_*Berke Viktor
2012-10-22Variable cleanup for away_*Berke Viktor
2012-10-21Supposed fix for opening links on MacBerke Viktor
2012-10-15Only omit alerts when we're actually awayBerke Viktor
2012-10-13Add option to omit alerts when marked as being awayBerke Viktor
2012-10-13Fix opening folders in portable modeBerke Viktor
2012-10-07Fix URL detectionBerke Viktor
2012-09-01Merge pull request #68 from RichardHitt/masterbviktor
2012-09-01Consolidate color stripping for messages, topic and scrollbackBerke Viktor
2012-08-28Enhance LASTLOG to use gtk_xtext_search_textentry()RichardHitt
2012-07-26Fix memory leak in lastlogRichard Hitt
2012-07-25Initial support for lastlog -r on win32 (Richard)Richard Hitt
2012-07-21Add extension filter for file dialogs, specify filters and starting folder fo...Berke Viktor
2012-07-21Some aid for compiler warningsBerke Viktor
2012-07-14Update XChat to r1516Berke Viktor
2012-07-13Another bunch of rebranding stuffBerke Viktor
2011-12-11initial patches for linux compatibilityBerke Viktor
2011-11-28supposed fix for xtray, but not working correctly yetBerke Viktor
2011-02-28add wdk changes to named branchberkeviktor@aol.com
2011-02-24add xchat r1489berkeviktor@aol.com
ound-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
:: run this from a VS x64 command prompt
@echo off

SET PACKAGE_NAME=gettext-runtime-0.18

set GETTEXT_SRC=%cd%
set GETTEXT_DEST=%cd%-x64
del CMakeCache.txt
rmdir /q /s CMakeFiles
cmake -G "NMake Makefiles" -DCMAKE_INSTALL_PREFIX=%GETTEXT_DEST% -DCMAKE_BUILD_TYPE=Release -DICONV_INCLUDE_DIR=%GETTEXT_SRC%\..\build\x64\include -DICONV_LIBRARIES=%GETTEXT_SRC%\..\build\x64\lib\iconv.lib
nmake clean
nmake
echo.Press return when ready to install!
pause

nmake install
nmake clean
copy COPYING %GETTEXT_DEST%\LICENSE.GETTEXT

cd %GETTEXT_DEST%
set PATH=%PATH%;%ProgramFiles%\7-zip
del ..\%PACKAGE_NAME%-x64.7z
7z a ..\%PACKAGE_NAME%-x64.7z *
cd %GETTEXT_SRC%
rmdir /q /s %GETTEXT_DEST%

echo.Finished!
pause