CSmoothZoom
and introduce CMapView
. I kept the changes to the editor code relatively small as the PR is quite big already. So in a future PR much of DoMapEditor
and other things (like zooming with the mouse wheel) should be moved to this class.
postfix
in linux?
how can i detect which process/user send mailssendmail
binary, but it uses someone else[root@srv1 ~]# postsuper -d ALL
postsuper: Deleted: 289571 messages
unknown database mydb
The database exists and the table gets created. but when someone finishes I get this error and it writes the finish data on a backup database then it reconnects to mysql and writes the data inside it.
And the query I use to create the table is:
"CREATE TABLE IF NOT EXISTS mydb.%s_members"
(edited)unknown database mydb
The database exists and the table gets created. but when someone finishes I get this error and it writes the finish data on a backup database then it reconnects to mysql and writes the data inside it.
And the query I use to create the table is:
"CREATE TABLE IF NOT EXISTS mydb.%s_members"
(edited)sql: failed connecting to db: error executing query: 'unknown database mydb'
sql: save score done on write backup database, Success=0
mysql: connection established
sql: save score done on write database
sql: failed connecting to db: error executing query: 'unknown database mydb'
tried connecting while the connection is in use
sql: failed connecting to db: error executing query: 'unknown database mydb'
sql: save score done on write backup database, Success=0
mysql: connection established
sql: save score done on write database
sql: failed connecting to db: error executing query: 'unknown database mydb'
sql: failed connecting to db: (prepare:stmt:1295): This command is not supported in the prepared statement protocol yet
+-----------+-----------------+----------+------------------+
| Server | Map | count(*) | finishes_per_day |
+-----------+-----------------+----------+------------------+
| Novice | Multeasymap | 997105 | 942.0 |
| Novice | Tutorial | 905210 | 1700.0 |
| Novice | Sunny Side Up | 775003 | 703.0 |
| Novice | Kobra | 600598 | 172.0 |
| Novice | LearnToPlay | 437678 | 332.0 |
| Novice | 4Beginners | 306062 | 282.0 |
| Novice | Just2Easy | 299814 | 97.0 |
| Novice | Epix | 287343 | 91.0 |
| Novice | Kobra 2 | 268684 | 79.0 |
| Race | run_g6 | 224020 | 76.0 |
| Novice | Kobra 4 | 193242 | 66.0 |
| Novice | StepByStep | 187324 | 67.0 |
| Novice | Tsunami | 174569 | 160.0 |
| DDmaX.Nut | NUT_short_race6 | 162317 | 60.0 |
| Novice | Linear | 159813 | 154.0 |
| Race | run_ankii | 157997 | 55.0 |
| Race | run_blue | 153515 | 53.0 |
| Novice | 4Nubs | 144294 | 48.0 |
| Novice | Gold Mine | 137449 | 45.0 |
| Novice | Tangerine | 135834 | 126.0 |
+-----------+-----------------+----------+------------------+
+----------+-----------------+----------+------------------+
| Server | Map | count(*) | finishes_per_day |
+----------+-----------------+----------+------------------+
| Novice | Tutorial | 905210 | 1700.0 |
| Novice | Multeasymap | 997105 | 942.0 |
| Novice | Sunny Side Up | 775003 | 703.0 |
| Novice | Chobo | 24145 | 375.0 |
| Novice | LearnToPlay | 437678 | 332.0 |
| Novice | 4Beginners | 306062 | 282.0 |
| Novice | xyzyx | 59258 | 249.0 |
| Novice | Electric | 41571 | 236.0 |
| Novice | Semang 3 | 24978 | 186.0 |
| Novice | Kobra | 600598 | 172.0 |
| Novice | Tsunami | 174569 | 160.0 |
| Novice | Sketch | 129495 | 155.0 |
| Novice | Linear | 159813 | 154.0 |
| Moderate | powerless | 4260 | 132.0 |
| Novice | Give u the Moon | 57700 | 128.0 |
| Novice | Tangerine | 135834 | 126.0 |
| Novice | Beyond Light | 74556 | 124.0 |
| Novice | SeMang 2 | 70852 | 122.0 |
| Novice | Beyond Dreams | 124817 | 118.0 |
| Novice | Sincera 2 | 106807 | 118.0 |
+----------+-----------------+----------+------------------+
CMapView
and extend the CEditorComponent
interface.
OnWindowResize
listener should be registered in the engine client and dispatch the event to both gameclient and editor.OnWindowResize
is also called on language change to reset all text containers.
However, the glyph atlas is not cleared on normal window resize anymore, because this seems to be unnecessary.