Changeset 30517 in osm for applications/editors/josm/nsis


Ignore:
Timestamp:
2014-07-10T18:33:10+02:00 (10 years ago)
Author:
donvip
Message:

[josm_win_installer] fix #josm10241 - disable quicklaunch icon by default + need Java 7 minimum

Location:
applications/editors/josm/nsis
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/nsis/README.txt

    r27240 r30517  
    36361.) You will need to download and install the following on your machine:
    3737- cygwin bash and wget
    38 - launch4j - http://launch4j.sourceforge.net/ (currently 3.0.1, older 2.x will NOT work!)
     38- launch4j - http://launch4j.sourceforge.net/ (currently 3.4, older 2.x will NOT work!)
    3939- NSIS - http://nsis.sourceforge.net/ (any recent version should do)
    4040
  • applications/editors/josm/nsis/josm.nsi

    r30198 r30517  
    333333Section $(JOSM_SEC_DESKTOP_ICON) SecDesktopIcon
    334334;-------------------------------------------
    335 ; SectionIn 1 2
    336335; Create desktop icon
    337336; Desktop icon for a program should not be installed as default!
     
    341340Section $(JOSM_SEC_QUICKLAUNCH_ICON) SecQuickLaunchIcon
    342341;-------------------------------------------
    343 SectionIn 1 2
    344 ; Create quick launch icon
     342; Create quick launch icon. Does not really exist as of Windows 7/8 but still advanced users use it.
     343; Only disable it by default, see #10241
    345344CreateShortCut "$QUICKLAUNCH\JOSM.lnk" "$INSTDIR\josm.exe" "" "$INSTDIR\josm.exe" 0 "" "" $(JOSM_LINK_TEXT)
    346345SectionEnd
  • applications/editors/josm/nsis/launch4j.xml

    r22598 r30517  
    88  <chdir></chdir>
    99  <priority>normal</priority>
    10   <downloadUrl>http://java.com/download</downloadUrl>
     10  <downloadUrl>https://java.com/download</downloadUrl>
    1111  <supportUrl></supportUrl>
    1212  <customProcName>false</customProcName>
     
    1515  <jre>
    1616    <path></path>
    17     <minVersion>1.6.0</minVersion>
     17    <minVersion>1.7.0</minVersion>
    1818    <maxVersion></maxVersion>
    1919    <dontUsePrivateJres>false</dontUsePrivateJres>
    20     <initialHeapSize>16</initialHeapSize>
    21     <maxHeapSize>512</maxHeapSize>
     20    <initialHeapSize>128</initialHeapSize>
     21    <maxHeapSize>1024</maxHeapSize>
    2222  </jre>
    2323</launch4jConfig>
Note: See TracChangeset for help on using the changeset viewer.