Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 01ddb69

Browse files
[[ RemoveRunRev ]] Few fixes after Peter's review over the pull request
* Added missing Copyright headers * Fixed un-reverted change of the installation / log folder
1 parent 1fa3d47 commit 01ddb69

30 files changed

+421
-10
lines changed

builder/installer_utilities.livecodescript

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1438,14 +1438,14 @@ command log pMessage
14381438
local tFile
14391439
switch the platform
14401440
case "linux"
1441-
put $HOME & "/.livecode/logs/" & toLower(the uProduct of stack "Installer") & "_installer_log.txt" into tFile
1441+
put $HOME & "/.runrev/logs/" & toLower(the uProduct of stack "Installer") & "_installer_log.txt" into tFile
14421442
break
14431443
case "macos"
1444-
put specialFolderPath("cusr") & "/Library/Logs/LiveCode/" & the uProduct of stack "Installer" & "InstallerLog.txt" into tFile
1444+
put specialFolderPath("cusr") & "/Library/Logs/RunRev/" & the uProduct of stack "Installer" & "InstallerLog.txt" into tFile
14451445
break
14461446
case "win32"
14471447
-- Make sure we put logs in the 'Local' AppData section.
1448-
put specialFolderPath(0x001c) & "/LiveCode/Logs/" & the uProduct of stack "Installer" & "InstallerLog.txt" into tFile
1448+
put specialFolderPath(0x001c) & "/RunRev/Logs/" & the uProduct of stack "Installer" & "InstallerLog.txt" into tFile
14491449
break
14501450
end switch
14511451

engine/rsrc/server.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ BEGIN
2121
BLOCK "040904b0"
2222
BEGIN
2323
VALUE "Comments", "\0"
24-
VALUE "CompanyName", "LiveCode td\0"
24+
VALUE "CompanyName", "LiveCode Ltd\0"
2525
VALUE "FileDescription", "LiveCode Community Server for Windows\0"
2626
VALUE "FileVersion", MC_BUILD_FILE_LONG_VERSION "\0"
2727
VALUE "InternalName", "LiveCodeCommunityServer\0"

engine/src/execpt.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1172,4 +1172,3 @@ Exec_stat MCExecPoint::doscript(MCExecPoint& ep, uint2 line, uint2 pos)
11721172
}
11731173
return ES_NORMAL;
11741174
}
1175-

engine/src/graphicscontext.cpp

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/* Copyright (C) 2003-2015 LiveCode Ltd.
2+
3+
This file is part of LiveCode.
4+
5+
LiveCode is free software; you can redistribute it and/or modify it under
6+
the terms of the GNU General Public License v3 as published by the Free
7+
Software Foundation.
8+
9+
LiveCode is distributed in the hope that it will be useful, but WITHOUT ANY
10+
WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
for more details.
13+
14+
You should have received a copy of the GNU General Public License
15+
along with LiveCode. If not see <http://www.gnu.org/licenses/>. */
16+
117
#include "prefix.h"
218

319
#include "core.h"

engine/src/graphicscontext.h

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/* Copyright (C) 2003-2015 LiveCode Ltd.
2+
3+
This file is part of LiveCode.
4+
5+
LiveCode is free software; you can redistribute it and/or modify it under
6+
the terms of the GNU General Public License v3 as published by the Free
7+
Software Foundation.
8+
9+
LiveCode is distributed in the hope that it will be useful, but WITHOUT ANY
10+
WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
for more details.
13+
14+
You should have received a copy of the GNU General Public License
15+
along with LiveCode. If not see <http://www.gnu.org/licenses/>. */
16+
117
#ifndef GRAPHICSCONTEXT_H
218
#define GRAPHICSCONTEXT_H
319

libcore/include/atlsubset.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (C) 2003-2015 LiveCode Ltd.
1+
/* Copyright (C) 2009-2015 LiveCode Ltd.
22
33
This file is part of LiveCode.
44

libcore/include/core.h

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/* Copyright (C) 2009-2015 LiveCode Ltd.
2+
3+
This file is part of LiveCode.
4+
5+
LiveCode is free software; you can redistribute it and/or modify it under
6+
the terms of the GNU General Public License v3 as published by the Free
7+
Software Foundation.
8+
9+
LiveCode is distributed in the hope that it will be useful, but WITHOUT ANY
10+
WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
for more details.
13+
14+
You should have received a copy of the GNU General Public License
15+
along with LiveCode. If not see <http://www.gnu.org/licenses/>. */
16+
117
////////////////////////////////////////////////////////////////////////////////
218
//
319
// Private Header File:

libcore/include/filesystem.h

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/* Copyright (C) 2009-2015 LiveCode Ltd.
2+
3+
This file is part of LiveCode.
4+
5+
LiveCode is free software; you can redistribute it and/or modify it under
6+
the terms of the GNU General Public License v3 as published by the Free
7+
Software Foundation.
8+
9+
LiveCode is distributed in the hope that it will be useful, but WITHOUT ANY
10+
WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
for more details.
13+
14+
You should have received a copy of the GNU General Public License
15+
along with LiveCode. If not see <http://www.gnu.org/licenses/>. */
16+
117
#ifndef __MC_FILESYSTEM__
218
#define __MC_FILESYSTEM__
319

libcore/include/module.h

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/* Copyright (C) 2009-2015 LiveCode Ltd.
2+
3+
This file is part of LiveCode.
4+
5+
LiveCode is free software; you can redistribute it and/or modify it under
6+
the terms of the GNU General Public License v3 as published by the Free
7+
Software Foundation.
8+
9+
LiveCode is distributed in the hope that it will be useful, but WITHOUT ANY
10+
WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
for more details.
13+
14+
You should have received a copy of the GNU General Public License
15+
along with LiveCode. If not see <http://www.gnu.org/licenses/>. */
16+
117
#ifndef __MC_MODULE__
218
#define __MC_MODULE__
319

libcore/include/sserialize.h

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
1+
/* Copyright (C) 2009-2015 LiveCode Ltd.
2+
3+
This file is part of LiveCode.
4+
5+
LiveCode is free software; you can redistribute it and/or modify it under
6+
the terms of the GNU General Public License v3 as published by the Free
7+
Software Foundation.
8+
9+
LiveCode is distributed in the hope that it will be useful, but WITHOUT ANY
10+
WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
for more details.
13+
14+
You should have received a copy of the GNU General Public License
15+
along with LiveCode. If not see <http://www.gnu.org/licenses/>. */
16+
117
/*
218
* sserialize.h
319
* libcore
420
*
521
* Created by Ian Macphail on 22/10/2009.
6-
* Copyright 2009 __MyCompanyName__. All rights reserved.
722
*
823
*/
924

0 commit comments

Comments
 (0)