Skip to content

Commit

Permalink
Internal. Set github as a primary download mirror
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximus5 committed Jul 23, 2023
1 parent 03c48ab commit 1dc80e9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions Deploy/l10n_refresh.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ pushd "%~dp0.."

set L10N_PATH=Release/ConEmu/ConEmu.l10n

echo Calling "%PYTHON3%" "%~dp0l10n.py" --l10n %L10N_PATH% --tx-pull all --write-l10n
call "%PYTHON3%" "%~dp0l10n.py" --l10n %L10N_PATH% --tx-pull all --write-l10n
if errorlevel 1 (
echo Failed to load updated translations from transifex
Expand Down
2 changes: 1 addition & 1 deletion src/ConEmu/ConEmu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//#define CONEMU_ANIMATE_DURATION_MAX 5000

const wchar_t* gsHomePage = CEHOMEPAGE; //L"https://conemu.github.io";
const wchar_t* gsDownlPage = CEDOWNLPAGE; //L"https://www.fosshub.com/ConEmu.html";
const wchar_t* gsDownlPage = CEDOWNLPAGE; //L"https://conemu.github.io/en/Downloads.html";
const wchar_t* gsFirstStart = CEFIRSTSTART; //L"https://conemu.github.io/en/SettingsFast.html";
const wchar_t* gsReportBug = CEREPORTBUG; //L"https://conemu.github.io/en/Issues.html";
const wchar_t* gsReportCrash = CEREPORTCRASH; //L"https://conemu.github.io/en/Issues.html";
Expand Down
2 changes: 1 addition & 1 deletion src/ConEmu/Header.h
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ bool CheckLockFrequentExecute(DWORD& Tick, DWORD Interval);
#define LockFrequentExecuteStatic(Interval) static DWORD LastExecuteTick; if (CheckLockFrequentExecute(LastExecuteTick,Interval))

extern const wchar_t* gsHomePage; // = L"https://conemu.github.io";
extern const wchar_t* gsDownlPage; // = L"http://www.fosshub.com/ConEmu.html";
extern const wchar_t* gsDownlPage; // = L"https://conemu.github.io/en/Downloads.html";
extern const wchar_t* gsFirstStart; // = L"https://conemu.github.io/en/SettingsFast.html";
extern const wchar_t* gsReportBug; // = L"https://conemu.github.io/en/Issues.html";
extern const wchar_t* gsReportCrash; // = L"https://conemu.github.io/en/Issues.html";
Expand Down
4 changes: 2 additions & 2 deletions src/ConEmu/UpdateConst.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define szRetryVersionIniCheck \
L"ConEmu is unable to load current version information from servers.\n" \
L"You may either check and download new versions manually from\n" \
CEDOWNLPAGE /* http://www.fosshub.com/ConEmu.html */ L"\n" \
CEDOWNLPAGE /* https://conemu.github.io/en/Downloads.html */ L"\n" \
L"or let ConEmu retry the check.\n"

#define szRetryPackageDownload \
L"ConEmu is unable to download update package.\n" \
L"You may either download new versions manually from\n" \
CEDOWNLPAGE /* http://www.fosshub.com/ConEmu.html */ L"\n" \
CEDOWNLPAGE /* https://conemu.github.io/en/Downloads.html */ L"\n" \
L"or let ConEmu retry the downloading.\n"
2 changes: 1 addition & 1 deletion src/common/Common.h
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ typedef struct _CONSOLE_SELECTION_INFO

#define CEHOMEPAGE_A "https://conemu.github.io/"
#define CEHOMEPAGE _CRT_WIDE(CEHOMEPAGE_A)
#define CEDOWNLPAGE L"https://www.fosshub.com/ConEmu.html"
#define CEDOWNLPAGE L"https://conemu.github.io/en/Downloads.html"
#define CEFLATTRPAGE L"http://flattr.com/thing/2002773/Maximus5ConEmu-on-GitHub"
#define CEDONATEPAGE L"https://conemu.github.io/donate.html"
#define CEWIKIBASE L"https://conemu.github.io/en/"
Expand Down

0 comments on commit 1dc80e9

Please sign in to comment.