NewBranch.bjs
[gitlive] / NewBranch.vala
index a2ae2cd..e65ba33 100644 (file)
@@ -51,7 +51,26 @@ public class NewBranch : Object
         });
         this.el.response.connect( (self, response_id) =>  { 
           
-                GLib.debug("got %d", (int) response_id);
+               GLib.debug("got %d", (int) response_id);
+               if (response_id == 0) {
+                   _this.el.hide();     
+                       return;
+               }
+               // have they selected a ticket..
+               // make that the current active ticket?
+               // we really need to store locally what ticket is being worked on..
+               // in theory we could be working on multiple project and not merging..
+               // -- each repo would have their active ticket (only one per repo)
+               // -- so we could just store that in there
+               // -- initial load can check the contents of the ticket files on first scan.
+        
+               
+        
+                
+                
+                
+        
+                
         });
         this.el.show.connect( (self)  => {
          
@@ -205,8 +224,8 @@ public class NewBranch : Object
                
                if (ticket_id == "") {
                
-                       var dt = DateTime.now_local();
-                       _this.name.el.set_text("wip_%s_%s".printf(name,date));
+                       var dt = new  DateTime.now_local();
+                       _this.name.el.set_text("wip_%s_%s".printf(name,dt.format("%Y_%b_%d")));
                        return;
                }