| 338 | I focused mainly on completing the PR (see https://github.com/OSGeo/grass/pull/670) regarding the EPSG page. New things that are already incorporated: |
| 339 | |
| 340 | - remove path to "/usr/share/proj/epsg" |
| 341 | - merge search and EPSG code text inputs |
| 342 | - searching in a list on the fly |
| 343 | - if epsg code is empty, nothing is selected and "next" button is not active |
| 344 | - change informative URL according to a query string (link to epsg.io) |
| 345 | |
| 346 | Other two PRs were established: |
| 347 | - Startup GUI automatic detection of grassdata: make case independent (see https://github.com/OSGeo/grass/pull/664, see https://github.com/OSGeo/grass/issues/644). Detects a grassdata directory if present, but it does not detect GRASSDATA, Grassdata, or any other possible combinations of cases. It should be independent to allow for different cultures of case usage in file and directory naming. |
| 348 | - Create grassdata automatically on the first GUI startup (see https://github.com/OSGeo/grass/pull/705, see https://github.com/OSGeo/grass/issues/682) |
| 349 | After starting GRASS GIS with GUI, the GUI now searches for existing grassdata. If nothing is found, GRASS GIS (GUI) should automatically create directory named grassdata as a subdirectory of a platfrom-dependent directory. This platfrom-dependent directory would be: |
| 350 | |
| 351 | 1. $HOME (os.path.expanduser('~')) on Linux and the like, |
| 352 | 2. User's Documents on Windows (see dac6d4a for code trying to identify that dir), |
| 353 | 3. One of the above on macOS - macOS users, please share your ideas. |
| 354 | 4. If that fails, it should use a temporary directory (/tmp/... etc.) as a fallback. |
| 355 | |
| 356 | Those PRs are still in progress. |