feeds-fun 1.4.0 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "feeds-fun",
3
- "version": "1.4.0",
3
+ "version": "1.6.0",
4
4
  "author": "Aliaksei Yaletski (Tiendil) <a.eletsky@gmail.com> (https://tiendil.org/)",
5
5
  "description": "Frontend for the Feeds Fun — web-based news reader",
6
6
  "keywords": [
@@ -2,9 +2,17 @@
2
2
  <side-panel-layout :reload-button="false">
3
3
  <template #main-header> Discovery </template>
4
4
 
5
+ <h2>Lood feeds from an OPML file</h2>
6
+
5
7
  <opml-upload />
6
8
 
7
- <hr />
9
+ <h2>Search for a feed</h2>
10
+
11
+ <div class="ffun-info-attention">
12
+ <p> The discovery feature is experimental and might not work on all websites. </p>
13
+
14
+ <p> If we can’t find a feed for a site, try finding the feed's URL manually, then enter it in the form. </p>
15
+ </div>
8
16
 
9
17
  <discovery-form />
10
18
  </side-panel-layout>
@@ -169,13 +169,13 @@
169
169
  });
170
170
 
171
171
  const hasRules = computed(() => {
172
- if (!hasEntries.value) {
172
+ if (entriesStore.loadedEntriesReport === null) {
173
173
  return false;
174
174
  }
175
175
 
176
- // TODO: is is heuristics (score could be 0 even with rules)
176
+ // TODO: it is a heuristic (score could be 0 even with rules)
177
177
  // must be refactored to something more stable
178
- for (const entryId of entriesReport.value) {
178
+ for (const entryId of entriesStore.loadedEntriesReport) {
179
179
  if (entriesStore.entries[entryId].score != 0) {
180
180
  return true;
181
181
  }