1
0
mirror of https://github.com/arkenfox/user.js.git synced 2026-06-15 17:02:33 +05:30

Compare commits

..

19 Commits

Author SHA1 Message Date
Thorin-Oakenpants b3b3ae4660 finalize 61 2018-08-08 14:34:08 +00:00
earthlng c4d131aaf9 Add files via upload (#474) 2018-08-06 23:33:07 +00:00
earthlng 9c975b318a store file with CRLF
I think there's no way to get rid of ^M but hopefully with `*.bat -text` in `.gitattributes` it shouldn't be a problem because git won't do any line conversion on check-in/out.
This way the raw link as well as the file within the zip download should be in proper MSDOS CRLF format, and git status shouldn't report the file as modified either. ***fingerscrossed!!***
2018-08-06 23:27:41 +00:00
earthlng a1638868ea Update .gitattributes 2018-08-06 22:31:21 +00:00
Денис 3806ccc68c Introduce end-of-line normalization (#471)
fix for #469
2018-08-06 22:06:30 +00:00
earthlng 06b69bb95a Delete test-LF.bat 2018-08-06 19:34:33 +00:00
earthlng d8bfdaa058 Delete test-CRLF.bat 2018-08-06 19:34:26 +00:00
earthlng 03efb99754 Delete test-CR.bat 2018-08-06 19:34:18 +00:00
earthlng b390d9787b Add files via upload 2018-08-06 19:27:07 +00:00
earthlng 2e908f38d2 Update prefsCleaner.bat 2018-08-06 19:25:25 +00:00
earthlng f973422581 Delete prefsCleaner2.bat 2018-08-06 19:23:36 +00:00
earthlng 5bcbe56f4b Add files via upload 2018-08-06 19:19:22 +00:00
earthlng 833f816b99 Add files via upload 2018-08-06 19:17:48 +00:00
earthlng 5ccea3262f Update updater.bat 2018-08-06 19:14:56 +00:00
earthlng 9611eac1cf test
test
2018-08-06 18:52:30 +00:00
earthlng 43119694fb Update .gitattributes 2018-08-05 13:02:34 +00:00
Thorin-Oakenpants cbea3adc7e FPI & IP addresses FF63+ 2018-07-17 02:58:51 +00:00
earthlng 4813aa549b Update user.js 2018-07-11 13:59:52 +02:00
Hervé 96706cf11e ghacks-clear-[removed].js : Fix JS syntax (#460)
* Fix syntax

* updated 06-July-2018
2018-07-07 01:44:53 +12:00
3 changed files with 17 additions and 15 deletions
+9 -8
View File
@@ -1,14 +1,15 @@
## * text=auto
* text=auto
*.js text=auto
*.md text=auto
*.yml text=auto
*.txt text=auto
*.sh text=auto
*.bat eol=crlf
*.js text
*.md text
*.yml text
*.txt text
*.sh text
## *.bat text eol=crlf
*.bat -text
*.png binary
.gitattributes export-ignore
*.yml export-ignore
wikipiki export-ignore
/wikipiki export-ignore
+2 -2
View File
@@ -1,7 +1,7 @@
/***
This will reset the preferences that have been removed completely from the ghacks user.js.
Last updated: 03-Jun-2018
Last updated: 06-July-2018
For instructions see:
https://github.com/ghacksuserjs/ghacks-user.js/wiki/3.1-Resetting-Inactive-Prefs-[Scripts]
@@ -90,7 +90,7 @@
'browser.laterrun.enabled',
'browser.offline-apps.notify',
'browser.rights.3.shown',
'browser.slowStartup.maxSamples'
'browser.slowStartup.maxSamples',
'browser.slowStartup.notificationDisabled',
'browser.slowStartup.samples',
'browser.storageManager.enabled',
+6 -5
View File
@@ -1,7 +1,7 @@
/******
* name: ghacks user.js
* date: 06 July 2018
* version 61-beta: You Can't Hurry Pants
* date: 08 August 2018
* version 61: You Can't Hurry Pants
* "My mama said, "You can't hurry pants. No, you'll just have to wait""
* authors: v52+ github | v51- www.ghacks.net
* url: https://github.com/ghacksuserjs/ghacks-user.js
@@ -39,7 +39,7 @@
******/
/* START: internal custom pref to test for syntax errors (thanks earthling)
/* START: internal custom pref to test for syntax errors
* [NOTE] In FF60+, not all syntax errors cause parsing to abort i.e. reaching the last debug
* pref no longer necessarily means that all prefs have been applied. Check the console right
* after startup for any warnings/error messages related to non-applied prefs
@@ -1484,6 +1484,7 @@ user_pref("privacy.sanitize.timeSpan", 0);
** 1337893 - isolate DNS cache (FF55+)
** 1344170 - isolate blob: URI (FF55+)
** 1300671 - isolate data:, about: URLs (FF55+)
** 1473247 - isolate IP addresses (FF63+)
NOTE: FPI has some issues depending on your Firefox release
** 1418931 - [fixed in FF58+] IndexedDB (Offline Website Data) with FPI Origin Attributes
@@ -2122,10 +2123,10 @@ user_pref("experiments.activeExperiment", false);
// 2612: disable remote JAR files being opened, regardless of content type (FF42+)
// [1] https://bugzilla.mozilla.org/1173171
// [2] https://www.fxsitecompat.com/en-CA/docs/2015/jar-protocol-support-has-been-disabled-by-default/
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1427726
// [-] https://bugzilla.mozilla.org/1427726
user_pref("network.jar.block-remote-files", true);
// 2613: disable JAR from opening Unsafe File Types
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1427726
// [-] https://bugzilla.mozilla.org/1427726
user_pref("network.jar.open-unsafe-types", false);
// * * * /
// ***/