[Freeciv-commits] r28324 - /branches/S2_5/translations/freeciv/ca.po

2015-02-27 Thread joan . creusandreu
Author: jcreus
Date: Fri Feb 27 18:44:48 2015
New Revision: 28324

URL: http://svn.gna.org/viewcvs/freeciv?rev=28324view=rev
Log:
Working on it

Modified:
branches/S2_5/translations/freeciv/ca.po

[This mail would be too long, it was shortened to contain the URLs only.]

Modified: branches/S2_5/translations/freeciv/ca.po
URL: 
http://svn.gna.org/viewcvs/freeciv/branches/S2_5/translations/freeciv/ca.po?rev=28324r1=28323r2=28324view=diff


___
Freeciv-commits mailing list
Freeciv-commits@gna.org
https://mail.gna.org/listinfo/freeciv-commits


[Freeciv-commits] r28327 - /branches/S2_6/client/gui-gtk-3.0/optiondlg.c

2015-02-27 Thread cazfi74
Author: cazfi
Date: Fri Feb 27 21:41:50 2015
New Revision: 28327

URL: http://svn.gna.org/viewcvs/freeciv?rev=28327view=rev
Log:
Reduced gtk3-client options dialog labels' margin to 2.

Reported by Jacob Nevins jtn

See bug #22676

Modified:
branches/S2_6/client/gui-gtk-3.0/optiondlg.c

Modified: branches/S2_6/client/gui-gtk-3.0/optiondlg.c
URL: 
http://svn.gna.org/viewcvs/freeciv/branches/S2_6/client/gui-gtk-3.0/optiondlg.c?rev=28327r1=28326r2=28327view=diff
==
--- branches/S2_6/client/gui-gtk-3.0/optiondlg.c(original)
+++ branches/S2_6/client/gui-gtk-3.0/optiondlg.cFri Feb 27 21:41:50 2015
@@ -528,7 +528,7 @@
 
   hbox = gtk_grid_new();
   label = gtk_label_new(option_description(poption));
-  g_object_set(label, margin, 5, NULL);
+  g_object_set(label, margin, 2, NULL);
   gtk_container_add(GTK_CONTAINER(hbox), label);
   gtk_container_add(GTK_CONTAINER(ebox), hbox);
 


___
Freeciv-commits mailing list
Freeciv-commits@gna.org
https://mail.gna.org/listinfo/freeciv-commits


[Freeciv-commits] r28328 - /branches/S2_4/client/gui-gtk-3.0/optiondlg.c

2015-02-27 Thread cazfi74
Author: cazfi
Date: Fri Feb 27 21:43:33 2015
New Revision: 28328

URL: http://svn.gna.org/viewcvs/freeciv?rev=28328view=rev
Log:
Reduced gtk3-client options dialog labels' margin to 2.

Reported by Jacob Nevins jtn

See bug #22676

Modified:
branches/S2_4/client/gui-gtk-3.0/optiondlg.c

Modified: branches/S2_4/client/gui-gtk-3.0/optiondlg.c
URL: 
http://svn.gna.org/viewcvs/freeciv/branches/S2_4/client/gui-gtk-3.0/optiondlg.c?rev=28328r1=28327r2=28328view=diff
==
--- branches/S2_4/client/gui-gtk-3.0/optiondlg.c(original)
+++ branches/S2_4/client/gui-gtk-3.0/optiondlg.cFri Feb 27 21:43:33 2015
@@ -528,7 +528,7 @@
 
   hbox = gtk_grid_new();
   label = gtk_label_new(option_description(poption));
-  g_object_set(label, margin, 5, NULL);
+  g_object_set(label, margin, 2, NULL);
   gtk_container_add(GTK_CONTAINER(hbox), label);
   gtk_container_add(GTK_CONTAINER(ebox), hbox);
 


___
Freeciv-commits mailing list
Freeciv-commits@gna.org
https://mail.gna.org/listinfo/freeciv-commits


[Freeciv-commits] r28325 - in /trunk/common: packets_json.c packets_json.h

