Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-04-21 | build: update post-build.bat (autogenerate) and clarify README (windows) | Andres G. Aragoneses | 3 | -44/+66 | |
Turns out post-build.bat cannot be edited manually because it is a generated file, so I'm adding some clarifications about this in the README.txt file and on the file itself with a REM comment. I've also auto-generated the file now, which has re-fixed the 2 issues I fixed recently in it (but in a different way), and has added some copy lines of more resources I wasn't aware of. | |||||
2013-04-21 | build: give a clearer error when not finding WIX env var (windows) | Andres G. Aragoneses | 1 | -1/+6 | |
Even if the README tells you to install WiX, it could happen that you run the javascript file from a command line shell that you had already open before you installed WiX, in which case it would fail. | |||||
2013-04-21 | build: give more clues on how to not run the WiX installer (windows) | Andres G. Aragoneses | 2 | -1/+5 | |
It wasn't clear if it was the wixproj (via MSBuild or VisualStudio) which called the javascript file or the other way around. | |||||
2013-04-20 | build: fix path of the AudioCD icons in post-build.bat (windows build) | Andres G. Aragoneses | 1 | -2/+5 | |
The extension Banshee.AudioCD had been renamed (since DVD playback support was implemented) to Banshee.OpticalDisc. | |||||
2013-04-20 | build: fix path of the iPod icons in post-build.bat (windows build) | Andres G. Aragoneses | 1 | -28/+34 | |
The extension Banshee.Dap.Ipod had been deprecated, and removed already, some time ago, so this script was failing. We now use the paths of the icons for the new extension Banshee.Dap.AppleDevice. | |||||
2013-04-20 | build: use an env var for git in checkout-banshee.bat | Andres G. Aragoneses | 1 | -3/+4 | |
This way it is easier for someone to change the .bat file to point to git's path in case it is not in their system's PATH. | |||||
2012-09-29 | release: Bump version to 2.6.0 | Bertrand Lorentz | 2 | -3/+3 | |
2012-09-13 | release: Bump version to 2.5.1 | Bertrand Lorentz | 2 | -3/+3 | |
2012-08-22 | release: Bump version to 2.4.0 | Bertrand Lorentz | 2 | -3/+3 | |
2012-03-20 | windows: Don't show the EULA dialog in the installer (bgo#647210) | Bertrand Lorentz | 2 | -5/+58 | |
We do not need the user to agree to the MIT license or the GPL, so we don't need to show them. Saving your mouse, one click at a time... To achieve that we need to replace the standard WixUI_InstallDir UI module with its definition, and adapt it to remove the license agreement dialog. We now install the license.rtf file to the root of the install folder, which fixes bgo#642818. The first paragraph of the file is also adapted for clarity. | |||||
2012-03-19 | release: Bump version to 2.4.0 | Bertrand Lorentz | 2 | -3/+3 | |
2012-03-07 | release: Bump version to 2.3.6 | Bertrand Lorentz | 2 | -3/+3 | |
2012-02-15 | release: Bump version to 2.3.5 | Bertrand Lorentz | 2 | -3/+3 | |
2012-01-19 | release: Bump the version number | Alexander Kojevnikov | 2 | -3/+3 | |
2011-12-21 | release: Bump version to 2.3.3 | Bertrand Lorentz | 2 | -3/+3 | |
2011-11-30 | release: Bump version to 2.3.2 | Bertrand Lorentz | 2 | -3/+3 | |
2011-11-02 | release: Fix wording in NEWS | Bertrand Lorentz | 2 | -3/+3 | |
2011-09-19 | release: Bump version to 2.2.0 | Bertrand Lorentz | 2 | -3/+3 | |
2011-09-07 | release: Bump version to 2.1.4 | Bertrand Lorentz | 2 | -3/+3 | |
2011-08-24 | release: Bump version to 2.1.3 | Bertrand Lorentz | 2 | -3/+3 | |
2011-05-11 | release: Bump the version number | Alexander Kojevnikov | 2 | -3/+3 | |
2011-04-06 | windows: Fix issue with installer | Gabriel Burt | 2 | -8/+34 | |
Too many files were in a given 'Feature' which sometimes causes 2908 errors. Split locale into its own 'Feature' -- not a user-visible change, but should help with this issue. | |||||
2011-04-03 | Bump version to 2.0.0 | Gabriel Burt | 2 | -3/+3 | |
Except banshee.doap - not sure if that would affect l10n.gnome.org. | |||||
2011-03-24 | build: Bump the version number | Alexander Kojevnikov | 3 | -4/+4 | |
2011-03-09 | Update for 1.9.5 release | Gabriel Burt | 2 | -3/+3 | |
2011-02-26 | windows: Clean up build-installer.js script a bit | Gabriel Burt | 1 | -36/+22 | |
2011-02-26 | windows: Fix "Launch Banshee" checkbox in installer (bgo#641989) | Bertrand Lorentz | 2 | -4/+9 | |
In order to run a file that was just installed, we need to reference it in the FileKey attribute, using its id. To ba able to do that, we have to disable the automatic id generation done by the heat tool, so that the id will now be the file name. We can only do that for the bin directory, because otherwise we get id conflicts. | |||||
2011-02-23 | windows: Update installer license and version number | Gabriel Burt | 3 | -3/+3 | |
2011-02-23 | windows: Clean output of the checkout script | Bertrand Lorentz | 1 | -0/+2 | |
Don't echo the commands that are run, and don't print the error message if everything worked. | |||||
2011-02-18 | windows: Installer improvements | Gabriel Burt | 2 | -12/+23 | |
Replace the GUIDs in the .wxs with freshly gen'd ones. Change the Upgrade config a bit (and I've now tested it, seems to work). Fix the refs to the generated files in the .wixproj, so if they change the .msi will actually get rebuilt. | |||||
2011-02-16 | windows: Improve readability of the checkout-banshee script | Bertrand Lorentz | 1 | -2/+13 | |
As the git command is itself a batch file on Windows, you need to use "call" to call it from another batch file. | |||||
2011-02-06 | windows: Fix installer build in some circumstances (bgo#641565) | Matt Sturgeon | 1 | -1/+1 | |
Signed-off-by: Gabriel Burt <gabriel.burt@gmail.com> | |||||
2011-02-06 | windows: MSBuild related fixes (bgo#641541) | Matt Sturgeon | 2 | -4/+31 | |
* Use %WINDIR% instead of C:\WINDOWS * Look for .NET 4.0 as well as 3.5 * Call post-build.bat from build-banshee.bat Signed-off-by: Gabriel Burt <gabriel.burt@gmail.com> | |||||
2011-02-06 | windows: Better installer images (bgo#641095) | Matt Sturgeon | 6 | -6/+6 | |
The previous ones were huge (BMP, now JPG) and MonoDevelop-branded. Signed-off-by: Gabriel Burt <gabriel.burt@gmail.com> | |||||
2011-02-05 | windows: use high compression on installer, save 20% | Gabriel Burt | 1 | -1/+1 | |
2011-02-04 | windows: add /p:Platform="Any CPU" to build-banshee.bat (bgo#641513) | Matt Sturgeon | 1 | -1/+1 | |
Signed-off-by: Gabriel Burt <gabriel.burt@gmail.com> | |||||
2011-02-03 | windows: Check for .NET 3.5 SP1 or 4.0 | Gabriel Burt | 2 | -6/+21 | |
Also add option to launch Banshee after installer is done. | |||||
2011-02-03 | windows: Remove installer check for Gtk# | Gabriel Burt | 2 | -15/+2 | |
2011-02-03 | windows: Echo message at end of checkout-banshee.bat | Gabriel Burt | 1 | -1/+1 | |
2011-02-03 | windows: add build-banshee and checkout-banshee scripts | Gabriel Burt | 2 | -0/+9 | |
2011-02-03 | windows: Many improvements to installer | Gabriel Burt | 5 | -51/+75 | |
With up to date bin/ repo and built Banshee -- and nothing else -- should be able to produce a working Banshee install(er). | |||||
2011-02-03 | windows: Add bundle-deps script, update README | Gabriel Burt | 2 | -6/+68 | |
2011-01-31 | windows: Use the 'WIX' environment variable to find heat.exe | Dustin C. Hatch | 1 | -1/+3 | |
On x64 systems, WIX installs itself in "Program Files (x86)" instead of "Program Files," so the build-installer script cannot find `heat.exe` in these cases. Using the `WIX` environment variable to locate the binary solves this problem. Signed-off-by: Gabriel Burt <gabriel.burt@gmail.com> | |||||
2011-01-28 | windows: improve icon copy script | Gabriel Burt | 2 | -121/+129 | |
2011-01-28 | windows: update post-build icon-copying script | Gabriel Burt | 2 | -142/+142 | |
2011-01-26 | windows: Reorganize, clean up installer build dir | Gabriel Burt | 5 | -42/+33 | |
2011-01-26 | windows: Automatically copy icons into bin/share | Gabriel Burt | 1 | -0/+3 | |
2011-01-26 | windows: First pass at a .msi project/creator | Gabriel Burt | 8 | -0/+245 | |
2011-01-25 | windows: Add script to copy icons into bin/share/ | Gabriel Burt | 2 | -0/+154 | |