Hi,
I've ran into the same bug.
Solution:
in function RSShowPictures() (components/com_rsgallery2/rsgallery2.html.php)
i suggest into the 2 sql query this "and published=1"
and the publish/unpublish feature will work.

Steve
$database->setQuery("SELECT COUNT(*) FROM #__rsgallery2_files WHERE gallery_id='$catid' and published=1 ");
and this
$database->setQuery("SELECT * FROM #__rsgallery2_files".
" WHERE gallery_id='$catid'".
" and published=1 ".
" ORDER BY ordering ASC".
" LIMIT $limitstart, $PageSize");