Skip to content

Commit b2ee852

Browse files
committed
1.0.80
1 parent 787bafb commit b2ee852

File tree

2 files changed

+17
-28
lines changed

2 files changed

+17
-28
lines changed

fantom.nsi

Lines changed: 14 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#
44
# Built with large strings build for 3.0b1 -> http://nsis.sourceforge.net/Special_Builds
55

6-
!define VERSION "1.0.79"
7-
!define AF_VERSION "1.0.79"
6+
!define VERSION "1.0.80"
7+
!define AF_VERSION "1.0.80"
88
!define MUI_HEADERIMAGE
99
!define MUI_HEADERIMAGE_BITMAP "etc\fantomBanner.bmp"
1010
!define UNINST_REG_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\Fantom"
@@ -40,8 +40,8 @@ VIAddVersionKey "Comments" "NSIS Fantom Installer by Steve Eynon"
4040
VIAddVersionKey "LegalCopyright" "(c) 2011, Brian Frank and Andy Frank"
4141
VIAddVersionKey "FileDescription" "Installer for the Fantom Language"
4242
VIAddVersionKey "FileVersion" "${AF_VERSION}"
43-
VIProductVersion "1.0.79.0"
44-
VIFileVersion "1.0.79.0"
43+
VIProductVersion "1.0.80.0"
44+
VIFileVersion "1.0.80.0"
4545

4646
Var AF_ORIG_INSTDIR
4747

@@ -129,14 +129,6 @@ SectionEnd
129129

130130

131131

132-
# -----------------------------------------------------------------------------
133-
Section ".NET Runtime" dotnetRuntime
134-
SetOutPath "$INSTDIR\lib\dotnet"
135-
File /r extras\dotnet\*.*
136-
SectionEnd
137-
138-
139-
140132
# -----------------------------------------------------------------------------
141133
Section "Examples" examples
142134
SetOutPath "$INSTDIR\examples"
@@ -154,26 +146,24 @@ SectionEnd
154146

155147

156148
# -----------------------------------------------------------------------------
157-
Section "SWT" swt
158-
SetOutPath "$INSTDIR\lib\java"
159-
File /r extras\swt\*.*
149+
Section "FWT" fwt
150+
SetOutPath "$INSTDIR\"
151+
File /r extras\fwt\*.*
160152
SectionEnd
161153

162154

163155

164156
LangString DESC_applicationFiles ${LANG_ENGLISH} "Core Fantom libraries"
165157
LangString DESC_adminTools ${LANG_ENGLISH} "Admin scripts and text editor configutaion files"
166-
LangString DESC_dotnetRuntime ${LANG_ENGLISH} ".NET Runtime"
167158
LangString DESC_examples ${LANG_ENGLISH} "Fantom examples"
168159
LangString DESC_sourceFiles ${LANG_ENGLISH} "Fantom source files"
169-
LangString DESC_swt ${LANG_ENGLISH} "Standard Widgit Toolkit"
160+
LangString DESC_fwt ${LANG_ENGLISH} "Fantom Widgit Toolkit; pods, src, examples, and SWT jars"
170161
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
171162
!insertmacro MUI_DESCRIPTION_TEXT ${applicationFiles} $(DESC_applicationFiles)
172163
!insertmacro MUI_DESCRIPTION_TEXT ${adminTools} $(DESC_adminTools)
173-
!insertmacro MUI_DESCRIPTION_TEXT ${dotnetRuntime} $(DESC_dotnetRuntime)
174164
!insertmacro MUI_DESCRIPTION_TEXT ${examples} $(DESC_examples)
175165
!insertmacro MUI_DESCRIPTION_TEXT ${sourceFiles} $(DESC_sourceFiles)
176-
!insertmacro MUI_DESCRIPTION_TEXT ${swt} $(DESC_swt)
166+
!insertmacro MUI_DESCRIPTION_TEXT ${fwt} $(DESC_fwt)
177167
!insertmacro MUI_FUNCTION_DESCRIPTION_END
178168

179169

@@ -189,12 +179,11 @@ Function .onInit
189179
!insertmacro MULTIUSER_INIT
190180

191181
# AddSize doesn't work (reports wrong sizes) with the large strings build
192-
SectionSetSize ${applicationFiles} 7917
193-
SectionSetSize ${adminTools} 143
194-
SectionSetSize ${dotnetRuntime} 188
195-
SectionSetSize ${examples} 122
196-
SectionSetSize ${sourceFiles} 9668
197-
SectionSetSize ${swt} 3900
182+
SectionSetSize ${applicationFiles} 5444
183+
SectionSetSize ${adminTools} 144
184+
SectionSetSize ${examples} 55
185+
SectionSetSize ${sourceFiles} 9825
186+
SectionSetSize ${fwt} 6387
198187
FunctionEnd
199188

200189
Function un.onInit

readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Fantom v1.0.79 for Windows
1+
# Fantom v1.0.80 for Windows
22
---
33
[![Written for: Fantom](http://img.shields.io/badge/written%20for-Fantom-lightgray.svg)](http://fantom-lang.org/)
44
[![Licence: ISC](http://img.shields.io/badge/licence-ISC-blue.svg)](https://choosealicense.com/licenses/isc/)
@@ -11,7 +11,7 @@ Download the latest installer on the [Releases Page](https://github.com/Fantom-F
1111

1212
This is a Windows installer for the [Fantom Programming Language](https://fantom.org/).
1313

14-
It installs Fantom 1.0.79, compete with SWT for 64 bit platforms, and sets all required environment variables.
14+
It installs Fantom 1.0.80, compete with SWT for 64 bit platforms, and sets all required environment variables.
1515

1616
![Installer Screenshot](etc/screenshot.png)
1717

@@ -57,7 +57,7 @@ The installer assumes the system already has Java installed. JRE 1.8 or later is
5757

5858
## Built by NSIS
5959

60-
The installer was created with [NSIS 3.02.1](http://nsis.sourceforge.net/Main_Page) and built with the [large strings](http://nsis.sourceforge.net/Special_Builds) variant to work around problems inherent with altering the `PATH` environment variable.
60+
The installer was created with [NSIS 3.02.1](https://nsis.sourceforge.io/Main_Page) and built with the [large strings](http://nsis.sourceforge.net/Special_Builds) variant to work around problems inherent with altering the `PATH` environment variable.
6161

6262
The `/SOLID lzma` compressor created the smallest installer.
6363

0 commit comments

Comments
 (0)