mirror of
https://github.com/monero-project/monero-gui
synced 2024-12-02 07:41:23 +01:00
Merge pull request #1195
def4434
Windows Installer: Updates for Lithium Luna i.e. 0.12.0.0
This commit is contained in:
commit
3934ba32ec
@ -1,4 +1,4 @@
|
|||||||
; Monero Helium Hydra GUI Wallet Installer for Windows
|
; Monero Lithium Luna GUI Wallet Installer for Windows
|
||||||
; Copyright (c) 2014-2018, The Monero Project
|
; Copyright (c) 2014-2018, The Monero Project
|
||||||
; See LICENSE
|
; See LICENSE
|
||||||
|
|
||||||
@ -8,7 +8,7 @@ AppName=Monero GUI Wallet
|
|||||||
; Thus it's important to keep this stable over releases
|
; Thus it's important to keep this stable over releases
|
||||||
; With a different "AppName" InnoSetup would treat a mere update as a completely new application and thus mess up
|
; With a different "AppName" InnoSetup would treat a mere update as a completely new application and thus mess up
|
||||||
|
|
||||||
AppVersion=0.11.1.0
|
AppVersion=0.12.0.0
|
||||||
DefaultDirName={pf}\Monero GUI Wallet
|
DefaultDirName={pf}\Monero GUI Wallet
|
||||||
DefaultGroupName=Monero GUI Wallet
|
DefaultGroupName=Monero GUI Wallet
|
||||||
UninstallDisplayIcon={app}\monero-wallet-gui.exe
|
UninstallDisplayIcon={app}\monero-wallet-gui.exe
|
||||||
@ -39,7 +39,7 @@ Name: "en"; MessagesFile: "compiler:Default.isl"
|
|||||||
; .exe/.dll file possibly with version info).
|
; .exe/.dll file possibly with version info).
|
||||||
;
|
;
|
||||||
; This is far more robust than relying on version info or on file dates (flag "comparetimestamp").
|
; This is far more robust than relying on version info or on file dates (flag "comparetimestamp").
|
||||||
; As of version 0.11.1.0, the Monero .exe files do not carry version info anyway in their .exe headers.
|
; As of version 0.12.0.0, the Monero .exe files do not carry version info anyway in their .exe headers.
|
||||||
; The only small drawback seems to be somewhat longer update times because each and every file is
|
; The only small drawback seems to be somewhat longer update times because each and every file is
|
||||||
; copied again, even if already present with correct file date and identical content.
|
; copied again, even if already present with correct file date and identical content.
|
||||||
;
|
;
|
||||||
@ -74,23 +74,16 @@ Source: "monero-daemon.bat"; DestDir: "{app}"; Flags: ignoreversion;
|
|||||||
Source: "bin\monero-blockchain-export.exe"; DestDir: "{app}"; Flags: ignoreversion
|
Source: "bin\monero-blockchain-export.exe"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
Source: "bin\monero-blockchain-import.exe"; DestDir: "{app}"; Flags: ignoreversion
|
Source: "bin\monero-blockchain-import.exe"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
|
||||||
; was present in 0.10.3.1, not present anymore in 0.11.1.0
|
; was present in 0.10.3.1, not present anymore in 0.11.1.0 and after
|
||||||
; Source: "bin\monero-utils-deserialize.exe"; DestDir: "{app}"; Flags: ignoreversion
|
; Source: "bin\monero-utils-deserialize.exe"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
|
||||||
; Various .qm files for translating the wallet UI "on the fly" into all supported languages
|
; Various .qm files for translating the wallet UI "on the fly" into all supported languages
|
||||||
Source: "bin\translations\*"; DestDir: "{app}\translations"; Flags: recursesubdirs ignoreversion
|
Source: "bin\translations\*"; DestDir: "{app}\translations"; Flags: recursesubdirs ignoreversion
|
||||||
|
|
||||||
; Core Qt runtime
|
; Core Qt runtime
|
||||||
Source: "bin\Qt5Core.dll"; DestDir: "{app}"; Flags: ignoreversion
|
; Use wildcards to deal with differences in those files between Qt version, like
|
||||||
Source: "bin\Qt5Gui.dll"; DestDir: "{app}"; Flags: ignoreversion
|
; "Qt5MultimediaQuick_p.dll" versus "Qt5MultimediaQuick.dll" and "Qt5RemoteObjects.dll" as new file
|
||||||
Source: "bin\Qt5Multimedia.dll"; DestDir: "{app}"; Flags: ignoreversion
|
Source: "bin\Qt5*.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
Source: "bin\Qt5MultimediaQuick_p.dll"; DestDir: "{app}"; Flags: ignoreversion
|
|
||||||
Source: "bin\Qt5Network.dll"; DestDir: "{app}"; Flags: ignoreversion
|
|
||||||
Source: "bin\Qt5Qml.dll"; DestDir: "{app}"; Flags: ignoreversion
|
|
||||||
Source: "bin\Qt5Quick.dll"; DestDir: "{app}"; Flags: ignoreversion
|
|
||||||
Source: "bin\Qt5Svg.dll"; DestDir: "{app}"; Flags: ignoreversion
|
|
||||||
Source: "bin\Qt5Widgets.dll"; DestDir: "{app}"; Flags: ignoreversion
|
|
||||||
Source: "bin\Qt5XmlPatterns.dll"; DestDir: "{app}"; Flags: ignoreversion
|
|
||||||
|
|
||||||
; Qt QML elements like the local files selector "FolderListModel" and "Settings"
|
; Qt QML elements like the local files selector "FolderListModel" and "Settings"
|
||||||
Source: "bin\Qt\*"; DestDir: "{app}\Qt"; Flags: recursesubdirs ignoreversion
|
Source: "bin\Qt\*"; DestDir: "{app}\Qt"; Flags: recursesubdirs ignoreversion
|
||||||
@ -101,8 +94,10 @@ Source: "bin\audio\*"; DestDir: "{app}\audio"; Flags: recursesubdirs ignoreversi
|
|||||||
; Qt bearer / network connection management
|
; Qt bearer / network connection management
|
||||||
Source: "bin\bearer\*"; DestDir: "{app}\bearer"; Flags: recursesubdirs ignoreversion
|
Source: "bin\bearer\*"; DestDir: "{app}\bearer"; Flags: recursesubdirs ignoreversion
|
||||||
|
|
||||||
; Qt Windows platform plugin
|
; Qt Windows platform plugins
|
||||||
Source: "bin\platforms\qwindows.dll"; DestDir: "{app}\platforms"; Flags: ignoreversion
|
Source: "bin\platforms\*"; DestDir: "{app}\platforms"; Flags: recursesubdirs ignoreversion
|
||||||
|
Source: "bin\platforminputcontexts\*"; DestDir: "{app}\platforminputcontexts"; Flags: recursesubdirs ignoreversion
|
||||||
|
Source: "bin\styles\*"; DestDir: "{app}\styles"; Flags: recursesubdirs ignoreversion
|
||||||
|
|
||||||
; Qt support for SVG icons
|
; Qt support for SVG icons
|
||||||
Source: "bin\iconengines\*"; DestDir: "{app}\iconengines"; Flags: recursesubdirs ignoreversion
|
Source: "bin\iconengines\*"; DestDir: "{app}\iconengines"; Flags: recursesubdirs ignoreversion
|
||||||
@ -121,9 +116,7 @@ Source: "bin\playlistformats\*"; DestDir: "{app}\playlistformats"; Flags: recurs
|
|||||||
; Qt graphical effects as part of the core runtime, effects like blurring and blending
|
; Qt graphical effects as part of the core runtime, effects like blurring and blending
|
||||||
Source: "bin\QtGraphicalEffects\*"; DestDir: "{app}\QtGraphicalEffects"; Flags: recursesubdirs ignoreversion
|
Source: "bin\QtGraphicalEffects\*"; DestDir: "{app}\QtGraphicalEffects"; Flags: recursesubdirs ignoreversion
|
||||||
|
|
||||||
; Some more Qt graphical effects
|
; No more Qt "private" directory in 0.12.0.0
|
||||||
; "private" as a name for this directory looks a little strange. Historical reasons?
|
|
||||||
Source: "bin\private\*"; DestDir: "{app}\private"; Flags: recursesubdirs ignoreversion
|
|
||||||
|
|
||||||
; Qt QML files
|
; Qt QML files
|
||||||
Source: "bin\QtQml\*"; DestDir: "{app}\QtQml"; Flags: recursesubdirs ignoreversion
|
Source: "bin\QtQml\*"; DestDir: "{app}\QtQml"; Flags: recursesubdirs ignoreversion
|
||||||
@ -172,16 +165,20 @@ Source: "bin\libharfbuzz-0.dll"; DestDir: "{app}"; Flags: ignoreversion
|
|||||||
; LibIconv, conversions between character encodings
|
; LibIconv, conversions between character encodings
|
||||||
Source: "bin\libiconv-2.dll"; DestDir: "{app}"; Flags: ignoreversion
|
Source: "bin\libiconv-2.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
|
||||||
; Part of cygwin? Needed by Qt somehow?
|
; ICU, International Components for Unicode
|
||||||
Source: "bin\libicudt57.dll"; DestDir: "{app}"; Flags: ignoreversion
|
; After changes for supporting UTF-8 path and file names by using Boost Locale, all those 5
|
||||||
Source: "bin\libicuin57.dll"; DestDir: "{app}"; Flags: ignoreversion
|
; ICU libraries are needed in 0.12.0.0
|
||||||
Source: "bin\libicuuc57.dll"; DestDir: "{app}"; Flags: ignoreversion
|
Source: "bin\libicudt58.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
Source: "bin\libicuin58.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
Source: "bin\libicuio58.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
Source: "bin\libicutu58.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
Source: "bin\libicuuc58.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
|
||||||
; Library for native language support, part of GNU gettext
|
; Library for native language support, part of GNU gettext
|
||||||
Source: "bin\libintl-8.dll"; DestDir: "{app}"; Flags: ignoreversion
|
Source: "bin\libintl-8.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
|
||||||
; JasPer, support for JPEG-2000
|
; JasPer, support for JPEG-2000
|
||||||
; was present in 0.10.3.1, not present anymore in 0.11.1.0
|
; was present in 0.10.3.1, not present anymore in 0.11.1.0 and after
|
||||||
; Source: "bin\libjasper-1.dll"; DestDir: "{app}"; Flags: ignoreversion
|
; Source: "bin\libjasper-1.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
|
||||||
; libjpeg, C library for reading and writing JPEG image files
|
; libjpeg, C library for reading and writing JPEG image files
|
||||||
@ -197,8 +194,10 @@ Source: "bin\liblzma-5.dll"; DestDir: "{app}"; Flags: ignoreversion
|
|||||||
Source: "bin\libmng-2.dll"; DestDir: "{app}"; Flags: ignoreversion
|
Source: "bin\libmng-2.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
|
||||||
; PCRE, Perl Compatible Regular Expressions
|
; PCRE, Perl Compatible Regular Expressions
|
||||||
|
; "libpcre2-16-0.dll" is new for 0.12.0.0; unclear whether "libpcre16-0.dll" is still needed
|
||||||
Source: "bin\libpcre-1.dll"; DestDir: "{app}"; Flags: ignoreversion
|
Source: "bin\libpcre-1.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
Source: "bin\libpcre16-0.dll"; DestDir: "{app}"; Flags: ignoreversion
|
Source: "bin\libpcre16-0.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
Source: "bin\libpcre2-16-0.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
|
||||||
; libpng, the official PNG reference library
|
; libpng, the official PNG reference library
|
||||||
Source: "bin\libpng16-16.dll"; DestDir: "{app}"; Flags: ignoreversion
|
Source: "bin\libpng16-16.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
@ -215,6 +214,10 @@ Source: "bin\libwinpthread-1.dll"; DestDir: "{app}"; Flags: ignoreversion
|
|||||||
; zlib compression library
|
; zlib compression library
|
||||||
Source: "bin\zlib1.dll"; DestDir: "{app}"; Flags: ignoreversion
|
Source: "bin\zlib1.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
|
||||||
|
; Stack protection
|
||||||
|
; New for 0.12.0.0
|
||||||
|
Source: "bin\libssp-0.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||||||
|
|
||||||
|
|
||||||
[Tasks]
|
[Tasks]
|
||||||
Name: desktopicon; Description: "Create a &desktop icon"; GroupDescription: "Additional icons:";
|
Name: desktopicon; Description: "Create a &desktop icon"; GroupDescription: "Additional icons:";
|
||||||
@ -249,7 +252,7 @@ begin
|
|||||||
// Additional wizard page for entering a special blockchain location
|
// Additional wizard page for entering a special blockchain location
|
||||||
blockChainDefaultDir := ExpandConstant('{commonappdata}\bitmonero');
|
blockChainDefaultDir := ExpandConstant('{commonappdata}\bitmonero');
|
||||||
s := 'The default folder to store the Monero blockchain is ' + blockChainDefaultDir;
|
s := 'The default folder to store the Monero blockchain is ' + blockChainDefaultDir;
|
||||||
s := s + '. As this will need more than 30 GB of free space, you may want to use a folder on a different drive.';
|
s := s + '. As this will need more than 50 GB of free space, you may want to use a folder on a different drive.';
|
||||||
s := s + ' If yes, specify that folder here.';
|
s := s + ' If yes, specify that folder here.';
|
||||||
|
|
||||||
BlockChainDirPage := CreateInputDirPage(wpSelectDir,
|
BlockChainDirPage := CreateInputDirPage(wpSelectDir,
|
||||||
|
@ -6,7 +6,7 @@ Copyright (c) 2014-2018, The Monero Project
|
|||||||
|
|
||||||
This is a *Inno Setup* script `Monero.iss` plus some related files
|
This is a *Inno Setup* script `Monero.iss` plus some related files
|
||||||
that allows you to build a standalone Windows installer (.exe) for
|
that allows you to build a standalone Windows installer (.exe) for
|
||||||
the GUI wallet that comes with the Helium Hydra release of Monero.
|
the GUI wallet that comes with the Lithium Luna release of Monero.
|
||||||
|
|
||||||
This turns the GUI wallet into a more or less standard Windows program,
|
This turns the GUI wallet into a more or less standard Windows program,
|
||||||
by default installed into a subdirectory of `C:\Program Files`, a
|
by default installed into a subdirectory of `C:\Program Files`, a
|
||||||
@ -18,7 +18,7 @@ Monero.
|
|||||||
As the setup script in file [Monero.iss](Monero.iss) has to list every
|
As the setup script in file [Monero.iss](Monero.iss) has to list every
|
||||||
single file of the GUI wallet package to install by name,
|
single file of the GUI wallet package to install by name,
|
||||||
this version of the script only works with exactly the GUI wallet
|
this version of the script only works with exactly the GUI wallet
|
||||||
for Monero release *Helium Hydra* that you find on
|
for Monero release *Lithium Luna* that you find on
|
||||||
[the official download page](https://getmonero.org/downloads/).
|
[the official download page](https://getmonero.org/downloads/).
|
||||||
|
|
||||||
But of course it will be easy to modify the script for future
|
But of course it will be easy to modify the script for future
|
||||||
@ -32,13 +32,13 @@ See [LICENSE](LICENSE).
|
|||||||
|
|
||||||
You can only build on Windows, and the result is always a
|
You can only build on Windows, and the result is always a
|
||||||
Windows .exe file that can act as a standalone installer for the
|
Windows .exe file that can act as a standalone installer for the
|
||||||
Helium Hydra GUI wallet.
|
Lithium Luna GUI wallet.
|
||||||
|
|
||||||
The build steps in detail:
|
The build steps in detail:
|
||||||
|
|
||||||
1. Install *Inno Setup*. You can get it from [here](http://www.jrsoftware.org/isdl.php)
|
1. Install *Inno Setup*. You can get it from [here](http://www.jrsoftware.org/isdl.php)
|
||||||
2. Get the Inno Setup script plus related files by cloning the whole [monero-core GitHub repository](https://github.com/monero-project/monero-core); you will only need the files in the installer directory `installers\windows` however
|
2. Get the Inno Setup script plus related files by cloning the whole [monero-core GitHub repository](https://github.com/monero-project/monero-core); you will only need the files in the installer directory `installers\windows` however
|
||||||
3. The setup script is written to take the GUI wallet files from a subdirectory named `bin`; so create `installers\windows\bin`, get the zip file of the GUI wallet from [here](https://getmonero.org/downloads/), unpack it somewhere, and copy all the files and subdirectories in the `monero-gui-0.11.1.0` directory to this `bin` subdirectory
|
3. The setup script is written to take the GUI wallet files from a subdirectory named `bin`; so create `installers\windows\bin`, get the zip file of the GUI wallet from [here](https://getmonero.org/downloads/), unpack it somewhere, and copy all the files and subdirectories in the `monero-gui-0.12.0.0` directory to this `bin` subdirectory
|
||||||
4. Start Inno Setup, load `Monero.iss` and compile it
|
4. Start Inno Setup, load `Monero.iss` and compile it
|
||||||
5. The result i.e. the finished installer will be the file `mysetup.exe` in the `installers\windows\Output` subdirectory
|
5. The result i.e. the finished installer will be the file `mysetup.exe` in the `installers\windows\Output` subdirectory
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Monero Helium Hydra GUI Wallet</title>
|
<title>Monero Lithium Luna GUI Wallet</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body style="font-family: Arial, Helvetica, sans-serif">
|
<body style="font-family: Arial, Helvetica, sans-serif">
|
||||||
<h1>Monero Helium Hydra GUI Wallet</h1>
|
<h1>Monero Lithium Luna GUI Wallet</h1>
|
||||||
|
|
||||||
<p>Copyright (c) 2014-2018, The Monero Project<br>
|
<p>Copyright (c) 2014-2018, The Monero Project<br>
|
||||||
Date: September 19, 2017</p>
|
Date: March 18, 2018</p>
|
||||||
|
|
||||||
<h2>Preface</h2>
|
<h2>Preface</h2>
|
||||||
|
|
||||||
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
<h2>Content of the Package</h2>
|
<h2>Content of the Package</h2>
|
||||||
|
|
||||||
<p>You just installed the <i>Monero GUI wallet</i> for Windows, release Helium Hydra, more exact version 0.11.1.0.
|
<p>You just installed the <i>Monero GUI wallet</i> for Windows, release Lithium Luna, more exact version 0.12.0.0.
|
||||||
The wallet enables you to send and receive Moneroj in a secure and very private way.
|
The wallet enables you to send and receive Moneroj in a secure and very private way.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@ -61,9 +61,9 @@
|
|||||||
provides the most security and privacy possible for you.</p>
|
provides the most security and privacy possible for you.</p>
|
||||||
|
|
||||||
<p>However if your Internet access makes it difficult to run a full node, or if you have simply no room to store
|
<p>However if your Internet access makes it difficult to run a full node, or if you have simply no room to store
|
||||||
the blockchain locally (over 30 GB in fall 2017, and of course growing), you can compromise and try to connect
|
the blockchain locally (around 50 GB in spring 2018, and of course growing), you can compromise and try to connect
|
||||||
to a remote node. One way of finding such a node is checking
|
to a remote node. One way of finding such a node is checking
|
||||||
<a href="https://moneroworld.com/pages/nodes.html">this page</a>.
|
<a href="https://moneroworld.com/#nodes">this page</a>.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2>Initial Blockchain Download</h2>
|
<h2>Initial Blockchain Download</h2>
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 440 KiB After Width: | Height: | Size: 440 KiB |
Loading…
Reference in New Issue
Block a user