Skip to content

Commit

Permalink
simplified UI an dd
Browse files Browse the repository at this point in the history
  • Loading branch information
artemanufrij committed Mar 22, 2018
1 parent ebfa541 commit d6910d6
Show file tree
Hide file tree
Showing 6 changed files with 1,651 additions and 234 deletions.
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "gdb",
"request": "launch",
"target": "./build/src/com.github.artemanufrij.imageburner",
"cwd": "${workspaceRoot}"
}
]
}
31 changes: 31 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "make",
"type": "shell",
"command": "cd ${workspaceFolder}/build && make",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": {
"owner": "cpp",
"fileLocation": [
"relative",
"${workspaceFolder}"
],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
}
]
}
9 changes: 9 additions & 0 deletions data/com.github.artemanufrij.imageburner.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,15 @@
</screenshot>
</screenshots>
<releases>
<release version="0.1.13" date="2018-03-25">
<description>
<p>Improved:</p>
<ul>
<li>Simplified UI</li>
<li>Simplified dd command</li>
</ul>
</description>
</release>
<release version="0.1.12" date="2018-03-02">
<description>
<p>Fix:</p>
Expand Down
Loading

0 comments on commit d6910d6

Please sign in to comment.