Skip to content
This repository has been archived by the owner on Oct 14, 2019. It is now read-only.

Commit

Permalink
Finalizing for 1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefansundin committed Dec 5, 2010
1 parent 210f65a commit 7f8c349
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion installer.nsi
@@ -1,4 +1,4 @@
;Copyright (C) 2009 Stefan Sundin (recover89@gmail.com)
;Copyright (C) 2010 Stefan Sundin (recover89@gmail.com)
;
;This program is free software: you can redistribute it and/or modify
;it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion localization/en-US/info.txt
Expand Up @@ -18,7 +18,7 @@ ShutdownGuard is open source, licensed under GPL.

Changelog
---------
1.0:
1.0 - 2010-12-05:
Added 64-bit executable. The installer will automatically install the correct executable.
Removed PatchApps. It has now been separated to a separate program. Read the wiki for more information.
Fixed some minor bugs.
Expand Down
2 changes: 1 addition & 1 deletion localization/es-ES/info.txt
Expand Up @@ -19,7 +19,7 @@ ShutdownGuard es un programa de c

Historial de cambios
--------------------
1.0:
1.0 - 2010-12-05:
Se a�adi� un ejecutable de 64-bits, el programa de instalaci�n seleccionar� el correcto.
Se elimin� PatchApps. Ahora se ha separado a un programa aparte, lee el wiki para m�s informaci�n.
Se corrigieron errores menores.
Expand Down
2 changes: 1 addition & 1 deletion localization/gl-ES/info.txt
Expand Up @@ -19,7 +19,7 @@ ShutdownGuard

Listaxe de Cambios:
-------------------
1.0:
1.0 - 2010-12-05:
Engadiuse un executable de 64-bits. O instalador escoller� a versi�n correcta autom�ticamente.
Eliminouse PatchApps. Agora existe como un programa aparte, le o wiki para m�is informaci�n.
Corrix�ronse erros menores.
Expand Down
2 changes: 1 addition & 1 deletion localization/nl-NL/info.txt
Expand Up @@ -16,7 +16,7 @@ ShutdownGuard is open source, gelicenseerd onder GPL.

Changelog
---------
1.0:
1.0 - 2010-12-05:
64-bit executable toegevoegd. Het installatieprogramma zal automatisch de goede executable kiezen.
PatchApps verwijderd. Het is nu een apart programma. Lees de wiki voor meer informatie.
Enkele bugs opgelost.
Expand Down
5 changes: 2 additions & 3 deletions localization/nn-NO/info.txt
Expand Up @@ -8,16 +8,15 @@ Trykk p
ShutdownGuard vil sjekke for oppdateringar automatisk. Du kan skrue av dette i ShutdownGuard.ini.

Vitj vevsida p� http://code.google.com/p/shutdownguard/
-Send tilbakemelding til recover89@gmail.com
+Visit the author's website at http://stefansundin.com/
Visit the author's website at http://stefansundin.com/

Om du tykkjer at programmet er hendig, vurder � gje ein donasjon.
Du kan finne ut korleis du donerer p� vevsida.
ShutdownGuard har open kjeldekode og GPL-lisensiert.

