forked from OSGeo/OSGeoLive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
1853 lines (1579 loc) · 45.7 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 14.0rc4
====================
* MapServer mapfiles path updated to fix GeoMoose issue (#2329)
* Re3gistry installer fixes
Version 14.0rc3
====================
* Cesium 1.80 (#2323)
* Fixed doc broken links (#2320)
* Re3gistry installer fixes
* Updated ncWMS installer to work with tomcat9
* Folium package added
* MapServer mapfiles upstream security patch
Version 14.0rc2
====================
* Disabled fsck during live boot
* Fixed actinia launcher (#2266)
* Fixed permision issue for rasdaman log folder (#2279)
* Added new boot splash image
Version 14.0rc1
====================
* QGIS 3.16.4
* QGIS Server 3.16.4
* t-rex 0.13.0
* Added pgadmin4 configuration (#2304)
* Added tested Notebooks for 14.0.
* OSGeoLive documentation and translations finalized for 14.0
Version 14.0beta3
====================
* QGIS 3.16.3
* QGIS Server 3.16.3
Version 14.0beta2
====================
* PostGIS 3.1.1
* GeoStyler 4.5.0
* ZOO-Project 1.8.0
* EOxServer 1.0.0rc22
* ncWMS 2.4.2 (VM only)
* Fixed desktop untrusted launchers (#2306)
* Added pgadmin4 in database desktop folder
* Disabled Virtual Box guest additions due to upstream bug (#2309)
Version 14.0beta1
====================
* QGIS 3.10.14
* GeoServer 2.18.1
* OpenLayers 6.5.0
* GMT moved to VM only
* EOxServer 1.0.0-rc21
* Switching to pgadmin4 as default (#2262)
* New artwork for 14.0
Version 14.0alpha5
====================
* Proj 7.2.1
* GDAL 3.2.1
* QGIS 3.10.13
* GRASS 7.8.5
* pycsw 2.6.0
* actinia 0.99.15
* Rasdaman 10.0
* Mapnik demo updated (#2255)
* Draft VM only installer added
* Fixed EOxServer configuration (#2267)
* Fixed GeoNode configuration (#2268)
Version 14.0alpha4
====================
* GEOS 3.9.0
* Proj 7.2.0
* GDAL 3.2.0
* PostGIS 3.1.0
* QGIS 3.10.12
* MapServer 7.6.2
* fiona 1.8.18
* rasterio 1.1.8
* OSM data for Buenos Aires
Version 14.0alpha3
====================
* GeoNode 3.1.0
* Mapbender 3.2.3
* pygeoapi 0.9.0
* MapProxy 1.13.0
* EOxServer 1.0.0-rc17
* istSOS 2.4.0-rc1
* Fixed VirtualBox installation failures (#2263)
* Fixed tomcat 9 startup issue (#2259)
* Fixed 52nWPS installer (#2264)
* Fixed 52nSOS installer (#2265)
* QGIS Web Client 2 fixed (#2277)
* Fixed uDig installer (#2281)
* Completed LXQt desktop customization (#1777, #2246)
* Fixed pgrouting installer (#2276)
* Marble desktop icon missing (#2274)
Version 14.0alpha2
====================
* GeoStyler installer added
* Re3gistry installer added
* QGIS Web Client 2
* Mapbender 3.2.2
Version 14.0alpha1
====================
* Lubuntu 20.04.1
* Fixed initrd multi-part format for 20.04.1 (#2249)
* GDAL 3.1.3
* PROJ 7.1.1
* GEOS 3.8.1
* Spatialite 5.0.0
* PostGIS 3.0.2
* QGIS 3.10.10
* GRASS 7.8.3
* GeoServer 2.18.0
* MapServer 7.6.1
* Mapbender 3.2.1
* OTB 7.1.0
* pycsw 2.4.2
* PyWPS 4.2.7
* uDig 2.2.0RC1
* gvSIG 2.4.0
* pygeoapi 0.8.0
* Mapnik 3.0.23
* OSSIM 2.9.1
* fiona 1.8.17
* rasterio 1.1.7
* GMT 6.1.1
* libgeotiff 1.6.0
* osgearth 2.10.2
* PDAL 2.2.0
* pgRouting 3.1.0
* MapCache 1.10.0
* mappyfile 0.8.4
* geopandas 0.8.1
* Tomcat 9
* PostgreSQL 12
* Python 3 as default
* Jupyter 4.6.3
* Jupyter Notebook 6.0.3
* Switched to xyGrib instead of zyGrib
* Default R packages from Focal
* Updated desktop configuration for LXQt and SDDM (#1777)
* Default desktop image for 14.0
Version 13.0
====================
* Fixed CJK fonts issue (#2175)
Version 13.0rc2
====================
* Lubuntu 18.04.3
* VirtualBox 6.x issue fix (#2174)
* Documentation updates and new languages from Transifex.
Version 13.0rc1
====================
* Actinia 0.2.1 (new project)
* QGIS 3.4.10
* New artwork based on Bucharest map
* EOxServer 1.0-beta2
* Enhanced support for Python 3 libraries including new Jupyter notebooks.
* Disk space cleanup (#467)
* Added QGIS3 plugins
* Fixed pycsw tester app
* Fixed QGIS quickstart not finding GRASS data (#2085)
* Fixed ZOO WPS demo (#2144)
Version 13.0beta3
====================
* EOxServer 1.0-beta1
* rasdaman 9.8.1
* ZOO-Project 1.7.0
* MapCache 1.8.0
* Revert to Mapbender 3.0.8.1
* Remove zygrib high resolution maps (#467)
Version 13.0beta2
====================
* GDAL 2.4.2
* GEOS 3.7.1
* QGIS 3.4.9
* MapServer 7.4.1
* SAGA 7.3.0
* GeoNode 2.10.0
* libosmium 2.15.1
* OGDI 4.1.0
* osgearth 2.10.2
* OSSIM 2.7.2
* OWSLib 0.18.0
* geopandas 0.5.1
* rasterio 1.0.24
* Added QGIS 3 configuration (#2141)
Version 13.0beta1
====================
* MapServer 7.4.0
* GeoServer 2.15.1
* QGIS 3.4.8
* OpenLayers 5.3.0
* pycsw 2.4.0
* PostGIS 2.5.2
* GeoNode 2.10rc5
* Mapbender 3.0.8.3
* GeoMoose 3.3.1
* rasterio 1.0.24
* Cesium 1.58
* OSM data for Bucharest
* Django 1.11
* PostgreSQL ogr-fdw 1.0.5
Version 13.0alpha2
====================
* PostGIS 2.5.1
* GeoExt 3.1 (new project)
* GeoMoose 3.3.0
* 52nWPS 3.6.3
* Mapbender 3.0.8.1
* Fiona 1.8.6
* rasterio 1.0.22
* OWSLib 0.17.1
* mappyfile 0.8.2
* pandas 0.23.3
* geopandas 0.5.0
* cartopy 0.17.0
Version 13.0alpha1
====================
* Lubuntu 18.04.2
* QGIS 3.4.6 (no plugins yet)
* GDAL 2.4.0
* PostGIS 2.5.1
* GRASS 7.6.1
* PROJ 5.2.0
* MapServer 7.2.2
* GEOS 3.7.0
* OTB 6.6.1
* Mapnik 3.0.22
* OSSIM 2.5.2
* fiona 1.8.4
* GMT 5.4.5
* gpsprune 19.2
* libgeotiff 1.4.2
* osgearth 2.10.0
* PDAL 1.8.0
* pgRouting 2.6.2
* Adapted initrd modification to multi-part format used by debian and ubuntu since 18.04.1 (#2100)
* Default desktop image for 13.0
Version 12.0
====================
* MapServer 7.2.0
* Documentation finalized
* Presentation updated (#2109)
* ZOO-Project fixed (#2063)
* GeoNode upload errors fixed (#2113)
* rasterio 1.0.3
* fiona 1.7.13
* Django issues fixed (#2115)
* Data links fixed
* Workshop link updated (#2116)
* SAGA links fixed (#2110)
* ossim-core kept as OTB dependency (#2061)
Version 12.0beta4
====================
* New plymouth OSGeoLive theme
* Fix for TileStache (#2096)
* Fix for ncWMS (#2084)
* GeoNetwork docs removed to save disk space
* Added intro notebook for R kernel in Jupyter
* Added sqlitebrowser icon back (#2094)
* Removed empty desktop folders (#2095)
* Fixed casper and plymouth settings for Ubuntu Bionic
* Mapserver 7.0 docs update
* Django 1.8.7 available in Bionic (#2065)
* EOxServer fixed (#2065)
* GeoNode fixed (#2065)
* Updated welcome message (#2108)
* Added Mappyfile to python libraries
Version 12.0beta3
====================
* New artwork included
* t-rex 0.9.0
* Added keyboard layout widget (#2048)
* JOSM plugins fixed
* IRIS fixes (#2080)
* Rasdaman demo data ingestion fix (#2093)
* Python packages test data cleanup
* VirtualBox share folder fixed (#1992)
* OTB environment fixes (#1604)
Version 12.0beta2
====================
* Documentation translations included
* Dar es Salaam osm Feature City
* Jupyter R kernel added
* GeoServer 2.13.2
* Rasdaman demo updated
* GeoServer Vector Tiles plugin added
* Mapbender 3.0.7.3
* Deegree 3.4.1
* OTB paths fix (#1604)
* Leaflet demo update
Version 12.0beta1
====================
* Documentation included
* MapBender 3.0.7
* 52nSOS 4.4.3
* Rasdaman 9.7.0
* PDAL 1.6.0
* r-cran-sp 1.3
Version 12.0alpha1
====================
* Lubuntu 18.04 base iso used.
* New OSGeoLive logo
* New INSPIRE desktop link
* Python 3.6.5/2.7.15
* OpenJDK 1.8.0.171
* PostgreSQL 10
* GDAL 2.2.4
* GEOS 3.6.2
* PROJ 4.9.3
* GRASS 7.4.0
* QGIS 2.18.17
* PostGIS 2.4.3
* Spatialite 4.3.0
* JOSM svn13878
* MapServer 7.0.7
* GeoServer 2.13.1
* OTB 6.4.0
* OpenLayers 4.6.5
* Cesium 1.46
* OpenCPN 4.8.4
* OSSIM 2.2.2
* pgRouting 2.5.2
* Marble 2.2.20
* ZyGrib 8.0.1
* Jupyter 5.2.2
* R 3.4.4
* MapProxy 1.11.0
* PyWPS 4.0.0
* Iris 2.1.0
* uDig 2.0.0
* 52nWPS 3.6.2
* GeoMoose 3.2.0
Version 11.0
====================
* Cesium 1.35
* Retired MB-System
* Retired PyWPS
* New artwork for 11.0
* Patched gmt.conf (#1640)
* OSSIM planet files added
* Fixed Cesium error (#1954)
* Fixed uDig install folder (#1953)
Version 11.0beta1
====================
* GeoServer 2.10.4
* GeoNode 2.6.1
* EOxServer 0.4.0
* gpsprune 18.6
* Iris 1.13.0
* istsos 2.3.1
* Jupyter 4.2.0
* OpenCPN 4.6.1
* R 3.4.0
* uDig 2.0.0.RC1
* Zygrib 7.0.0
* Django 1.8
* OSM featured city now Boston
* Geokettle retired
* JavaWorldWind retired
* Kosmo retired
* OSGEarth retired
* Ushahidi retired
* Viking retired
Version 11.0alpha1
====================
* Lubuntu 16.04.2 base iso used.
* GDAL 2.2.0
* OTB 6.0.0
* QGIS 2.14.14
* GRASS 7.2.1
* OpenLayers 4.1.1
* Leaflet 1.0.3
* GeoNetwork 2.3.1
* pycsw 2.0.3
* pgRouting 2.4.1
* MapServer 7.0.5
* Deegree 3.3.20
* ncWMS 2.1.8
* 52nSOS 4.4.0
* 52nWPS 3.6.1
* Cesium 1.34
* GeoMoose 2.9.3
* MapBender 3.0.6.1
* MapProxy 1.10.0
* OpenJUMP 1.11
* Rasdaman 9.4.1
* Sahana retired
Version 10.5
====================
* QGIS fixed: libtiff5 Ubuntu patch reverted (#1897)
Version 10.5rc1
====================
* rasdaman 9.3.0
* Leaflet demo fix
* Fixed Java World Wind download link
* Removed gmt-doc from the build to save some disk space (#467)
* New artwork for 10.5 release
* Downgraded PyWPS to 3.2.5
Version 10.5beta1
====================
* GRASS 7.2.0
* QGIS 2.14.11
* GDAL 2.1.3
* PostGIS 2.3.2
* MapServer 7.0.4
* pycsw 2.0.2
* GeoMoose 2.9.2
* PyWPS 4.0.0
* OTB 5.8.0
* SAGA 2.3.1
* ZOO-Project 1.6.0
* pgRouting 2.3.2
* 52nSOS 4.3.9
* fiona 1.7.2
* rasterio 0.36.0
* josm 0.0.svn11427
* MapCache 1.4.0
* MapProxy 1.9.0
* osm2pgrouting 2.2.0
* osm2pgsql 0.88.1
* OWSLib 0.14.0
* python-osmapi 0.7.2
* UEFI supported only in amd64 architecture (#1831)
* MapProxy installer updated based on the recent debian packaging (#1774)
Version 10.5alpha1
====================
* Supporting isohybrid ISO images with UEFI
* GEOS 3.5.1
* GDAL 2.1.2
* PostGIS 2.3.1
* GeoServer 2.10.1
* GRASS 7.0.5
* QGIS 2.14.10
* libLAS 1.8.1
* pgRouting 2.3.1
* Deegree 3.3.18
* retired Cartaro
* Added GeoServer NetCDF extension
Version 10.0
====================
* Lubuntu 16.04.1 base iso used.
* Added OSM attribution in welcome message (#1765)
* Minor desktop configuration fix
* Updated documentation
* ISO creation configuration update
* Viking MapQuest tiles disabled by default (#1754)
Version 10.0rc1
====================
* Updated documentation
* New artwork (Thanks Brian Hamlin)
* All packages moved to release-10.0 ppa
* Added postgis-gui (#1750)
* Jupyter Notebook 4.2.1
* Fixed TileStache previewer (#1737)
* Added failover to OSM for Leaflet demo (#1307)
* Fixed MapQuest issue in GeoNode and ZOO-Project (#1754)
* Updated QGIS plugins for 10.0
Version 10.0beta1
====================
* QGIS 2.14.3
* PostGIS 2.2.2
* pgRouting 2.2.3
* Mapnik 3.0.11 and latest python-mapnik
* Iris 1.9.2
* Downgraded osgearth to 2.5.0 (#1699)
* TileStache 1.49.8 replaced TileLite (#1701)
* Featured OSM city switched to Bonn (#1698)
* ZOO-Project packaging now supports CGAL and OTB (#1710)
* JOSM plugins added
* Added OSM cli tools
Version 10.0alpha3
====================
* Downgraded Django to 1.6.11
* Improved PyWPS packaging (#1730)
* 52nSOS 4.3.6 update
* 52nWPS 3.4.0 update
* Leaflet demo updated
* ZOO-Project demo fixed (#1710)
* Cartaro installation fixed (#1718)
* GeoNode packaging provided for Xenial (#1722)
* EOxServer installation fixed (#1706)
* Rasdaman installer available for Xenial (#1721)
* TileMill retired (#1723)
* R packages updated to Xenial (#1720)
* r-cran-grass7 added (#1444)
* Updated Ubuntu documentation to 16.04
Version 10.0alpha2
====================
* Added alternative PHP version (5.6)
* PyWPS 3.2.5 added
* MapServer re-built with PHP Mapscript support.
* MapProxy issue fixed (#1704)
* Zenity issue fixed (#1709)
* GeoMajas issue fixed (#1713)
* Jupyter packaging completed for Xenial (#1711)
* Fixed QGIS tutorial build (#1703)
* Fixed memory issue for default tomcat (#1715)
* Added php5.6-xml which is needed by MapBender3 (#1716)
* Added php5.6-mbstring to geomoose installer (#1717)
* Modified OSSIM installer to use debian packages from ppa (#1700)
* Update to latest version of MapSlicer (#1712)
* Fixed istsos icon (#1708)
* Monteverdi added back to ppa (#1702)
Version 10.0alpha1
====================
* Re-based to Lubuntu 16.04 LTS Xenial
* Unmount problem during build process now solved (#1046)
* Refactored installer scripts to 3 layers (base, services, projects)
* PostgreSQL 9.5
* MySQL 5.7
* OpenJDK 8
* Tomcat 8
* GDAL 2.1.0
* PostGIS 2.2.1
* GRASS 7.0.3
* QGIS 2.14.1
* Mapnik 3.0.9
* GeoServer 2.8.3
* MapServer 7.0.1
* pycsw 1.10.4
* mbsystem 5.5.2274
* MapProxy 1.8.2
* istsos 2.3.0
* netcdf4-python 1.2.4
* cartopy 0.14.2
* opencpn 4.2.0
* osgearth 2.7.0
* pgrouting 2.1.0
* OTB 5.4.0
* SAGA 2.2.7
* GeoMoose 2.9.0
* GMT 5.2.1
* PHP 7
Version 9.5rc2/final
====================
* Fixed GeoNetwork build for 32 bit (#1522)
* Fixed Rasdaman installer for 32 bit (#1645)
Version 9.5rc1
====================
* QGIS 2.14.0
* GeoNetwork 3.0.3
* GSoC 2015 Jupyter Notebooks added
* GPSDrive retired
* Rasdaman 9.2
* SAGA 2.2.4
* R Kernel for Jupyter added
* Added OTB Application Launcher
* rasterio and fiona CLI added
* TinyOWS quickstart fixed (#1233)
* Enabled MapServer WMS demo (#1622)
* New release-9.5 ppa
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