Skip to content

Commit

Permalink
* Add format capability
Browse files Browse the repository at this point in the history
  * Add dynamic USB device list
  * Application doesn't quit if there's no USB key plugged
  * Full command line support
  * KDE integration
  * Check ISO size before trying to write
  * Add some debugging message
  * Application doesn't quit after dialogs
  * Updated man page
  • Loading branch information
Frédéric Gaudet committed Aug 20, 2013
1 parent 2bf5063 commit 3a97a93
Show file tree
Hide file tree
Showing 19 changed files with 911 additions and 352 deletions.
14 changes: 14 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
mintstick (1.0.7) olivia; urgency=low

* Add format capability
* Add dynamic USB device list
* Application doesn't quit if there's no USB key plugged
* Full command line support
* KDE integration
* Check ISO size before trying to write
* Add some debugging message
* Application doesn't quit after dialogs
* Updated man page

-- Frédéric Gaudet <[email protected]> Tue, 20 Aug 2013 15:44:29 +0200

mintstick (1.0.6) olivia; urgency=low

* 1.0.6
Expand Down
4 changes: 2 additions & 2 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ Architecture: all
Depends: coreutils (>= 6.10-3), procps, python, python-glade2, policykit-1, gir1.2-polkit-1.0, gir1.2-gtk-3.0
Conflicts: usb-imagewriter
Replace: usb-imagewriter
Description: Tool to write .img and .iso files to USB sticks
A GUI to write .img or .iso files to a USB Key
Description: Tool to write .img and .iso files to USB sticks. Can also format them.
A GUI to write .img or .iso files to a USB Key. It can also format them.
8 changes: 3 additions & 5 deletions debian/mintstick.1
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
.TH MINTSTICK "1" "April 2009" "mintstick " "User Commands"

.SH NAME
mintstick \- gui only application to write .img files to USB keys
mintstick \- gui only application to write .img and .iso files to USB keys

.SH DESCRIPTION
.B mintstick
is a graphical application to write .img files to USB keys.
is a graphical application to write .img and .iso files to USB keys. It can also format USB Key from a contextual menu in Cinammon and KDE desktops.

.SH "SEE ALSO"
The full documentation for
.B mintstick
is maintained at https://launchpad.net/mintstick.
The application has no options and should not be used from the
commandline.
is maintained at http://github.com/linuxmint/mintstick
.PP
Go to the project page to get access to the complete documentation.

6 changes: 5 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA

LIBFILES="mintstick.py find_devices.py raw_write.py"
LIBFILES="mintstick.py raw_write.py raw_format.py mountutils.py"
DATAFILES="mintstick.glade"


Expand All @@ -26,10 +26,14 @@ if [ "$1" = "uninstall" ]; then
rm -r /usr/share/applications/mintstick.desktop
rm -f /usr/bin/mintstick
rm -rf /usr/share/polkit-1/actions/org.linuxmint.im.policy
rm -rf /usr/share/kde4/apps/solid/actions/mintstick-format.desktop
else
cp share/applications/mintstick.desktop /usr/share/applications/
cp share/applications/mintstick-format.desktop /usr/share/applications/
cp share/applications/mintstick-kde.desktop /usr/share/applications/
cp share/applications/mintstick-format-kde.desktop /usr/share/applications/
cp share/polkit/org.linuxmint.im.policy /usr/share/polkit-1/actions
cp share/kde4/mintstick-format.desktop /usr/share/kde4/apps/solid/actions
cp mintstick /usr/bin/
mkdir -p /usr/lib/mintstick
mkdir -p /usr/share/mintstick
Expand Down
53 changes: 0 additions & 53 deletions lib/find_devices.py

This file was deleted.

Loading

0 comments on commit 3a97a93

Please sign in to comment.