Skip to content

Commit

Permalink
update to r8225
Browse files Browse the repository at this point in the history
  • Loading branch information
s-u committed Apr 21, 2023
1 parent c72427b commit 8778dcd
Show file tree
Hide file tree
Showing 12 changed files with 32 additions and 19 deletions.
2 changes: 1 addition & 1 deletion English.lproj/Credits.rtf
Expand Up @@ -10,7 +10,7 @@
Stefano M. Iacus\
\

\b R: Copyright \'a9 2004-2021\
\b R: Copyright \'a9 2004-2023\
\b0 The R Foundation \
for Statistical Computing\
Expand Down
2 changes: 1 addition & 1 deletion Info.plist
Expand Up @@ -170,7 +170,7 @@
<key>NSAppleScriptEnabled</key>
<string>YES</string>
<key>NSHumanReadableCopyright</key>
<string>R.app GUI GUI_VER (%SVN% CFG_NAME), S. Urbanek &amp; H.-J. Bibiko, © R Foundation for Statistical Computing, 2021</string>
<string>R.app GUI GUI_VER (%SVN% CFG_NAME), S. Urbanek &amp; H.-J. Bibiko, © R Foundation for Statistical Computing, 2023</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
Expand Down
4 changes: 2 additions & 2 deletions InfoPlist.h
Expand Up @@ -8,9 +8,9 @@
*/

/* GUI version as shown in infos e.g. 1.27-devel */
#define GUI_VER 1.78
#define GUI_VER 1.79
/* R postfix used to denote release versions of GUI - set to R release version (e.g. 2.8.0) or to anything that will be shown in between R and GUI (e.g. - or for Mac) */
#define R_RELEASE 4.2.0
#define R_RELEASE 4.3.0

/* NOTE: unfortunately it is NOT possible to rely on MAC_OS_X_VERSION_MIN_REQUIRED,
because Xcode's Info.plist processing does NOT include flags that are passed to
Expand Down
9 changes: 9 additions & 0 deletions NEWS
@@ -1,5 +1,14 @@
NEWS for R.app GUI for Mac OS X

-- Release Version 1.79 (8225) - supplied with R 4.3.0 --
-- Release Version 1.79 (8198) - supplied with R 4.2.3 --
-- Release Version 1.79 (8160) - supplied with R 4.2.2 --
-- Release Version 1.79 (8095) - supplied with R 4.2.1 --

Last-update: 2022-06-24
* Suppress spurious IsMenuKeyEvent: error output in stderr


-- Release Version 1.78 (8075) - supplied with R 4.2.0 --

Last-update: 2022-04-18
Expand Down
2 changes: 1 addition & 1 deletion RController.m
Expand Up @@ -26,7 +26,7 @@
* writing to the Free Software Foundation, Inc., 59 Temple Place,
* Suite 330, Boston, MA 02111-1307 USA.
*
* $Id: RController.m 8064 2022-04-02 23:14:19Z urbaneks $
* $Id: RController.m 8095 2022-06-24 10:46:39Z urbaneks $
*/


Expand Down
2 changes: 1 addition & 1 deletion RGUI.h
Expand Up @@ -34,7 +34,7 @@
#define __RGUI_H__

/* GUI version */
#define R_GUI_VERSION_STR "1.78" /* it must be a string, but should parse to a valid real number - also change in InfoPlist.h */
#define R_GUI_VERSION_STR "1.79" /* it must be a string, but should parse to a valid real number - also change in InfoPlist.h */

/* macros for translatable strings */
#define NLS(S) NSLocalizedString(S,@"")
Expand Down
2 changes: 1 addition & 1 deletion de.lproj/Credits.rtf
Expand Up @@ -10,7 +10,7 @@
Stefano M. Iacus\
\

