Skip to content

Commit

Permalink
v1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nwg-piotr committed Oct 15, 2019
1 parent 3b95ecf commit 14c37d9
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# CHANGELOG

## Development:
- Scale & crop feature not working on X11 bug
[fixed](https://github.com/nwg-piotr/azote/commit/077806e6f72a84fdf768ac6c64d4f081a78fb579).
## v1.5.1
- scale & crop feature not working on X11 bug
[fixed](https://github.com/nwg-piotr/azote/commit/077806e6f72a84fdf768ac6c64d4f081a78fb579)
- small fixes to translations

## v1.5.0 (2019-10-12)
- Image menu: scale and crop the selected image to dimensions of a selected display
Expand Down
1 change: 1 addition & 0 deletions azote/languages/de_DE
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ background_color = Hintergrundfarbe
display_mode = Anzeigemodus
flip_image = Bild spiegeln
flip_wallpaper_horizontally = Bild horizontal spiegeln
image_button = Bildschaltfläche
image_menu = Bild Menü
move = Zum Papierkorb
move_to_trash = Ausgewählte in den Papierkorb verschieben
Expand Down
1 change: 1 addition & 0 deletions azote/languages/en_EN
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ background_color = Background color
display_mode = Display mode
flip_image = Flip image
flip_wallpaper_horizontally = Flip wallpaper horizontally
image_button = Image button
image_menu = Image menu
move = To trash
move_to_trash = Move selected to trash
Expand Down
3 changes: 2 additions & 1 deletion azote/languages/fr_FR
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ background_color = Couleur de fonds
display_mode = Mode d’affichage
flip_image = Retourner l’image
flip_wallpaper_horizontally = Retourner le fond d’écran horizontalement
image_menu = Image menu
image_button = Bouton d'image
image_menu = Menu image
move = Vers la corbeille
move_to_trash = Déplacer la sélection vers la corbeille
no_picture_selected = Aucune image sélectionnée
Expand Down
1 change: 1 addition & 0 deletions azote/languages/pl_PL
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ background_color = Kolor tła
display_mode = Tryb wyświetlania
flip_image = Odwróć obraz
flip_wallpaper_horizontally = Odwróć tapetę w poziomie
image_button = Przycisk obrazu
image_menu = Menu obrazu
move = Do kosza
move_to_trash = Przenieś wybrany do kosza
Expand Down
2 changes: 1 addition & 1 deletion azote/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ def on_apply_to_all_button(button):
def on_settings_button(button):
menu = Gtk.Menu()

item = Gtk.CheckMenuItem.new_with_label(common.lang['image_menu'])
item = Gtk.CheckMenuItem.new_with_label(common.lang['image_button'])
item.set_active(common.settings.show_open_button)
item.connect('activate', switch_open_button)
menu.append(item)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def read(f_name):

setup(
name='azote',
version='1.5.0',
version='1.5.1',
description='Wallpaper manager for Sway, i3 and some other WMs',
packages=['azote'],
include_package_data=True,
Expand Down

0 comments on commit 14c37d9

Please sign in to comment.