Skip to content

Commit 40f895f

Browse files
Merge pull request livecode#2816 from livecodesebastien/runrev_references_removal_7.0
Runrev references removal 7.0
2 parents 35d9f94 + 6e103bc commit 40f895f

File tree

1,022 files changed

+1623
-1249
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,022 files changed

+1623
-1249
lines changed

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Notes:
22

33
The majority of the code in the LiveCode Community edition is copyrighted
4-
by Runtime Revolution Ltd and has been released under the GPLv3.
4+
by LiveCode Ltd and has been released under the GPLv3.
55

66
However, the revBrowser component on Windows and secure sockets and
77
encryption feature on Windows and Linux utilises code that is under a
88
license incompatible with the GPL. Specifically revBrowser uses ATL and
99
the secure sockets and encryption feature uses OpenSSL.
1010

1111
To this end, as a special exception to the terms and conditions of the
12-
GPL listed below, Runtime Revolution Ltd gives you explicit permission to
12+
GPL listed below, LiveCode Ltd gives you explicit permission to
1313
combine its GPL code contained in LiveCode Community with ATL and
1414
OpenSSL. You may copy and distribute such a combination provided that
1515
you adhere to the terms and conditions of all of the GPL and licenses

Makefile

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

buildbot.mk

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

builder/installer_utilities.livecodescript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
script "InstallerUtilities"
22
# This is the back-end installer, updater and uninstaller code.
33
# This code doesn't know anything about the product it is installing, and should be capable
4-
# of being re-used for products other than Revolution. It reads a "manifest" file, which contains
4+
# of being re-used for products other than LiveCode. It reads a "manifest" file, which contains
55
# a list of files to be installed and some metadata. The files are then installed according to command
66
# line options. Uninstallation uses a "record" file, which is created by the installer. This is basically the same
77
# as the manifest file, but with a little less information.

builder/mac_info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleInfoDictionaryVersion</key>
1414
<string>6.0</string>
1515
<key>CFBundleName</key>
16-
<string>runrevinstaller</string>
16+
<string>livecodeinstaller</string>
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleSignature</key>
@@ -27,7 +27,7 @@
2727
<key>NSAppleScriptEnabled</key>
2828
<string>YES</string>
2929
<key>NSHumanReadableCopyright</key>
30-
<string>Copyright 2000-2014, Runtime Revolution Ltd., All Rights Reserved.</string>
30+
<string>Copyright 2000-2015, LiveCode Ltd., All Rights Reserved.</string>
3131
<key>NSHighResolutionCapable</key>
3232
<true/>
3333
<key>LSBackgroundOnly</key>

builder/markdown_compiler.livecodescript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
script "MarkdownCompiler"
22
/*
33
4-
Compiles RunRev flavoured markdown files to HTML
4+
Compiles LiveCode flavoured markdown files to HTML
55
66
MD:
77
##... <headings>

builder/package_compiler.livecodescript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1033,7 +1033,7 @@ private command compilerExecuteShortcut @self, pCommand
10331033
exit repeat
10341034
end if
10351035

1036-
-- See if the target matches a folder prefix (e.g. .../Revolution.app)
1036+
-- See if the target matches a folder prefix (e.g. .../LiveCode.app)
10371037
if item 2 of tLine begins with (tTarget & slash) then
10381038
put true into tFound
10391039
exit repeat

builder/public_key_setter

6.03 MB
Binary file not shown.

builder/release_notes_builder.livecodescript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ For images, use the syntax
2020
![<alt id>](<image number>.<extension>)
2121
The image must be named bugfix-<bug number>-<image number>.<extension>
2222
23-
Otherwise the file should be RunRev flavoured Markdown.
23+
Otherwise the file should be LiveCode flavoured Markdown.
2424
2525
Single line files will be added to the table of sepcific bug fixes along with a link to their entry
2626
on Bugzilla. Multiline files will have their own subsection in the release notes.

builder/tools_builder.livecodescript

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ private command toolsBuilderMakeInstaller pVersion, pEdition, pPlatform, pIdeFol
363363
put tCertificatesFolder & "/runrev.pvk" into tSignParams["privatekey"]
364364
put word 1 of url ("file:" & tCertificatesFolder & "/runrev_password.txt") into tSignParams["passphrase"]
365365
put "http://timestamp.verisign.com/scripts/timstamp.dll" into tSignParams["timestamper"]
366-
put "http://www.runrev.com" into tSignParams["url"]
366+
put "http://www.livecode.com" into tSignParams["url"]
367367
if pEdition is "Community" then
368368
put "LiveCode Community Installer" into tSignParams["description"]
369369
else
@@ -411,7 +411,7 @@ private command toolsBuilderMakeInstaller pVersion, pEdition, pPlatform, pIdeFol
411411
local tPlistFile
412412
put macPList() into tPlistFile
413413
replace "[[BundleId]]" with "com.runrev.installer" in tPlistFile
414-
replace "[[BundleName]]" with "runrevinstaller" in tPlistFile
414+
replace "[[BundleName]]" with "livecodeinstaller" in tPlistFile
415415

416416
create folder tOutputFileStub & ".app"
417417
create folder tOutputFileStub & ".app" & slash & "Contents"

0 commit comments

Comments
 (0)