Skip to content

Commit

Permalink
Some fixes, updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinscham committed Apr 15, 2024
1 parent 35b800e commit 817d82f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 18 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Updates to Traditional Chinese translation by @nico12313 (Thank you!)

### Fixed
- Reverted `launchy` update since it broke link opening in the browser
- Dependency updates

## v1.7.3 - Apr 04, 2024
Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ gem 'base64', '~> 0.2'
gem 'colorize', '~> 1.1'
gem 'i18n', '~> 1.14'
gem 'json', '~> 2.7'
gem 'launchy', '~> 3.0'
gem 'openssl', '3.1.0' # Reverted from 3.2.0 since it couldnt install
gem 'launchy', '2.5.2' # Reverted from 3.0.0 since it does no longer work
gem 'openssl', '3.1.0' # Reverted from 3.2.0 since it couldnt install
gem 'open-uri', '~> 0.4.1'
gem 'win32-shortcut', '~> 0.3.0'

Expand Down
8 changes: 3 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,15 @@ GEM
public_suffix (>= 2.0.2, < 6.0)
ast (2.4.2)
base64 (0.2.0)
childprocess (5.0.0)
colorize (1.1.0)
concurrent-ruby (1.2.3)
date (3.3.4)
i18n (1.14.4)
concurrent-ruby (~> 1.0)
json (2.7.2)
language_server-protocol (3.17.0.3)
launchy (3.0.0)
launchy (2.5.2)
addressable (~> 2.8)
childprocess (~> 5.0)
ocran (1.3.15)
open-uri (0.4.1)
stringio
Expand All @@ -26,7 +24,7 @@ GEM
parser (3.3.0.5)
ast (~> 2.4.1)
racc
public_suffix (5.0.4)
public_suffix (5.0.5)
racc (1.7.3)
rainbow (3.1.1)
regexp_parser (2.9.0)
Expand Down Expand Up @@ -62,7 +60,7 @@ DEPENDENCIES
colorize (~> 1.1)
i18n (~> 1.14)
json (~> 2.7)
launchy (~> 3.0)
launchy (= 2.5.2)
ocran (= 1.3.15)
open-uri (~> 0.4.1)
openssl (= 3.1.0)
Expand Down
9 changes: 1 addition & 8 deletions i18n/pl.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
common:
done: Zrobione!
exiting: Wychodzenie…
yup: Tak
nah: Nie
confirm_banner: POTWIEDŹ
not_owned: Nie posiadane
press_enter_to_exit: Wciśnij Enter aby wyjść
pl:
common:
actions: Akcje
disenchanted: Rozmienione
Expand Down
6 changes: 3 additions & 3 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ ocran src/main.rb \
./i18n/*.yml \
--gemfile ./Gemfile \
--icon ./assets/BE_icon.ico \
--output ./build/disenchanter.exe

--output ./build/disenchanter.exe && \
ocran src/updater.rb \
--gemfile ./Gemfile \
--icon ./assets/BE_icon.ico \
--output ./build/disenchanter_up.exe
--output ./build/disenchanter_up.exe && \
echo "Success!" || echo "Something went wrong."

rm ./build/.build.lockfile

0 comments on commit 817d82f

Please sign in to comment.