2015-02-27 Thread cazfi74
Author: cazfi
Date: Fri Feb 27 21:12:25 2015
New Revision: 28325

URL: http://svn.gna.org/viewcvs/freeciv?rev=28325view=rev
Log:
Removed unused binary type field from raw-protocol header under json-protocol

See patch #5851

Modified:
trunk/common/packets_json.c
trunk/common/packets_json.h

Modified: trunk/common/packets_json.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/common/packets_json.c?rev=28325r1=28324r2=28325view=diff
==
--- trunk/common/packets_json.c (original)
+++ trunk/common/packets_json.c Fri Feb 27 21:12:25 2015
@@ -326,7 +326,7 @@
 
   /* Parse JSON packet. */
 
-  pc-json_packet = json_loadb((char*)pc-buffer-data + 4, whole_packet_len, 
0, error);
+  pc-json_packet = json_loadb((char*)pc-buffer-data + 2, whole_packet_len, 
0, error);
 
   memmove(pc-buffer-data, pc-buffer-data, pc-buffer-ndata);
   pc-buffer-ndata = 0;

Modified: trunk/common/packets_json.h
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/common/packets_json.h?rev=28325r1=28324r2=28325view=diff
==
--- trunk/common/packets_json.h (original)
+++ trunk/common/packets_json.h Fri Feb 27 21:12:25 2015
@@ -30,7 +30,6 @@
   \
   dio_output_init((dout.raw), buffer, sizeof(buffer)); \
   dio_put_uint16_raw((dout.raw), 0);   \
-  dio_put_uint16_raw((dout.raw), packet_type); \
   dio_put_uint8_json(dout, pid, packet_type);
 
 #define SEND_PACKET_END(packet_type) \


___
Freeciv-commits mailing list
Freeciv-commits@gna.org
https://mail.gna.org/listinfo/freeciv-commits


[Freeciv-commits] r28326 - /trunk/client/gui-gtk-3.0/optiondlg.c

2015-02-27 Thread cazfi74
Author: cazfi
Date: Fri Feb 27 21:41:42 2015
New Revision: 28326

URL: http://svn.gna.org/viewcvs/freeciv?rev=28326view=rev
Log:
Reduced gtk3-client options dialog labels' margin to 2.

Reported by Jacob Nevins jtn

See bug #22676

Modified:
trunk/client/gui-gtk-3.0/optiondlg.c

Modified: trunk/client/gui-gtk-3.0/optiondlg.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-gtk-3.0/optiondlg.c?rev=28326r1=28325r2=28326view=diff
==
--- trunk/client/gui-gtk-3.0/optiondlg.c(original)
+++ trunk/client/gui-gtk-3.0/optiondlg.cFri Feb 27 21:41:42 2015
@@ -528,7 +528,7 @@
 
   hbox = gtk_grid_new();
   label = gtk_label_new(option_description(poption));
-  g_object_set(label, margin, 5, NULL);
+  g_object_set(label, margin, 2, NULL);
   gtk_container_add(GTK_CONTAINER(hbox), label);
   gtk_container_add(GTK_CONTAINER(ebox), hbox);
 


___
Freeciv-commits mailing list
Freeciv-commits@gna.org
https://mail.gna.org/listinfo/freeciv-commits


[Freeciv-commits] r28329 - /branches/S2_5/translations/freeciv/ca.po

2015-02-27 Thread joan . creusandreu
Author: jcreus
Date: Sat Feb 28 00:04:39 2015
New Revision: 28329

URL: http://svn.gna.org/viewcvs/freeciv?rev=28329view=rev
Log:
Translation update

Modified:
branches/S2_5/translations/freeciv/ca.po

[This mail would be too long, it was shortened to contain the URLs only.]

Modified: branches/S2_5/translations/freeciv/ca.po
URL: 
http://svn.gna.org/viewcvs/freeciv/branches/S2_5/translations/freeciv/ca.po?rev=28329r1=28328r2=28329view=diff


___
Freeciv-commits mailing list
Freeciv-commits@gna.org
https://mail.gna.org/listinfo/freeciv-commits