\b R: Copyright \'a9 2004-2021\
\b R: Copyright \'a9 2004-2023\
\b0 The R Foundation \
for Statistical Computing\
Expand Down
20 changes: 12 additions & 8 deletions docs/RMacOSX-FAQ.texi
Expand Up @@ -3,10 +3,10 @@
@setfilename RMacOSX-FAQ.info
@settitle R for macOS FAQ
@setchapternewpage on
@set FAQ-YEAR 2022
@set FAQ-VERSION 4.1.3 @value{FAQ-YEAR}-03-10
@set REL-VERSION 4.1.3
@set GUI-VERSION 1.77
@set FAQ-YEAR 2023
@set FAQ-VERSION 4.3.0 @value{FAQ-YEAR}-04-21
@set REL-VERSION 4.3.0
@set GUI-VERSION 1.79
@documentlanguage en
@documentencoding ISO-8859-1
@c %**end of header
Expand Down Expand Up @@ -1219,7 +1219,7 @@ files. For R 4.0.0 and higher this is
Also the @CRAN{} build includes libraries that are required
to run @R{} inside the framework. Static libraries used by @CRAN{} @R{}
and packages are available in
@uref{https://mac.R-project.org/libs-4}
@uref{https://mac.R-project.org/bin}

@node Why is R.home() not versioned?, R.app GUI crashes on startup!, What is the difference between the CRAN build and a vanilla build?, Miscellaneous questions
@section Why is R.home() in the R framework not versioned?
Expand All @@ -1228,7 +1228,7 @@ In the command line version of R, @code{R.home()} always points to the
@code{Resources} directory symbolic link inside the R framework which
points to @code{Versions/Current/Resource} which is turn points to the
actual home -- a versioned directory such as for example
@code{Versions/4.1/Resources}. This is how framework versioning works
@code{Versions/4.2/Resources}. This is how framework versioning works
in macOS and is defined by Apple (see
@uref{https://developer.apple.com/documentation/MacOSX/Conceptual/BPFrameworks/Concepts/FrameworkAnatomy.html,
Framework Anatomy}).
Expand Down Expand Up @@ -1375,12 +1375,16 @@ in tar-balls at @uref{https://mac.R-project.org/} and can be installed
by unpacking into @code{/}, e.g.:

@example
curl -LO http://mac.r-project.org/high-sierra/R-4.1-branch/x86_64/R-4.1-branch.tar.gz
tar fxz R-4.1-branch.tar.gz -C /
curl -LO http://mac.r-project.org/high-sierra/R-4.2-branch/x86_64/R-4.2-branch.tar.gz
tar fxz R-4.2-branch.tar.gz -C /
@end example

If you are not the administrator, you may have to use @code{sudo tar ...}.

NOTE: R releases since 4.2.0 include an entitlement in the hardened
runtime which allows debugging, so the above issue should not occur in
R releases since R 4.2.0.

@bye
@c Local Variables: ***
Expand Down
2 changes: 1 addition & 1 deletion fr.lproj/Credits.rtf
Expand Up @@ -10,7 +10,7 @@
Stefano M. Iacus\
\

\b R: Copyright \'a9 2004-2021\
\b R: Copyright \'a9 2004-2023\
\b0 La Fondation R \
pour le Calcul Statistique\
Expand Down
2 changes: 1 addition & 1 deletion it.lproj/Credits.rtf
Expand Up @@ -10,7 +10,7 @@
Stefano M. Iacus\
\

\b R: Copyright \'a9 2004-2021\
\b R: Copyright \'a9 2004-2023\
\b0 The R Foundation \
for Statistical Computing\
Expand Down
2 changes: 1 addition & 1 deletion ja.lproj/Credits.rtf
Expand Up @@ -12,7 +12,7 @@
Stefano M. Iacus\
\

\b R: Copyright \'a9 2004-2021\
\b R: Copyright \'a9 2004-2023\
\b0 The R Foundation \
for Statistical Computing\
Expand Down
2 changes: 1 addition & 1 deletion nl.lproj/Credits.rtf
Expand Up @@ -10,7 +10,7 @@
Stefano M. Iacus\
\

\b R: Copyright \'a9 2004-2021\
\b R: Copyright \'a9 2004-2023\
\b0 The R Foundation \
for Statistical Computing\
Expand Down

0 comments on commit 8778dcd

Please sign in to comment.