<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to feature-requests</title><link>https://sourceforge.net/p/installjammer/feature-requests/</link><description>Recent changes to feature-requests</description><atom:link href="https://sourceforge.net/p/installjammer/feature-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Wed, 14 Dec 2011 02:49:57 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/installjammer/feature-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>Initial screen language</title><link>https://sourceforge.net/p/installjammer/feature-requests/119/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Dear team InstallJammer's&lt;/p&gt;
&lt;p&gt;Please, would add an option that permit translate the first screen, that prompts your language to select an idiom?&lt;/p&gt;
&lt;p&gt;Thank you,&lt;br /&gt;
Glauber.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 14 Dec 2011 02:49:57 -0000</pubDate><guid>https://sourceforge.netd87a20d89b11d751b98a66e510fb82ddf228daca</guid></item><item><title>examples for verifying installjammer</title><link>https://sourceforge.net/p/installjammer/feature-requests/118/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;At present, when running into a problem it is hard to know if you (as end user) did something wrong, or if installjammer has a bug.&lt;br /&gt;
Therefore, it would really help to have one or a few small example projects that can be used to verify that the basic behaviour of installjammer is correct.&lt;/p&gt;
&lt;p&gt;For example, installerjammer could ship with an example.mpi project that:&lt;br /&gt;
- has a start.bat file that (on Windows) prints a message on the console and asks the user to press a key&lt;br /&gt;
- has a start.sh file that does the same thing on linux&lt;br /&gt;
- has an custom icon (I suppose that shortcuts on Windows or Linux can use this icon to represent the installed 'example' program, although I did not yet succeed with this)&lt;br /&gt;
- installs these files on Linux or Windows, allowing the user to place shortcuts on the desktop and in the Applications (or Programs) menu&lt;/p&gt;
&lt;p&gt;If you run into a problem, I could first check whether the problem occurs the example project that ships with installjammer.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Maarten Nieber</dc:creator><pubDate>Sun, 03 May 2009 15:40:29 -0000</pubDate><guid>https://sourceforge.net6acb95824204467c430c9713ec4dffa63cfddbca</guid></item><item><title>Command-line interface, passing arguments to control script</title><link>https://sourceforge.net/p/installjammer/feature-requests/117/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am working on streamlining our software build process, automating everything from svn checkout to building the final installer. I looked at the docs section about the InstallJammer command-line interface, and didn't immediately find any way to pass arguments to a control script (using the --control-script command-line option). My goal is to be able to enable/disable installer components or filegroups from the InstallJammer command-line, based on the current build configuration (we use CMake for our configuration software). Well, I saw there wasn't any explicit method to pass arguments to the control-script, so my first workaround was to define "temporary" virtual text strings like "ENABLE_COMPONENT_X" by using the -D&amp;lt;variable&amp;gt; command-line switch. I don't want these variables stored in the actual mpi project file, because they are only used in automatic builds and don't have any meaning when you manually open InstallJammer to build the installer. Anyway, I determined that this just doesn't work if the virtual variable isn't already created ahead of time in the project file. I am able to set virtual text strings via "-D&amp;lt;variable&amp;gt;" only if the variable was already defined in the project.&lt;/p&gt;
&lt;p&gt;I guess this is a feature request for the InstallJammer author... Can we change the behavior of the -D&amp;lt;variable&amp;gt; implementation, in that if the variable is not yet defined in the project, then define it and set the value to the value passed in the command-line? In the meantime, as a workaround I will have to store all these temp virtual text strings in the project file.&lt;/p&gt;
&lt;p&gt;Thanks!&lt;br /&gt;
Luke&lt;/p&gt;
&lt;p&gt;Luke Kucalaba&lt;br /&gt;
Senior Software Engineer&lt;br /&gt;
D&amp;amp;S Consultants, Inc&lt;br /&gt;
Columbus, Ohio&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Luke Kucalaba</dc:creator><pubDate>Fri, 17 Oct 2008 17:39:03 -0000</pubDate><guid>https://sourceforge.net12d13e3fc83d2e30b04bf69f31c2b3b0fbbe16eb</guid></item><item><title>Encoding in "Replace Text In File" and "Write Text To File"</title><link>https://sourceforge.net/p/installjammer/feature-requests/116/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I have an application in which the installer must be in Spanish and English (the client is a Mexican company), and in which a value selected from a combobox widget (along with other values typed into text and entry widgets) ends up being embedded in an XML file. Currently, this is implemented with the "Read File Into Virtual Text" action (to populate the virtual text variable that provides values for the combobox), followed by the "Replace Text In File" action (to write the selected value into the XML file).&lt;/p&gt;
&lt;p&gt;We've standardized on UTF-8 encoding for all of our text resources, and the original XML file contains characters for which the UTF-8 encoding results in byte values which are invalid in ISO-8859-1 (which would otherwise be a reasonable default encoding). However, when the values written to the file include non-ASCII characters, they are written out as as Windows-1252 (i.e. single-byte ANSI encoding - like ISO-8859-1 - but including the values between 0x80 and 0x9F as characters). When a conformant XML parser reads the file and encounters these characters (which generally result in byte sequences that are not valid in UTF-8), the disagreement between the actual encoding and the declared encoding (found in the XML text declaration at the start of the file) will cause a fatal parsing error.&lt;/p&gt;
&lt;p&gt;This behavior of the "Replace Text In File" action is seen whether the replacement values are entered directly (e.g. typed in the Values property of a combobox widget) or are read with the "Read File Into Virtual Text" action, using the UTF-8 encoding. The attached .zip archive includes an InstallJammer v1.2.9 project (the same behavior is seen in v1.2.8), along with a file containing values used to populate a combobox, and a UTF-8-encoded XML file.&lt;/p&gt;
&lt;p&gt;As a default behavior for the "Replace Text In File" action, this is not surprising, since the original XML file doesn't include the optional quasi-byte-order-mark (0xEF 0xBB 0xBF) which is sometimes (but usually not) included in UTF-8 files. However, the ability to set the encoding explicitly is clearly (in my opinion) a missing feature - especially since we can control the encoding used by the "Read File Into Virtual Text" action.&lt;/p&gt;
&lt;p&gt;I suggest that the Encoding property be added to the "Replace Text In File" and "Write Text To File" actions.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nick Bennett</dc:creator><pubDate>Tue, 12 Aug 2008 13:27:38 -0000</pubDate><guid>https://sourceforge.net35e33cd346bd52d07f6631f314dc2cffd4b34606</guid></item><item><title>Tab and shift-tab in text widgets</title><link>https://sourceforge.net/p/installjammer/feature-requests/115/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;A text widget that is added to a pane with the Add Widget action will echo the tab key to its contents at runtime, when it has focus. This does not follow the common user interface convention in which tab (and shift-tab) cycle through buttons, pull-downs, and other controls in order (or reverse order). This convention is followed by most of the InstallJammer widgets, but the text widget is a notable exception.&lt;/p&gt;
&lt;p&gt;Rich-text editing controls generally don't follow this convention, since a tab character is much more likely to be embedded in the content of such a field. However, since the text widget is not a rich-text control, there is rarely much value (in my opinion) in the ability to include a typed tab character in its content.&lt;/p&gt;
&lt;p&gt;I recommend that this behavior be changed, so that the default behavior is such that when a text widget has focus, typing the tab key will move focus to the next control, and shift-tab will move focus to the previous control. (There are some instances in which inclusion of a tab character in a text field is useful or even necessary; I recommend that these be handled by allowing the user to paste such text into the content of a text widget - and/or by echoing a tab character to the field contents when the the tab key is pressed with a modifier such as the ctrl key.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nick Bennett</dc:creator><pubDate>Sat, 09 Aug 2008 22:00:43 -0000</pubDate><guid>https://sourceforge.netdd90202801ab45812cbe5305697ebb90d442cd31</guid></item><item><title>Windows service description</title><link>https://sourceforge.net/p/installjammer/feature-requests/114/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;The Windows service GUI has a column for a description of the service.  It would be nice if IJ could put something there.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Bratteli</dc:creator><pubDate>Mon, 04 Aug 2008 15:49:19 -0000</pubDate><guid>https://sourceforge.net46b904b1b60c97e42ee1ce317dab88731a79fa91</guid></item><item><title>UI convenience</title><link>https://sourceforge.net/p/installjammer/feature-requests/113/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;A small thing - it would be nice if any disabled components in the Install Panes and Actions frame would be grayed out, making them easier to spot.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Bratteli</dc:creator><pubDate>Tue, 22 Jul 2008 21:15:37 -0000</pubDate><guid>https://sourceforge.neteeb02bf2a031a70cfa960d321418333422348a9a</guid></item><item><title>Remove window before Welcome Screen</title><link>https://sourceforge.net/p/installjammer/feature-requests/112/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I think InstallJammer would be improved if you disabled or removed "Exit" in "Startup Actions," which displays the now useless "This will install Your Application Name on your computer. Continue?" window before the Welcome Screen.&lt;/p&gt;
&lt;p&gt;The simple work around of setting Active to No works for me.  I'm reporting this to improve InstallJammer for everybody else.&lt;/p&gt;
&lt;p&gt;This was discussed at &lt;a href="http://www.installjammer.com/forums/viewtopic.php?f=5&amp;amp;t=413." rel="nofollow"&gt;http://www.installjammer.com/forums/viewtopic.php?f=5&amp;amp;t=413.&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Larry Engholm</dc:creator><pubDate>Fri, 18 Jul 2008 03:54:34 -0000</pubDate><guid>https://sourceforge.netfb59e117092ec947c56617fca970b0b88a11cb2b</guid></item><item><title>7z (LZMA) compression</title><link>https://sourceforge.net/p/installjammer/feature-requests/111/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;It would be Nice to have support for 7z (LZMA) compression. This would allow much stronger compression, like NSIS has it for example.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/7z" rel="nofollow"&gt;http://en.wikipedia.org/wiki/7z&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 10 Jul 2008 19:53:44 -0000</pubDate><guid>https://sourceforge.netc2a87cbf0bf1ae38fafe44580a422e213fd70bd3</guid></item><item><title>Parameter for GUI building</title><link>https://sourceforge.net/p/installjammer/feature-requests/110/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Like the Test-installer form I need a Command-Line textfield for building. Then I can pass parameters to the building process, without changing them in the project. Then it works like the using InstallJammer from commandline to build new installer.&lt;/p&gt;
&lt;p&gt;Then I use the Virtual Text's value in the project as default value. If I don't pass any commandline arguments, it will use the stored value from project. When I change the Virtual Text and I forget to set back than the wrong value will be the default setting.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nagyi</dc:creator><pubDate>Wed, 02 Jul 2008 14:11:13 -0000</pubDate><guid>https://sourceforge.net7a24387eafd159586826d19c8ec2de131ba83180</guid></item></channel></rss>