Skip to content

Commit

Permalink
Version 1.2.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
victords committed Feb 18, 2021
1 parent 21ee99b commit 7789be8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions bundle.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
c = f.read
c.gsub!(/^require(_relative)? '[a-z0-9_]+'\n/, '')
c.gsub!(/^include [A-Za-z0-9_]+\n/, '')
c.gsub!(/^gem .*?\n/, '')
c.gsub!(/^\s*#.*\n/, '')
c.gsub!(/ #[^"\n]+$/, '')
bundle += c + "\n"
Expand Down
2 changes: 1 addition & 1 deletion deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
ruby bundle.rb
mv sb.rb deb/opt/vds-games/super-bombinhas/
cp -r data deb/opt/vds-games/super-bombinhas/
dpkg -b deb super-bombinhas-1.2.3.deb
dpkg -b deb super-bombinhas-1.2.4.deb
4 changes: 2 additions & 2 deletions deb/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Package: super-bombinhas
Priority: optional
Version: 1.2.3
Version: 1.2.4
Architecture: all
Maintainer: Victor David Santos <[email protected]>
Installed-Size: 39788
Installed-Size: 40396
Depends: build-essential, libsdl2-dev, libgl1-mesa-dev, libopenal-dev, libsndfile-dev, libmpg123-dev, libgmp-dev, libfontconfig1-dev, ruby, ruby-dev
Homepage: https://github.com/victords/super-bombinhas
Section: games
Expand Down
4 changes: 2 additions & 2 deletions deb/DEBIAN/postinst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
set -e
gem install gosu -v 1.1.0
gem install minigl -v 2.3.5
gem install gosu -v 1.1.0 --conservative
gem install minigl -v 2.3.5 --conservative
exit 0
2 changes: 1 addition & 1 deletion menu.rb
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ def draw
@clouds.each(&:draw)
@title.draw @form.cur_section_index == 1 ? 20 : 50, 20, 0, @form.cur_section_index == 1 ? 1 : 2, @form.cur_section_index == 1 ? 1 : 2
@form.draw
SB.font.draw_text("v1.2.3", 10, 579, 0, 1, 1, 0xff000000)
SB.font.draw_text("v1.2.4", 10, 579, 0, 1, 1, 0xff000000)
end
end
end

0 comments on commit 7789be8

Please sign in to comment.