Skip to content

Commit

Permalink
ver++
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterPetrik committed Jun 30, 2021
1 parent b47d156 commit 7859cb9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ You can use MDAL to load the following file formats:
| 2DM | READ-WRITE | N/A | N/A | N/A | N/A | N/A |
| XMS TIN | READ-ONLY | N/A | N/A | N/A | N/A | N/A |
| Esri TIN | READ-ONLY | N/A | N/A | N/A | N/A | N/A |
| NetCDF | READ-ONLY | NO | NO | READ-ONLY | N/A | NO |
| GRIB | READ-ONLY | NO | NO | READ-ONLY | N/A | NO |
| GDAL-NetCDF | READ-ONLY | NO | NO | READ-ONLY | N/A | NO |
| GDAL-GRIB | READ-ONLY | NO | NO | READ-ONLY | N/A | NO |
| XMDF | N/A | N/A | NO | READ-ONLY | READ-ONLY | YES |
| XDMF | N/A | N/A | NO | READ-ONLY | NO | YES |
| DAT | N/A | N/A | READ-ONLY | READ-WRITE | N/A | NO |
Expand Down Expand Up @@ -102,6 +102,8 @@ QGIS contains internal copy of MDAL library in following versions:
| 3.14.0 | 0.6.1 | [1D meshes](https://github.com/qgis/QGIS-Enhancement-Proposals/issues/164) |
| 3.16.0 | 0.7.1 | Mesh creation, PLY format |
| 3.18.0 | 0.8.0 | Dynamic drivers, DFSU format |
| 3.20.0 | 0.8.1 | |
| 3.22.0 | 0.9.x | TBD |

versions `X.Y.9Z` are development versions or alpha/beta releases (e.g. `0.4.90`, `0.4.91`, ...)

Expand Down
6 changes: 3 additions & 3 deletions mdal/api/mdal.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,13 @@ MDAL_EXPORT MDAL_Status MDAL_LastStatus();

/**
* Resets the last status message
* \since MDAL 0.8.2
* \since MDAL 0.9.0
*/
MDAL_EXPORT void MDAL_ResetStatus();

/*
* Sets the last status message
* \since MDAL 0.8.2
* \since MDAL 0.9.0
*/
MDAL_EXPORT void MDAL_SetStatus( MDAL_LogLevel Level, MDAL_Status status, const char *message );

Expand Down Expand Up @@ -187,7 +187,7 @@ MDAL_EXPORT const char *MDAL_DR_writeDatasetsSuffix( MDAL_DriverH driver );
* Returns the file suffix used to save mesh frame on file
* not thread-safe and valid only till next call
*
* \since MDAL 0.8.2
* \since MDAL 0.9.0
*/
MDAL_EXPORT const char *MDAL_DR_saveMeshSuffix( MDAL_DriverH driver );

Expand Down
2 changes: 1 addition & 1 deletion mdal/mdal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ static const char *EMPTY_STR = "";

const char *MDAL_Version()
{
return "0.8.1";
return "0.8.90";
}

MDAL_Status MDAL_LastStatus()
Expand Down

0 comments on commit 7859cb9

Please sign in to comment.