[Pkg-mozext-commits] [requestpolicy] 77/100: create changelogs

David Prévot taffit at moszumanska.debian.org
Fri Dec 12 22:57:01 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository requestpolicy.

commit 1f906b81fb6df135a6626e871d3e9fd04ff53793
Author: myrdd <myrdd at users.noreply.github.com>
Date:   Fri Nov 7 14:17:58 2014 +0100

    create changelogs
---
 ChangeLog.md       | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/ChangeLog.md   | 28 +++++++++++++++++++++++++
 tests/ChangeLog.md | 27 ++++++++++++++++++++++++
 3 files changed, 115 insertions(+)

diff --git a/ChangeLog.md b/ChangeLog.md
new file mode 100644
index 0000000..0bf80d7
--- /dev/null
+++ b/ChangeLog.md
@@ -0,0 +1,60 @@
+### RequestPolicy Continued ChangeLog
+
+Note: ChangeLogs for the source code and unit tests, both not relevant for
+      users, you can find in the dedicated subdirectories.
+
+#### Version 1.0.beta8
+* new features
+  * Changes to the `Manage Policies` page, thanks to @chrisbura (#459)
+    * changes to the style (form and list prettified. removed iframe.)
+    * The list now includes temporary rules and subscription rules.
+  * the redirect notification now shows a "more" button, just like RP v0.5 does.
+    (#468, 48364cd)
+  * the "auto reload" option from RP v0.5 is now available (#466)
+  * ensure that all preference tabs that might be open *always* show the
+    currently valid preference. Each tab automatically refreshes if anything is
+    changed. Also the list in `yourpolicy.html`, it gets updated automatically
+    when rules are added or removed.
+  * added information to the "origin" and "other origins" entries in the menu
+    (446e54b)
+    * the number of requests is displayed.
+    * a flag in front of the entries will indicate whether requests have been
+      blocked specific for that origin.
+  * images of blacklisted domains are now not displayed at all (no
+    placeholders), thanks to @SkySkimmer (pull request #506, closes #304)
+  * Subscriptions are now downloaded from
+    https://github.com/RequestPolicyContinued/subscriptions
+    You are very welcome to help working on the list!
+* updated translation (fr, it, zh-CN)
+* several links to requestpolicy.com have been replaced
+* bugfixes
+  * The initial setup didn't appear when firefox was set to restore the previous
+    session on startup (#479, dd7a707)
+  * NewsFox extension: Links inside articles not working (#503, 7ceef9f)
+
+#### Version 1.0.0b7 (changes since 1.0.0b3)
+* forked version 1.0.0b3 from
+  https://github.com/RequestPolicy/requestpolicy/tree/dev-1.0
+* new features:
+  * icons added to the destinations list of the menu.
+    The new icons are: a question mark, an "allowed" sign and a "denied" sign.
+    A question mark means that the default policy applied for that destination.
+  * The number of requests to a destination can be displayed in the menu.
+    This depends on the boolean preference "menu.info.showNumRequests".
+    Also duplicate requests are counted.
+  * The destinations in the menu can now be sorted in different ways.
+    It's possible to sort by…
+    1. …the number of requests (highest number first)
+    2. …the destination domain name (alphabetically)
+    3. …no sorting at all (like in version 0.5.* until now)
+    See commit 2d0461f.
+* updated translation (zh-CN)
+* bugfixes
+  * flag color changes and visibility in Australis (#429, #436), on custom
+    toolbars (#291) and in `about:customizing` (#436).
+  * row background colors in the request log (#380)
+  * clicking "View Selection Source" now works (#312, dd2b4e5)
+  * URLs in the text without a surrounding `<a>` element ("text-links") now
+    work. (#413, 4dfa13d)
+  * fix browser UI freeze when the RP menu is closed and the page reload
+    requires to send again form data. (#365, 4891c5a)
diff --git a/src/ChangeLog.md b/src/ChangeLog.md
new file mode 100644
index 0000000..c27f61e
--- /dev/null
+++ b/src/ChangeLog.md
@@ -0,0 +1,28 @@
+### Source Code ChangeLog of RequestPolicy Continued
+
+Note: The ChangeLog relevant for users you can find in the parent directory.
+
+#### Version 1.0.beta8
+* The functionality of `shouldLoad()` has been moved to `RequestProcessor`.
+  `shouldLoad()` creates an object of the new `NormalRequest` prototype and
+  passes it to `RequestProcessor.process()`.
+  Besides `NormalRequest`, `RedirectRequest` has been created and is used by
+  `RequestProcessor._examineHttpResponse()`.
+* `RequestResult` has been moved to a separate file.
+* several variables and functions have been renamed:
+  * `RuleSet` → `Rules` (050ec75)
+  * `Policy` → `Ruleset` (c69744e)
+  * `rule type` → `rule action` (=allow/deny) (71bcb49)
+
+
+#### Version 1.0.0b7 (changes since 1.0.0b3)
+* forked version 1.0.0b3 from
+  https://github.com/RequestPolicy/requestpolicy/tree/dev-1.0
+* whitespace at the end of the lines removed (c5c1551)
+* use `nsIURI.specIgnoringRef` instead of
+  `DomainUtil.stripFragment(nsIURI.spec)` (384eeea)
+* renamed `Address` to `IPAddress` to reduce confusion (4ad62fb)
+* `CheckRequestResult` renamed to `RequestResult` (6182689)
+* the variable `RequestSet._origins` got one additional layer. It's now
+  `[originURI][destBase][destIdent][destURI][i]`. This allows counting also
+  the number of duplicate requests. (64a419a)
diff --git a/tests/ChangeLog.md b/tests/ChangeLog.md
new file mode 100644
index 0000000..cc85599
--- /dev/null
+++ b/tests/ChangeLog.md
@@ -0,0 +1,27 @@
+### Unit Test ChangeLog of RequestPolicy Continued
+
+Note: The ChangeLog relevant for users you can find in the parent directory.
+
+#### Version 1.0.beta8
+* The base domains `maindomain.test`, `otherdomain.test` and `thirddomain.test`
+  have been introduced.
+* The test files are now located at `tests/content/`
+* The first Mozmill tests have been created. Documentation can be found in the
+  RP wiki on github. Currently there are the following tests:
+```
+├── testLinks
+│   ├── testHTMLAnchorElement
+│   │   ├── testLinkClick.js
+│   │   ├── testOpenInNewTab.js
+│   │   └── testOpenInNewWindow.js
+│   └── testTextSelection
+│       ├── testOpenInCurrentTab.js
+│       ├── testOpenInNewTab.js
+│       └── testOpenInNewWindow.js
+├── testPolicy
+│   └── testIframeTree
+│       └── testDefaultPolicies.js
+└── testRedirect
+    ├── testAutoRedirect.js
+    └── testLinkClickRedirect.js
+```

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/requestpolicy.git



More information about the Pkg-mozext-commits mailing list