Endringslogg
---------
1.0:
1.0 - 2010-12-05:
La til 64-bits kj�refil. Installat�ren installerer den rikitige fila automatisk.
Fjerna PatchApps. Det har no vorte separert til eit eige program. Les wikien for meir informasjon.
Fiksa nokre mindre feil.
Expand Down
2 changes: 1 addition & 1 deletion localization/nn-NO/strings.h
Expand Up @@ -42,5 +42,5 @@ Når ShutdownGuard forhindrar noko, vil det kome ein sprettoppballong som spør
Trykk musehjulet for å opp avsluttingsdialogen.\n\
\n\
Vitj vevsida "APP_URL"\n\
Send tilbakemelding til recover89@gmail.com"
Visit the author's website at http://stefansundin.com/"
};
Binary file modified patcher/ShutdownPatcher.ini
Binary file not shown.
12 changes: 6 additions & 6 deletions patcher/build.bat
Expand Up @@ -17,20 +17,20 @@ if "%1" == "all" (
@echo.
echo Building binaries
if not exist "build\ShutdownPatcher". mkdir "build\ShutdownPatcher"
%prefix32%gcc -o "build\ShutdownPatcher\ShutdownPatcher.exe" patcher.c build\patcher.o -mwindows -lshlwapi -lwininet -lpsapi -O2 -s
%prefix32%gcc -o "build\ShutdownPatcher\ShutdownPatcher.exe" patcher.c build\patcher.o -mwindows -lshlwapi -lpsapi -O2 -s
if not exist "build\ShutdownPatcher\ShutdownPatcher.exe". exit /b
%prefix32%windres -o build\patch.o include\patch.rc
%prefix32%gcc -o "build\ShutdownPatcher\patch.dll" patch.c build\patch.o -mdll -O2 -s -DDEBUG
%prefix32%gcc -o "build\ShutdownPatcher\patch.dll" patch.c build\patch.o -mdll -O2 -s
if not exist "build\ShutdownPatcher\patch.dll". exit /b
copy "ShutdownPatcher.ini" "build\ShutdownPatcher"

if "%2" == "x64" (
if not exist "build\x64\ShutdownPatcher". mkdir "build\x64\ShutdownPatcher"
%prefix64%windres -o build\x64\patcher.o include\patcher.rc
%prefix64%gcc -o "build\x64\ShutdownPatcher\ShutdownPatcher.exe" patcher.c build\x64\patcher.o -mwindows -lshlwapi -lwininet -lpsapi -O2 -s
%prefix64%gcc -o "build\x64\ShutdownPatcher\ShutdownPatcher.exe" patcher.c build\x64\patcher.o -mwindows -lshlwapi -lpsapi -O2 -s
if not exist "build\x64\ShutdownPatcher\ShutdownPatcher.exe". exit /b
%prefix64%windres -o build\x64\patch_x64.o include\patch.rc
%prefix64%gcc -o "build\x64\ShutdownPatcher\patch_x64.dll" patch.c build\x64\patch_x64.o -mdll -O2 -s -DDEBUG
%prefix64%gcc -o "build\x64\ShutdownPatcher\patch_x64.dll" patch.c build\x64\patch_x64.o -mdll -O2 -s
if not exist "build\x64\ShutdownPatcher\patch_x64.dll". exit /b
copy "ShutdownPatcher.ini" "build\x64\ShutdownPatcher"

Expand All @@ -39,12 +39,12 @@ if "%1" == "all" (
) else if "%1" == "x64" (
if not exist "build\x64". mkdir "build\x64"
%prefix64%windres -o build\x64\patcher.o include\patcher.rc
%prefix64%gcc -o ShutdownPatcher.exe patcher.c build\x64\patcher.o -mwindows -lshlwapi -lwininet -lpsapi -g -DDEBUG
%prefix64%gcc -o ShutdownPatcher.exe patcher.c build\x64\patcher.o -mwindows -lshlwapi -lpsapi -g -DDEBUG
%prefix32%windres -o build\patch_x64.o include\patch.rc
%prefix32%gcc -o patch_x64.dll patch.c build\patch_x64.o -mdll -g -DDEBUG
) else (
%prefix32%windres -o build\patcher.o include\patcher.rc
%prefix32%gcc -o ShutdownPatcher.exe patcher.c build\patcher.o -mwindows -lshlwapi -lwininet -lpsapi -g -DDEBUG
%prefix32%gcc -o ShutdownPatcher.exe patcher.c build\patcher.o -mwindows -lshlwapi -lpsapi -g -DDEBUG
%prefix32%windres -o build\patch.o include\patch.rc
%prefix32%gcc -o patch.dll patch.c build\patch.o -mdll -g -DDEBUG

Expand Down

0 comments on commit 7f8c349

Please sign in to comment.