forked from OSGeo/OSGeoLive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
1224 lines (1032 loc) · 32.6 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
OSGeo Live GIS Disc
===================
Version 9.5beta1
====================
* NASA Java World Wind added
* istSOS project added
* GRASS 7.0.3
* Jupyter 1.0 and IPython 4.0 upgrade
* GeoServer 2.8.2 (including CSS extension)
* Cartaro 1.9
* Cesium 1.18
* OpenLayers 3.13.1
* MapBender 3.0.5.3
* SAGA 2.2.3
* Enabled GDAL drivers and outdb rasters for PostGIS
* Disabled GPSDrive from builds
* OSSIM plugins/GUI rebuilt on top of new libossim-dev (#1515)
* Added libgdal-grass
* Updated python packages (rasterio, fiona, folium, cartopy)
Version 9.5alpha2
====================
* GEOS 3.5.0
* PostGIS 2.2.1
* QGIS 2.12.1
* GeoServer 2.7.5
* GeoNode 2.4.0
* OSSIM 1.8.20
* OTB 5.2.0
* Monteverdi 3.0.0
* MapServer demo updated for 7.0.0
* osm2pgsql 0.88.1
* QGIS-GRASS plugin re-enabled
* QGIS plugins updated to latest versions
* OWSLib 0.10.0
* pgadmin 1.20.0
* Django 1.6.11
Version 9.5alpha1
====================
* PostgreSQL 9.4
* GDAL 1.11.3
* PostGIS 2.2 (including SFCGAL)
* GRASS 7.0.2
* MapServer 7.0.0
* GeoNetwork 3.0.1
* pycsw 1.10.3
* libLAS 1.8.0
Version 9.0rc1/final
====================
* ncWMS 1.2
* gvSIG 2.2
* Updated to Monteverdi2
* Added OSSIM plugins and qt packages for 1.8.18
* Kosmo fix for 64 bit architecture
* GeoNetwork reverted to 2.10.x for this release, due to blocker issue
Version 9.0beta1
====================
* QGIS 2.8.3 LTR
* GRASS 7.0.1
* GeoServer 2.7.2
* GeoMoose 2.8.0
* New GMT debian package
* New JOSM debian package
* New mbsystem debian package
* OSSIM 1.8.18
* MapProxy 1.8.0
* OpenLayers 3.7.0
* OpenCPN 4.0.0
* GPSDrive 64bit package added
* Ushahidi build fixed (#1509)
* VirtualBox guest additions installed by default
* More R visualization packages
* Updated QGIS plugins
Version 9.0alpha2
====================
* Upgrade to tomcat7
* new Ubuntu manual included
* 52North SOS upgrade to 4.3.0
* GeoMajas upgrade to 2.4.0
* MapBender upgrade to 3.0.5.1
* EOxServer upgrade to 0.4.0
* Cartaro upgrade to 1.8
* GeoNetwork 3.0.1
* Fixed OSSIM installation
* uDig installer fix to work on 64 bit
* OSGeoLive documentation installed from deb package now
Version 9.0alpha1
====================
* GDAL 1.11.2
* QGIS 2.8.2
* GRASS 7.0.0
* GeoNetwork 3.0.0
* Updates from UbuntuGIS
Version 8.5rc1/final
====================
* Moved to OSGeoLive release-8.5 ppa
* Reverted Sahana to a working web2py version (#1474)
* Replaced MapTiler with MapSlicer (#1467)
* Added text file to indicate proj in nc/data/shape
* Updated screenshots in docs
* Optimized png files
* Added grassutil.ipy adapted to work with grass 70
* Installed grass70 desktop file properly (#1458)
* Updated OSGeoLive presentation
Version 8.5beta2
===================
* GRASS updated to 7.0.0RC2 (#1433)
* Patched QGIS processing plugin for GRASS7 support (#1466)
* Updated pycsw installer to use new wsgi deb package (#1472)
* Documentation updates and translations
* Added python-geojson
* Added north_carolina metadata
* GRASS GIS documentation: updated to GRASS GIS 7
* Updated OSGeoLive presentation for 8.5
* Add link to OSGeo Metrics from presentation page
* Retired MapTiler from OSGeo-Live docs
* New ppa for 8.5 release is now available
Version 8.5beta1
===================
* rasdaman update to 9.0.4 (installer and documentation)
* IPython and Cesium documentation added
* uDig fix: forced to use mozilla as default browser (#1394)
* NetCDF logo added (#1320)
* Increased Tomcat default memory allocation
* Sahana installation tagged, to avoid breakage from git master (#1457)
* Added ~okeanos to sponsors
* Cartopy caching enabled
* Mapbender update to 3.0.4.1
* Python liblas error fixed (#1256)
* EOxServer reverted to 0.3.2 due to incompatibility with upstream django version (#1456)
* GRASS updated to 7.0.0RC1 (#1433)
* Added new North Carolina subset for GRASS7 (#1446)
* rasterio requirements fixed (#1455)
Version 8.5alpha4
===================
* MapWindow update (installers and documentation)
* Reconfigured tomcat restart during build
* IPython documentation added
* Fixed ncWMS installation (#1450)
* OpenJUMP fixed (#1452)
* Updated eoxserver installation script for version 0.4.
* MapBender: ALIAS error fixes FollowSymLinks (#1436)
Version 8.5alpha3
===================
* Moved to GRASS7
* Upgraded OpenLayers to version 3.1.0
* Restored core OpenLayers2 files for legacy applications in the disk
* Fixed QGIS Server installation
* SanMateo_CA as OSM featured City
* Cesium cleanup and desktop launcher added (#1432)
* Fixed Tilemill deb package
* Removed all GRASS6 related packages
* Added osmapi as Debian package
* Cleared up Tomcat setup after disabling MapFish
* Fixed rasdaman to properly shutdown during build time
* Switching to spearfish dataset for GRASS7
* Saved some space with iris
* Fixed desktop font
* Updated geoserver path in geonode (#1442)
* Updated Marble to 1.9
Version 8.5alpha2
===================
* Upgraded OpenLayers to version 3.0.0
* Upgraded GDAL to 1.11.1
* Upgraded QGIS to 2.6.1
* Upgraded pycsw to 1.10.0
* Upgraded GeoServer to 2.6.1
* Updated deegree webservices 3.3.13
* Update cartaro to version 1.5
* Cesium added to the disk
* Temporarily disable Tilemill (#1429)
* Update geonetwork quickstart for 2.10.4
* Install geopandas and descartes from ppa
* Upgraded Geomajas to 2.2.0
* New 8.5 desktop background
* Updated 52nWPS version to 3.3.1
* Update GeoMoose from version 2.6.1 to 2.7.1
* Update otb version number to 4.2.1
Version 8.5alpha1
===================
* GDAL 1.11.0
* QGIS 2.6
* Updates from UbuntuGIS
Version 8.0rc1/final
====================
* Geospatial menu finalized for LXDE
* Bugfix deegree install script
* Fixed submenu parameter files (#1373)
* Desktop icon text colors to match a light background
* Bumped to latest available version of ubuntu manual
* GPSDrive adapted to Mapnik2
* Added Spatialite icons
* Upgraded GRASS to 6.4.4
* Rebuilt OSGeoLive Release PPA and pulled updates from UbuntuGIS
* Updated Documentation to reflect 8.0 release
* Updated screenshots with new background
* Fixed R data paths
* Fixed GeoMoose problem with Yahoo map
* Updated apache2 conf file location (#1386)
* Created apache config to enable clean urls for ushahidi
* Fixed Tilemill chroot vs init script workaround (#1348)
* Set default TIFF viewer to QGIS
* Updated web2py for Sahana
* Updated Mac and MS Windows installer URLs
* Avoid deegree starting firefox as root (#1389)
* Removed MapFish from build
Version 8.0beta1
===================
* Desktop sketch to match FOSS4G colors and theme
* Menus: lubuntu's lxpanel fixes to add Geospatial menu
* Updated ZOO installation (#1222)
* Added pywps overview, logo and quickstart
* Bump to latest ubuntu kernel
* Use newer version of cartaro due to security update
* Moved EOxServer to Debian package (#1353)
* Mapserver ready for Apache 2.4 (#1358)
* Moved Iris to Debian package (#1355)
* Ossimplanet lib fix (#1359)
* Updated 52nWPS
* Mapbender version change to 3.0.3.2
* Updated install_geonode.sh for the 2.4 version
* Enabled saga icon + menu entry
* Updated fontcap for latest build
* Updated OSM Portland dataset
* GRASS addons: don't pause on chroot root home startup error
* Updated deegree webservices 3.3.10
* Added support data for ipython notebook (wrapper script to start grass)
* Updated geopython/scipy stack
Version 8.0alpha4
===================
* Moved to Lubuntu 14.04.1 (LTS)
* QGIS 2.4 and new plugins
* removed packages from OSSIM installer
* Minor fixes to GRASS
* Added GRASS7 installer
* Kosmo Desktop upgraded to version 3.1
* Cartaro: fix activation of php module
* rasdaman: removing libnetcdf-dev from pkg_cleanup
* Updated GeoKettle installation scripts and documentation.
* New Saga version
* Updated R install script to use ppa instead of building R packages
* UDig fix (#1368)
* Mapserver: apache fixes
Version 8.0alpha3
===================
* Temporary fix of resolvconf issue (#1362)
* IPython update
* 52nWPS update
* mbsystem update
* GRASS7 installer added
* #1345 : fixed INSPIRE extension download URL
* Updated Iris install to Iris 1.6.1
* updated script to latest version: 52nSOS 4.0.0 including removal of database creation
* activated tomcat autodeploy option
* updated cartaro installer to use other apt distribution
* 52nSOS update
Version 8.0alpha2
===================
* Updated package names for 14.04
* Temp fix for sphinx not symlinking (#952)
* Work around for launchpad bug #975152 (opens empty lxterminal)
* Mapbender3 upgrade and Apache 2.4 changed to require all granted
* Cartaro upgrade
* UbuntuGIS updates
* OpenJump update
* Rasdaman update
Version 8.0alpha1
===================
* Switched to Lubuntu 14.04 as a base OS
* Updates from UbuntuGIS
* Update gdal grass plugin package version
* Change osm style sheet to match new mapnik2 requirements
* libpam-systemd hack for #1334
* Xubuntu -> Lubuntu desktop adjustments
* install MBUtil package as a .deb, for working with MBTiles sqlite dbs
* Update doc paths for Apache 2.4
* many xfce to lxde conversions
Version 7.9.1rc1
===================
* Fixed Heartbleed bug
* Replaced backdrop image
Version 7.9
===================
* Move leaflet demo to Portland
* Fix broken symlink for MB-System docs
* German translation updates
* Adjust installer scripts to fit on full DVD image
Version 7.9rc2
===================
* Clean up ipython notebook startup and update rpy2
* Fix OSSIM raster demo histograms
* Create mini ISO for distribution
Version 7.9rc1
===================
* All deb files moved to OSGeoLive PPA: release-7.9
* Documentation and Translations finalized
* Fixed openssh-server
* Added IPython documentation and geo-notebook
* Symlink cleanup
* Added post build check script
* Fixed postgis.jar link (#1310)
* UID,GID permission fixes
* drop vcredist_x86.exe (#1261)
* fix/install metadata (#1308)
* Added Leaflet menu item
* ZOO installation using deb file (#1290)
Version 7.9beta3
===================
* OSSIM fixed not to conflict with OTB
* ZOO project updated
* QGIS plugins updated
* Added back legacy.sql for Kosmo, gvSIG, and gpsdrive (#1300)
* Changed featured city: Nottingham -> Portland
Version 7.9beta2
===================
* Moved to xubuntu 12.04.4
* Updated IPython stack
* New version of Geomajas (1.14.0)
* Updated EOxServer to 0.3.2
* Updated gvSIG to 2.1.0
Version 7.9beta1
===================
* Updated GeoServer to 2.4.4
* Updated MapServer to 6.4.1
* Updated rasdaman to 8.5.2
* New artwork
* IPython updates
* QGIS 2.0 plugins are in place
* Some GRASS extensions added
* Updated GeoNode to 2.0
* Spatialite now available from apt
* PostGIS 2.1 locale fixed
Version 7.9alpha3
===================
* Updated GeoServer to 2.4.3
* Switched to OSGeoLive PPA release model (release/nightly)
* Removed UbuntuGIS from installers
* PostgreSQL upgraded to 9.3
* PostGIS upgraded to 2.1.1
* QGIS upgraded to 2.0.1
* OTB upgraded to 3.20.0
* pycsw upgraded to 1.6.1
* pgrouting upgraded to 2.0.0 final
* cmake backported to precise
* pgAdmin3 backported to precise
* spatialite now at 4.1.0
Version 7.9alpha2
===================
* Updated ncWMS to v1.1.1
* Saga update to use gdal 1.10
* Renamed version to 7.9 codename "Arnulf"
* Moved to xubuntu 12.04.3
Version 7.5alpha1
===================
* Added html5 presentation
* Updates from UbuntuGIS
Version 7.0
===================
* fixed gdal tools qgis plugin (#1208)
* fixes for ipython+grass startup scripts
* various doc and polishing fixes
Version 7.0rc1
===================
* updated win and mac docs (#1209)
* leaflet installer fixed to pull the last version
* minor fix for iris: libudunits2-dev package is installed
* python-kml added (#1172)
* restored qgis manual (#1164)
* fixed several sphinx warings
* documentation finalized for 7.0 release
Version 7.0beta3
===================
* ipython ported from raring to precise (#1183)
* ossim fixed (#1159)
* KDE icons back on the menu (#1193)
* libLAS included from UbuntuGIS (#1181)
* new disk usage tools (#1194)
* rasdaman creates less log noise (#1190)
* Marble-Qt upgraded to last version (#1165)
* psql db size fixed (#1189)
* removed tomcat6 war files to save disk space (#1185)
* openlayers menu item restored (#1184)
* various doc warnings and errors fixed
* GeoNode: fixed permissions for uploaded files
* Rasdaman: Enabling webgl in firefox which is needed for 3d bgs demo
Version 7.0beta2
===================
* GRASS updated to 6.4.3 final
* Completed GeoNode setup (#1168)
* Fixed GeoNetwork icon (#1178)
* Updated QGIS plugins for 7.0
* Updated GeoServer to 2.3.4 release
* Updated Ohloh metrics for OSGeo-Live 7.0
* Fixed ZOO demo (#1137)
* iPython added to the disk as its own installer
* Kosmo: creating desktop file from within the installer (#1166)
Version 7.0beta1
===================
* iPython added
* Fixed GeoNode installation (#1150)
* Added new disk probe code
* Fixed Kosmo icon link
* OpenCPN: pre-seed gpsd connection
* rpy2 by apt, netcdf, saga R packages enabled
* license cleanup in scripts
* MapBender updated to version 3.0.0.2
* Updated leaflet to 0.6.2 using ppa
* commented out ossim-orthoigen command (#1159, causing memory corruption)
* Fix for 000-default not being a symlink, (#1162)
* Installing django 1.5.1 from ppa
* re-enabled Shift-NumLock for the X11 keypad-mouse and Ctrl-Alt-Backspace to kill the X session
* Update to use newest version of cartaro (1.0)
* enable jsonp only when geoserver is started through cartaro startup scripts
* Updated OpenLayers to 2.13.1
* Updated osm datasets and databases
* Fixed PostGIS packaging (#1154)
* 52N WSS retired
* mapnik style tweaks to do with the switch from spherical merc postgis OSM db to lat/long one
* Updated Kosmo Desktop package to new 3.0 release (#1146)
Version 7.0alpha3
===================
* tomcat6 is disabled by default to save memory (#1032)
* libecw and mrsid libraries removed from disk (#1147)
* GeoNode project added
* nvWMS project added
* Iris project added
* GeoNetwork upgraded to 2.10
* pycsw upgraded to 1.6.0
* Indonesian translation started
* bumped MB-System to new build (copyright issue fixed)
* fixed disk space probe (#1142)
* new quickstart for new Mapbender3 version
* Added installation script for Django (#1047)
* Upgraded EOxServer to version 0.3.0 (#1135)
* enabled submenus for Cartaro and Geomajas (#1062)
* Added new MapFish launchers in correct menu
* Allow tomcat6 service to be started/stoped from all users (#1141)
* Renamed Geonetwork menu items and launch firefox when GeoNetwork starts (#756)
* updated pgRouting to v2.0.0-alpha from PPA and using CREATE EXTENSION pgrouting
* updated gvSIG 2.0
* updated to latest udig (1.4.0)
* updated saga to version 2.1.0rc2
Version 7.0alpha2
===================
* osm: gosmore, osmarender removed
* eoxserver: django updated to 1.5.1
* MB-System: switch to .deb packages with shared libraries
* leafpad added
* cartaro update to latest version
* Mapbender update to 3.0.0.1
* Geoserver updated to 2.3.2
* pycsw updated to 1.4.2
* new artwork for 7.0
* GeoKetle updated to 2.5
* OpenJump updated to 1.5
* rasdaman build now fixed (#1130)
Version 7.0alpha1
===================
* trunk is open for 7.0 development
* mb-system: bump to latest stable version
* gpsdrive: use WGS84/LL postgis DB, obviating the need for the dupe spherical merc postgis DB
* ossim: comment out Cape Cod satellite data to save disc space
* docs: Detect full or mini iso, adjust symlinks/placeholders for download dirs to suit; set xfce4-Terminal toolbar off by default
* spatialite: quote path variables
* qgis: pre-seed connection details for all the PostGIS and Spatialite DBs we can find
* tilemill: smerc DB is disabled, switch to 4326 instead
* postgis: OSM smerc DB is disabled, switch to 4326 instead
* grass: work in progress: North Carolina dataset replaced by user-run import script from shapefiles and geotiffs on the disc
* Updated osgeo sponsors
* add user to the plugdev group for usb GPSs etc. (#1120)
* mb-system: add libparallel-forkmanager-perl pkg dep for parallelization functionality
Version 6.5
===================
* new fix for users group issue (#1104)
Version 6.5rc2
===================
* Fix for installers pages (#1102)
* Upgraded to base Xubuntu 12.04.2
* New kernel added support for Secure Boot
* Fix for users group issue (#1104)
Version 6.5rc1
===================
* docs and translations completed for 6.5 release
* NC dataset cleanup
* ossim fixes applied
* updated mac and windows installers list
* pgrouting fixed for postgis2.0 (legacy.sql)
* qgis plugins updated
* 52North WPS updated to 3.1.0
* gvsig fixed for postgis2.0 (legacy.sql)
* various permission fixes
* rasdaman demo applications fixed
* viking bugfix
* opencpn bugfix
* mapbender database issue fixed
* eoxserver apache fix for number of processes
* major quickstart reviews due to our hackathlon
* tilemill db pre-seeding added
Version 6.5beta2
===================
* Rasdaman fixes
* Cartaro persmission issues fixed
* legacy sql added for Natural Earth db in order for older applications to work with PostGIS 2.0
* try legacy.sql for all until Kosmo and gvSIG catch up (the ongoing saga of #1059)
* Mapserver updated to 6.2
* GeoServer permission issues fixed
* GpsDrive: tweak code to be more compatible with PostGIS 2.0
* OSM: recenter map on East Midlands Conference Centre, Nottingham
* PostGIS: vacuum analyze the populated OSM dbs
* mapnik is working with PostGIS 2.0 again (#1059), recenter on East Midlands Conference Centre, Nottingham
* mb-system: new upstream release came out and the removed the old source. move to a stashed copy of the old version at d.o.o
* add user to the fuse group, so they can use sshfs, mountiso, etc.
* i3geo is included as beta until 7.0
* pycsw is now in UbuntuGIS repositories
Version 6.5beta1
===================
* Added ogrinfo option to create .qix files instead of atlasstyler
* Updated Sahana to use PostGIS-2.0 & current code
* Updated artwork for 6.5
* Ushahidi fixed and updated to current version
* Mapfish issues fixed.
Version 6.5alpha6
===================
* Upgraded GeoServer to 2.2.2
* i3geo fixed
* Cartaro installation not breaking GeoServer anymore
* Tilemill fixed
* EOxServer updated to 0.2.3 (moved from sqlite to postgis)
* QGIS-Server updated to Natural Earth 2 data
* osm2pgsql updated to 0.81 for PostGIS 2.0
* imposm added
Version 6.5alpha5
===================
* Feature Freeze
* MapBender switched to v2
* NaturalEarth 2 fixes for various projects
* Spatialite download path fixed
* GeoServer fixes
* Cartaro fixes
* i3geo fixes
Version 6.5alpha4
===================
* Added Tilemill project
* Added Cartaro project
* Added i3geo project
* Retired AtlasStyler
* Retired Geopublisher
* Updated NaturalEarth to v2.0
* Updated MapBender to v3.0
* Updated EOxServer
* Recategorized OSGeoLive Projects in docs
* Updated MapProxy to v1.5.0
* Updated gvSIG version to 1.12
Version 6.5alpha3
===================
* Fixed PostGIS 2.0
Version 6.5alpha2
===================
* Move to PostGIS 2.0
* Upgraded pycsw to 1.4.0
Version 6.5alpha1
===================
* Switched to Xubuntu 12.04.1 base system
Version 6.0
===================
* Tagged rc1 as final
Version 6.0rc1
===================
* emergency bugfix release of mb-system
* mysql work-around for chroot #969
* re-removed kernel headers
* fixed ownership issues with UID 1000
* added new method to create full iso based on mini iso
* updated screenshots for 6.0
Version 6.0beta10
===================
* UTF fix for chroot
* Permission fixes so that nothing owned by users outside /home
* rasdaman activated again after fixes
* fixed installer from coming up at boot time
* live session user is now called "user" and has a password
* Fix issue #969 relating to a missing folder
* Geonetwork fixed #990
Version 6.0beta9
===================
* Switched to chroot build method
* Fix for launchers missing #980
* Fix for postgis #983
* Live session user is now called "user"
* Lots of translation work
Version 6.0beta8
===================
* Rasdaman fix applied
* EOxServer updated
* trying GDM as default to fix iso creation problem
Version 6.0beta7
===================
* Geomoose: update 'Metro Base Maps' layer to point to new source
* ossim: comment out 1.8.12 tarball compiled against the wrong ubuntu
* Rasdaman: delete FIXME commits etc accroding to #972 for RC
* Lots of documentation updates
Version 6.0beta6
===================
* fixed gdebi issue
Version 6.0beta5
===================
* Udig now ported to openjdk7
* Geomajas fixed to work with common JAI
* GRASS permission issue temporary workaround
* Tilelite demo fixed
* Rasdaman fix using rasmgr.conf method
* Sahana fixed
* Deegree fixed and updated to 3.2-pre9
* Tilemill initial installation script added
* ZOO and Rasdaman in incubation (docs)
* Geomajas graduated (docs)
* PostGIS graduated (docs)
Version 6.0beta4
===================
* remastersys method now is dist
* samba removed to save space
* moved from data Beijing to Nottigham
* gosmore fixed
* lots of space optimizations
* udig now does not use custom jre
* OSGeoLive is now including only openjdk7
* duplicate sphinx images bug fixed
* prune renamed to gpsprune
* rasdaman fix included to rasmgr.conf
* home dir is moved to /etc/skel for iso building
* added tilemill as an optional application
* new QGIS plugins with Sextante added
Version 6.0beta3
===================
* ossim-core added
* josm fixed
* gosmore removed until new deb is available
* rasdaman demo fixed
* zygrib downgrade
* mb-system installation fixed
* documentation updated
Version 6.0beta2
===================
* Rasdaman fixed (#934)
* fixed sphinx markup
* ZOO-project demo fixed (#929)
* gvSIG openjdk7 issue fixed
* Geonetwork map issue fixed (#932)
* QGIS permission issue fixed (#914)
* updated ubuntu manual to 12.04
* Fixed the spatialite launchers prob (#935)
* blueman removed (#945)
* josm fix applied (#933)
* Mapfish fixed.
Version 6.0beta1
===================
* Upgraded OpenLayers to 2.12
* spatialite_gui fixed
* Upgraded Mapbender version to 2.7.3 and added WMS 1.3.0
* JAVA_HOME fixed by soft link of openjdk7 to default-java (#915)
* gvSIG removed until there is a fix for java 7
* fixed petascope setupdb for rasdaman
* zygrib desktop icon fixed
* fixed Maptiler desktop launcher installation
* Upgraded mapproxy to 1.4.0
* minor data and script cleanups
* documentation updated
Version 6.0alpha4
===================
* postgis data fixes for Beijing
* opencpn update
* gvsig installation fixed
* fix the inconsistency issue of libtiff4-dev and libjpeg62-dev
* rasdaman switched to openjdk7
* osm data install path tweaks
* work around osm2pgsql bug in Ubuntu 12.04
* enable gpsdrive download
* added eoxserver as beta installer
Version 6.0alpha3
===================
* switched to openjdk7
* mapnik package name fixed
* fix for #902 (http 404 if user selects same language twice)
* fix for spatialite
* updated OSM
* pgRouting fixed to use Postgres 9.1
* Added data for Feature_city
* Update to 52nWPS
* Fix for OTB
* definition of USER_NAME in main.sh
* Osmosis added
* OSM extract for Beijing ready
Version 6.0alpha2
===================
* updated Postgres to 9.1
* fix for Xubuntu window resizing
* PostGIS installed from mainline
* fix to get sphinx build back working
* new stable release for mb-system
Version 6.0alpha1
===================
* Upgrading to Xubuntu 12.04 LTS
Version 5.5
===================
* Documentation updates
Version 5.5rc2
===================
* Many translation updates
* Updated QGIS plugins
* QGIS update to 1.7.4
* Updated Windows/Mac installers
* mbsystem is go for release
* added setuptools to mapFish install so it doesn't rely on QGIS installing
* Changed iso bootloader version number
* Added alternative PPA to install sun java
Version 5.5rc1
===================
* 52NorthWPS fixed
* zyGrib installation fixed
Version 5.5beta5
===================
* MetaCRS fixed
* R problematic mirror fixed
* pycsw installation fixed
* deegree installation fixed
Version 5.5beta4
===================
* Documentation updates
* New Desktop Image
* New VMWare Quickstart
* QGIS tutorial link
* Various fixes to Tomcat based software
Version 5.5beta3
===================
* Documentation updates
* Fixed various Tomcat conflicts
* Removed experimental script for Mapguide
Version 5.5beta2
===================
* OpenJDK 7 installation script
* openjump 1.5 installer updated
* update mapproxy install script to final 1.3.0
* OSM POIs for Denver
* updated to version 1.4 for naturalearth
* Updated OpenLayers install script to version 2.11
* Added pycsw to list of projects
* Updated QGIS to 1.7.3-2
Version 5.5beta1
===================
* upgrade geoserver from 2.1.1 to 2.1.3
Version 5.0
=================
* Fixes to Tomcat based apps to fight fslint changing permissions in the iso.
Version 5.0rc4
25 August 2011
=================
* Fixes to Geomajas and Rasdaman
* Logout and Shutdown shortcut workaround for ISO
Version 5.0rc3a
23 August 2011
=================
* Build with fix to rasdaman for checking space
Version 5.0rc2
22 August 2011
=================
* Updated translations, screen shots
* Fixes to most outstanding bugs
* Extensive testing passed
* Menus and launchers revised
Version 5.0rc1
15 August 2011
=================
* Doc generation fixes
* Additional translation
* Corrections to space saving
* Fixes to several applications that failed in beta5
Version 5.0beta5
11 August 2011
=================
* Space saving cleanup
* More Translations, Minor fixes to Doc generation
* Vm, mini and full ISO built
Version 5.0beta4
=================
6 August 2011
* Fresh downloads (no cache)
* ISO and VM to be built
* Updated Docs
* Updated Translations
* Minor Fixes to UDig, QGIS, R
Version 5.0beta3
=================
30 July 2011
* Fresh downloads (no cache)
* ISO and VM to be built
* Updated Docs
* Updated Translations
Version 5.0beta2
==================
24 July 2011
* New Geomoose, Updated SAGA
* Fixes UDig, 52North
* Updated Docs
* Updated Translations
Version 5.0~beta1
===================
16 July 2011
* Updated Documentation
* Updated Translations
* New Liblas
* Draft Artwork
* Revised R packages
Version: 5.0alpha
===================
5 July 2011
* Xubuntu 11.04 Natty Narwhal
* Updated translations
* Updated documentation licensing
* New Pycsw, Mapproxy, TinyOWS
Version: 4.5
===================
17 March 2011
* Icon Fixes
* Download Corrections
* Update Documentation and Translation
* Using cached build folders
Version: 4.5rc3
===================
14 March 2011
* Fix for iso build
* Updates to translations
* Using cached build folders
Version: 4.5rc1
===================
9 March 2011
* Multiple updated Overview, Quickstart and Translations
* All Critical tickets fixed
* Using cached build folders
Version: 4.5beta3
===================
3 March 2011
* Multiple updated Overview, Quickstart and Translations
* Fixes to Mapfish, Saga, Zoo, Geomajas, Atlasstyler, QGIS Plugins
* Using cached build folders.
Version: 4.5beta2
===================
23 February 2011
* Multiple updated Overview, Quickstart and Translations
* Fixes to Mapfish, 52North, Rasdaman, and a few other minor edits