mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
Sync with trunk rev.61910 to get latest improvements and bugfixes.
svn path=/branches/ntvdm/; revision=61911
This commit is contained in:
@@ -20,7 +20,6 @@
|
||||
|
||||
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||||
|
||||
#define REACTOS_VERSION_DLL
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "xcopy command"
|
||||
#define REACTOS_STR_INTERNAL_NAME "xcopy"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "xcopy.exe"
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
|
||||
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||||
|
||||
#define REACTOS_VERSION_DLL
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "ReactX Diagnosis Tool"
|
||||
#define REACTOS_STR_INTERNAL_NAME "dxdiag"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "dxdiag.exe"
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
|
||||
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||||
|
||||
#define REACTOS_VERSION_DLL
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS System Configuration Tool"
|
||||
#define REACTOS_STR_INTERNAL_NAME "msconfig"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "msconfig.exe"
|
||||
|
||||
@@ -95,6 +95,17 @@ SaveDIBToFile(HBITMAP hBitmap, LPTSTR FileName, HDC hDC, LPSYSTEMTIME time, int
|
||||
HeapFree(GetProcessHeap(), 0, buffer);
|
||||
}
|
||||
|
||||
void ShowFileLoadError(LPTSTR name)
|
||||
{
|
||||
TCHAR programname[20];
|
||||
TCHAR loaderrortext[100];
|
||||
TCHAR temptext[500];
|
||||
LoadString(hProgInstance, IDS_PROGRAMNAME, programname, SIZEOF(programname));
|
||||
LoadString(hProgInstance, IDS_LOADERRORTEXT, loaderrortext, SIZEOF(loaderrortext));
|
||||
_stprintf(temptext, loaderrortext, name);
|
||||
MessageBox(hMainWnd, temptext, programname, MB_OK | MB_ICONEXCLAMATION);
|
||||
}
|
||||
|
||||
void
|
||||
LoadDIBFromFile(HBITMAP * hBitmap, LPTSTR name, LPSYSTEMTIME time, int *size, int *hRes, int *vRes)
|
||||
{
|
||||
@@ -105,18 +116,25 @@ LoadDIBFromFile(HBITMAP * hBitmap, LPTSTR name, LPSYSTEMTIME time, int *size, in
|
||||
HANDLE hFile;
|
||||
|
||||
if (!hBitmap)
|
||||
{
|
||||
ShowFileLoadError(name);
|
||||
return;
|
||||
}
|
||||
|
||||
hFile =
|
||||
CreateFile(name, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_FLAG_SEQUENTIAL_SCAN, NULL);
|
||||
if (hFile == INVALID_HANDLE_VALUE)
|
||||
{
|
||||
ShowFileLoadError(name);
|
||||
return;
|
||||
}
|
||||
|
||||
/* read header and check for 'BM' magic */
|
||||
ReadFile(hFile, &bfh, sizeof(BITMAPFILEHEADER), &dwBytesRead, NULL);
|
||||
if (bfh.bfType != 0x4d42)
|
||||
{
|
||||
CloseHandle(hFile);
|
||||
ShowFileLoadError(name);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -133,6 +151,7 @@ LoadDIBFromFile(HBITMAP * hBitmap, LPTSTR name, LPSYSTEMTIME time, int *size, in
|
||||
if (!bi)
|
||||
{
|
||||
CloseHandle(hFile);
|
||||
ShowFileLoadError(name);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@@ -16,3 +16,5 @@ void SaveDIBToFile(HBITMAP hBitmap, LPTSTR FileName, HDC hDC, LPSYSTEMTIME time,
|
||||
int vRes);
|
||||
|
||||
void LoadDIBFromFile(HBITMAP *hBitmap, LPTSTR name, LPSYSTEMTIME time, int *size, int *hRes, int *vRes);
|
||||
|
||||
void ShowFileLoadError(LPTSTR name);
|
||||
|
||||
@@ -409,6 +409,10 @@ _tWinMain (HINSTANCE hThisInstance, HINSTANCE hPrevInstance, LPTSTR lpszArgument
|
||||
clearHistory();
|
||||
isAFile = TRUE;
|
||||
}
|
||||
else
|
||||
{
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* initializing the CHOOSECOLOR structure for use with ChooseColor */
|
||||
@@ -489,6 +493,9 @@ _tWinMain (HINSTANCE hThisInstance, HINSTANCE hPrevInstance, LPTSTR lpszArgument
|
||||
/* Make the window visible on the screen */
|
||||
ShowWindow (hwnd, nFunsterStil);
|
||||
|
||||
/* inform the system, that the main window accepts dropped files */
|
||||
DragAcceptFiles(hwnd, TRUE);
|
||||
|
||||
/* Run the message loop. It will run until GetMessage() returns 0 */
|
||||
while (GetMessage(&messages, NULL, 0, 0))
|
||||
{
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
#include <commctrl.h>
|
||||
#include <tchar.h>
|
||||
#include <stdlib.h>
|
||||
#include <shellapi.h>
|
||||
|
||||
#include "definitions.h"
|
||||
#include "drawing.h"
|
||||
|
||||
@@ -11,8 +11,6 @@
|
||||
|
||||
#include "precomp.h"
|
||||
|
||||
#include <shellapi.h>
|
||||
|
||||
#include "dialogs.h"
|
||||
#include "registry.h"
|
||||
|
||||
@@ -162,6 +160,43 @@ saveImage(BOOL overwrite)
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
UpdateApplicationProperties(HBITMAP bitmap, LPTSTR newfilename, LPTSTR newfilepathname)
|
||||
{
|
||||
TCHAR tempstr[1000];
|
||||
TCHAR resstr[100];
|
||||
insertReversible(bitmap);
|
||||
updateCanvasAndScrollbars();
|
||||
CopyMemory(filename, newfilename, sizeof(filename));
|
||||
CopyMemory(filepathname, newfilepathname, sizeof(filepathname));
|
||||
LoadString(hProgInstance, IDS_WINDOWTITLE, resstr, SIZEOF(resstr));
|
||||
_stprintf(tempstr, resstr, filename);
|
||||
SetWindowText(hMainWnd, tempstr);
|
||||
clearHistory();
|
||||
isAFile = TRUE;
|
||||
}
|
||||
|
||||
void
|
||||
InsertSelectionFromHBITMAP(HBITMAP bitmap, HWND window)
|
||||
{
|
||||
HWND hToolbar = FindWindowEx(hToolBoxContainer, NULL, TOOLBARCLASSNAME, NULL);
|
||||
SendMessage(hToolbar, TB_CHECKBUTTON, ID_RECTSEL, MAKELONG(TRUE, 0));
|
||||
SendMessage(window, WM_COMMAND, ID_RECTSEL, 0);
|
||||
|
||||
DeleteObject(SelectObject(hSelDC, hSelBm = CopyImage(bitmap,
|
||||
IMAGE_BITMAP, 0, 0,
|
||||
LR_COPYRETURNORG)));
|
||||
newReversible();
|
||||
rectSel_src[0] = rectSel_src[1] = rectSel_src[2] = rectSel_src[3] = 0;
|
||||
rectSel_dest[0] = rectSel_dest[1] = 0;
|
||||
rectSel_dest[2] = GetDIBWidth(hSelBm);
|
||||
rectSel_dest[3] = GetDIBHeight(hSelBm);
|
||||
BitBlt(hDrawingDC, rectSel_dest[0], rectSel_dest[1], rectSel_dest[2], rectSel_dest[3],
|
||||
hSelDC, 0, 0, SRCCOPY);
|
||||
placeSelWin();
|
||||
ShowWindow(hSelection, SW_SHOW);
|
||||
}
|
||||
|
||||
BOOL drawing;
|
||||
|
||||
LRESULT CALLBACK
|
||||
@@ -169,6 +204,25 @@ WindowProcedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
switch (message) /* handle the messages */
|
||||
{
|
||||
case WM_DROPFILES:
|
||||
{
|
||||
HDROP drophandle;
|
||||
TCHAR droppedfile[MAX_PATH];
|
||||
HBITMAP bmNew = NULL;
|
||||
drophandle = (HDROP)wParam;
|
||||
DragQueryFile(drophandle, 0, droppedfile, SIZEOF(droppedfile));
|
||||
DragFinish(drophandle);
|
||||
LoadDIBFromFile(&bmNew, droppedfile, &fileTime, &fileSize, &fileHPPM, &fileVPPM);
|
||||
if (bmNew != NULL)
|
||||
{
|
||||
TCHAR *pathend;
|
||||
pathend = _tcsrchr(droppedfile, '\\');
|
||||
pathend++;
|
||||
UpdateApplicationProperties(bmNew, pathend, pathend);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case WM_CREATE:
|
||||
ptStack = NULL;
|
||||
ptSP = 0;
|
||||
@@ -785,27 +839,7 @@ WindowProcedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
|
||||
LoadDIBFromFile(&bmNew, ofn.lpstrFile, &fileTime, &fileSize, &fileHPPM, &fileVPPM);
|
||||
if (bmNew != NULL)
|
||||
{
|
||||
TCHAR tempstr[1000];
|
||||
TCHAR resstr[100];
|
||||
insertReversible(bmNew);
|
||||
updateCanvasAndScrollbars();
|
||||
CopyMemory(filename, ofn.lpstrFileTitle, sizeof(filename));
|
||||
CopyMemory(filepathname, ofn.lpstrFileTitle, sizeof(filepathname));
|
||||
LoadString(hProgInstance, IDS_WINDOWTITLE, resstr, SIZEOF(resstr));
|
||||
_stprintf(tempstr, resstr, filename);
|
||||
SetWindowText(hMainWnd, tempstr);
|
||||
clearHistory();
|
||||
isAFile = TRUE;
|
||||
}
|
||||
else
|
||||
{
|
||||
TCHAR programname[20];
|
||||
TCHAR loaderrortext[100];
|
||||
TCHAR temptext[500];
|
||||
LoadString(hProgInstance, IDS_PROGRAMNAME, programname, SIZEOF(programname));
|
||||
LoadString(hProgInstance, IDS_LOADERRORTEXT, loaderrortext, SIZEOF(loaderrortext));
|
||||
_stprintf(temptext, loaderrortext, ofn.lpstrFile);
|
||||
MessageBox(hwnd, temptext, programname, MB_OK | MB_ICONEXCLAMATION);
|
||||
UpdateApplicationProperties(bmNew, ofn.lpstrFileTitle, ofn.lpstrFileTitle);
|
||||
}
|
||||
}
|
||||
break;
|
||||
@@ -848,22 +882,7 @@ WindowProcedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
|
||||
OpenClipboard(hMainWnd);
|
||||
if (GetClipboardData(CF_BITMAP) != NULL)
|
||||
{
|
||||
HWND hToolbar = FindWindowEx(hToolBoxContainer, NULL, TOOLBARCLASSNAME, NULL);
|
||||
SendMessage(hToolbar, TB_CHECKBUTTON, ID_RECTSEL, MAKELONG(TRUE, 0));
|
||||
SendMessage(hwnd, WM_COMMAND, ID_RECTSEL, 0);
|
||||
|
||||
DeleteObject(SelectObject(hSelDC, hSelBm = CopyImage(GetClipboardData(CF_BITMAP),
|
||||
IMAGE_BITMAP, 0, 0,
|
||||
LR_COPYRETURNORG)));
|
||||
newReversible();
|
||||
rectSel_src[0] = rectSel_src[1] = rectSel_src[2] = rectSel_src[3] = 0;
|
||||
rectSel_dest[0] = rectSel_dest[1] = 0;
|
||||
rectSel_dest[2] = GetDIBWidth(hSelBm);
|
||||
rectSel_dest[3] = GetDIBHeight(hSelBm);
|
||||
BitBlt(hDrawingDC, rectSel_dest[0], rectSel_dest[1], rectSel_dest[2], rectSel_dest[3],
|
||||
hSelDC, 0, 0, SRCCOPY);
|
||||
placeSelWin();
|
||||
ShowWindow(hSelection, SW_SHOW);
|
||||
InsertSelectionFromHBITMAP(GetClipboardData(CF_BITMAP), hwnd);
|
||||
}
|
||||
CloseClipboard();
|
||||
break;
|
||||
@@ -899,6 +918,18 @@ WindowProcedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
|
||||
if (GetSaveFileName(&ofn) != 0)
|
||||
SaveDIBToFile(hSelBm, ofn.lpstrFile, hDrawingDC, NULL, NULL, fileHPPM, fileVPPM);
|
||||
break;
|
||||
case IDM_EDITPASTEFROM:
|
||||
if (GetOpenFileName(&ofn) != 0)
|
||||
{
|
||||
HBITMAP bmNew = NULL;
|
||||
LoadDIBFromFile(&bmNew, ofn.lpstrFile, &fileTime, &fileSize, &fileHPPM, &fileVPPM);
|
||||
if (bmNew != NULL)
|
||||
{
|
||||
InsertSelectionFromHBITMAP(bmNew, hwnd);
|
||||
DeleteObject(bmNew);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case IDM_COLORSEDITPALETTE:
|
||||
if (ChooseColor(&choosecolor))
|
||||
{
|
||||
|
||||
@@ -25,7 +25,7 @@ add_executable(rapps ${SOURCE})
|
||||
add_pch(rapps rapps.h)
|
||||
set_module_type(rapps win32gui UNICODE)
|
||||
target_link_libraries(rapps uuid)
|
||||
add_importlibs(rapps advapi32 comctl32 gdi32 urlmon user32 shell32 shlwapi ole32 msvcrt kernel32 ntdll)
|
||||
add_importlibs(rapps advapi32 comctl32 gdi32 urlmon wininet user32 shell32 shlwapi ole32 msvcrt kernel32 ntdll)
|
||||
add_dependencies(rapps rappsmsg)
|
||||
add_message_headers(ANSI rappsmsg.mc)
|
||||
add_cd_file(TARGET rapps DESTINATION reactos/system32 FOR all)
|
||||
|
||||
@@ -26,6 +26,8 @@
|
||||
*/
|
||||
|
||||
#include "rapps.h"
|
||||
#include <wininet.h>
|
||||
#include <shellapi.h>
|
||||
|
||||
static PAPPLICATION_INFO AppInfo;
|
||||
static HICON hIcon = NULL;
|
||||
@@ -206,13 +208,18 @@ ThreadFunc(LPVOID Context)
|
||||
IBindStatusCallback *dl;
|
||||
WCHAR path[MAX_PATH];
|
||||
LPWSTR p;
|
||||
STARTUPINFOW si;
|
||||
PROCESS_INFORMATION pi;
|
||||
HWND Dlg = (HWND) Context;
|
||||
DWORD r, len;
|
||||
DWORD len, dwContentLen, dwBytesWritten, dwBytesRead;
|
||||
DWORD dwCurrentBytesRead = 0;
|
||||
DWORD dwBufLen = sizeof(dwContentLen);
|
||||
BOOL bCancelled = FALSE;
|
||||
BOOL bTempfile = FALSE;
|
||||
BOOL bCab = FALSE;
|
||||
HINTERNET hOpen = NULL;
|
||||
HINTERNET hFile = NULL;
|
||||
HANDLE hOut = NULL;
|
||||
unsigned char lpBuffer[4096];
|
||||
const LPWSTR lpszAgent = L"RApps/1.0";
|
||||
|
||||
/* built the path for the download */
|
||||
p = wcsrchr(AppInfo->szUrlDownload, L'/');
|
||||
@@ -255,24 +262,43 @@ ThreadFunc(LPVOID Context)
|
||||
/* download it */
|
||||
bTempfile = TRUE;
|
||||
dl = CreateDl(Context, &bCancelled);
|
||||
r = URLDownloadToFileW(NULL, AppInfo->szUrlDownload, path, 0, dl);
|
||||
|
||||
hOpen = InternetOpenW(lpszAgent, INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
|
||||
if (!hOpen) goto end;
|
||||
|
||||
hFile = InternetOpenUrlW(hOpen, AppInfo->szUrlDownload, NULL, 0, INTERNET_FLAG_PRAGMA_NOCACHE|INTERNET_FLAG_KEEP_CONNECTION, 0);
|
||||
if(!hFile) goto end;
|
||||
|
||||
hOut = CreateFileW(path, GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, CREATE_ALWAYS, 0, NULL);
|
||||
if (hOut == INVALID_HANDLE_VALUE) goto end;
|
||||
|
||||
HttpQueryInfo(hFile, HTTP_QUERY_CONTENT_LENGTH | HTTP_QUERY_FLAG_NUMBER, &dwContentLen, &dwBufLen, 0);
|
||||
|
||||
do
|
||||
{
|
||||
if (!InternetReadFile(hFile, lpBuffer, _countof(lpBuffer), &dwBytesRead)) goto end;
|
||||
if (!WriteFile(hOut, &lpBuffer[0], dwBytesRead, &dwBytesWritten, NULL)) goto end;
|
||||
dwCurrentBytesRead += dwBytesRead;
|
||||
IBindStatusCallback_OnProgress(dl, dwCurrentBytesRead, dwContentLen, 0, AppInfo->szUrlDownload);
|
||||
}
|
||||
while (dwBytesRead);
|
||||
|
||||
CloseHandle(hOut);
|
||||
if (dl) IBindStatusCallback_Release(dl);
|
||||
if (S_OK != r) goto end;
|
||||
else if (bCancelled) goto end;
|
||||
if (bCancelled) goto end;
|
||||
|
||||
ShowWindow(Dlg, SW_HIDE);
|
||||
|
||||
/* run it */
|
||||
ZeroMemory(&si, sizeof(si));
|
||||
si.cb = sizeof(si);
|
||||
r = CreateProcessW(path, NULL, NULL, NULL, 0, 0, NULL, NULL, &si, &pi);
|
||||
if (0 == r) goto end;
|
||||
|
||||
CloseHandle(pi.hThread);
|
||||
WaitForSingleObject(pi.hProcess, INFINITE);
|
||||
CloseHandle(pi.hProcess);
|
||||
|
||||
if (!bCab)
|
||||
{
|
||||
ShellExecuteW( NULL, L"open", path, NULL, NULL, SW_SHOWNORMAL );
|
||||
}
|
||||
end:
|
||||
CloseHandle(hOut);
|
||||
InternetCloseHandle(hFile);
|
||||
InternetCloseHandle(hOpen);
|
||||
|
||||
if (bTempfile)
|
||||
{
|
||||
if (bCancelled || (SettingsInfo.bDelInstaller && !bCab))
|
||||
|
||||
@@ -36,6 +36,7 @@ Size = 1,1 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = 7z, zip, tar, rar ve diğer birçok sıkıştırma biçimini destekleyen bir araç.
|
||||
Size = 1,1 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Утиліта для створення та відкриття 7zip, zip, tar, rar та інших архівних файлів.
|
||||
|
||||
@@ -36,6 +36,7 @@ Size = 9,4 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = Bir kelime işlemci.
|
||||
Size = 9,4 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Текстовий процесор.
|
||||
|
||||
@@ -36,6 +36,7 @@ Size = 5,64 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = Bir kelime işlemci.
|
||||
Size = 5,64 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Текстовий процесор.
|
||||
|
||||
@@ -41,6 +41,7 @@ Size = 2,1 Mo
|
||||
Name = Abyss Örütbağ Sunucusu X1
|
||||
Licence = Ücretsiz
|
||||
Description = Abyss Örütbağ Sunucusu, bilgisayarda örütbağ sitelerinin yayınlanmasını sağlar. Abyss Örütbağ Sunucusu, güvenli SSL/TLS bağlantılarını (HTTPS), örütbağ teknikbiliminin geniş yelpâzesiyle destekler. Abyss Örütbağ Sunucusu; MySQL, SQLite, MS SQL Server, MS Access, ve Oracle gibi veritabanlarını destekleyen gelişmiş PHP, Perl, Python, ASP, ASP.NET ve Rails üzerinde Ruby örütbağ uygulamalarını çalıştırabilir.
|
||||
Size = 2,1 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Abyss Web Server дозволить вам утримувати веб-сайти на вашому комп'ютері. Від підтримує безпечні SSL/TLS з'єднання (HTTPS) та великий ряд веб-технологій. Він також запускає PHP, Perl, Python, ASP, ASP.NET, та Ruby on Rails веб-додатки, які можуть підтримуватись такими базами даних, як MySQL, SQLite, MS SQL Server, MS Access, чи Oracle.
|
||||
|
||||
@@ -61,6 +61,7 @@ Description = Pазархивируйте содержимое в папку "Re
|
||||
Name = VirtualBox için AC97 Sürücüsü
|
||||
Licence = Bilinmiyor
|
||||
Description = Bunu ReactOS'un dizinine çıkartıp bilgisayarı iki kez yeniden başlatınız.
|
||||
Size = 185,5 KB
|
||||
|
||||
[Section.0422]
|
||||
Name = Драйвер AC97 для VirtualBox
|
||||
|
||||
@@ -21,3 +21,4 @@ Size = 4,6 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = Bir FB2 e-Kitap ouyucusu.
|
||||
Size = 4,6 MB
|
||||
|
||||
@@ -23,3 +23,4 @@ Size = 632 ko
|
||||
Name = Karıncalar
|
||||
Licence = Ücretsiz
|
||||
Description = Bir kartlarla izlem oyunu. Kalenizi bitirmeye veyâ rakip kaleyi yıkmaya çalışın. Yazılımı kurmak için ZIP biçiminde çıkartma yeteneği olan bir yazılım gerekir.
|
||||
Size = 632 KB
|
||||
|
||||
@@ -39,6 +39,7 @@ Size = 4,35 Mo
|
||||
Name = Ses Yakalayıcısı
|
||||
Licence = Ücretsiz
|
||||
Description = Çok iyi bir CD ripleyicisi ve ses biçimi dönüştürücüsü.
|
||||
Size = 4,35 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Чудовий CD Ріппер/Конвертер аудіо файлів.
|
||||
|
||||
@@ -30,3 +30,4 @@ Size = 1,07 Mo
|
||||
[Section.041f]
|
||||
Licence = Ticârî olmayan kullanımlarda ücretsiz.
|
||||
Description = Özgün BitTorrent istemcisi.
|
||||
Size = 1,07 MB
|
||||
|
||||
@@ -8,7 +8,7 @@ Description = Bochs is a highly portable open source IA-32 (x86) PC emulator wri
|
||||
Size = 4.7 MB
|
||||
Category = 15
|
||||
URLSite = http://bochs.sourceforge.net/
|
||||
URLDownload = http://heanet.dl.sourceforge.net/project/bochs/bochs/2.6.2/Bochs-2.6.2.exe
|
||||
URLDownload = http://download.sourceforge.net/project/bochs/bochs/2.6.2/Bochs-2.6.2.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
@@ -20,3 +20,4 @@ Size = 4,7 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = Bochs; son derece taşınabilir, C++ ile yazılmış, en bilinen platformlarda çalışan, açık kaynak bir IA-32 (x86) PC öykünücüsüdür.
|
||||
Size = 4,7 MB
|
||||
|
||||
@@ -24,3 +24,4 @@ Size = 62,3 Mo
|
||||
[Section.041f]
|
||||
Name = Bos Savaşları
|
||||
Description = Bos Savaşları, gelecekçi ve gerçek zamanlı bir izlem oyunudur. Oyunu başlatmak için Mikroyazılım Basarî C++ 2008 Yürütücüsü'nü kurunuz.
|
||||
Size = 62,3 MB
|
||||
|
||||
@@ -23,3 +23,4 @@ Size = 2,3 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = Chromium B.S.U., atari salonu oyunu türünde, üst kaydırmalı bir uzay nişancısıdır.
|
||||
Size = 2,3 MB
|
||||
|
||||
@@ -30,3 +30,4 @@ Size = 1,3 Mo
|
||||
Name = Click-N-Type Farazî Düğme Takımı
|
||||
Licence = Ücretsiz
|
||||
Description = Ücretsiz bir farazî düğme takımı uygulaması.
|
||||
Size = 1,3 MB
|
||||
|
||||
@@ -45,6 +45,7 @@ Size = 913,73 ko
|
||||
Name = Mikroyazılım Basarî Basic 6.0 Ortak Denetimler
|
||||
Licence = Bilinmiyor
|
||||
Description = Birtakım uygulamalar için gereklidir. Şunları içerir: comctl32.ocx, mscomctl.ocx, advpack.dll.
|
||||
Size = 913,73 KB
|
||||
|
||||
[Section.0422]
|
||||
Licence = Невідома
|
||||
|
||||
@@ -39,6 +39,7 @@ Size = 131,9 Mo
|
||||
Name = Şeytan II
|
||||
Licence = Kısıtlı
|
||||
Description = Şeytan 2'nin kısıtlısı. Çalıştırmak için zeckensack'ın glide çeviricisi gereklidir.
|
||||
Size = 131,9 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Diablo 2 Shareware. Для запуску потрібен zeckensack's glide wrapper.
|
||||
|
||||
@@ -8,7 +8,7 @@ Description = DosBlaster is a Shell extension which makes it possible to open an
|
||||
Size = 2.05 MB
|
||||
Category = 15
|
||||
URLSite = http://dosblaster.sourceforge.net/
|
||||
URLDownload = http://surfnet.dl.sourceforge.net/project/dosblaster/DosBlaster%202.5%20%28x86%29/Downloads/DosbasterSetup_2_5.exe
|
||||
URLDownload = http://download.sourceforge.net/project/dosblaster/DosBlaster%202.5%20%28x86%29/Downloads/DosbasterSetup_2_5.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
@@ -36,6 +36,7 @@ Size = 2,05 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = DosBlaster, bir DOS uygulamasını sağ tıklamayla DOSBox'ta çalıştırabilmesini sağlayan bir kabuk uzantısıdır. Bu sürüm, DOSBox 0.70 içerir ancak daha yeni bir DOSBox'u DosBlaster dizinlerinin içine kurarak bunu kolayca yükseltebilirsiniz.
|
||||
Size = 2,05 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = DosBlaster це розширення оболонки, яке дозволяє запустити будь-який виконавчий файл DOS в DOSBox через правий клік. Ця версія містить DOSBox 0.70, але може бути оновлена встановленням новішої версії DOSBox в теки DosBlaster.
|
||||
|
||||
@@ -8,7 +8,7 @@ Description = DOSBox is a DOS emulator.
|
||||
Size = 1.38 MB
|
||||
Category = 15
|
||||
URLSite = http://www.dosbox.com/
|
||||
URLDownload = http://garr.dl.sourceforge.net/project/dosbox/dosbox/0.74/DOSBox0.74-win32-installer.exe
|
||||
URLDownload = http://download.sourceforge.net/project/dosbox/dosbox/0.74/DOSBox0.74-win32-installer.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
@@ -33,6 +33,7 @@ Size = 1,38 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = DOSBox, bir DOS öykünücüsüdür.
|
||||
Size = 1,38 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = DOSBox - емулятор DOSу.
|
||||
|
||||
@@ -8,7 +8,7 @@ Description = Double Commander is an open source file manager with two panels si
|
||||
Size = 7.5 MB
|
||||
Category = 12
|
||||
URLSite = http://doublecmd.sourceforge.net/
|
||||
URLDownload = http://freefr.dl.sourceforge.net/project/doublecmd/DC%20for%20Windows%2032%20bit/Double%20Commander%200.5.8%20beta/doublecmd-0.5.8.i386-win32.exe
|
||||
URLDownload = http://download.sourceforge.net/project/doublecmd/DC%20for%20Windows%2032%20bit/Double%20Commander%200.5.8%20beta/doublecmd-0.5.8.i386-win32.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
@@ -32,7 +32,9 @@ Description = Double Commander - это открытый двухпанельн
|
||||
|
||||
[Section.041f]
|
||||
Name = İkili Komutan
|
||||
Version = 0.5.8 Gelişme
|
||||
Description = İkili Komutan, yan yana duran iki bölmenin bulunduğu bir açık kaynak kütük yöneticisidir. Bunu çıkartmak için 7-Zip ya da 7-Zip benzeri bir yazılım kullanmanız gerekir.
|
||||
Size = 7,5 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Double Commander - це відкритий двопанельний файловий менеджер. Вам потрібен 7-Zip або подібна утиліта щоб розпакувати його.
|
||||
|
||||
@@ -30,3 +30,4 @@ URLSite = http://dwn.alter.org.ua/ru/
|
||||
Name = DVD Şimdi Yaz
|
||||
Licence = Ücretsiz
|
||||
Description = Ücretsiz bir doğrudan CD/DVD kaydedicisi. Kurulur kurulmaz CD/DVD RW'leri çıkartılabilir disk olarak kullanabilirsiniz. Bununla birlikte CD/DVD RW'leri UDF kütük dizgesiyle kaydedebilirsiniz. Ayrıca, Mikroyazılım DVD−ROM'ları, Ahead InCD ile kaydedilen RW diskleri gibi diğer yazılımlarla oluşturulan UDF diskleri okutabilirsiniz. Yazılımı kurmak için ZIP biçiminde çıkartma yeteneği olan bir yazılım gerekir.
|
||||
Size = 1,2 MB
|
||||
|
||||
@@ -37,6 +37,7 @@ Size = 1,89 Mo
|
||||
[Section.041f]
|
||||
Name = Tilki Ses Oynatıcısı
|
||||
Description = Bayağı ve yeğni bir ses oynatıcısı.
|
||||
Size = 1,89 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Простий та маленький програвач аудіо файлів.
|
||||
|
||||
@@ -19,3 +19,9 @@ Description = Mozilla Fira Font Pack, Beinhaltet Mono und Sans Schriften. Bitte
|
||||
Licence = Nespecificată
|
||||
Description = Pachetul Mozilla Fira Font, include fonturile Mono și Sans. Dezarhivați în dosarul „ReactOS”.
|
||||
Size = 543 ko
|
||||
|
||||
[Section.041f]
|
||||
Name = Mozilla Fira Yazı Türü
|
||||
Licence = Bilinmiyor
|
||||
Description = Mozilla Fira Yazı Türü Paketi, Mono ve Sans yazı türlerini kapsar. ReactOS'un "Fonts" dizinine çıkartınız.
|
||||
Size = 543 KB
|
||||
|
||||
@@ -14,72 +14,71 @@ CDPath = none
|
||||
[Section.0407]
|
||||
Description = Der populärste und einer der besten freien Webbrowser.
|
||||
Size = 22.8 MB
|
||||
URLSite = http://www.mozilla-europe.org/de/
|
||||
URLSite = http://www.mozilla.org/de/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/26.0/win32/de/Firefox%20Setup%2026.0.exe
|
||||
|
||||
[Section.040a]
|
||||
Description = El más popular y uno de los mejores navegadores web gratuitos que hay.
|
||||
Size = 22.7 MB
|
||||
URLSite = http://www.mozilla-europe.org/es/
|
||||
URLSite = http://www.mozilla.org/es-ES/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/26.0/win32/es-ES/Firefox%20Setup%2026.0.exe
|
||||
|
||||
[Section.040c]
|
||||
Description = Le navigateur web gratuit le plus populaire et l'un des meilleurs.
|
||||
Size = 23,0 Mo
|
||||
URLSite = http://www.mozilla-europe.org/fr/
|
||||
URLSite = http://www.mozilla.org/fr/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/26.0/win32/fr/Firefox%20Setup%2026.0.exe
|
||||
|
||||
[Section.0410]
|
||||
Description = Il più popolare e uno dei migliori web browser gratuiti.
|
||||
Size = 22.7 MB
|
||||
URLSite = http://www.mozilla-europe.org/it/
|
||||
URLSite = http://www.mozilla.org/it/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/26.0/win32/it/Firefox%20Setup%2026.0.exe
|
||||
|
||||
[Section.0413]
|
||||
Description = De meest populaire en een van de beste gratis Web browsers.
|
||||
Size = 23.4 MB
|
||||
URLSite = http://www.mozilla-europe.org/nl/
|
||||
URLSite = http://www.mozilla.org/nl/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/26.0/win32/nl/Firefox%20Setup%2026.0.exe
|
||||
|
||||
[Section.0414]
|
||||
Description = Mest populære og best også gratis nettleserene der ute.
|
||||
Size = 22.8 MB
|
||||
URLSite = http://www.mozilla-europe.org/no/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/26.0/win32/nb-NO/Firefox%20Setup%2026.0.exe
|
||||
|
||||
[Section.0415]
|
||||
Description = Najpopularniejsza i jedna z najlepszych darmowych przeglądarek internetowych.
|
||||
Size = 23.7 MB
|
||||
URLSite = http://www.mozilla-europe.org/pl/
|
||||
URLSite = http://www.mozilla.org/pl/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/26.0/win32/pl/Firefox%20Setup%2026.0.exe
|
||||
|
||||
[Section.0418]
|
||||
Description = Cel mai popular și unul dintre cele mai bune navigatoare web gratuite existente.
|
||||
Size = 23,3 Mo
|
||||
URLSite = http://www.mozilla-europe.org/ro/
|
||||
URLSite = http://www.mozilla.org/ro/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/26.0/win32/ro/Firefox%20Setup%2026.0.exe
|
||||
|
||||
[Section.0419]
|
||||
Description = Один из самых популярных и лучших бесплатных браузеров.
|
||||
Size = 23,2 MB
|
||||
URLSite = http://www.mozilla-europe.org/ru/
|
||||
URLSite = http://www.mozilla.org/ru/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/26.0/win32/ru/Firefox%20Setup%2026.0.exe
|
||||
|
||||
[Section.041b]
|
||||
Description = Najpopulárnejší a jeden z najlepších slobodný webových prehliadačov.
|
||||
Size = 23,4 MB
|
||||
URLSite = http://www.mozilla-europe.org/sk/
|
||||
URLSite = http://www.mozilla.org/sk/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/26.0/win32/sk/Firefox%20Setup%2026.0.exe
|
||||
|
||||
[Section.041f]
|
||||
Name = Mozilla Ateştilkisi 26
|
||||
Description = Özgür örütbağ tarayıcıları arasında en tutulanı ve en iyisi.
|
||||
Size = 22,8 MB
|
||||
URLSite = http://www.mozilla.org/tr/firefox/new/
|
||||
URLSite = http://www.mozilla.org/tr/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/26.0/win32/tr/Firefox%20Setup%2026.0.exe
|
||||
|
||||
[Section.0422]
|
||||
Description = Найпопулярніший та один з кращих безплатних веб-браузерів.
|
||||
Size = 23,2 MB
|
||||
URLSite = http://www.mozilla-europe.org/uk/
|
||||
URLSite = http://www.mozilla.org/uk/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/26.0/win32/uk/Firefox%20Setup%2026.0.exe
|
||||
|
||||
@@ -8,65 +8,89 @@ Description = The most popular and one of the best free Web Browsers out there.
|
||||
Size = 5.77 MB
|
||||
Category = 5
|
||||
URLSite = http://www.mozilla.org/en-US/
|
||||
URLDownload = http://svn.reactos.org/packages/Firefox%20Setup%202.0.0.20.exe
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/en-US/Firefox%20Setup%202.0.0.20.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0405]
|
||||
Description = Nejpopulárnější a jeden z nejlepších svobodných webových prohlížečů.
|
||||
URLSite = http://www.mozilla-europe.org/cs/
|
||||
Size = 5.59 MB
|
||||
URLSite = http://www.mozilla.org/cs/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/cs/Firefox%20Setup%202.0.0.20.exe
|
||||
|
||||
[Section.0407]
|
||||
Description = Der populärste und einer der besten freien Webbrowser.
|
||||
URLSite = http://www.mozilla-europe.org/de/
|
||||
Size = 5.58 MB
|
||||
URLSite = http://www.mozilla.org/de/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/de/Firefox%20Setup%202.0.0.20.exe
|
||||
|
||||
[Section.040a]
|
||||
Description = El más popular y uno de los mejores navegadores web gratuitos que hay.
|
||||
URLSite = http://www.mozilla-europe.org/es/
|
||||
Size = 5.57 MB
|
||||
URLSite = http://www.mozilla.org/es-ES/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/es-ES/Firefox%20Setup%202.0.0.20.exe
|
||||
|
||||
[Section.040c]
|
||||
Description = Le navigateur web gratuit le plus populaire et l'un des meilleurs.
|
||||
Size = 5,77 Mo
|
||||
URLSite = http://www.mozilla-europe.org/fr/
|
||||
Size = 5,85 Mo
|
||||
URLSite = http://www.mozilla.org/fr/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/fr/Firefox%20Setup%202.0.0.20.exe
|
||||
|
||||
[Section.0410]
|
||||
Description = Il più popolare e uno dei migliori web browser gratuiti.
|
||||
URLSite = http://www.mozilla-europe.org/it/
|
||||
Size = 5.57 MB
|
||||
URLSite = http://www.mozilla.org/it/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/it/Firefox%20Setup%202.0.0.20.exe
|
||||
|
||||
[Section.0413]
|
||||
Description = De meest populaire en een van de beste gratis Web browsers.
|
||||
URLSite = http://www.mozilla-europe.org/nl/
|
||||
Size = 5.59 MB
|
||||
URLSite = http://www.mozilla.org/nl/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/nl/Firefox%20Setup%202.0.0.20.exe
|
||||
|
||||
[Section.0414]
|
||||
Description = Mest populære og best også gratis nettleserene der ute.
|
||||
URLSite = http://www.mozilla-europe.org/no/
|
||||
Size = 5.59 MB
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/nb-NO/Firefox%20Setup%202.0.0.20.exe
|
||||
|
||||
[Section.0415]
|
||||
Description = Najpopularniejsza i jedna z najlepszych darmowych przeglądarek internetowych.
|
||||
URLSite = http://www.mozilla-europe.org/pl/
|
||||
Size = 6.39 MB
|
||||
URLSite = http://www.mozilla.org/pl/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/pl/Firefox%20Setup%202.0.0.20.exe
|
||||
|
||||
[Section.0418]
|
||||
Description = Cel mai popular și unul dintre cele mai bune navigatoare web gratuite existente.
|
||||
Size = 5,77 Mo
|
||||
URLSite = http://www.mozilla-europe.org/ro/
|
||||
Size = 5,58 Mo
|
||||
URLSite = http://www.mozilla.org/ro/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/ro/Firefox%20Setup%202.0.0.20.exe
|
||||
|
||||
[Section.0419]
|
||||
Description = Один из самых популярных и лучших бесплатных браузеров.
|
||||
URLSite = http://www.mozilla-europe.org/ru/
|
||||
Size = 6.37 MB
|
||||
URLSite = http://www.mozilla.org/ru/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/ru/Firefox%20Setup%202.0.0.20.exe
|
||||
|
||||
[Section.041b]
|
||||
Description = Najpopulárnejší a jeden z najlepších slobodný webových prehliadačov.
|
||||
URLSite = http://www.mozilla-europe.org/sk/
|
||||
Size = 6.06 MB
|
||||
URLSite = http://www.mozilla.org/sk/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/sk/Firefox%20Setup%202.0.0.20.exe
|
||||
|
||||
[Section.041f]
|
||||
Name = Mozilla Ateştilkisi 2.0
|
||||
Description = Özgür örütbağ tarayıcıları arasında en tutulanı ve en iyisi.
|
||||
URLSite = http://www.mozilla.org/tr/firefox/new/
|
||||
Size = 5,58 MB
|
||||
URLSite = http://www.mozilla.org/tr/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/tr/Firefox%20Setup%202.0.0.20.exe
|
||||
|
||||
[Section.0422]
|
||||
Description = Найпопулярніший та один з кращих безплатних веб-браузерів.
|
||||
URLSite = http://www.mozilla-europe.org/uk/
|
||||
Size = 5.86 MB
|
||||
URLSite = http://www.mozilla.org/uk/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/uk/Firefox%20Setup%202.0.0.20.exe
|
||||
|
||||
[Section.0813]
|
||||
Description = De meest populaire en een van de beste gratis Web browsers.
|
||||
URLSite = http://www.mozilla-europe.org/nl/
|
||||
Size = 5.59 MB
|
||||
URLSite = http://www.mozilla.org/nl/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/nl/Firefox%20Setup%202.0.0.20.exe
|
||||
|
||||
@@ -8,65 +8,89 @@ Description = The most popular and one of the best free Web Browsers out there.
|
||||
Size = 7.16 MB
|
||||
Category = 5
|
||||
URLSite = http://www.mozilla.org/en-US/
|
||||
URLDownload = http://svn.reactos.org/packages/Firefox%20Setup%203.0.19.exe
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.0.19-real-real/win32/en-US/Firefox%20Setup%203.0.19.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0405]
|
||||
Description = Nejpopulárnější a jeden z nejlepších svobodných webových prohlížečů.
|
||||
URLSite = http://www.mozilla-europe.org/cs/
|
||||
Size = 7.00 MB
|
||||
URLSite = http://www.mozilla.org/cs/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.0.19-real-real/win32/cs/Firefox%20Setup%203.0.19.exe
|
||||
|
||||
[Section.0407]
|
||||
Description = Der populärste und einer der besten freien Webbrowser.
|
||||
URLSite = http://www.mozilla-europe.org/de/
|
||||
Size = 7.00 MB
|
||||
URLSite = http://www.mozilla.org/de/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.0.19-real-real/win32/de/Firefox%20Setup%203.0.19.exe
|
||||
|
||||
[Section.040a]
|
||||
Description = El más popular y uno de los mejores navegadores web gratuitos que hay.
|
||||
URLSite = http://www.mozilla-europe.org/es/
|
||||
Size = 6.99 MB
|
||||
URLSite = http://www.mozilla.org/es-ES/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.0.19-real-real/win32/es-ES/Firefox%20Setup%203.0.19.exe
|
||||
|
||||
[Section.040c]
|
||||
Description = Le navigateur web gratuit le plus populaire et l'un des meilleurs.
|
||||
Size = 7,16 Mo
|
||||
URLSite = http://www.mozilla-europe.org/fr/
|
||||
Size = 7,25 Mo
|
||||
URLSite = http://www.mozilla.org/fr/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.0.19-real-real/win32/fr/Firefox%20Setup%203.0.19.exe
|
||||
|
||||
[Section.0410]
|
||||
Description = Il più popolare e uno dei migliori web browser gratuiti.
|
||||
URLSite = http://www.mozilla-europe.org/it/
|
||||
Size = 6.99 MB
|
||||
URLSite = http://www.mozilla.org/it/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.0.19-real-real/win32/it/Firefox%20Setup%203.0.19.exe
|
||||
|
||||
[Section.0413]
|
||||
Description = De meest populaire en een van de beste gratis Web browsers.
|
||||
URLSite = http://www.mozilla-europe.org/nl/
|
||||
Size = 7.76 MB
|
||||
URLSite = http://www.mozilla.org/nl/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.0.19-real-real/win32/nl/Firefox%20Setup%203.0.19.exe
|
||||
|
||||
[Section.0414]
|
||||
Description = Mest populære og best også gratis nettleserene der ute.
|
||||
URLSite = http://www.mozilla-europe.org/no/
|
||||
Size = 7.00 MB
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.0.19-real-real/win32/nb-NO/Firefox%20Setup%203.0.19.exe
|
||||
|
||||
[Section.0415]
|
||||
Description = Najpopularniejsza i jedna z najlepszych darmowych przeglądarek internetowych.
|
||||
URLSite = http://www.mozilla-europe.org/pl/
|
||||
Size = 7.83 MB
|
||||
URLSite = http://www.mozilla.org/pl/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.0.19-real-real/win32/pl/Firefox%20Setup%203.0.19.exe
|
||||
|
||||
[Section.0418]
|
||||
Description = Cel mai popular și unul dintre cele mai bune navigatoare web gratuite existente.
|
||||
Size = 7,16 Mo
|
||||
URLSite = http://www.mozilla-europe.org/ro/
|
||||
Size = 7,38 Mo
|
||||
URLSite = http://www.mozilla.org/ro/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.0.19-real-real/win32/ro/Firefox%20Setup%203.0.19.exe
|
||||
|
||||
[Section.0419]
|
||||
Description = Один из самых популярных и лучших бесплатных браузеров.
|
||||
URLSite = http://www.mozilla-europe.org/ru/
|
||||
Size = 7.40 MB
|
||||
URLSite = http://www.mozilla.org/ru/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.0.19-real-real/win32/ru/Firefox%20Setup%203.0.19.exe
|
||||
|
||||
[Section.041b]
|
||||
Description = Najpopulárnejší a jeden z najlepších slobodný webových prehliadačov.
|
||||
URLSite = http://www.mozilla-europe.org/sk/
|
||||
Size = 7.47 MB
|
||||
URLSite = http://www.mozilla.org/sk/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.0.19-real-real/win32/sk/Firefox%20Setup%203.0.19.exe
|
||||
|
||||
[Section.041f]
|
||||
Name = Mozilla Ateştilkisi 3.0
|
||||
Description = Özgür örütbağ tarayıcıları arasında en tutulanı ve en iyisi.
|
||||
URLSite = http://www.mozilla.org/tr/firefox/new/
|
||||
Size = 7,00 MB
|
||||
URLSite = http://www.mozilla.org/tr/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.0.19-real-real/win32/tr/Firefox%20Setup%203.0.19.exe
|
||||
|
||||
[Section.0422]
|
||||
Description = Найпопулярніший та один з кращих безплатних веб-браузерів.
|
||||
URLSite = http://www.mozilla-europe.org/uk/
|
||||
Size = 7.33 MB
|
||||
URLSite = http://www.mozilla.org/uk/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.0.19-real-real/win32/uk/Firefox%20Setup%203.0.19.exe
|
||||
|
||||
[Section.0813]
|
||||
Description = De meest populaire en een van de beste gratis Web browsers.
|
||||
URLSite = http://www.mozilla-europe.org/nl/
|
||||
Size = 7.76 MB
|
||||
URLSite = http://www.mozilla.org/nl/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.0.19-real-real/win32/nl/Firefox%20Setup%203.0.19.exe
|
||||
|
||||
@@ -8,61 +8,83 @@ Description = The most popular and one of the best free Web Browsers out there.
|
||||
Size = 8.22 MB
|
||||
Category = 5
|
||||
URLSite = http://www.mozilla.org/en-US/
|
||||
URLDownload = http://svn.reactos.org/packages/Firefox%20Setup%203.6.28.exe
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.6.28/win32/en-US/Firefox%20Setup%203.6.28.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
Description = Der populärste und einer der besten freien Webbrowser.
|
||||
URLSite = http://www.mozilla-europe.org/de/
|
||||
Size = 8.22 MB
|
||||
URLSite = http://www.mozilla.org/de/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.6.28/win32/de/Firefox%20Setup%203.6.28.exe
|
||||
|
||||
[Section.040a]
|
||||
Description = El más popular y uno de los mejores navegadores web gratuitos que hay.
|
||||
URLSite = http://www.mozilla-europe.org/es/
|
||||
Size = 8.05 MB
|
||||
URLSite = http://www.mozilla.org/es-ES/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.6.28/win32/es-ES/Firefox%20Setup%203.6.28.exe
|
||||
|
||||
[Section.040c]
|
||||
Description = Le navigateur web gratuit le plus populaire et l'un des meilleurs.
|
||||
Size = 8,22 Mo
|
||||
URLSite = http://www.mozilla-europe.org/fr/
|
||||
Size = 8,28 Mo
|
||||
URLSite = http://www.mozilla.org/fr/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.6.28/win32/fr/Firefox%20Setup%203.6.28.exe
|
||||
|
||||
[Section.0410]
|
||||
Description = Il più popolare e uno dei migliori web browser gratuiti.
|
||||
URLSite = http://www.mozilla-europe.org/it/
|
||||
Size = 8.05 MB
|
||||
URLSite = http://www.mozilla.org/it/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.6.28/win32/it/Firefox%20Setup%203.6.28.exe
|
||||
|
||||
[Section.0413]
|
||||
Description = De meest populaire en een van de beste gratis Web browsers.
|
||||
URLSite = http://www.mozilla-europe.org/nl/
|
||||
Size = 8.87 MB
|
||||
URLSite = http://www.mozilla.org/nl/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.6.28/win32/nl/Firefox%20Setup%203.6.28.exe
|
||||
|
||||
[Section.0414]
|
||||
Description = Mest populære og best også gratis nettleserene der ute.
|
||||
URLSite = http://www.mozilla-europe.org/no/
|
||||
Size = 8.06 MB
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.6.28/win32/nb-NO/Firefox%20Setup%203.6.28.exe
|
||||
|
||||
[Section.0415]
|
||||
Description = Najpopularniejsza i jedna z najlepszych darmowych przeglądarek internetowych.
|
||||
URLSite = http://www.mozilla-europe.org/pl/
|
||||
Size = 8.90 MB
|
||||
URLSite = http://www.mozilla.org/pl/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.6.28/win32/pl/Firefox%20Setup%203.6.28.exe
|
||||
|
||||
[Section.0418]
|
||||
Description = Cel mai popular și unul dintre cele mai bune navigatoare web gratuite existente.
|
||||
Size = 8,22 Mo
|
||||
URLSite = http://www.mozilla-europe.org/ro/
|
||||
Size = 8,46 Mo
|
||||
URLSite = http://www.mozilla.org/ro/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.6.28/win32/ro/Firefox%20Setup%203.6.28.exe
|
||||
|
||||
[Section.0419]
|
||||
Description = Один из самых популярных и лучших бесплатных браузеров.
|
||||
URLSite = http://www.mozilla-europe.org/ru/
|
||||
Size = 8.46 MB
|
||||
URLSite = http://www.mozilla.org/ru/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.6.28/win32/ru/Firefox%20Setup%203.6.28.exe
|
||||
|
||||
[Section.041b]
|
||||
Description = Najpopulárnejší a jeden z najlepších slobodný webových prehliadačov.
|
||||
URLSite = http://www.mozilla-europe.org/sk/
|
||||
Size = 8.53 MB
|
||||
URLSite = http://www.mozilla.org/sk/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.6.28/win32/sk/Firefox%20Setup%203.6.28.exe
|
||||
|
||||
[Section.041f]
|
||||
Name = Mozilla Ateştilkisi 3.6
|
||||
Description = Özgür örütbağ tarayıcıları arasında en tutulanı ve en iyisi.
|
||||
URLSite = http://www.mozilla.org/tr/firefox/new/
|
||||
Size = 8,07 MB
|
||||
URLSite = http://www.mozilla.org/tr/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.6.28/win32/tr/Firefox%20Setup%203.6.28.exe
|
||||
|
||||
[Section.0422]
|
||||
Description = Найпопулярніший та один з кращих безплатних веб-браузерів.
|
||||
URLSite = http://www.mozilla-europe.org/uk/
|
||||
Size = 8.45 MB
|
||||
URLSite = http://www.mozilla.org/uk/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.6.28/win32/uk/Firefox%20Setup%203.6.28.exe
|
||||
|
||||
[Section.0813]
|
||||
Description = De meest populaire en een van de beste gratis Web browsers.
|
||||
URLSite = http://www.mozilla-europe.org/nl/
|
||||
Size = 8.87 MB
|
||||
URLSite = http://www.mozilla.org/nl/
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.6.28/win32/nl/Firefox%20Setup%203.6.28.exe
|
||||
|
||||
@@ -8,7 +8,7 @@ Description = Open Source BASIC Compiler. The BASIC syntax is compatible to QBAS
|
||||
Size = 7.4 MB
|
||||
Category = 7
|
||||
URLSite = http://www.freebasic.net/
|
||||
URLDownload = http://garr.dl.sourceforge.net/project/fbc/Binaries%20-%20Windows/FreeBASIC-0.90.1-win32.exe
|
||||
URLDownload = http://download.sourceforge.net/project/fbc/Binaries%20-%20Windows/FreeBASIC-0.90.1-win32.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
@@ -33,6 +33,7 @@ Size = 7,4 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = Açık kaynak bir BASIC derleyicisi. Bu BASIC türevi, QBASIC ile uyumludur.
|
||||
Size = 7,4 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Відкритий компілятор BASIC. Синтаксис сумісний з QBASIC.
|
||||
|
||||
@@ -38,6 +38,7 @@ Size = 249,02 ko
|
||||
[Section.041f]
|
||||
Licence = Ücretsiz
|
||||
Description = glidewrapper, ReactOS'ta Şeytan 2'yi çalıştırmak için gereklidir.
|
||||
Size = 249,02 KB
|
||||
|
||||
[Section.0422]
|
||||
Description = glidewrapper необхідний для запуску Diablo2 в ReactOS.
|
||||
|
||||
@@ -23,3 +23,4 @@ Size = 13,5 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = Globulation 2, gerçek zamanlı bir izlem oyunudur. Bu oyun, birimlere kendiliğinden görevler atayarak oyun mikroyönetimini en aza indirir.
|
||||
Size = 13,5 MB
|
||||
|
||||
@@ -22,3 +22,4 @@ Size = 6,2 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = Pencereler 95 CD'sinde bulunan bir bayrak kapmaca oyunu.
|
||||
Size = 6,2 MB
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
Name = HxD
|
||||
Version = 1.7.7.0
|
||||
Licence = Freeware
|
||||
Description = A good hex editor.
|
||||
Description = A good hex editor. You need 7-Zip or a similar Utility to extract it.
|
||||
Size = 852 kB
|
||||
Category = 7
|
||||
URLSite = http://mh-nexus.de/en/
|
||||
@@ -12,14 +12,19 @@ URLDownload = http://mh-nexus.de/downloads/HxDSetupEN.zip
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
Description = Ein guter HEX Editor.
|
||||
Description = Ein guter HEX Editor. Zum extrahieren wird 7-Zip oder ein ähnliches Tool benötigt.
|
||||
Size = 854 kB
|
||||
URLSite = http://mh-nexus.de/de/
|
||||
URLDownload = http://mh-nexus.de/downloads/HxDSetupDE.zip
|
||||
|
||||
[Section.0418]
|
||||
Licence = Gratuită
|
||||
Description = Un bun editor hexazecimal.
|
||||
Licence = Gratuită
|
||||
Size = 852 ko
|
||||
Description = Un bun editor hexazecimal. E necesar un utilitar de dezarhivare de tip ZIP.
|
||||
Size = 859 ko
|
||||
URLDownload = http://mh-nexus.de/downloads/HxDSetupROM.zip
|
||||
|
||||
[Section.041f]
|
||||
Licence = Ücretsiz
|
||||
Description = İyi bir onaltılık düzenleyici.
|
||||
Description = İyi bir onaltılık düzenleyici. Bunu çıkartmak için 7-Zip ya da 7-Zip benzeri bir yazılım kullanmanız gerekir.
|
||||
Size = 853 KB
|
||||
URLDownload = http://mh-nexus.de/downloads/HxDSetupTR.zip
|
||||
|
||||
@@ -22,4 +22,6 @@ Description = IndiFTPD este un server FTP de sine stătător, într-un singur ex
|
||||
Size = 556 ko
|
||||
|
||||
[Section.041f]
|
||||
Version = 1.0.9 Gelişme
|
||||
Description = IndiFTPD, bağımsız (bir tek çalıştırılabilir kütükten oluşan) bir FTP sunucusudur. Bu yazılım, çabucak çalışan bir sunucuya iye olmak isteyen, ancak dizgesinde bir sunucu kurmak/ayarlamak istemeyen veyâ dizgesine bir sunucu kuramayan/ayarlayamayan kullanıcılar için tasarlanmıştır.
|
||||
Size = 556 KB
|
||||
|
||||
@@ -44,6 +44,7 @@ Size = 1,8 Mo
|
||||
[Section.041f]
|
||||
Licence = Şahsî kullanımlar için ücretsiz.
|
||||
Description = Çizge, ses ve vidyo kütükleri görüntüleyicisi.
|
||||
Size = 1,8 MB
|
||||
|
||||
[Section.0422]
|
||||
Licence = Freeware (для домашнього використання)
|
||||
|
||||
@@ -45,6 +45,7 @@ Size = 10,2 Mo
|
||||
Name = IrfanView Eklentileri
|
||||
Licence = Şahsî kullanımlar için ücretsiz.
|
||||
Description = Daha çok kütük türünü desteklemeye yarayan eklentiler.
|
||||
Size = 10,2 MB
|
||||
|
||||
[Section.0422]
|
||||
Licence = Freeware (для домашнього використання)
|
||||
|
||||
@@ -37,6 +37,7 @@ Size = 2,16 Mo
|
||||
[Section.041f]
|
||||
Name = K Masaüstü Ortamı
|
||||
Description = Pencereler için KDE.
|
||||
Size = 2,16 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = KDE для Windows.
|
||||
|
||||
@@ -25,3 +25,4 @@ Size = 13,8 Mo
|
||||
Name = Kyodai Çin Dominosu
|
||||
Licence = Kısıtlı
|
||||
Description = Çin dominosu türündeki solitaire oyunları arasında en iyisi.
|
||||
Size = 13,8 MB
|
||||
|
||||
@@ -8,7 +8,7 @@ Description = A cross-platform integrated development environment (IDE) that let
|
||||
Size = 111 MB
|
||||
Category = 7
|
||||
URLSite = http://www.lazarus.freepascal.org/
|
||||
URLDownload = http://garr.dl.sourceforge.net/project/lazarus/Lazarus%20Windows%2032%20bits/Lazarus%201.0.14/lazarus-1.0.14-fpc-2.6.2-win32.exe
|
||||
URLDownload = http://download.sourceforge.net/project/lazarus/Lazarus%20Windows%2032%20bits/Lazarus%201.0.14/lazarus-1.0.14-fpc-2.6.2-win32.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
|
||||
@@ -8,7 +8,7 @@ Description = Breakout Clone using SDL libs.
|
||||
Size = 3.03 MB
|
||||
Category = 4
|
||||
URLSite = http://lgames.sourceforge.net/index.php?project=LBreakout2
|
||||
URLDownload = http://garr.dl.sourceforge.net/project/lgames/binaries/lbreakout2-2.4.1-win32.exe
|
||||
URLDownload = http://download.sourceforge.net/project/lgames/binaries/lbreakout2-2.4.1-win32.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
@@ -36,6 +36,7 @@ Size = 3,03 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = SDL kitaplıklarını kullanan bir Breakout taklidi.
|
||||
Size = 3,03 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Клон Breakouta/Arkanoida, що використовує бібліотеки SDL.
|
||||
|
||||
@@ -8,7 +8,7 @@ Description = Panzer General Clone using SDL libs.
|
||||
Size = 1.92 MB
|
||||
Category = 4
|
||||
URLSite = http://lgames.sourceforge.net/index.php?project=LGeneral
|
||||
URLDownload = http://garr.dl.sourceforge.net/project/lgames/binaries/lgeneral-1.1-win32.exe
|
||||
URLDownload = http://download.sourceforge.net/project/lgames/binaries/lgeneral-1.1-win32.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
@@ -36,6 +36,7 @@ Size = 1,92 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = SDL kitaplıklarını kullanan bir Panzer General taklidi.
|
||||
Size = 1,92 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Клон гри Panzer General, що використовує бібліотеки SDL.
|
||||
|
||||
@@ -36,6 +36,7 @@ Size = 205,9 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = OpenOffice gibi bir açık kaynak büro takımı.
|
||||
Size = 205,9 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Відкритий офісний пакет.
|
||||
|
||||
@@ -8,7 +8,7 @@ Description = Atomix Clone using SDL libs.
|
||||
Size = 1.39 MB
|
||||
Category = 4
|
||||
URLSite = http://lgames.sourceforge.net/index.php?project=LMarbles
|
||||
URLDownload = http://garr.dl.sourceforge.net/project/lgames/binaries/lmarbles-1.0.6-win32.exe
|
||||
URLDownload = http://download.sourceforge.net/project/lgames/binaries/lmarbles-1.0.6-win32.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
@@ -36,6 +36,7 @@ Size = 1,39 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = SDL kitaplıklarını kullanan bir Atomix taklidi.
|
||||
Size = 1,39 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Клон гри Atomix, що використовує бібліотеки SDL.
|
||||
|
||||
@@ -49,6 +49,7 @@ Size = 865,04 ko
|
||||
Name = OLE Görüntüleyicisi ve Mikroyazılım Ana Sınıfları (MFC) Sürüm 4
|
||||
Licence = Bilinmiyor
|
||||
Description = Birtakım uygulamalar için gereklidir. Şunları içerir: mfc40.dll, msvcrt40.dll.
|
||||
Size = 865,04 KB
|
||||
|
||||
[Section.0422]
|
||||
Name = Переглядач OLE та MFC (Microsoft Foundation Classes) версія 4
|
||||
|
||||
@@ -36,6 +36,7 @@ Size = 2,82 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = Bir açık kaynak, çoklu iletişim kurallı ve evgin iletileşme yazılımı. Eksiksiz olarak çalışmayabilir.
|
||||
Size = 2,82 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Відкрита мультипротокольна програма миттєвих повідомлень - може не працювати повністю.
|
||||
|
||||
@@ -38,6 +38,7 @@ Size = 1,85 Mo
|
||||
[Section.041f]
|
||||
Licence = Kısıtlı
|
||||
Description = Örütbağ Eşzamanlı Söyleşi (IRC) istemcileri arasında en tutulanı.
|
||||
Size = 1,85 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Найпопулярніший клієнт IRC (Internet Relay Chat).
|
||||
|
||||
@@ -38,6 +38,7 @@ Size = 1,67 Mo
|
||||
[Section.041f]
|
||||
Licence = Kısıtlı
|
||||
Description = Örütbağ Eşzamanlı Söyleşi (IRC) istemcileri arasında en tutulanı.
|
||||
Size = 1,67 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Найпопулярніший клієнт IRC (Internet Relay Chat).
|
||||
|
||||
@@ -36,6 +36,7 @@ Size = 91,93 Mo
|
||||
Name = Mono .NET Geliştirme Çatısı
|
||||
Licence = Bilinmiyor
|
||||
Description = Bir açık kaynak .NET çatısı.
|
||||
Size = 91,93 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Відкритий .net Фреймворк.
|
||||
|
||||
@@ -8,7 +8,7 @@ Description = A media player.
|
||||
Size = 9.8 MB
|
||||
Category = 2
|
||||
URLSite = http://mpc-hc.org/
|
||||
URLDownload = http://garr.dl.sourceforge.net/project/mpc-hc/MPC%20HomeCinema%20-%20Win32/MPC-HC_v1.7.1_x86/MPC-HC.1.7.1.x86.exe
|
||||
URLDownload = http://download.sourceforge.net/project/mpc-hc/MPC%20HomeCinema%20-%20Win32/MPC-HC_v1.7.1_x86/MPC-HC.1.7.1.x86.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
@@ -42,6 +42,7 @@ Description = Multimediálny prehrávač.
|
||||
|
||||
[Section.041f]
|
||||
Description = Bir ortam oynatıcısı.
|
||||
Size = 9,8 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Мультимедійний програвач.
|
||||
|
||||
@@ -8,7 +8,7 @@ Description = Mpxplay is a 32-bit console audio player for Windows. You need 7-Z
|
||||
Size = 520 kB
|
||||
Category = 1
|
||||
URLSite = http://mpxplay.sourceforge.net/
|
||||
URLDownload = http://garr.dl.sourceforge.net/project/mpxplay/Mpxplay/Mpxplay%20v1.60%20final/mpxp160w.zip
|
||||
URLDownload = http://download.sourceforge.net/project/mpxplay/Mpxplay/Mpxplay%20v1.60%20final/mpxp160w.zip
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
@@ -20,3 +20,7 @@ Size = 520 ko
|
||||
|
||||
[Section.0419]
|
||||
Description = Mpxplay - 32-разрядный консольный аудиоплеер для Windows. Вам нужен 7-Zip или подобная утилита для его распаковки.
|
||||
|
||||
[Section.041f]
|
||||
Description = Mpxplay, Pencereler için 32 ikillik, konsolluk bir ses oynatıcısıdır. Bunu çıkartmak için 7-Zip ya da 7-Zip benzeri bir yazılım kullanmanız gerekir.
|
||||
Size = 520 KB
|
||||
|
||||
@@ -44,6 +44,7 @@ Size = 1,85 Mo
|
||||
[Section.041f]
|
||||
Licence = Bilinmiyor
|
||||
Description = Birtakım Mikroyazılım Yükleyicileri için gereklidir. Şunları içerir: msxml3.dll, msxml3a.dll, msxml3r.dll.
|
||||
Size = 1,85 MB
|
||||
|
||||
[Section.0422]
|
||||
Licence = Невідома
|
||||
|
||||
@@ -36,3 +36,4 @@ Size = 23,14 Mo
|
||||
Name = Mikroyazılım .NET Çatısı Sürüm 1.1 Yeniden Dağıtılabilir Paket
|
||||
Licence = Bilinmiyor
|
||||
Description = Mikroyazılım .NET Çatısı Sürüm 1.1 - Yeniden Dağıtılabilir Paket
|
||||
Size = 23,14 MB
|
||||
|
||||
@@ -33,3 +33,4 @@ Size = 22,42 Mo
|
||||
Name = Mikroyazılım .NET Çatısı Sürüm 2.0 Yeniden Dağıtılabilir Paket
|
||||
Licence = Bilinmiyor
|
||||
Description = Mikroyazılım .NET Çatısı Sürüm 2.0 - Yeniden Dağıtılabilir Paket
|
||||
Size = 22,42 MB
|
||||
|
||||
@@ -33,3 +33,4 @@ Size = 23,84 Mo
|
||||
Name = Mikroyazılım .NET Çatısı Sürüm 2.0 Hizmet Paketi 2
|
||||
Licence = Bilinmiyor
|
||||
Description = Mikroyazılım .NET Çatısı Sürüm 2.0 - Hizmet Paketi 2
|
||||
Size = 23,84 MB
|
||||
|
||||
@@ -42,6 +42,7 @@ Description = Textový editor.
|
||||
|
||||
[Section.041f]
|
||||
Description = Bir metin düzenleyicisi.
|
||||
Size = 7,25 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Текстовый редактор.
|
||||
|
||||
@@ -42,6 +42,7 @@ Size = 1010,89 ko
|
||||
Name = Off By One Tarayıcısı
|
||||
Licence = Ücretsiz
|
||||
Description = Off By One Tarayıcısı, HTML 3.2 desteğiyle çok küçük ve hızlı bir tarayıcıdır.
|
||||
Size = 1010,89 KB
|
||||
|
||||
[Section.0422]
|
||||
Description = Дуже малий та швидкий веб-браузер з повною підтримкою HTML 3.2.
|
||||
|
||||
@@ -23,3 +23,4 @@ Size = 2,53 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = Ogg Vorbis, Speex, Theora, FLAC ve WebM kütük türleri için DirectShow süzgeçleri.
|
||||
Size = 2,53 MB
|
||||
|
||||
@@ -8,42 +8,43 @@ Description = THE Open Source Office Suite.
|
||||
Size = 136.79 MB
|
||||
Category = 6
|
||||
URLSite = http://www.openoffice.org/
|
||||
URLDownload = http://heanet.dl.sourceforge.net/project/openofficeorg.mirror/4.0.1/binaries/en-US/Apache_OpenOffice_4.0.1_Win_x86_install_en-US.exe
|
||||
URLDownload = http://download.sourceforge.net/project/openofficeorg.mirror/4.0.1/binaries/en-US/Apache_OpenOffice_4.0.1_Win_x86_install_en-US.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
Description = DIE Open Source Office Suite.
|
||||
URLSite = http://de.openoffice.org/
|
||||
URLSite = http://www.openoffice.org/de/
|
||||
Size = 154.88 MB
|
||||
URLDownload = http://heanet.dl.sourceforge.net/project/openofficeorg.mirror/4.0.1/binaries/de/Apache_OpenOffice_4.0.1_Win_x86_install_de.exe
|
||||
URLDownload = http://download.sourceforge.net/project/openofficeorg.mirror/4.0.1/binaries/de/Apache_OpenOffice_4.0.1_Win_x86_install_de.exe
|
||||
|
||||
[Section.040a]
|
||||
Description = La suite de ofimática de código abierto.
|
||||
URLSite = http://es.openoffice.org/
|
||||
URLSite = http://www.openoffice.org/es/
|
||||
Size = 126.29 MB
|
||||
URLDownload = http://heanet.dl.sourceforge.net/project/openofficeorg.mirror/4.0.1/binaries/es/Apache_OpenOffice_4.0.1_Win_x86_install_es.exe
|
||||
URLDownload = http://download.sourceforge.net/project/openofficeorg.mirror/4.0.1/binaries/es/Apache_OpenOffice_4.0.1_Win_x86_install_es.exe
|
||||
|
||||
[Section.040c]
|
||||
Description = LA suite bureautique open source.
|
||||
URLSite = http://fr.openoffice.org/
|
||||
URLSite = http://www.openoffice.org/fr/
|
||||
Size = 127,22 Mo
|
||||
URLDownload = http://heanet.dl.sourceforge.net/project/openofficeorg.mirror/4.0.1/binaries/fr/Apache_OpenOffice_4.0.1_Win_x86_install_fr.exe
|
||||
URLDownload = http://download.sourceforge.net/project/openofficeorg.mirror/4.0.1/binaries/fr/Apache_OpenOffice_4.0.1_Win_x86_install_fr.exe
|
||||
|
||||
[Section.0410]
|
||||
URLSite = http://it.openoffice.org/
|
||||
URLSite = http://www.openoffice.org/it/
|
||||
Size = 132.39 MB
|
||||
URLDownload = http://heanet.dl.sourceforge.net/project/openofficeorg.mirror/4.0.1/binaries/it/Apache_OpenOffice_4.0.1_Win_x86_install_it.exe
|
||||
URLDownload = http://download.sourceforge.net/project/openofficeorg.mirror/4.0.1/binaries/it/Apache_OpenOffice_4.0.1_Win_x86_install_it.exe
|
||||
|
||||
[Section.0413]
|
||||
Description = Open-bron Office Pakket.
|
||||
URLSite = http://nl.openoffice.org/
|
||||
URLSite = http://www.openoffice.org/nl/
|
||||
Size = 132.11 MB
|
||||
URLDownload = http://heanet.dl.sourceforge.net/project/openofficeorg.mirror/4.0.1/binaries/nl/Apache_OpenOffice_4.0.1_Win_x86_install_nl.exe
|
||||
URLDownload = http://download.sourceforge.net/project/openofficeorg.mirror/4.0.1/binaries/nl/Apache_OpenOffice_4.0.1_Win_x86_install_nl.exe
|
||||
|
||||
[Section.0415]
|
||||
Description = Otwarty pakiet biurowy.
|
||||
URLSite = http://pl.openoffice.org/
|
||||
Size = 136.79 MB
|
||||
URLSite = http://www.openoffice.org/pl/
|
||||
Size = 127.47 MB
|
||||
URLDownload = http://download.sourceforge.net/project/openofficeorg.mirror/4.0.1/binaries/pl/Apache_OpenOffice_4.0.1_Win_x86_install_pl.exe
|
||||
|
||||
[Section.0418]
|
||||
Description = Suita de aplicații de birotică open-source.
|
||||
@@ -52,15 +53,17 @@ URLSite = http://www.openoffice.org/ro/
|
||||
|
||||
[Section.041f]
|
||||
Description = Bir açık kaynak büro takımı.
|
||||
URLSite = http://tr.openoffice.org/
|
||||
Size = 124,36 MB
|
||||
URLSite = http://www.openoffice.org/tr/
|
||||
URLDownload = http://download.sourceforge.net/project/openofficeorg.mirror/4.0.1/binaries/tr/Apache_OpenOffice_4.0.1_Win_x86_install_tr.exe
|
||||
|
||||
[Section.0422]
|
||||
Description = Відкритий офісний пакет.
|
||||
URLSite = http://ua.openoffice.org/
|
||||
URLSite = http://www.openoffice.org/ua/
|
||||
Size = 136.79 MB
|
||||
|
||||
[Section.0813]
|
||||
Description = Open-bron Office Pakket.
|
||||
URLSite = http://nl.openoffice.org/
|
||||
URLSite = http://www.openoffice.org/nl/
|
||||
Size = 132.11 MB
|
||||
URLDownload = http://heanet.dl.sourceforge.net/project/openofficeorg.mirror/4.0.1/binaries/nl/Apache_OpenOffice_4.0.1_Win_x86_install_nl.exe
|
||||
URLDownload = http://download.sourceforge.net/project/openofficeorg.mirror/4.0.1/binaries/nl/Apache_OpenOffice_4.0.1_Win_x86_install_nl.exe
|
||||
|
||||
@@ -13,59 +13,60 @@ CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
Description = DIE Open Source Office Suite.
|
||||
URLSite = http://de.openoffice.org/
|
||||
Size = 114.25 MB
|
||||
URLSite = http://www.openoffice.org/de/
|
||||
URLDownload = http://archive.services.openoffice.org/pub/openoffice-archive/localized/de/2.4.3/OOo_2.4.3_Win32Intel_install_de.exe
|
||||
|
||||
[Section.040a]
|
||||
Description = La suite de ofimática de código abierto.
|
||||
URLSite = http://es.openoffice.org/
|
||||
Size = 113.87 MB
|
||||
URLSite = http://www.openoffice.org/es/
|
||||
URLDownload = http://archive.services.openoffice.org/pub/openoffice-archive/localized/es/2.4.3/OOo_2.4.3_Win32Intel_install_es.exe
|
||||
|
||||
[Section.040c]
|
||||
Version = 2.4.2
|
||||
Description = LA suite bureautique open source.
|
||||
URLSite = http://fr.openoffice.org/
|
||||
Size = 114 Mo
|
||||
URLSite = http://www.openoffice.org/fr/
|
||||
URLDownload = http://archive.services.openoffice.org/pub/openoffice-archive/localized/fr/2.4.2/OOo_2.4.2_Win32Intel_install_fr.exe
|
||||
|
||||
[Section.0410]
|
||||
URLSite = http://it.openoffice.org/
|
||||
Size = 113.79 MB
|
||||
URLSite = http://www.openoffice.org/it/
|
||||
URLDownload = http://archive.services.openoffice.org/pub/openoffice-archive/localized/it/2.4.3/OOo_2.4.3_Win32Intel_install_it.exe
|
||||
|
||||
[Section.0413]
|
||||
Version = 2.4.2
|
||||
URLSite = http://nl.openoffice.org/
|
||||
Description = Open-bron Office Pakket.
|
||||
URLDownload = http://archive.services.openoffice.org/pub/openoffice-archive/localized/nl/2.4.2/OOo_2.4.2_Win32Intel_install_nl.exe
|
||||
Size = 113.8 MB
|
||||
URLSite = http://www.openoffice.org/nl/
|
||||
URLDownload = http://archive.services.openoffice.org/pub/openoffice-archive/localized/nl/2.4.2/OOo_2.4.2_Win32Intel_install_nl.exe
|
||||
|
||||
[Section.0415]
|
||||
Version = 2.4.2
|
||||
URLSite = http://pl.openoffice.org/
|
||||
Description = Otwarty pakiet biurowy.
|
||||
URLDownload = http://archive.services.openoffice.org/pub/openoffice-archive/localized/pl/2.4.2/OOo_2.4.2_Win32Intel_install_pl.exe
|
||||
Size = 113.92 MB
|
||||
URLSite = http://www.openoffice.org/pl/
|
||||
URLDownload = http://archive.services.openoffice.org/pub/openoffice-archive/localized/pl/2.4.2/OOo_2.4.2_Win32Intel_install_pl.exe
|
||||
|
||||
[Section.0418]
|
||||
Description = Suita de aplicații de birotică open-source.
|
||||
Size = 113 Mo
|
||||
URLSite = http://www.openoffice.org/ro/
|
||||
|
||||
[Section.041f]
|
||||
Description = Bir açık kaynak büro takımı.
|
||||
URLSite = http://tr.openoffice.org/
|
||||
URLSite = http://www.openoffice.org/tr/
|
||||
|
||||
[Section.0422]
|
||||
URLSite = http://ua.openoffice.org/
|
||||
URLSite = http://www.openoffice.org/ua/
|
||||
Description = Відкритий офісний пакет.
|
||||
URLDownload = http://archive.services.openoffice.org/pub/openoffice-archive/localized/ru/2.4.3/OOo_2.4.3_Win32Intel_install_ru.exe
|
||||
Size = 114.76 MB
|
||||
|
||||
[Section.0813]
|
||||
Version = 2.4.2
|
||||
URLSite = http://nl.openoffice.org/
|
||||
Description = Open-bron Office Pakket.
|
||||
URLDownload = http://archive.services.openoffice.org/pub/openoffice-archive/localized/nl/2.4.2/OOo_2.4.2_Win32Intel_install_nl.exe
|
||||
Size = 113.8 MB
|
||||
URLSite = http://www.openoffice.org/nl/
|
||||
URLDownload = http://archive.services.openoffice.org/pub/openoffice-archive/localized/nl/2.4.2/OOo_2.4.2_Win32Intel_install_nl.exe
|
||||
|
||||
@@ -36,6 +36,7 @@ Size = 6,75 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = Transport Tycoon Deluxe oyun motorunun bir açık kaynak taklidi. Transport Tycoon'un bir sûreti gerekir.
|
||||
Size = 6,75 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Відкритий клон двигуна гри "Transport Tycoon Deluxe". Вам потрібна копія гри Transport Tycoon.
|
||||
|
||||
@@ -44,6 +44,7 @@ Description = Популярный браузер со многими допол
|
||||
[Section.041f]
|
||||
Licence = Ücretsiz
|
||||
Description = Tutulan Opera Tarayıcı, birçok gelişmiş husûsiyetle ve kendi mail ve BitTorrent istemcileriyle birlikte gelir.
|
||||
Size = 12,56 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Популярний браузер з багатьма додатковими можливостями, який включає в себе поштовий та BitTorrent клієнти.
|
||||
|
||||
@@ -41,6 +41,7 @@ Description = Популярный браузер со многими допол
|
||||
[Section.041f]
|
||||
Licence = Ücretsiz
|
||||
Description = Tutulan Opera Tarayıcı, birçok gelişmiş husûsiyetle ve kendi mail ve BitTorrent istemcileriyle birlikte gelir.
|
||||
Size = 7,21 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Популярний браузер з багатьма додатковими можливостями, який включає в себе поштовий та BitTorrent клієнти.
|
||||
|
||||
@@ -22,3 +22,4 @@ Size = 384 ko
|
||||
|
||||
[Section.041f]
|
||||
Description = Oyunun amacı, oyun alanınızda üç ya da daha çok takımdan oluşan renkli küreleri vurmaktır.
|
||||
Size = 384 KB
|
||||
|
||||
@@ -22,3 +22,4 @@ Size = 4,99 Mo
|
||||
[Section.041f]
|
||||
Licence = Ücretsiz
|
||||
Description = Bu sürüm, katmanlarla gelmektedir ancak Stüdyo X sürümünden daha kısıtlıdır. PhotoFiltre Stüdyo, eksiksiz bir resim düzeltme yazılımıdır.
|
||||
Size = 4,99 MB
|
||||
|
||||
@@ -23,3 +23,4 @@ Size = 16,0 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = Pingus, ücretsiz, Yaban Sıçanları gibi bir bulmaca oyunudur.
|
||||
Size = 16,0 MB
|
||||
|
||||
@@ -44,6 +44,7 @@ Description = Textový editor.
|
||||
[Section.041f]
|
||||
Licence = Ücretsiz
|
||||
Description = Bir metin düzenleyicisi.
|
||||
Size = 4,46 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Текстовый редактор.
|
||||
|
||||
@@ -23,3 +23,4 @@ Size = 2,86 Mo
|
||||
Name = Küçük Tanklar
|
||||
Licence = Kısıtlı
|
||||
Description = Bu güne kadar oynadığınız en hızlı topçu oyunu.
|
||||
Size = 2,86 MB
|
||||
|
||||
@@ -36,6 +36,7 @@ Size = 1,78 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = Özgür bir SSH, Telnet, rlogin ve ham TCP istemcisi.
|
||||
Size = 1,78 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Безплатний SSH, Telnet, rlogin та raw TCP клієнт.
|
||||
|
||||
@@ -37,6 +37,7 @@ Size = 19,6 Mo
|
||||
[Section.041f]
|
||||
Name = Piton 3
|
||||
Description = İlgi çekici, güçlü ve devingen bir çizeylemleme dili.
|
||||
Size = 19,6 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Дуже потужна динамічна мова програмування.
|
||||
|
||||
@@ -37,6 +37,7 @@ Size = 15,48 Mo
|
||||
[Section.041f]
|
||||
Name = Piton 2
|
||||
Description = İlgi çekici, güçlü ve devingen bir çizeylemleme dili.
|
||||
Size = 15,48 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Дуже потужна динамічна мова програмування.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
Name = QB64 (SDL version)
|
||||
Version = 0.954
|
||||
Licence = Freeware
|
||||
Description = QB64 is a self-hosting BASIC compiler for Microsoft Windows, Linux and Mac OS X, designed to be compatible with Microsoft QBasic and Microsoft QuickBASIC. You need 7-Zip or a similar Utility to extract it.
|
||||
Description = QB64 is a self-hosting BASIC compiler for Microsoft Windows, Linux and Mac OS X, designed to be compatible with Microsoft QBasic and Microsoft QuickBASIC. You need 7-Zip or a similar utility to extract it.
|
||||
Size = 33.1 MB
|
||||
Category = 7
|
||||
URLSite = http://www.qb64.net/
|
||||
@@ -20,6 +20,7 @@ Description = QB64 este un compilator BASIC auto-compilabil pentru Windows, Linu
|
||||
Size = 33,1 Mo
|
||||
|
||||
[Section.041f]
|
||||
Name = QB64 (SDL sürümü)
|
||||
Name = QB64 (SDL Sürümü)
|
||||
Licence = Ücretsiz
|
||||
Description = QB64; Mikroyazılım Pencereler, Linux ve Mac OS X için yapılmış, Mikroyazılım QBasic ve Mikroyazılım QuickBASIC ile uyumlu olarak tasarlanan, kendi kendini derleyen bir BASIC derleyicisidir. Bunu çıkartmak için 7-Zip ya da 7-Zip benzeri bir yazılım kullanmanız gerekir.
|
||||
Size = 33,1 MB
|
||||
|
||||
@@ -20,3 +20,8 @@ Size = 16,0 Mo
|
||||
|
||||
[Section.0419]
|
||||
Description = Аудиоплеер Qmmp (Qt-based Multimedia Player).
|
||||
|
||||
[Section.041f]
|
||||
Name = Qt Tabanlı Çokluortam Oynatıcısı
|
||||
Description = Qmmp, Qt kitaplığının yardımıyla yazılan bir ses oynatıcısıdır. Kullanıcı arayüzüsü WinAMP'ınkine ve XMMS'ninkine benzer. Ayrıca değişik kullanıcı arayüzleri de vardır.
|
||||
Size = 16,0 MB
|
||||
|
||||
@@ -8,7 +8,7 @@ Description = ReMooD is a source port of Doom Legacy. It aims to provide the cla
|
||||
Size = 1.15 MB
|
||||
Category = 4
|
||||
URLSite = http://remood.sourceforge.net/
|
||||
URLDownload = http://garr.dl.sourceforge.net/project/remood/ReMooD/0.8a/remoodsetup-win32_08a.exe
|
||||
URLDownload = http://download.sourceforge.net/project/remood/ReMooD/0.8a/remoodsetup-win32_08a.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
@@ -36,6 +36,7 @@ Size = 1,15 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = ReMooD, Doom Legacy'in kaynak düzgülerinin bir uyarlamasıdır. Bilindik Legacy deneyimiyle yeni husûsiyetler ve daha fazla kararlılık sağlamayı amaçlar.
|
||||
Size = 1,15 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = ReMooD э Портом вихідних кодів Doom Legacy. Його метою є додати нові можливості та стабільність до досвіду класичного Legacy.
|
||||
|
||||
@@ -23,3 +23,4 @@ Size = 730 ko
|
||||
Name = Kaynak Korsancısı
|
||||
Licence = Ücretsiz
|
||||
Description = Kaynak Korsancısı, 32 ya da 64 ikillik Pencereler çaılştırabilirlerini ve .res uzantılı kaynak kütüklerindeki kaynakları görüntüleyen, değiştiren, yeniden adlandıran, ekleyen, silen ve çıkartan ücretsiz bir araçtır.
|
||||
Size = 730 KB
|
||||
|
||||
@@ -20,3 +20,4 @@ Size = 2,42 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = UNIX, Mac OS X, Pencereler ve DOS için yapılmış, atari oyun salonu türünde bir oyun. Şu gelenekleri içerir: "Boulder Dash" (C64), "Zümrüt Mâdeni" (Amiga), "Supaplex" (Amiga ve PC), "Sokoban" (PC). Yazılımı kurmak için ZIP biçiminde çıkartma yeteneği olan bir yazılım gerekir.
|
||||
Size = 2,42 MB
|
||||
|
||||
@@ -8,7 +8,7 @@ Description = Allows you to build the ReactOS Source. For more instructions see
|
||||
Size = 31.6 MB
|
||||
Category = 7
|
||||
URLSite = http://reactos.org/wiki/Build_Environment
|
||||
URLDownload = http://heanet.dl.sourceforge.net/project/reactos/RosBE-Windows/i386/2.1/RosBE-2.1.exe
|
||||
URLDownload = http://download.sourceforge.net/project/reactos/RosBE-Windows/i386/2.1/RosBE-2.1.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0405]
|
||||
@@ -40,6 +40,7 @@ Size = 31,6 Mo
|
||||
[Section.041f]
|
||||
Name = ReactOS Derleme Ortamı
|
||||
Description = ReactOS Kaynak Kodları'nı derlettirir. Daha çok açıklama için ReactOS Wiki'ye bakınız.
|
||||
Size = 31,6 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Дозволяє зібрати ReactOS з вихідних кодів. За детальною інформацією дивіться в ReactOS Вікі.
|
||||
|
||||
@@ -8,7 +8,7 @@ Description = Allows you to build the ReactOS AMD64 Source. For more instruction
|
||||
Size = 15.83 MB
|
||||
Category = 7
|
||||
URLSite = http://reactos.org/wiki/Build_Environment/
|
||||
URLDownload = http://sunet.dl.sourceforge.net/project/reactos/RosBE-Windows/amd64/1.3/RosBE64-1.3.exe
|
||||
URLDownload = http://download.sourceforge.net/project/reactos/RosBE-Windows/amd64/1.3/RosBE64-1.3.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0405]
|
||||
@@ -40,6 +40,7 @@ Size = 15,83 Mo
|
||||
[Section.041f]
|
||||
Name = ReactOS Derleme Ortamı
|
||||
Description = ReactOS AMD64 Kaynak Kodları'nı derlettirir. Daha çok açıklama için ReactOS Wiki'ye bakınız.
|
||||
Size = 15,83 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Дозволяє зібрати ReactOS AMD64 з вихідних кодів. За детальною інформацією дивіться в ReactOS Вікі.
|
||||
|
||||
@@ -8,7 +8,7 @@ Description = Allows you to build the ReactOS ARM Source. For more instructions
|
||||
Size = 11.15 MB
|
||||
Category = 7
|
||||
URLSite = http://reactos.org/wiki/Build_Environment/
|
||||
URLDownload = http://garr.dl.sourceforge.net/project/reactos/RosBE-Windows/arm/1.0/RosBE-ARM-1.0.exe
|
||||
URLDownload = http://download.sourceforge.net/project/reactos/RosBE-Windows/arm/1.0/RosBE-ARM-1.0.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
@@ -37,6 +37,7 @@ Size = 11,15 Mo
|
||||
[Section.041f]
|
||||
Name = ReactOS Derleme Ortamı
|
||||
Description = ReactOS ARM Kaynak Kodları'nı derlettirir. Daha çok açıklama için ReactOS Wiki'ye bakınız.
|
||||
Size = 11,15 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Дозволяє зібрати ReactOS ARM з вихідних кодів. За детальною інформацією дивіться в ReactOS Вікі.
|
||||
|
||||
@@ -36,6 +36,7 @@ Size = 2,13 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = Bu araç, ReactOS'ta Pencereler'in paylaşılan yazıcılarıyla paylaşılan dizinlerine erişimi sağlar.
|
||||
Size = 2,13 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Цей інструмент дозволяє отримати доступ до спільних тек/принтерів Windows з ReactOSа.
|
||||
|
||||
@@ -61,6 +61,7 @@ Description = Pазархивируйте содержимое в папку "Re
|
||||
Name = VMWare için SoundBlaster Sürücüsü
|
||||
Licence = Bilinmiyor
|
||||
Description = Bunu, ReactOS'un dizinine çıkartıp bilgisayarı iki kez yeniden başlatınız.
|
||||
Size = 2,22 MB
|
||||
|
||||
[Section.0422]
|
||||
Name = Драйвер SoundBlaster для VMWare
|
||||
|
||||
@@ -8,7 +8,7 @@ Description = SciTE is a SCIntilla based Text Editor. Originally built to demons
|
||||
Size = 722 kB
|
||||
Category = 7
|
||||
URLSite = http://www.scintilla.org/
|
||||
URLDownload = http://heanet.dl.sourceforge.net/project/scintilla/SciTE/3.3.7/Sc337.exe
|
||||
URLDownload = http://download.sourceforge.net/project/scintilla/SciTE/3.3.7/Sc337.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
@@ -38,6 +38,7 @@ Size = 722 ko
|
||||
[Section.041f]
|
||||
Licence = Ücretsiz
|
||||
Description = SciTE, Scintilla tabanlı bir metin düzenleyicisidir. Başlangıçta, Scintilla'yı göstermek için yapılmıştır ancak umûmiyetle çizeylemleri yapmak ve çalıştırmak yetenekleriyle birlikte kullanışlı bir düzenleyici olarak geliştirilmiştir.
|
||||
Size = 722 KB
|
||||
|
||||
[Section.0422]
|
||||
Description = Текстовий редактор на основі SCIntilla. Був зібраний як презентація Scintilla, але виріс до редактора загального користування з засобами збирання та запуску програм.
|
||||
|
||||
@@ -8,7 +8,7 @@ Description = Sam and Max, Day of the Tentacle, etc on ReactOS.
|
||||
Size = 6.28 MB
|
||||
Category = 4
|
||||
URLSite = http://scummvm.org/
|
||||
URLDownload = http://heanet.dl.sourceforge.net/project/scummvm/scummvm/1.6.0/scummvm-1.6.0-win32.exe
|
||||
URLDownload = http://download.sourceforge.net/project/scummvm/scummvm/1.6.0/scummvm-1.6.0-win32.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
@@ -36,6 +36,7 @@ Size = 6,28 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = ReactOS üzerinde Sam ve Max, Dokunaç Günü vb.
|
||||
Size = 6,28 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Дозволить грати Sam and Max, Day of the Tentacle та інші класичні ігри в ReactOS.
|
||||
|
||||
@@ -40,6 +40,7 @@ Size = 548,02 ko
|
||||
[Section.041f]
|
||||
Name = Bayağı Doğrudan Ortam Katmanı (SDL) Karıştırıcısı
|
||||
Description = Birtakım açık kaynak uygulamalar için gereklidir. Bunu çıkartmak için 7-Zip ya da 7-Zip benzeri bir yazılım kullanmanız gerekir.
|
||||
Size = 548,02 KB
|
||||
|
||||
[Section.0422]
|
||||
Description = Необхідний для роботи декотрих відкритих ігор. Вам потрібен 7-Zip або подібна утиліта щоб розпакувати його.
|
||||
|
||||
@@ -41,6 +41,7 @@ Size = 136,67 ko
|
||||
[Section.041f]
|
||||
Name = Bayağı Doğrudan Ortam Katmanı (SDL) Yürütücüsü
|
||||
Description = Birtakım açık kaynak uygulamalar için gereklidir. Bunu çıkartmak için 7-Zip ya da 7-Zip benzeri bir yazılım kullanmanız gerekir.
|
||||
Size = 136,67 KB
|
||||
|
||||
[Section.0422]
|
||||
Name = Бібліотека Simple Direct Media Layer (SDL)
|
||||
|
||||
@@ -52,7 +52,7 @@ URLDownload = http://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases/2.23/win
|
||||
|
||||
[Section.041f]
|
||||
Description = Bu; yalnızca Tarayıcı, Mail, Söyleşi ve Yazar'dan oluşan, hiç gereksinim duymayacağınız bir bohçadır.
|
||||
Size = 23.83 MB
|
||||
Size = 23,83 MB
|
||||
URLDownload = http://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases/2.23/win32/tr/SeaMonkey%20Setup%202.23.exe
|
||||
|
||||
[Section.0422]
|
||||
|
||||
@@ -7,45 +7,44 @@ Licence = GPL
|
||||
Description = Graphical Frontend for MPlayer.
|
||||
Size = 16.98 MB
|
||||
Category = 2
|
||||
URLSite = http://smplayer.sourceforge.net/
|
||||
URLDownload = http://freefr.dl.sourceforge.net/project/smplayer/SMPlayer/0.8.6/smplayer-0.8.6-win32.exe
|
||||
URLSite = http://smplayer.sourceforge.net/en/info
|
||||
URLDownload = http://download.sourceforge.net/project/smplayer/SMPlayer/0.8.6/smplayer-0.8.6-win32.exe
|
||||
CDPath = none
|
||||
|
||||
[Section.0407]
|
||||
Description = Grafische Oberfläche für MPlayer.
|
||||
URLSite = http://smplayer.sourceforge.net/index.php?tr_lang=de
|
||||
URLSite = http://smplayer.sourceforge.net/de/info
|
||||
|
||||
[Section.040a]
|
||||
URLSite = http://smplayer.sourceforge.net/index.php?tr_lang=es
|
||||
URLSite = http://smplayer.sourceforge.net/es/info
|
||||
Description = Interfaz gráfico para Mplayer (reproductor multimedia).
|
||||
|
||||
[Section.040c]
|
||||
Size = 16,98 Mo
|
||||
URLSite = http://smplayer.sourceforge.net/index.php?tr_lang=fr
|
||||
URLSite = http://smplayer.sourceforge.net/fr/info
|
||||
|
||||
[Section.0410]
|
||||
URLSite = http://smplayer.sourceforge.net/index.php?tr_lang=it
|
||||
URLSite = http://smplayer.sourceforge.net/it/info
|
||||
|
||||
[Section.0413]
|
||||
URLSite = http://smplayer.sourceforge.net/index.php?tr_lang=nl
|
||||
Description = Mediaspeler, grafische interface voor MPlayer.
|
||||
|
||||
[Section.0415]
|
||||
URLSite = http://smplayer.sourceforge.net/index.php?tr_lang=pl
|
||||
URLSite = http://smplayer.sourceforge.net/pl/info
|
||||
Description = Graficzna nakładka na MPlayer, otwarty odtwarzacz filmów.
|
||||
|
||||
[Section.0418]
|
||||
Description = Lector multimedia (interfață pentru MPlayer).
|
||||
Size = 16,98 Mo
|
||||
URLSite = http://smplayer.sourceforge.net/index.php?tr_lang=ro
|
||||
|
||||
[Section.041f]
|
||||
Description = MPlayer için çizgelik önyüz.
|
||||
Size = 16,98 MB
|
||||
URLSite = http://smplayer.sourceforge.net/tr/info
|
||||
|
||||
[Section.0422]
|
||||
URLSite = http://smplayer.sourceforge.net/index.php?tr_lang=uk
|
||||
URLSite = http://smplayer.sourceforge.net/uk/info
|
||||
Description = Графічний інтерфейс для MPlayer (мультимедійний плеєр).
|
||||
|
||||
[Section.0813]
|
||||
URLSite = http://smplayer.sourceforge.net/index.php?tr_lang=nl
|
||||
Description = Mediaspeler, grafische interface voor MPlayer.
|
||||
|
||||
@@ -18,3 +18,4 @@ Size = 4,7 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = Ücretsiz bir düğme takımında yazma öğreticisi.
|
||||
Size = 4,7 MB
|
||||
|
||||
@@ -39,6 +39,7 @@ URLSite = http://store.steampowered.com/?l=romanian
|
||||
[Section.041f]
|
||||
Licence = Ücretsiz
|
||||
Description = Bu günlerde STEAM oyun platformu, birçok oyun tarafından kullanılmaktadır.
|
||||
Size = 1,59 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Ігрова платформа, що використовується багатьма іграми.
|
||||
|
||||
@@ -37,6 +37,7 @@ URLSite = http://blog.kowalczyk.info/software/sumatrapdf/free-pdf-reader-ro.html
|
||||
|
||||
[Section.041f]
|
||||
Description = SumatraPDF; yeğni, ücretsiz ve açık kaynak bir PDF okuyucusudur. Taşınabilirdir.
|
||||
Size = 4,0 MB
|
||||
|
||||
[Section.0813]
|
||||
Description = Sumatra PDF is een slanke, gratis, open-bron PDF lezer.
|
||||
|
||||
@@ -23,3 +23,4 @@ Size = 3,8 Mo
|
||||
Name = Süper DX-Ball
|
||||
Licence = Kısıtlı
|
||||
Description = Süper DX-Ball, canlı ve renkli bir tuğla kırma oyunudur.
|
||||
Size = 3,8 MB
|
||||
|
||||
@@ -39,6 +39,7 @@ Size = 4,94 Mo
|
||||
Name = Süper Bulucu XT
|
||||
Licence = Ücretsiz
|
||||
Description = Hızlı ve husûsiyet zengini bir arama uygulaması.
|
||||
Size = 4,94 MB
|
||||
|
||||
[Section.0422]
|
||||
Description = Швидка та потужна програма пошуку.
|
||||
|
||||
@@ -23,3 +23,4 @@ Size = 7,3 Mo
|
||||
|
||||
[Section.041f]
|
||||
Description = SuperTux, ücretsiz, iki boyutlu ve açık kaynak bir platform oyunudur.
|
||||
Size = 7,3 MB
|
||||
|
||||
@@ -43,6 +43,7 @@ Size = 305,12 ko
|
||||
Name = Mikroyazılım Tahoma Yazı Türü
|
||||
Licence = Bilinmiyor
|
||||
Description = Tahoma Yazı Türleri. Steam gibi birtakım yazılımlar için gereklidir. Şunları içerir: Tahoma.ttf, Tahomabd.ttf.
|
||||
Size = 305,12 KB
|
||||
|
||||
[Section.0422]
|
||||
Licence = Невідома
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user