Skip to content

Commit

Permalink
Merge pull request #35 from AlwinEsch/Matrix-change
Browse files Browse the repository at this point in the history
Change to use for Kodi Matrix and version increase
  • Loading branch information
AlwinEsch committed Aug 28, 2019
2 parents 11e2c97 + f5d04bc commit c403f50
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 3 deletions.
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# build artifacts
build/
vfs.*/addon.xml

# Debian build files
debian/changelog
debian/files
debian/*.log
debian/*.substvars
debian/.debhelper/
debian/tmp/
debian/kodi-vfs-*/
obj-x86_64-linux-gnu/

# commonly used editors
# vim
*.swp

# Eclipse
*.project
*.cproject
.classpath
*.sublime-*
.settings/

# KDevelop 4
*.kdev4

# gedit
*~

# CLion
/.idea

# clion
.idea/
4 changes: 2 additions & 2 deletions src/SFTPFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include <map>
#include <sstream>

class CSFTPFile : public kodi::addon::CInstanceVFS
class ATTRIBUTE_HIDDEN CSFTPFile : public kodi::addon::CInstanceVFS
{
struct SFTPContext
{
Expand Down Expand Up @@ -198,7 +198,7 @@ class CSFTPFile : public kodi::addon::CInstanceVFS
}
};

class CMyAddon : public kodi::addon::CAddonBase
class ATTRIBUTE_HIDDEN CMyAddon : public kodi::addon::CAddonBase
{
public:
CMyAddon()
Expand Down
2 changes: 1 addition & 1 deletion vfs.sftp/addon.xml.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="vfs.sftp"
version="1.0.2"
version="1.1.0"
name="SFTP support"
provider-name="spiff">
<requires>@ADDON_DEPENDS@</requires>
Expand Down

0 comments on commit c403f50

Please sign in to comment.