Easyshop
Easyshop copied to clipboard
STICKY: How to attach files to issues on GitHub
GitHub is a little weird: they want you to copy & paste your log/patch/file attachment to http://gist.github.com/, hit the Create Public Button and link to it from your issue by copying & pasting its URL.
As an example, like this: http://gist.github.com/455716.
For posting videos or screenshots of things not working properly you may find http://skitch.com/ (Apple Mac OS X only) or http://www.bleepingcomputer.com/tutorials/tutorial135.html (Windows Vista or later only) useful.
HTH, Niall
You can also link to items within that repository without making a gist. This is useful to people with commit access to the repository.
Go to the source tab, navigate to the file you want, then copy the url.
For example: https://github.com/ned14/Easyshop/blob/master/README.txt
From 3d55c0f3d575efbd4ce38cd336e0773c0264d1a4 Mon Sep 17 00:00:00 2001
From: Marcel Partap <[email protected]>
Date: Fri, 7 Sep 2018 20:50:22 +0200
Subject: [PATCH] Added more default triggers on different scales.
---
js/app/controllers/valarmcontroller.js | 3 +++
1 file changed, 3 insertions(+)
diff --git js/app/controllers/valarmcontroller.js js/app/controllers/valarmcontroller.js
index 720758c7..e5040cd1 100644
--- js/app/controllers/valarmcontroller.js
+++ js/app/controllers/valarmcontroller.js
@@ -41,6 +41,9 @@ app.controller('VAlarmController', function($scope) {
{ displayname: t('calendar', '30 minutes before'), trigger: -1 * 30 * 60},
{ displayname: t('calendar', '1 hour before'), trigger: -1 * 60 * 60},
{ displayname: t('calendar', '2 hours before'), trigger: -1 * 2 * 60 * 60},
+ { displayname: t('calendar', '1 day before'), trigger: -1 * 24 * 60 * 60},
+ { displayname: t('calendar', '1 week before'), trigger: -1 * 7 * 24 * 60 * 60},
+ { displayname: t('calendar', '1 month before'), trigger: -1 * 30 * 24 * 60 * 60},
{ displayname: t('calendar', 'Custom'), trigger: 'custom'}
];
--
2.18.0
quick usability improvement?