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

Commit eeb2a64

Browse files
[[ RemoveRunRev ]] Update remaining text files
1 parent 75acff3 commit eeb2a64

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

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.

engine/engine.gyp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@
539539

540540
'variables':
541541
{
542-
'app_plist': 'rsrc/Revolution-Info.plist',
542+
'app_plist': 'rsrc/LiveCode-Info.plist',
543543
},
544544

545545
'dependencies':

ide-support/revsaveasstandalone.livecodescript

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ private command revCreateStandalone pStack, pFolder
641641
-- Necessary as some "users" might rename the actual executable file, arghhhh!
642642
if (line 1 of tEngineSourceFile[tPlatform] is not empty and there is not a file line 1 of tEngineSourceFile[tPlatform]) and \
643643
(line 2 of tEngineSourceFile[tPlatform] is not empty and there is not a file line 2 of tEngineSourceFile[tPlatform]) then
644-
throw "Standalone: Ensure that you have not renamed the main Revolution executable file: " &cr& tEngineSourceFile[tPlatform]
644+
throw "Standalone: Ensure that you have not renamed the main LiveCode executable file: " &cr& tEngineSourceFile[tPlatform]
645645
end if
646646
put tDirectory & sStandaloneSettingsA["name"] into tStandalonePath[tPlatform]
647647
if tPlatform is "Windows" then
@@ -2487,7 +2487,7 @@ private command revSmartChecking pStackFilesList, pSearchForInclusions
24872487
put false into sStandaloneSettingsA["Magnify"] -- PM-2015-06-24: [[ Bug 15535 ]] Make possible to include magnify palette in standalones
24882488
put false into sStandaloneSettingsA["pdfPrinter"]
24892489

2490-
# OK-2007-11-13 : Support for revolution print dialogs
2490+
# OK-2007-11-13 : Support for LiveCode print dialogs
24912491
put false into sStandaloneSettingsA["revolutionPrintDialogs"]
24922492
end if
24932493

@@ -2618,7 +2618,7 @@ private command revCheckObject pObject,pUserLibraries, pSearchForInclusions
26182618
put true into sStandaloneSettingsA["pdfPrinter"]
26192619
end if
26202620

2621-
# OK-2007-11-13 : Support for revolution print dialogs. The dialogs are included if there is any reference to systemPrintSelector in the script,
2621+
# OK-2007-11-13 : Support for LiveCode print dialogs. The dialogs are included if there is any reference to systemPrintSelector in the script,
26222622
# or if we are building for linux. (This might include the files more often than they are required).
26232623
if offset("systemPrintSelector", tScript) is not 0 or "Linux" is among the lines of sPlatformList then
26242624
put true into sStandaloneSettingsA["revolutionPrintDialogs"]

revbrowser/src/revbrowser.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ BEGIN
5757
DEFPUSHBUTTON "Log In",IDOK,151,105,50,14
5858
PUSHBUTTON "Cancel",IDCANCEL,204,105,50,14
5959
ICON IDI_SECURITY_WARNING,IDC_AUTH_USERNAME_LABEL,7,7,21,20
60-
LTEXT "To view this page, you must log into this area on www.runrev.com:80:",IDC_AUTH_REASON,37,7,217,17
60+
LTEXT "To view this page, you must log into this area on www.livecode.com:80:",IDC_AUTH_REASON,37,7,217,17
6161
LTEXT "Restricted area for staff",IDC_AUTH_REALM,43,27,211,9
6262
LTEXT "Your password will be sent unencrypted. Or your password might be sent encrypted.",IDC_AUTH_SECURE,37,41,217,17
6363
EDITTEXT IDC_AUTH_USERNAME,85,66,156,14,ES_AUTOHSCROLL

revdb/src/revdb.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ void GetColumnByNumber(DBCursor *thecursor, char *&result, int columnid, char *v
783783
inline const char *BooltoStr(Bool b) {return b == True?"True":"False";}
784784

785785
/// @brief Sets the location that revdb should look for drivers next time a connection is attempted.
786-
/// @param driverPath The folder path to look for drivers in. This should be a path in Revolution format.
786+
/// @param driverPath The folder path to look for drivers in. This should be a path in LiveCode format.
787787
/// No input checking is carried out, if the path is invalid, then the intended drivers will just not be found.
788788
void REVDB_SetDriverPath(char *args[], int nargs, char **retstring,
789789
Bool *pass, Bool *error)

revvideograbber/src/dsvideograbber.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2694,7 +2694,7 @@ void CDirectXVideoGrabber::GetFormatInfo(int *fwidth, int *fheight, double *fps)
26942694
{
26952695
VIDEOINFOHEADER *pvi = (VIDEOINFOHEADER *)pmt->pbFormat;
26962696

2697-
// OK-2007-09-26 : The frame rate should be returned to Revolution in frames per second and thus should be convert to
2697+
// OK-2007-09-26 : The frame rate should be returned to LiveCode in frames per second and thus should be convert to
26982698
// FPS from microseconds per frame.
26992699
if (fps && !m_stSetting . m_bUseFrameRate)
27002700
*fps = (double)(10000000.0 / double(pvi -> AvgTimePerFrame));

revvideograbber/src/rrecapture.m

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

revxml/src/revxml.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1863,7 +1863,7 @@ Input: [0]=xml document id
18631863
[2]= attribute name
18641864
[3]= attribute value
18651865
Output: error message on bad attribute or bad element
1866-
Example: XML_SetAttributeValue docid,elementpath,"product","revolution"
1866+
Example: XML_SetAttributeValue docid,elementpath,"product","livecode"
18671867
*/
18681868
void XML_SetAttributeValue(char *args[], int nargs, char **retstring,
18691869
Bool *pass, Bool *error)

0 commit comments

Comments
 (0)