File tree Expand file tree Collapse file tree 6 files changed +9
-11
lines changed Expand file tree Collapse file tree 6 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ version: 0.1.0
189
189
190
190
dependencies :
191
191
crsfml :
192
- github : BlaXpirit /crsfml
192
+ github : oprypin /crsfml
193
193
version : 1.2.3
194
194
` ` `
195
195
Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ class KeyboardView < View
192
192
193
193
case event.code
194
194
when SF ::Keyboard ::BackSpace
195
- @str = @str .chop
195
+ @str = @str .rchop
196
196
when SF ::Keyboard ::Return
197
197
@str += '\n'
198
198
when SF ::Keyboard ::Tab
Original file line number Diff line number Diff line change 1
1
name : crsfml
2
- version : 2.4.4
2
+ version : 2.4.5
3
3
4
4
authors :
5
5
@@ -9,7 +9,7 @@ description: |
9
9
10
10
license : zlib
11
11
12
- crystal : 0.20.4
12
+ crystal : 0.22.0
13
13
14
14
libraries :
15
- SFML : 2.4.1
15
+ SFML : 2.4.2
Original file line number Diff line number Diff line change 1
1
require " ./sizes"
2
2
3
3
module SF
4
- VERSION = " 2.4.4 "
5
- SFML_VERSION = " 2.4.1 "
4
+ VERSION = " 2.4.5 "
5
+ SFML_VERSION = " 2.4.2 "
6
6
7
7
# Raised in shorthand class methods if initialization or resource loading fails
8
8
class InitError < Exception
Original file line number Diff line number Diff line change @@ -1936,8 +1936,6 @@ module SF
1936
1936
# Enumeration of the window styles
1937
1937
@[Flags ]
1938
1938
enum Style
1939
- # No border / title bar (this flag and all others are mutually exclusive)
1940
- None = 0
1941
1939
# Title bar + fixed border
1942
1940
Titlebar = 1 << 0
1943
1941
# Title bar + resizable border + maximize button
Original file line number Diff line number Diff line change @@ -242,9 +242,9 @@ list(APPEND CMAKE_MODULE_PATH "/usr/local/opt/sfml/share/SFML/cmake/Modules") #
242
242
find_package (SFML 2.4
243
243
COMPONENTS system window graphics audio network REQUIRED
244
244
)
245
- if (NOT "2.4.1 " STREQUAL "${SFML_VERSION_MAJOR} .${SFML_VERSION_MINOR} .${SFML_VERSION_PATCH} " )
245
+ if (NOT "2.4.2 " STREQUAL "${SFML_VERSION_MAJOR} .${SFML_VERSION_MINOR} .${SFML_VERSION_PATCH} " )
246
246
message (WARNING
247
- "Expecting SFML 2.4.1 , "
247
+ "Expecting SFML 2.4.2 , "
248
248
"found SFML ${SFML_VERSION_MAJOR} .${SFML_VERSION_MINOR} .${SFML_VERSION_PATCH} "
249
249
)
250
250
endif ()
You can’t perform that action at this time.
0 commit comments