Skip to content

Commit

Permalink
Bump dependencies versions if examples
Browse files Browse the repository at this point in the history
  • Loading branch information
FreeSlave committed Apr 10, 2016
1 parent c6d7719 commit 894885c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ try {
//Detect current locale.
string locale = environment.get("LC_CTYPE", environment.get("LC_ALL", environment.get("LANG")));
string name = df.localizedName(locale); //Specific name of the application.
string name = df.localizedDisplayName(locale); //Specific name of the application.
string genericName = df.localizedGenericName(locale); //Generic name of the application. Show it in menu under the specific name.
string comment = df.localizedComment(locale); //Show it as tooltip or description.
Expand Down
4 changes: 2 additions & 2 deletions examples/desktoptest/dub.selections.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"versions": {
"standardpaths": "0.3.1",
"isfreedesktop": "0.1.0",
"inilike": "0.5.0",
"xdgpaths": "0.1.2"
"inilike": "0.5.1",
"xdgpaths": "0.2.1"
}
}
4 changes: 2 additions & 2 deletions examples/desktoputil/dub.selections.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"fileVersion": 1,
"versions": {
"isfreedesktop": "0.1.0",
"inilike": "0.5.0",
"xdgpaths": "0.1.2"
"inilike": "0.5.1",
"xdgpaths": "0.2.1"
}
}
5 changes: 2 additions & 3 deletions examples/shootdesktop/dub.selections.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{
"fileVersion": 1,
"versions": {
"standardpaths": "0.2.0",
"isfreedesktop": "0.1.0",
"inilike": "0.5.0",
"xdgpaths": "0.1.2"
"inilike": "0.5.1",
"xdgpaths": "0.2.1"
}
}
2 changes: 1 addition & 1 deletion source/desktopfile/utils.d
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ unittest
* Read the desktop file and run application or open link depending on the type of the given desktop file.
* Params:
* reader = IniLikeReader constructed from range of strings using iniLikeRangeReader
* fileName = file name of desktop file where data read from. It's optional, but can be set to the file name from which contents IniLikeReader was constructed.
* fileName = file name of desktop file where data read from. Can be used in field code expanding, should be set to the file name from which contents IniLikeReader was constructed.
* options = options that set behavior of the function.
* Use this function to execute desktop file fast, without creating of DesktopFile instance.
* Throws:
Expand Down

0 comments on commit 894885c

Please sign in to comment.